2017-02-18 02:26:38 +01:00
|
|
|
package inmem
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/md5"
|
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/state"
|
|
|
|
"github.com/hashicorp/terraform/state/remote"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RemoteClient is a remote client that stores data in memory for testing.
|
|
|
|
type RemoteClient struct {
|
|
|
|
Data []byte
|
|
|
|
MD5 []byte
|
2017-08-01 18:11:04 +02:00
|
|
|
Name string
|
2017-02-18 02:26:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *RemoteClient) Get() (*remote.Payload, error) {
|
|
|
|
if c.Data == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return &remote.Payload{
|
|
|
|
Data: c.Data,
|
|
|
|
MD5: c.MD5,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *RemoteClient) Put(data []byte) error {
|
|
|
|
md5 := md5.Sum(data)
|
|
|
|
|
|
|
|
c.Data = data
|
|
|
|
c.MD5 = md5[:]
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *RemoteClient) Delete() error {
|
|
|
|
c.Data = nil
|
|
|
|
c.MD5 = nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *RemoteClient) Lock(info *state.LockInfo) (string, error) {
|
2017-08-01 18:11:04 +02:00
|
|
|
return locks.lock(c.Name, info)
|
2017-02-18 02:26:38 +01:00
|
|
|
}
|
|
|
|
func (c *RemoteClient) Unlock(id string) error {
|
2017-08-01 18:11:04 +02:00
|
|
|
return locks.unlock(c.Name, id)
|
2017-02-18 02:26:38 +01:00
|
|
|
}
|