mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
32 lines
630 B
Go
32 lines
630 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/edgelesssys/constellation/coordinator/atls"
|
||
|
)
|
||
|
|
||
|
type stubRecoveryClient struct {
|
||
|
conn bool
|
||
|
connectErr error
|
||
|
closeErr error
|
||
|
pushStateDiskKeyErr error
|
||
|
|
||
|
pushStateDiskKeyKey []byte
|
||
|
}
|
||
|
|
||
|
func (c *stubRecoveryClient) Connect(_, _ string, _ []atls.Validator) error {
|
||
|
c.conn = true
|
||
|
return c.connectErr
|
||
|
}
|
||
|
|
||
|
func (c *stubRecoveryClient) Close() error {
|
||
|
c.conn = false
|
||
|
return c.closeErr
|
||
|
}
|
||
|
|
||
|
func (c *stubRecoveryClient) PushStateDiskKey(_ context.Context, stateDiskKey []byte) error {
|
||
|
c.pushStateDiskKeyKey = stateDiskKey
|
||
|
return c.pushStateDiskKeyErr
|
||
|
}
|