2021-12-27 13:17:15 +01:00
package server
import (
2023-03-16 15:57:44 +01:00
"crypto/sha256"
2021-12-27 13:17:15 +01:00
"net"
"path/filepath"
"testing"
"time"
2023-03-13 15:14:18 +01:00
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
2023-03-20 11:44:12 +01:00
"github.com/netbirdio/netbird/util"
2021-12-27 13:17:15 +01:00
)
2022-11-07 12:10:56 +01:00
type accounts struct {
Accounts map [ string ] * Account
}
2023-03-01 12:11:32 +01:00
func TestStalePeerIndices ( t * testing . T ) {
storeDir := t . TempDir ( )
err := util . CopyFileContents ( "testdata/store.json" , filepath . Join ( storeDir , "store.json" ) )
if err != nil {
t . Fatal ( err )
}
2023-05-19 11:42:25 +02:00
store , err := NewFileStore ( storeDir , nil )
2023-03-01 12:11:32 +01:00
if err != nil {
return
}
account , err := store . GetAccount ( "bf1c8084-ba50-4ce7-9439-34653001fc3b" )
require . NoError ( t , err )
peerID := "some_peer"
peerKey := "some_peer_key"
account . Peers [ peerID ] = & Peer {
ID : peerID ,
Key : peerKey ,
}
err = store . SaveAccount ( account )
require . NoError ( t , err )
account . DeletePeer ( peerID )
err = store . SaveAccount ( account )
require . NoError ( t , err )
_ , err = store . GetAccountByPeerID ( peerID )
require . Error ( t , err , "expecting to get an error when found stale index" )
_ , err = store . GetAccountByPeerPubKey ( peerKey )
require . Error ( t , err , "expecting to get an error when found stale index" )
}
2021-12-27 13:17:15 +01:00
func TestNewStore ( t * testing . T ) {
store := newStore ( t )
if store . Accounts == nil || len ( store . Accounts ) != 0 {
t . Errorf ( "expected to create a new empty Accounts map when creating a new FileStore" )
}
2022-11-07 12:10:56 +01:00
if store . SetupKeyID2AccountID == nil || len ( store . SetupKeyID2AccountID ) != 0 {
t . Errorf ( "expected to create a new empty SetupKeyID2AccountID map when creating a new FileStore" )
2021-12-27 13:17:15 +01:00
}
2022-11-07 12:10:56 +01:00
if store . PeerKeyID2AccountID == nil || len ( store . PeerKeyID2AccountID ) != 0 {
t . Errorf ( "expected to create a new empty PeerKeyID2AccountID map when creating a new FileStore" )
2021-12-27 13:17:15 +01:00
}
2022-11-07 12:10:56 +01:00
if store . UserID2AccountID == nil || len ( store . UserID2AccountID ) != 0 {
t . Errorf ( "expected to create a new empty UserID2AccountID map when creating a new FileStore" )
2021-12-27 13:17:15 +01:00
}
2023-03-16 15:57:44 +01:00
if store . HashedPAT2TokenID == nil || len ( store . HashedPAT2TokenID ) != 0 {
t . Errorf ( "expected to create a new empty HashedPAT2TokenID map when creating a new FileStore" )
}
if store . TokenID2UserID == nil || len ( store . TokenID2UserID ) != 0 {
t . Errorf ( "expected to create a new empty TokenID2UserID map when creating a new FileStore" )
}
2021-12-27 13:17:15 +01:00
}
func TestSaveAccount ( t * testing . T ) {
store := newStore ( t )
2022-06-20 18:20:43 +02:00
account := newAccountWithId ( "account_id" , "testuser" , "" )
2021-12-27 13:17:15 +01:00
setupKey := GenerateDefaultSetupKey ( )
account . SetupKeys [ setupKey . Key ] = setupKey
account . Peers [ "testpeer" ] = & Peer {
Key : "peerkey" ,
SetupKey : "peerkeysetupkey" ,
IP : net . IP { 127 , 0 , 0 , 1 } ,
Meta : PeerSystemMeta { } ,
Name : "peer name" ,
2023-04-03 15:09:35 +02:00
Status : & PeerStatus { Connected : true , LastSeen : time . Now ( ) . UTC ( ) } ,
2021-12-27 13:17:15 +01:00
}
// SaveAccount should trigger persist
err := store . SaveAccount ( account )
if err != nil {
return
}
if store . Accounts [ account . Id ] == nil {
t . Errorf ( "expecting Account to be stored after SaveAccount()" )
}
2022-11-07 12:10:56 +01:00
if store . PeerKeyID2AccountID [ "peerkey" ] == "" {
t . Errorf ( "expecting PeerKeyID2AccountID index updated after SaveAccount()" )
2021-12-27 13:17:15 +01:00
}
2022-11-07 12:10:56 +01:00
if store . UserID2AccountID [ "testuser" ] == "" {
t . Errorf ( "expecting UserID2AccountID index updated after SaveAccount()" )
2021-12-27 13:17:15 +01:00
}
2022-11-07 12:10:56 +01:00
if store . SetupKeyID2AccountID [ setupKey . Key ] == "" {
t . Errorf ( "expecting SetupKeyID2AccountID index updated after SaveAccount()" )
2021-12-27 13:17:15 +01:00
}
}
func TestStore ( t * testing . T ) {
store := newStore ( t )
2022-06-20 18:20:43 +02:00
account := newAccountWithId ( "account_id" , "testuser" , "" )
2021-12-27 13:17:15 +01:00
account . Peers [ "testpeer" ] = & Peer {
Key : "peerkey" ,
SetupKey : "peerkeysetupkey" ,
IP : net . IP { 127 , 0 , 0 , 1 } ,
Meta : PeerSystemMeta { } ,
Name : "peer name" ,
2023-04-03 15:09:35 +02:00
Status : & PeerStatus { Connected : true , LastSeen : time . Now ( ) . UTC ( ) } ,
2021-12-27 13:17:15 +01:00
}
2023-03-15 06:42:40 +01:00
account . Groups [ "all" ] = & Group {
ID : "all" ,
Name : "all" ,
Peers : [ ] string { "testpeer" } ,
}
account . Rules [ "all" ] = & Rule {
ID : "all" ,
Name : "all" ,
Source : [ ] string { "all" } ,
Destination : [ ] string { "all" } ,
Flow : TrafficFlowBidirect ,
}
account . Policies = append ( account . Policies , & Policy {
ID : "all" ,
Name : "all" ,
Enabled : true ,
Rules : [ ] * PolicyRule { account . Rules [ "all" ] . ToPolicyRule ( ) } ,
} )
account . Policies = append ( account . Policies , & Policy {
ID : "dmz" ,
Name : "dmz" ,
Enabled : true ,
Rules : [ ] * PolicyRule {
{
ID : "dmz" ,
Name : "dmz" ,
Enabled : true ,
Sources : [ ] string { "all" } ,
Destinations : [ ] string { "all" } ,
} ,
} ,
} )
2021-12-27 13:17:15 +01:00
// SaveAccount should trigger persist
err := store . SaveAccount ( account )
if err != nil {
return
}
2023-05-19 11:42:25 +02:00
restored , err := NewFileStore ( store . storeFile , nil )
2021-12-27 13:17:15 +01:00
if err != nil {
return
}
restoredAccount := restored . Accounts [ account . Id ]
if restoredAccount == nil {
t . Errorf ( "failed to restore a FileStore file - missing Account %s" , account . Id )
2023-03-15 06:42:40 +01:00
return
2021-12-27 13:17:15 +01:00
}
2023-03-15 06:42:40 +01:00
if restoredAccount . Peers [ "testpeer" ] == nil {
2021-12-27 13:17:15 +01:00
t . Errorf ( "failed to restore a FileStore file - missing Peer testpeer" )
}
2023-03-15 06:42:40 +01:00
if restoredAccount . CreatedBy != "testuser" {
2021-12-27 13:17:15 +01:00
t . Errorf ( "failed to restore a FileStore file - missing Account CreatedBy" )
}
2023-03-15 06:42:40 +01:00
if restoredAccount . Users [ "testuser" ] == nil {
2021-12-27 13:17:15 +01:00
t . Errorf ( "failed to restore a FileStore file - missing User testuser" )
}
2023-03-15 06:42:40 +01:00
if restoredAccount . Network == nil {
2021-12-27 13:17:15 +01:00
t . Errorf ( "failed to restore a FileStore file - missing Network" )
}
2023-03-15 06:42:40 +01:00
if restoredAccount . Groups [ "all" ] == nil {
t . Errorf ( "failed to restore a FileStore file - missing Group all" )
}
if restoredAccount . Rules [ "all" ] == nil {
t . Errorf ( "failed to restore a FileStore file - missing Rule all" )
return
}
if restoredAccount . Rules [ "dmz" ] == nil {
t . Errorf ( "failed to restore a FileStore file - missing Rule dmz" )
return
}
assert . Equal ( t , account . Rules [ "all" ] , restoredAccount . Rules [ "all" ] , "failed to restore a FileStore file - missing Rule all" )
assert . Equal ( t , account . Rules [ "dmz" ] , restoredAccount . Rules [ "dmz" ] , "failed to restore a FileStore file - missing Rule dmz" )
if len ( restoredAccount . Policies ) != 2 {
t . Errorf ( "failed to restore a FileStore file - missing Policies" )
return
}
assert . Equal ( t , account . Policies [ 0 ] , restoredAccount . Policies [ 0 ] , "failed to restore a FileStore file - missing Policy all" )
assert . Equal ( t , account . Policies [ 1 ] , restoredAccount . Policies [ 1 ] , "failed to restore a FileStore file - missing Policy dmz" )
2021-12-27 13:17:15 +01:00
}
func TestRestore ( t * testing . T ) {
storeDir := t . TempDir ( )
err := util . CopyFileContents ( "testdata/store.json" , filepath . Join ( storeDir , "store.json" ) )
if err != nil {
t . Fatal ( err )
}
2023-05-19 11:42:25 +02:00
store , err := NewFileStore ( storeDir , nil )
2021-12-27 13:17:15 +01:00
if err != nil {
return
}
account := store . Accounts [ "bf1c8084-ba50-4ce7-9439-34653001fc3b" ]
2022-03-01 15:22:18 +01:00
require . NotNil ( t , account , "failed to restore a FileStore file - missing account bf1c8084-ba50-4ce7-9439-34653001fc3b" )
2021-12-27 13:17:15 +01:00
2022-03-01 15:22:18 +01:00
require . NotNil ( t , account . Users [ "edafee4e-63fb-11ec-90d6-0242ac120003" ] , "failed to restore a FileStore file - missing Account User edafee4e-63fb-11ec-90d6-0242ac120003" )
2021-12-27 13:17:15 +01:00
2022-03-01 15:22:18 +01:00
require . NotNil ( t , account . Users [ "f4f6d672-63fb-11ec-90d6-0242ac120003" ] , "failed to restore a FileStore file - missing Account User f4f6d672-63fb-11ec-90d6-0242ac120003" )
2021-12-27 13:17:15 +01:00
2022-03-01 15:22:18 +01:00
require . NotNil ( t , account . Network , "failed to restore a FileStore file - missing Account Network" )
require . NotNil ( t , account . SetupKeys [ "A2C8E62B-38F5-4553-B31E-DD66C696CEBB" ] , "failed to restore a FileStore file - missing Account SetupKey A2C8E62B-38F5-4553-B31E-DD66C696CEBB" )
2023-03-20 16:14:55 +01:00
require . NotNil ( t , account . Users [ "f4f6d672-63fb-11ec-90d6-0242ac120003" ] . PATs [ "9dj38s35-63fb-11ec-90d6-0242ac120003" ] , "failed to restore a FileStore wrong PATs length" )
2023-03-16 15:57:44 +01:00
2022-11-07 12:10:56 +01:00
require . Len ( t , store . UserID2AccountID , 2 , "failed to restore a FileStore wrong UserID2AccountID mapping length" )
2022-03-01 15:22:18 +01:00
2022-11-07 12:10:56 +01:00
require . Len ( t , store . SetupKeyID2AccountID , 1 , "failed to restore a FileStore wrong SetupKeyID2AccountID mapping length" )
2022-03-01 15:22:18 +01:00
2022-11-07 12:10:56 +01:00
require . Len ( t , store . PrivateDomain2AccountID , 1 , "failed to restore a FileStore wrong PrivateDomain2AccountID mapping length" )
2023-03-16 15:57:44 +01:00
require . Len ( t , store . HashedPAT2TokenID , 1 , "failed to restore a FileStore wrong HashedPAT2TokenID mapping length" )
require . Len ( t , store . TokenID2UserID , 1 , "failed to restore a FileStore wrong TokenID2UserID mapping length" )
2022-03-01 15:22:18 +01:00
}
2021-12-27 13:17:15 +01:00
2023-06-27 16:51:05 +02:00
// TODO: outdated, delete this
2023-03-13 15:14:18 +01:00
func TestRestorePolicies_Migration ( t * testing . T ) {
storeDir := t . TempDir ( )
err := util . CopyFileContents ( "testdata/store_policy_migrate.json" , filepath . Join ( storeDir , "store.json" ) )
if err != nil {
t . Fatal ( err )
}
2023-05-19 11:42:25 +02:00
store , err := NewFileStore ( storeDir , nil )
2023-03-13 15:14:18 +01:00
if err != nil {
return
}
account := store . Accounts [ "bf1c8084-ba50-4ce7-9439-34653001fc3b" ]
require . Len ( t , account . Groups , 1 , "failed to restore a FileStore file - missing Account Groups" )
2023-03-15 06:42:40 +01:00
require . Len ( t , account . Rules , 1 , "failed to restore a FileStore file - missing Account Rules" )
2023-03-13 15:14:18 +01:00
require . Len ( t , account . Policies , 1 , "failed to restore a FileStore file - missing Account Policies" )
policy := account . Policies [ 0 ]
require . Equal ( t , policy . Name , "Default" , "failed to restore a FileStore file - missing Account Policies Name" )
require . Equal ( t , policy . Description ,
"This is a default rule that allows connections between all the resources" ,
"failed to restore a FileStore file - missing Account Policies Description" )
require . NoError ( t , err , "failed to upldate query" )
require . Len ( t , policy . Rules , 1 , "failed to restore a FileStore file - missing Account Policy Rules" )
require . Equal ( t , policy . Rules [ 0 ] . Action , PolicyTrafficActionAccept , "failed to restore a FileStore file - missing Account Policies Action" )
require . Equal ( t , policy . Rules [ 0 ] . Destinations ,
[ ] string { "cfefqs706sqkneg59g3g" } ,
"failed to restore a FileStore file - missing Account Policies Destinations" )
require . Equal ( t , policy . Rules [ 0 ] . Sources ,
[ ] string { "cfefqs706sqkneg59g3g" } ,
"failed to restore a FileStore file - missing Account Policies Sources" )
}
2023-06-27 16:51:05 +02:00
func TestRestoreGroups_Migration ( t * testing . T ) {
storeDir := t . TempDir ( )
err := util . CopyFileContents ( "testdata/store.json" , filepath . Join ( storeDir , "store.json" ) )
if err != nil {
t . Fatal ( err )
}
store , err := NewFileStore ( storeDir , nil )
if err != nil {
return
}
// create default group
account := store . Accounts [ "bf1c8084-ba50-4ce7-9439-34653001fc3b" ]
account . Groups = map [ string ] * Group {
"cfefqs706sqkneg59g3g" : {
ID : "cfefqs706sqkneg59g3g" ,
Name : "All" ,
} ,
}
err = store . SaveAccount ( account )
require . NoError ( t , err , "failed to save account" )
// restore account with default group with empty Issue field
if store , err = NewFileStore ( storeDir , nil ) ; err != nil {
return
}
account = store . Accounts [ "bf1c8084-ba50-4ce7-9439-34653001fc3b" ]
require . Contains ( t , account . Groups , "cfefqs706sqkneg59g3g" , "failed to restore a FileStore file - missing Account Groups" )
require . Equal ( t , GroupIssuedAPI , account . Groups [ "cfefqs706sqkneg59g3g" ] . Issued , "default group should has API issued mark" )
}
2022-03-01 15:22:18 +01:00
func TestGetAccountByPrivateDomain ( t * testing . T ) {
storeDir := t . TempDir ( )
err := util . CopyFileContents ( "testdata/store.json" , filepath . Join ( storeDir , "store.json" ) )
if err != nil {
t . Fatal ( err )
2021-12-27 13:17:15 +01:00
}
2023-05-19 11:42:25 +02:00
store , err := NewFileStore ( storeDir , nil )
2022-03-01 15:22:18 +01:00
if err != nil {
return
2021-12-27 13:17:15 +01:00
}
2022-03-01 15:22:18 +01:00
existingDomain := "test.com"
account , err := store . GetAccountByPrivateDomain ( existingDomain )
require . NoError ( t , err , "should found account" )
require . Equal ( t , existingDomain , account . Domain , "domains should match" )
_ , err = store . GetAccountByPrivateDomain ( "missing-domain.com" )
require . Error ( t , err , "should return error on domain lookup" )
2021-12-27 13:17:15 +01:00
}
2022-11-07 12:10:56 +01:00
func TestFileStore_GetAccount ( t * testing . T ) {
storeDir := t . TempDir ( )
storeFile := filepath . Join ( storeDir , "store.json" )
err := util . CopyFileContents ( "testdata/store.json" , storeFile )
if err != nil {
t . Fatal ( err )
}
accounts := & accounts { }
_ , err = util . ReadJson ( storeFile , accounts )
if err != nil {
t . Fatal ( err )
}
2023-05-19 11:42:25 +02:00
store , err := NewFileStore ( storeDir , nil )
2022-11-07 12:10:56 +01:00
if err != nil {
t . Fatal ( err )
}
expected := accounts . Accounts [ "bf1c8084-ba50-4ce7-9439-34653001fc3b" ]
if expected == nil {
t . Fatalf ( "expected account doesn't exist" )
}
account , err := store . GetAccount ( expected . Id )
if err != nil {
t . Fatal ( err )
}
assert . Equal ( t , expected . IsDomainPrimaryAccount , account . IsDomainPrimaryAccount )
assert . Equal ( t , expected . DomainCategory , account . DomainCategory )
assert . Equal ( t , expected . Domain , account . Domain )
assert . Equal ( t , expected . CreatedBy , account . CreatedBy )
2023-10-12 15:42:36 +02:00
assert . Equal ( t , expected . Network . Identifier , account . Network . Identifier )
2022-11-07 12:10:56 +01:00
assert . Len ( t , account . Peers , len ( expected . Peers ) )
assert . Len ( t , account . Users , len ( expected . Users ) )
assert . Len ( t , account . SetupKeys , len ( expected . SetupKeys ) )
assert . Len ( t , account . Rules , len ( expected . Rules ) )
assert . Len ( t , account . Routes , len ( expected . Routes ) )
assert . Len ( t , account . NameServerGroups , len ( expected . NameServerGroups ) )
}
2023-03-16 15:57:44 +01:00
func TestFileStore_GetTokenIDByHashedToken ( t * testing . T ) {
storeDir := t . TempDir ( )
storeFile := filepath . Join ( storeDir , "store.json" )
err := util . CopyFileContents ( "testdata/store.json" , storeFile )
if err != nil {
t . Fatal ( err )
}
accounts := & accounts { }
_ , err = util . ReadJson ( storeFile , accounts )
if err != nil {
t . Fatal ( err )
}
2023-05-19 11:42:25 +02:00
store , err := NewFileStore ( storeDir , nil )
2023-03-16 15:57:44 +01:00
if err != nil {
t . Fatal ( err )
}
2023-03-20 16:14:55 +01:00
hashedToken := accounts . Accounts [ "bf1c8084-ba50-4ce7-9439-34653001fc3b" ] . Users [ "f4f6d672-63fb-11ec-90d6-0242ac120003" ] . PATs [ "9dj38s35-63fb-11ec-90d6-0242ac120003" ] . HashedToken
2023-03-16 15:57:44 +01:00
tokenID , err := store . GetTokenIDByHashedToken ( hashedToken )
2023-03-20 11:44:12 +01:00
if err != nil {
t . Fatal ( err )
}
2023-03-16 15:57:44 +01:00
2023-03-20 16:14:55 +01:00
expectedTokenID := accounts . Accounts [ "bf1c8084-ba50-4ce7-9439-34653001fc3b" ] . Users [ "f4f6d672-63fb-11ec-90d6-0242ac120003" ] . PATs [ "9dj38s35-63fb-11ec-90d6-0242ac120003" ] . ID
2023-03-16 15:57:44 +01:00
assert . Equal ( t , expectedTokenID , tokenID )
}
2023-03-20 16:14:55 +01:00
func TestFileStore_DeleteHashedPAT2TokenIDIndex ( t * testing . T ) {
store := newStore ( t )
store . HashedPAT2TokenID [ "someHashedToken" ] = "someTokenId"
2023-03-20 16:38:17 +01:00
err := store . DeleteHashedPAT2TokenIDIndex ( "someHashedToken" )
if err != nil {
t . Fatal ( err )
}
2023-03-20 16:14:55 +01:00
assert . Empty ( t , store . HashedPAT2TokenID [ "someHashedToken" ] )
}
func TestFileStore_DeleteTokenID2UserIDIndex ( t * testing . T ) {
store := newStore ( t )
store . TokenID2UserID [ "someTokenId" ] = "someUserId"
2023-03-20 16:38:17 +01:00
err := store . DeleteTokenID2UserIDIndex ( "someTokenId" )
if err != nil {
t . Fatal ( err )
}
2023-03-20 16:14:55 +01:00
assert . Empty ( t , store . TokenID2UserID [ "someTokenId" ] )
}
2023-03-16 15:57:44 +01:00
func TestFileStore_GetTokenIDByHashedToken_Failure ( t * testing . T ) {
storeDir := t . TempDir ( )
storeFile := filepath . Join ( storeDir , "store.json" )
err := util . CopyFileContents ( "testdata/store.json" , storeFile )
if err != nil {
t . Fatal ( err )
}
accounts := & accounts { }
_ , err = util . ReadJson ( storeFile , accounts )
if err != nil {
t . Fatal ( err )
}
2023-05-19 11:42:25 +02:00
store , err := NewFileStore ( storeDir , nil )
2023-03-16 15:57:44 +01:00
if err != nil {
t . Fatal ( err )
}
wrongToken := sha256 . Sum256 ( [ ] byte ( "someNotValidTokenThatFails1234" ) )
_ , err = store . GetTokenIDByHashedToken ( string ( wrongToken [ : ] ) )
assert . Error ( t , err , "GetTokenIDByHashedToken should throw error if token invalid" )
}
func TestFileStore_GetUserByTokenID ( t * testing . T ) {
storeDir := t . TempDir ( )
storeFile := filepath . Join ( storeDir , "store.json" )
err := util . CopyFileContents ( "testdata/store.json" , storeFile )
if err != nil {
t . Fatal ( err )
}
accounts := & accounts { }
_ , err = util . ReadJson ( storeFile , accounts )
if err != nil {
t . Fatal ( err )
}
2023-05-19 11:42:25 +02:00
store , err := NewFileStore ( storeDir , nil )
2023-03-16 15:57:44 +01:00
if err != nil {
t . Fatal ( err )
}
2023-03-20 16:14:55 +01:00
tokenID := accounts . Accounts [ "bf1c8084-ba50-4ce7-9439-34653001fc3b" ] . Users [ "f4f6d672-63fb-11ec-90d6-0242ac120003" ] . PATs [ "9dj38s35-63fb-11ec-90d6-0242ac120003" ] . ID
2023-03-20 11:44:12 +01:00
user , err := store . GetUserByTokenID ( tokenID )
2023-03-16 15:57:44 +01:00
if err != nil {
t . Fatal ( err )
}
assert . Equal ( t , "f4f6d672-63fb-11ec-90d6-0242ac120003" , user . Id )
}
func TestFileStore_GetUserByTokenID_Failure ( t * testing . T ) {
storeDir := t . TempDir ( )
storeFile := filepath . Join ( storeDir , "store.json" )
err := util . CopyFileContents ( "testdata/store.json" , storeFile )
if err != nil {
t . Fatal ( err )
}
accounts := & accounts { }
_ , err = util . ReadJson ( storeFile , accounts )
if err != nil {
t . Fatal ( err )
}
2023-05-19 11:42:25 +02:00
store , err := NewFileStore ( storeDir , nil )
2023-03-16 15:57:44 +01:00
if err != nil {
t . Fatal ( err )
}
wrongTokenID := "someNonExistingTokenID"
_ , err = store . GetUserByTokenID ( wrongTokenID )
assert . Error ( t , err , "GetUserByTokenID should throw error if tokenID invalid" )
}
2022-11-08 10:46:12 +01:00
func TestFileStore_SavePeerStatus ( t * testing . T ) {
storeDir := t . TempDir ( )
err := util . CopyFileContents ( "testdata/store.json" , filepath . Join ( storeDir , "store.json" ) )
if err != nil {
t . Fatal ( err )
}
2023-05-19 11:42:25 +02:00
store , err := NewFileStore ( storeDir , nil )
2022-11-08 10:46:12 +01:00
if err != nil {
return
}
account , err := store . getAccount ( "bf1c8084-ba50-4ce7-9439-34653001fc3b" )
if err != nil {
t . Fatal ( err )
}
// save status of non-existing peer
2023-04-03 15:09:35 +02:00
newStatus := PeerStatus { Connected : true , LastSeen : time . Now ( ) . UTC ( ) }
2022-11-08 10:46:12 +01:00
err = store . SavePeerStatus ( account . Id , "non-existing-peer" , newStatus )
assert . Error ( t , err )
// save new status of existing peer
account . Peers [ "testpeer" ] = & Peer {
Key : "peerkey" ,
2023-02-03 10:33:28 +01:00
ID : "testpeer" ,
2022-11-08 10:46:12 +01:00
SetupKey : "peerkeysetupkey" ,
IP : net . IP { 127 , 0 , 0 , 1 } ,
Meta : PeerSystemMeta { } ,
Name : "peer name" ,
2023-04-03 15:09:35 +02:00
Status : & PeerStatus { Connected : false , LastSeen : time . Now ( ) . UTC ( ) } ,
2022-11-08 10:46:12 +01:00
}
err = store . SaveAccount ( account )
if err != nil {
t . Fatal ( err )
}
err = store . SavePeerStatus ( account . Id , "testpeer" , newStatus )
if err != nil {
t . Fatal ( err )
}
account , err = store . getAccount ( account . Id )
if err != nil {
t . Fatal ( err )
}
actual := account . Peers [ "testpeer" ] . Status
assert . Equal ( t , newStatus , * actual )
}
2021-12-27 13:17:15 +01:00
func newStore ( t * testing . T ) * FileStore {
2023-05-19 11:42:25 +02:00
store , err := NewFileStore ( t . TempDir ( ) , nil )
2021-12-27 13:17:15 +01:00
if err != nil {
t . Errorf ( "failed creating a new store" )
}
return store
}