From 7671405d5bcb0cb17c4f99653e9111cbcac83ae6 Mon Sep 17 00:00:00 2001
From: "Richard T. Carback III" <rick.carback@gmail.com>
Date: Wed, 25 May 2022 17:14:34 +0000
Subject: [PATCH] Fix ekv memstore and messenger container initializations

---
 auth/state_test.go                      | 11 ++++++-----
 auth/store/confirmation_test.go         | 11 ++++++-----
 auth/store/previousNegotiations_test.go | 17 +++++++++--------
 auth/store/store_test.go                | 16 ++++++++--------
 backup/backup_test.go                   |  5 +++--
 backup/jsonStorage_test.go              |  5 +++--
 backup/keyStorage_test.go               |  9 +++++----
 cmix/check_test.go                      |  5 +++--
 cmix/cmixMessageBuffer_test.go          | 13 +++++++------
 cmix/critical_test.go                   |  7 ++++---
 cmix/utils_test.go                      |  8 +++++---
 11 files changed, 59 insertions(+), 48 deletions(-)

diff --git a/auth/state_test.go b/auth/state_test.go
index 2cb137bfd..211e3d654 100644
--- a/auth/state_test.go
+++ b/auth/state_test.go
@@ -8,6 +8,11 @@
 package auth
 
 import (
+	"io"
+	"math/rand"
+	"testing"
+	"time"
+
 	"github.com/cloudflare/circl/dh/sidh"
 	"gitlab.com/elixxir/client/auth/store"
 	"gitlab.com/elixxir/client/cmix"
@@ -29,10 +34,6 @@ import (
 	"gitlab.com/xx_network/crypto/large"
 	"gitlab.com/xx_network/primitives/id"
 	"gitlab.com/xx_network/primitives/id/ephemeral"
-	"io"
-	"math/rand"
-	"testing"
-	"time"
 )
 
 type mockEventManager struct{}
@@ -185,7 +186,7 @@ loop:
 }
 
 func makeTestStore(t *testing.T) (*store.Store, *versioned.KV, []*cyclic.Int) {
-	kv := versioned.NewKV(make(ekv.Memstore))
+	kv := versioned.NewKV(ekv.MakeMemstore())
 	grp := cyclic.NewGroup(large.NewInt(173), large.NewInt(0))
 	privKeys := make([]*cyclic.Int, 10)
 	for i := range privKeys {
diff --git a/auth/store/confirmation_test.go b/auth/store/confirmation_test.go
index a00f5e26f..2bc188cd4 100644
--- a/auth/store/confirmation_test.go
+++ b/auth/store/confirmation_test.go
@@ -8,6 +8,10 @@
 package store
 
 import (
+	"math/rand"
+	"reflect"
+	"testing"
+
 	"github.com/cloudflare/circl/dh/sidh"
 	"gitlab.com/elixxir/client/storage/utility"
 	"gitlab.com/elixxir/client/storage/versioned"
@@ -18,16 +22,13 @@ import (
 	"gitlab.com/elixxir/primitives/format"
 	"gitlab.com/xx_network/crypto/large"
 	"gitlab.com/xx_network/primitives/id"
-	"math/rand"
-	"reflect"
-	"testing"
 )
 
 // Tests that a confirmation for different partners and sentByFingerprints can be
 // saved and loaded from storage via Store.StoreConfirmation and
 // Store.LoadConfirmation.
 func TestStore_StoreConfirmation_LoadConfirmation(t *testing.T) {
-	s := &Store{kv: versioned.NewKV(make(ekv.Memstore))}
+	s := &Store{kv: versioned.NewKV(ekv.MakeMemstore())}
 	prng := rand.New(rand.NewSource(42))
 	grp := cyclic.NewGroup(large.NewInt(173), large.NewInt(2))
 
@@ -98,7 +99,7 @@ func TestStore_StoreConfirmation_LoadConfirmation(t *testing.T) {
 // Tests that Store.DeleteConfirmation deletes the correct confirmation from
 // storage and that it cannot be loaded from storage.
 func TestStore_deleteConfirmation(t *testing.T) {
-	s := &Store{kv: versioned.NewKV(make(ekv.Memstore))}
+	s := &Store{kv: versioned.NewKV(ekv.MakeMemstore())}
 	prng := rand.New(rand.NewSource(42))
 	grp := cyclic.NewGroup(large.NewInt(173), large.NewInt(2))
 
diff --git a/auth/store/previousNegotiations_test.go b/auth/store/previousNegotiations_test.go
index 2a19dc48a..2d8234a45 100644
--- a/auth/store/previousNegotiations_test.go
+++ b/auth/store/previousNegotiations_test.go
@@ -8,6 +8,10 @@
 package store
 
 import (
+	"math/rand"
+	"reflect"
+	"testing"
+
 	"github.com/cloudflare/circl/dh/sidh"
 	"gitlab.com/elixxir/client/storage/utility"
 	"gitlab.com/elixxir/client/storage/versioned"
@@ -19,9 +23,6 @@ import (
 	"gitlab.com/xx_network/crypto/csprng"
 	"gitlab.com/xx_network/crypto/large"
 	"gitlab.com/xx_network/primitives/id"
-	"math/rand"
-	"reflect"
-	"testing"
 )
 
 // Tests the four possible cases of Store.CheckIfNegotationIsNew:
@@ -36,7 +37,7 @@ import (
 //      Return newFingerprint = false, latest = true.
 func TestStore_AddIfNew(t *testing.T) {
 	s := &Store{
-		kv:                   versioned.NewKV(make(ekv.Memstore)),
+		kv:                   versioned.NewKV(ekv.MakeMemstore()),
 		previousNegotiations: make(map[id.ID]bool),
 	}
 	prng := rand.New(rand.NewSource(42))
@@ -161,7 +162,7 @@ func TestStore_AddIfNew(t *testing.T) {
 // previousNegotiations in storage and any confirmations in storage.
 func TestStore_deletePreviousNegotiationPartner(t *testing.T) {
 	s := &Store{
-		kv:                   versioned.NewKV(make(ekv.Memstore)),
+		kv:                   versioned.NewKV(ekv.MakeMemstore()),
 		previousNegotiations: make(map[id.ID]bool),
 	}
 	prng := rand.New(rand.NewSource(42))
@@ -257,7 +258,7 @@ func TestStore_deletePreviousNegotiationPartner(t *testing.T) {
 // via Store.savePreviousNegotiations andStore.newOrLoadPreviousNegotiations.
 func TestStore_savePreviousNegotiations_newOrLoadPreviousNegotiations(t *testing.T) {
 	s := &Store{
-		kv:                   versioned.NewKV(make(ekv.Memstore)),
+		kv:                   versioned.NewKV(ekv.MakeMemstore()),
 		previousNegotiations: make(map[id.ID]bool),
 	}
 	prng := rand.New(rand.NewSource(42))
@@ -291,7 +292,7 @@ func TestStore_savePreviousNegotiations_newOrLoadPreviousNegotiations(t *testing
 // they do not exist.
 func TestStore_newOrLoadPreviousNegotiations_noNegotiations(t *testing.T) {
 	s := &Store{
-		kv:                   versioned.NewKV(make(ekv.Memstore)),
+		kv:                   versioned.NewKV(ekv.MakeMemstore()),
 		previousNegotiations: make(map[id.ID]bool),
 	}
 	expected := make(map[id.ID]bool)
@@ -339,7 +340,7 @@ func Test_marshalPreviousNegotiations_unmarshalPreviousNegotiations(t *testing.T
 // loaded from storage via Store.saveNegotiationFingerprints and
 // Store.loadNegotiationFingerprints.
 func TestStore_saveNegotiationFingerprints_loadNegotiationFingerprints(t *testing.T) {
-	s := &Store{kv: versioned.NewKV(make(ekv.Memstore))}
+	s := &Store{kv: versioned.NewKV(ekv.MakeMemstore())}
 	rng := csprng.NewSystemRNG()
 	grp := cyclic.NewGroup(large.NewInt(173), large.NewInt(2))
 
diff --git a/auth/store/store_test.go b/auth/store/store_test.go
index e6b14e7e0..e63911858 100644
--- a/auth/store/store_test.go
+++ b/auth/store/store_test.go
@@ -9,6 +9,12 @@ package store
 
 import (
 	"bytes"
+	"io"
+	"math/rand"
+	"reflect"
+	"sort"
+	"testing"
+
 	"github.com/cloudflare/circl/dh/sidh"
 	"gitlab.com/elixxir/client/cmix/rounds"
 	sidhinterface "gitlab.com/elixxir/client/interfaces/sidh"
@@ -26,12 +32,6 @@ import (
 	"gitlab.com/xx_network/crypto/large"
 	"gitlab.com/xx_network/primitives/id"
 	"gitlab.com/xx_network/primitives/netTime"
-	"io"
-	"math/rand"
-	"reflect"
-	"sort"
-	"testing"
-	"time"
 )
 
 type mockSentRequestHandler struct{}
@@ -41,7 +41,7 @@ func (msrh *mockSentRequestHandler) Delete(sr *SentRequest) {}
 
 // Happy path.
 func TestNewOrLoadStore(t *testing.T) {
-	kv := versioned.NewKV(make(ekv.Memstore))
+	kv := versioned.NewKV(ekv.MakeMemstore())
 	grp := cyclic.NewGroup(large.NewInt(173), large.NewInt(2))
 
 	_, err := NewOrLoadStore(kv, grp, &mockSentRequestHandler{})
@@ -869,7 +869,7 @@ func TestStore_DeleteAllRequests(t *testing.T) {
 }
 
 func makeTestStore(t *testing.T) (*Store, *versioned.KV) {
-	kv := versioned.NewKV(make(ekv.Memstore))
+	kv := versioned.NewKV(ekv.MakeMemstore())
 	grp := cyclic.NewGroup(large.NewInt(173), large.NewInt(0))
 
 	store, err := NewOrLoadStore(kv, grp, &mockSentRequestHandler{})
diff --git a/backup/backup_test.go b/backup/backup_test.go
index 0c93f046b..eeda3711c 100644
--- a/backup/backup_test.go
+++ b/backup/backup_test.go
@@ -439,13 +439,14 @@ func newTestBackup(password string, cb UpdateBackupFn, t *testing.T) *Backup {
 // Tests that Backup.InitializeBackup returns a new Backup with a copy of the
 // key and the callback.
 func Benchmark_InitializeBackup(t *testing.B) {
-	kv := versioned.NewKV(make(ekv.Memstore))
+	kv := versioned.NewKV(ekv.MakeMemstore())
 	rngGen := fastRNG.NewStreamGenerator(1000, 10, csprng.NewSystemRNG)
 	cbChan := make(chan []byte, 2)
 	cb := func(encryptedBackup []byte) { cbChan <- encryptedBackup }
 	expectedPassword := "MySuperSecurePassword"
 	for i := 0; i < t.N; i++ {
-		_, err := InitializeBackup(expectedPassword, cb, &Container{},
+		_, err := InitializeBackup(expectedPassword, cb,
+			&messenger.Container{},
 			newMockE2e(t),
 			newMockSession(t), newMockUserDiscovery(), kv, rngGen)
 		if err != nil {
diff --git a/backup/jsonStorage_test.go b/backup/jsonStorage_test.go
index d0207d910..352f6d2d6 100644
--- a/backup/jsonStorage_test.go
+++ b/backup/jsonStorage_test.go
@@ -1,13 +1,14 @@
 package backup
 
 import (
+	"testing"
+
 	"gitlab.com/elixxir/client/storage/versioned"
 	"gitlab.com/elixxir/ekv"
-	"testing"
 )
 
 func Test_storeJson_loadJson(t *testing.T) {
-	kv := versioned.NewKV(make(ekv.Memstore))
+	kv := versioned.NewKV(ekv.MakeMemstore())
 	json := "{'data': {'one': 1}}"
 
 	err := storeJson(json, kv)
diff --git a/backup/keyStorage_test.go b/backup/keyStorage_test.go
index 939ca2c63..95e7a0891 100644
--- a/backup/keyStorage_test.go
+++ b/backup/keyStorage_test.go
@@ -8,16 +8,17 @@
 package backup
 
 import (
+	"testing"
+
 	"gitlab.com/elixxir/client/storage/versioned"
 	"gitlab.com/elixxir/ekv"
 	"gitlab.com/xx_network/primitives/netTime"
-	"testing"
 )
 
 // Tests that savePassword saves the password to storage by loading it and
 // comparing it to the original.
 func Test_savePassword(t *testing.T) {
-	kv := versioned.NewKV(make(ekv.Memstore))
+	kv := versioned.NewKV(ekv.MakeMemstore())
 	expectedPassword := "MySuperSecurePassword"
 
 	// Save the password
@@ -42,7 +43,7 @@ func Test_savePassword(t *testing.T) {
 // Tests that loadPassword restores the original password saved to stage and
 // compares it to the original.
 func Test_loadPassword(t *testing.T) {
-	kv := versioned.NewKV(make(ekv.Memstore))
+	kv := versioned.NewKV(ekv.MakeMemstore())
 	expectedPassword := "MySuperSecurePassword"
 
 	// Save the password
@@ -71,7 +72,7 @@ func Test_loadPassword(t *testing.T) {
 // Tests that deletePassword deletes the password from storage by trying to recover a
 // deleted password.
 func Test_deletePassword(t *testing.T) {
-	kv := versioned.NewKV(make(ekv.Memstore))
+	kv := versioned.NewKV(ekv.MakeMemstore())
 	expectedPassword := "MySuperSecurePassword"
 
 	// Save the password
diff --git a/cmix/check_test.go b/cmix/check_test.go
index 515b468cb..5ab2aaf94 100644
--- a/cmix/check_test.go
+++ b/cmix/check_test.go
@@ -1,13 +1,14 @@
 package cmix
 
 import (
+	"testing"
+
 	bloom "gitlab.com/elixxir/bloomfilter"
 	"gitlab.com/elixxir/client/cmix/identity/receptionID/store"
 	"gitlab.com/elixxir/client/storage/versioned"
 	"gitlab.com/elixxir/comms/mixmessages"
 	"gitlab.com/elixxir/ekv"
 	"gitlab.com/xx_network/primitives/id"
-	"testing"
 )
 
 // TestChecker tests the basic operation for Checker
@@ -34,7 +35,7 @@ func TestChecker(t *testing.T) {
 	}
 
 	// Init a kv and a checked rounds structure
-	kv := versioned.NewKV(ekv.Memstore{})
+	kv := versioned.NewKV(ekv.MakeMemstore())
 	cr, err := store.NewCheckedRounds(5, kv)
 	if err != nil {
 		t.Errorf("Failed to create checked rounds store: %+v", err)
diff --git a/cmix/cmixMessageBuffer_test.go b/cmix/cmixMessageBuffer_test.go
index 162a69bac..1a9189a68 100644
--- a/cmix/cmixMessageBuffer_test.go
+++ b/cmix/cmixMessageBuffer_test.go
@@ -9,22 +9,23 @@ package cmix
 
 import (
 	"bytes"
+	"math/rand"
+	"reflect"
+	"testing"
+
 	"gitlab.com/elixxir/client/storage/utility"
 	"gitlab.com/elixxir/client/storage/versioned"
 	"gitlab.com/elixxir/ekv"
 	"gitlab.com/elixxir/primitives/format"
 	"gitlab.com/xx_network/primitives/id"
 	"gitlab.com/xx_network/primitives/netTime"
-	"math/rand"
-	"reflect"
-	"testing"
 )
 
 // Test happy path of cmixMessageHandler.SaveMessage.
 func Test_cmixMessageHandler_SaveMessage(t *testing.T) {
 	// Set up test values
 	cmh := &cmixMessageHandler{}
-	kv := versioned.NewKV(make(ekv.Memstore))
+	kv := versioned.NewKV(ekv.MakeMemstore())
 	testMsgs, ids, _ := makeTestCmixMessages(10)
 
 	for i := range testMsgs {
@@ -59,7 +60,7 @@ func Test_cmixMessageHandler_SaveMessage(t *testing.T) {
 func Test_cmixMessageHandler_LoadMessage(t *testing.T) {
 	// Set up test values
 	cmh := &cmixMessageHandler{}
-	kv := versioned.NewKV(make(ekv.Memstore))
+	kv := versioned.NewKV(ekv.MakeMemstore())
 	testMsgs, ids, _ := makeTestCmixMessages(10)
 
 	for i := range testMsgs {
@@ -94,7 +95,7 @@ func Test_cmixMessageBuffer_Smoke(t *testing.T) {
 	testMsgs, ids, _ := makeTestCmixMessages(2)
 
 	// Create new buffer
-	kv := versioned.NewKV(make(ekv.Memstore))
+	kv := versioned.NewKV(ekv.MakeMemstore())
 	cmb, err := NewOrLoadCmixMessageBuffer(kv, "testKey")
 	if err != nil {
 		t.Errorf("Failed to make new cmixMessageHandler: %+v", err)
diff --git a/cmix/critical_test.go b/cmix/critical_test.go
index 5f9973858..4126c5771 100644
--- a/cmix/critical_test.go
+++ b/cmix/critical_test.go
@@ -1,19 +1,20 @@
 package cmix
 
 import (
+	"testing"
+	"time"
+
 	"gitlab.com/elixxir/client/stoppable"
 	"gitlab.com/elixxir/client/storage/versioned"
 	"gitlab.com/elixxir/ekv"
 	"gitlab.com/elixxir/primitives/format"
 	"gitlab.com/xx_network/primitives/id"
-	"testing"
-	"time"
 )
 
 // TestCritical tests the basic functions of the critical messaging system
 func TestCritical(t *testing.T) {
 	// Init mock structures & start thread
-	kv := versioned.NewKV(ekv.Memstore{})
+	kv := versioned.NewKV(ekv.MakeMemstore())
 	mr := &mockRoundEventRegistrar{
 		statusReturn: true,
 	}
diff --git a/cmix/utils_test.go b/cmix/utils_test.go
index 6fffb13db..533fe100b 100644
--- a/cmix/utils_test.go
+++ b/cmix/utils_test.go
@@ -7,6 +7,9 @@
 package cmix
 
 import (
+	"testing"
+	"time"
+
 	"github.com/pkg/errors"
 	"gitlab.com/elixxir/client/cmix/gateway"
 	"gitlab.com/elixxir/client/cmix/nodes"
@@ -30,8 +33,7 @@ import (
 	"gitlab.com/xx_network/primitives/id"
 	"gitlab.com/xx_network/primitives/id/ephemeral"
 	"gitlab.com/xx_network/primitives/ndf"
-	"testing"
-	"time"
+	"gitlab.com/xx_network/primitives/netTime"
 )
 
 // mockManagerComms
@@ -210,7 +212,7 @@ func mockFailCriticalSender(msg format.Message, recipient *id.ID,
 }
 
 func newTestClient(t *testing.T) (*client, error) {
-	kv := versioned.NewKV(ekv.Memstore{})
+	kv := versioned.NewKV(ekv.MakeMemstore())
 	myID := id.NewIdFromString("zezima", id.User, t)
 	comms, err := commClient.NewClientComms(myID, nil, nil, nil)
 	if err != nil {
-- 
GitLab