2023-01-06 12:21:14 +00:00
|
|
|
package pairing
|
2022-06-28 23:08:57 +00:00
|
|
|
|
|
|
|
import (
|
2022-09-05 13:32:29 +00:00
|
|
|
"bytes"
|
2022-10-28 10:30:18 +00:00
|
|
|
"crypto/rand"
|
2022-06-28 23:08:57 +00:00
|
|
|
"crypto/sha256"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
|
|
|
|
"github.com/status-im/status-go/images"
|
|
|
|
"github.com/status-im/status-go/multiaccounts"
|
2022-09-27 20:27:20 +00:00
|
|
|
"github.com/status-im/status-go/protocol/sqlite"
|
2023-03-21 12:22:46 +00:00
|
|
|
"github.com/status-im/status-go/server/servertest"
|
2022-06-28 23:08:57 +00:00
|
|
|
"github.com/status-im/status-go/t/utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
password = "password"
|
2022-10-04 15:30:11 +00:00
|
|
|
keyUID = "0x6b9a74f33316e02479c33ed23cf16e0408dca3e1b9ab8f361630859543eb0d46"
|
2022-06-28 23:08:57 +00:00
|
|
|
expected = multiaccounts.Account{
|
2022-09-27 20:27:20 +00:00
|
|
|
Name: "cool account",
|
|
|
|
KeyUID: keyUID,
|
2023-03-22 17:48:42 +00:00
|
|
|
ColorHash: multiaccounts.ColorHash{{4, 3}, {4, 0}, {4, 3}, {4, 0}},
|
2022-09-27 20:27:20 +00:00
|
|
|
ColorID: 10,
|
|
|
|
Images: images.SampleIdentityImages(),
|
|
|
|
KDFIterations: sqlite.ReducedKDFIterationsNumber,
|
2022-06-28 23:08:57 +00:00
|
|
|
}
|
|
|
|
account1Hash = []byte{0x8f, 0xba, 0x35, 0x1, 0x2b, 0x9d, 0xad, 0xf0, 0x2d, 0x3c, 0x4d, 0x6, 0xb5, 0x22, 0x2, 0x47, 0xd4, 0x1c, 0xf4, 0x31, 0x2f, 0xb, 0x5b, 0x27, 0x5d, 0x43, 0x97, 0x58, 0x2d, 0xf0, 0xe1, 0xbe}
|
|
|
|
account2Hash = []byte{0x9, 0xf8, 0x5c, 0xe9, 0x92, 0x96, 0x2d, 0x88, 0x2b, 0x8e, 0x42, 0x3f, 0xa4, 0x93, 0x6c, 0xad, 0xe9, 0xc0, 0x1b, 0x8a, 0x8, 0x8c, 0x5e, 0x7a, 0x84, 0xa2, 0xf, 0x9f, 0x77, 0x58, 0x2c, 0x2c}
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestPayloadMarshallerSuite(t *testing.T) {
|
|
|
|
suite.Run(t, new(PayloadMarshallerSuite))
|
|
|
|
}
|
|
|
|
|
|
|
|
type PayloadMarshallerSuite struct {
|
|
|
|
suite.Suite
|
2023-03-21 12:22:46 +00:00
|
|
|
servertest.TestLoggerComponents
|
2022-06-28 23:08:57 +00:00
|
|
|
|
|
|
|
teardown func()
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
config1 *SenderConfig
|
|
|
|
config2 *ReceiverConfig
|
2022-06-28 23:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func setupTestDB(t *testing.T) (*multiaccounts.Database, func()) {
|
|
|
|
tmpfile, err := ioutil.TempFile("", "accounts-tests-")
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
db, err := multiaccounts.InitializeDB(tmpfile.Name())
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
return db, func() {
|
|
|
|
require.NoError(t, db.Close())
|
|
|
|
require.NoError(t, os.Remove(tmpfile.Name()))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-26 20:39:51 +00:00
|
|
|
func makeKeystores(t *testing.T) (string, string) {
|
|
|
|
keyStoreDir := t.TempDir()
|
|
|
|
emptyKeyStoreDir := t.TempDir()
|
2022-06-28 23:08:57 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
keyStoreDir = filepath.Join(keyStoreDir, keystoreDir, keyUID)
|
2022-10-04 15:30:11 +00:00
|
|
|
// TODO test case where the keystore dir does not yet exist because the device is new
|
2023-03-23 11:44:15 +00:00
|
|
|
emptyKeyStoreDir = filepath.Join(emptyKeyStoreDir, keystoreDir)
|
2022-10-04 15:30:11 +00:00
|
|
|
|
2023-04-26 20:39:51 +00:00
|
|
|
err := os.MkdirAll(keyStoreDir, 0777)
|
2022-10-04 15:30:11 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
err = os.MkdirAll(emptyKeyStoreDir, 0777)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
2023-04-26 20:39:51 +00:00
|
|
|
return keyStoreDir, emptyKeyStoreDir
|
2022-06-28 23:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func initKeys(t *testing.T, keyStoreDir string) {
|
|
|
|
utils.Init()
|
|
|
|
require.NoError(t, utils.ImportTestAccount(keyStoreDir, utils.GetAccount1PKFile()))
|
|
|
|
require.NoError(t, utils.ImportTestAccount(keyStoreDir, utils.GetAccount2PKFile()))
|
|
|
|
}
|
|
|
|
|
|
|
|
func getFiles(t *testing.T, keyStorePath string) map[string][]byte {
|
|
|
|
keys := make(map[string][]byte)
|
|
|
|
|
|
|
|
fileWalker := func(path string, fileInfo os.FileInfo, err error) error {
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if fileInfo.IsDir() || filepath.Dir(path) != keyStorePath {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
rawKeyFile, err := ioutil.ReadFile(path)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("invalid account key file: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
keys[fileInfo.Name()] = rawKeyFile
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
err := filepath.Walk(keyStorePath, fileWalker)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
return keys
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pms *PayloadMarshallerSuite) SetupTest() {
|
2022-10-21 15:19:46 +00:00
|
|
|
pms.SetupLoggerComponents()
|
|
|
|
|
2022-07-01 15:37:53 +00:00
|
|
|
db1, db1td := setupTestDB(pms.T())
|
|
|
|
db2, db2td := setupTestDB(pms.T())
|
2023-04-26 20:39:51 +00:00
|
|
|
keystore1, keystore2 := makeKeystores(pms.T())
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.teardown = func() {
|
|
|
|
db1td()
|
|
|
|
db2td()
|
|
|
|
}
|
|
|
|
|
2022-07-01 15:37:53 +00:00
|
|
|
initKeys(pms.T(), keystore1)
|
|
|
|
err := db1.SaveAccount(expected)
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().NoError(err)
|
2022-07-01 15:37:53 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
pms.config1 = &SenderConfig{
|
|
|
|
DB: db1,
|
|
|
|
KeystorePath: keystore1,
|
|
|
|
KeyUID: keyUID,
|
|
|
|
Password: password,
|
2022-07-01 15:37:53 +00:00
|
|
|
}
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
pms.config2 = &ReceiverConfig{
|
|
|
|
DB: db2,
|
|
|
|
KeystorePath: keystore2,
|
2022-07-01 15:37:53 +00:00
|
|
|
}
|
2022-06-28 23:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (pms *PayloadMarshallerSuite) TearDownTest() {
|
|
|
|
pms.teardown()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pms *PayloadMarshallerSuite) TestPayloadMarshaller_LoadPayloads() {
|
2023-01-06 12:21:14 +00:00
|
|
|
// Make a Payload
|
|
|
|
pp := new(AccountPayload)
|
2022-07-04 22:36:15 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
// Make and Load() PairingPayloadRepository 1
|
|
|
|
ppr, err := NewAccountPayloadLoader(pp, pms.config1)
|
2023-02-17 13:02:42 +00:00
|
|
|
pms.Require().NoError(err)
|
2023-03-23 11:44:15 +00:00
|
|
|
err = ppr.Load()
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().NoError(err)
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
// TEST PairingPayloadRepository 1 Load()
|
2022-07-01 15:37:53 +00:00
|
|
|
pms.Require().Len(ppr.keys, 2)
|
|
|
|
pms.Require().Len(ppr.keys[utils.GetAccount1PKFile()], 489)
|
|
|
|
pms.Require().Len(ppr.keys[utils.GetAccount2PKFile()], 489)
|
2022-06-28 23:08:57 +00:00
|
|
|
|
|
|
|
h1 := sha256.New()
|
2022-07-01 15:37:53 +00:00
|
|
|
h1.Write(ppr.keys[utils.GetAccount1PKFile()])
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().Exactly(account1Hash, h1.Sum(nil))
|
|
|
|
|
|
|
|
h2 := sha256.New()
|
2022-07-01 15:37:53 +00:00
|
|
|
h2.Write(ppr.keys[utils.GetAccount2PKFile()])
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().Exactly(account2Hash, h2.Sum(nil))
|
|
|
|
|
2022-07-01 15:37:53 +00:00
|
|
|
pms.Require().Exactly(expected.ColorHash, ppr.multiaccount.ColorHash)
|
|
|
|
pms.Require().Exactly(expected.ColorID, ppr.multiaccount.ColorID)
|
|
|
|
pms.Require().Exactly(expected.Identicon, ppr.multiaccount.Identicon)
|
|
|
|
pms.Require().Exactly(expected.KeycardPairing, ppr.multiaccount.KeycardPairing)
|
|
|
|
pms.Require().Exactly(expected.KeyUID, ppr.multiaccount.KeyUID)
|
|
|
|
pms.Require().Exactly(expected.Name, ppr.multiaccount.Name)
|
|
|
|
pms.Require().Exactly(expected.Timestamp, ppr.multiaccount.Timestamp)
|
|
|
|
pms.Require().Len(ppr.multiaccount.Images, 2)
|
|
|
|
pms.Require().Equal(password, ppr.password)
|
2022-06-28 23:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (pms *PayloadMarshallerSuite) TestPayloadMarshaller_MarshalToProtobuf() {
|
2023-01-06 12:21:14 +00:00
|
|
|
// Make a Payload
|
|
|
|
pp := new(AccountPayload)
|
2022-07-04 22:36:15 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
// Make and Load() PairingPayloadRepository 1
|
|
|
|
ppr, err := NewAccountPayloadLoader(pp, pms.config1)
|
2023-02-17 13:02:42 +00:00
|
|
|
pms.Require().NoError(err)
|
2023-03-23 11:44:15 +00:00
|
|
|
err = ppr.Load()
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().NoError(err)
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
// Make and Load() PairingPayloadMarshaller 1
|
2022-10-21 15:19:46 +00:00
|
|
|
ppm := NewPairingPayloadMarshaller(pp, pms.Logger)
|
2022-06-29 15:21:22 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
// TEST PairingPayloadMarshaller 1 MarshalProtobuf()
|
|
|
|
pb, err := ppm.MarshalProtobuf()
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().NoError(err)
|
2022-10-04 15:30:11 +00:00
|
|
|
pms.Require().Len(pb, 1384)
|
2022-06-28 23:08:57 +00:00
|
|
|
|
|
|
|
h := sha256.New()
|
|
|
|
h.Write(pb)
|
2022-10-04 15:30:11 +00:00
|
|
|
hashA := []byte{0xe5, 0x34, 0x2e, 0xf1, 0x81, 0x72, 0xab, 0xc3, 0xde, 0x54, 0xbc, 0x8e, 0xd8, 0x34, 0xbe, 0xab, 0xd, 0xe8, 0x84, 0x53, 0xa2, 0x14, 0x9b, 0xbe, 0xc5, 0xe5, 0xce, 0xa5, 0xe9, 0x6d, 0xbc, 0xdd}
|
|
|
|
hashB := []byte{0x98, 0x2b, 0x3d, 0x8b, 0x7c, 0x6a, 0x3e, 0xdc, 0x3, 0xb1, 0xbf, 0xf1, 0x50, 0x15, 0xa5, 0x0, 0xa8, 0xba, 0xae, 0xf9, 0x38, 0xa8, 0x65, 0xd8, 0xf0, 0x93, 0xca, 0xbc, 0x47, 0x5d, 0x84, 0x23}
|
2022-09-05 13:32:29 +00:00
|
|
|
|
|
|
|
// Because file-walk will pull files in an unpredictable order from a target dir
|
|
|
|
// there are 2 potential valid hashes, because there are 2 key files in the test dir
|
2022-09-27 22:59:02 +00:00
|
|
|
if !bytes.Equal(hashA, h.Sum(nil)) {
|
2022-09-05 13:32:29 +00:00
|
|
|
pms.Require().Exactly(hashB, h.Sum(nil))
|
|
|
|
}
|
2022-06-28 23:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (pms *PayloadMarshallerSuite) TestPayloadMarshaller_UnmarshalProtobuf() {
|
2023-01-06 12:21:14 +00:00
|
|
|
// Make a Payload
|
|
|
|
pp := new(AccountPayload)
|
2022-07-04 22:36:15 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
// Make and Load() PairingPayloadRepository 1
|
|
|
|
ppr, err := NewAccountPayloadLoader(pp, pms.config1)
|
2023-02-17 13:02:42 +00:00
|
|
|
pms.Require().NoError(err)
|
2023-03-23 11:44:15 +00:00
|
|
|
err = ppr.Load()
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().NoError(err)
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
// Make and Load() PairingPayloadMarshaller 1
|
2022-10-21 15:19:46 +00:00
|
|
|
ppm := NewPairingPayloadMarshaller(pp, pms.Logger)
|
2022-06-29 15:21:22 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
pb, err := ppm.MarshalProtobuf()
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().NoError(err)
|
|
|
|
|
2023-01-06 12:21:14 +00:00
|
|
|
// Make a Payload
|
|
|
|
pp2 := new(AccountPayload)
|
2022-07-04 22:36:15 +00:00
|
|
|
|
2022-06-29 15:21:22 +00:00
|
|
|
// Make PairingPayloadMarshaller 2
|
2022-10-21 15:19:46 +00:00
|
|
|
ppm2 := NewPairingPayloadMarshaller(pp2, pms.Logger)
|
2022-06-29 15:21:22 +00:00
|
|
|
|
|
|
|
// TEST PairingPayloadMarshaller 2 is empty
|
|
|
|
pms.Require().Nil(ppm2.keys)
|
|
|
|
pms.Require().Nil(ppm2.multiaccount)
|
|
|
|
pms.Require().Empty(ppm2.password)
|
2022-06-28 23:08:57 +00:00
|
|
|
|
2022-06-29 15:21:22 +00:00
|
|
|
// TEST PairingPayloadMarshaller 2 UnmarshalProtobuf()
|
|
|
|
err = ppm2.UnmarshalProtobuf(pb)
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().NoError(err)
|
|
|
|
|
2022-06-29 15:21:22 +00:00
|
|
|
pms.Require().Len(ppm2.keys, 2)
|
|
|
|
pms.Require().Len(ppm2.keys[utils.GetAccount1PKFile()], 489)
|
|
|
|
pms.Require().Len(ppm2.keys[utils.GetAccount2PKFile()], 489)
|
2022-06-28 23:08:57 +00:00
|
|
|
|
|
|
|
h1 := sha256.New()
|
2022-06-29 15:21:22 +00:00
|
|
|
h1.Write(ppm2.keys[utils.GetAccount1PKFile()])
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().Exactly(account1Hash, h1.Sum(nil))
|
|
|
|
|
|
|
|
h2 := sha256.New()
|
2022-06-29 15:21:22 +00:00
|
|
|
h2.Write(ppm2.keys[utils.GetAccount2PKFile()])
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().Exactly(account2Hash, h2.Sum(nil))
|
|
|
|
|
2022-06-29 15:21:22 +00:00
|
|
|
pms.Require().Exactly(expected.ColorHash, ppm2.multiaccount.ColorHash)
|
|
|
|
pms.Require().Exactly(expected.ColorID, ppm2.multiaccount.ColorID)
|
|
|
|
pms.Require().Exactly(expected.Identicon, ppm2.multiaccount.Identicon)
|
|
|
|
pms.Require().Exactly(expected.KeycardPairing, ppm2.multiaccount.KeycardPairing)
|
|
|
|
pms.Require().Exactly(expected.KeyUID, ppm2.multiaccount.KeyUID)
|
|
|
|
pms.Require().Exactly(expected.Name, ppm2.multiaccount.Name)
|
|
|
|
pms.Require().Exactly(expected.Timestamp, ppm2.multiaccount.Timestamp)
|
|
|
|
pms.Require().Len(ppm2.multiaccount.Images, 2)
|
|
|
|
pms.Require().Equal(password, ppm2.password)
|
2022-06-28 23:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (pms *PayloadMarshallerSuite) TestPayloadMarshaller_StorePayloads() {
|
2023-01-06 12:21:14 +00:00
|
|
|
// Make a Payload
|
|
|
|
pp := new(AccountPayload)
|
2022-07-04 22:36:15 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
// Make and Load() PairingPayloadRepository 1
|
|
|
|
ppr, err := NewAccountPayloadLoader(pp, pms.config1)
|
2023-02-17 13:02:42 +00:00
|
|
|
pms.Require().NoError(err)
|
2023-03-23 11:44:15 +00:00
|
|
|
err = ppr.Load()
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().NoError(err)
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
// Make and Load() PairingPayloadMarshaller 1
|
2022-10-21 15:19:46 +00:00
|
|
|
ppm := NewPairingPayloadMarshaller(pp, pms.Logger)
|
2022-06-29 15:21:22 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
pb, err := ppm.MarshalProtobuf()
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().NoError(err)
|
|
|
|
|
2023-01-06 12:21:14 +00:00
|
|
|
// Make a Payload
|
|
|
|
pp2 := new(AccountPayload)
|
2022-07-04 22:36:15 +00:00
|
|
|
|
2022-06-29 15:21:22 +00:00
|
|
|
// Make PairingPayloadMarshaller 2
|
2022-10-21 15:19:46 +00:00
|
|
|
ppm2 := NewPairingPayloadMarshaller(pp2, pms.Logger)
|
2022-06-28 23:08:57 +00:00
|
|
|
|
2022-06-29 15:21:22 +00:00
|
|
|
err = ppm2.UnmarshalProtobuf(pb)
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().NoError(err)
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
// Make and Load() PairingPayloadRepository 2
|
|
|
|
ppr2, err := NewAccountPayloadStorer(pp2, pms.config2)
|
2023-02-17 13:02:42 +00:00
|
|
|
require.NoError(pms.T(), err)
|
2023-03-23 11:44:15 +00:00
|
|
|
err = ppr2.Store()
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().NoError(err)
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
// TEST PairingPayloadRepository 2 Store()
|
|
|
|
keys := getFiles(pms.T(), filepath.Join(pms.config2.KeystorePath, keyUID))
|
2022-06-28 23:08:57 +00:00
|
|
|
|
|
|
|
pms.Require().Len(keys, 2)
|
|
|
|
pms.Require().Len(keys[utils.GetAccount1PKFile()], 489)
|
|
|
|
pms.Require().Len(keys[utils.GetAccount2PKFile()], 489)
|
|
|
|
|
|
|
|
h1 := sha256.New()
|
|
|
|
h1.Write(keys[utils.GetAccount1PKFile()])
|
|
|
|
pms.Require().Exactly(account1Hash, h1.Sum(nil))
|
|
|
|
|
|
|
|
h2 := sha256.New()
|
|
|
|
h2.Write(keys[utils.GetAccount2PKFile()])
|
|
|
|
pms.Require().Exactly(account2Hash, h2.Sum(nil))
|
|
|
|
|
2022-07-01 15:37:53 +00:00
|
|
|
acc, err := pms.config2.DB.GetAccount(keyUID)
|
2022-06-28 23:08:57 +00:00
|
|
|
pms.Require().NoError(err)
|
|
|
|
|
|
|
|
pms.Require().Exactly(expected.ColorHash, acc.ColorHash)
|
|
|
|
pms.Require().Exactly(expected.ColorID, acc.ColorID)
|
|
|
|
pms.Require().Exactly(expected.Identicon, acc.Identicon)
|
|
|
|
pms.Require().Exactly(expected.KeycardPairing, acc.KeycardPairing)
|
|
|
|
pms.Require().Exactly(expected.KeyUID, acc.KeyUID)
|
|
|
|
pms.Require().Exactly(expected.Name, acc.Name)
|
|
|
|
pms.Require().Exactly(expected.Timestamp, acc.Timestamp)
|
|
|
|
pms.Require().Len(acc.Images, 2)
|
2023-02-01 12:28:32 +00:00
|
|
|
|
2023-02-28 12:32:45 +00:00
|
|
|
err = ppr2.storeKeys(ppr2.keystorePath)
|
2023-02-01 12:28:32 +00:00
|
|
|
pms.Require().ErrorIs(err, ErrKeyFileAlreadyExists)
|
2022-06-28 23:08:57 +00:00
|
|
|
}
|
2022-10-28 10:30:18 +00:00
|
|
|
|
|
|
|
func (pms *PayloadMarshallerSuite) TestPayloadMarshaller_LockPayload() {
|
|
|
|
AESKey := make([]byte, 32)
|
|
|
|
_, err := rand.Read(AESKey)
|
|
|
|
pms.Require().NoError(err)
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
pm := NewMockPayloadMounter(AESKey)
|
2022-10-28 10:30:18 +00:00
|
|
|
|
|
|
|
err = pm.Mount()
|
|
|
|
pms.Require().NoError(err)
|
|
|
|
|
|
|
|
toSend := pm.ToSend()
|
|
|
|
pms.Len(toSend, 60)
|
|
|
|
|
|
|
|
toSend2 := pm.ToSend()
|
|
|
|
pms.Len(toSend2, 60)
|
|
|
|
|
|
|
|
pm.LockPayload()
|
|
|
|
|
|
|
|
toSend3 := pm.ToSend()
|
|
|
|
pms.Nil(toSend3)
|
|
|
|
}
|