package server import ( "fmt" nbdns "github.com/netbirdio/netbird/dns" "github.com/netbirdio/netbird/management/server/activity" "github.com/netbirdio/netbird/route" "net" "reflect" "sync" "testing" "time" "github.com/netbirdio/netbird/management/server/jwtclaims" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "golang.zx2c4.com/wireguard/wgctrl/wgtypes" ) func verifyCanAddPeerToAccount(t *testing.T, manager AccountManager, account *Account, userID string) { peer := &Peer{ Key: "BhRPtynAAYRDy08+q4HTMsos8fs4plTP4NOSh7C1ry8=", Name: "test-host@netbird.io", Meta: PeerSystemMeta{ Hostname: "test-host@netbird.io", GoOS: "linux", Kernel: "Linux", Core: "21.04", Platform: "x86_64", OS: "Ubuntu", WtVersion: "development", UIVersion: "development", }, } var setupKey string for _, key := range account.SetupKeys { setupKey = key.Key } _, err := manager.AddPeer(setupKey, userID, peer) if err != nil { t.Error("expected to add new peer successfully after creating new account, but failed", err) } } func verifyNewAccountHasDefaultFields(t *testing.T, account *Account, createdBy string, domain string, expectedUsers []string) { if len(account.Peers) != 0 { t.Errorf("expected account to have len(Peers) = %v, got %v", 0, len(account.Peers)) } if len(account.SetupKeys) != 2 { t.Errorf("expected account to have len(SetupKeys) = %v, got %v", 2, len(account.SetupKeys)) } ipNet := net.IPNet{IP: net.ParseIP("100.64.0.0"), Mask: net.IPMask{255, 192, 0, 0}} if !ipNet.Contains(account.Network.Net.IP) { t.Errorf("expected account's Network to be a subnet of %v, got %v", ipNet.String(), account.Network.Net.String()) } g, err := account.GetGroupAll() if err != nil { t.Fatal(err) } if g.Name != "All" { t.Errorf("expecting account to have group ALL added by default") } if len(account.Users) != len(expectedUsers) { t.Errorf("expecting account to have %d users, got %d", len(expectedUsers), len(account.Users)) } if account.Users[createdBy] == nil { t.Errorf("expecting account to have createdBy user %s in a user map ", createdBy) } for _, expectedUserID := range expectedUsers { if account.Users[expectedUserID] == nil { t.Errorf("expecting account to have a user %s in a user map", expectedUserID) } } if account.CreatedBy != createdBy { t.Errorf("expecting newly created account to be created by user %s, got %s", createdBy, account.CreatedBy) } if account.Domain != domain { t.Errorf("expecting newly created account to have domain %s, got %s", domain, account.Domain) } if len(account.Rules) != 1 { t.Errorf("expecting newly created account to have 1 rule, got %d", len(account.Rules)) } for _, rule := range account.Rules { if rule.Name != "Default" { t.Errorf("expecting newly created account to have Default rule, got %s", rule.Name) } } } func TestNewAccount(t *testing.T) { domain := "netbird.io" userId := "account_creator" accountID := "account_id" account := newAccountWithId(accountID, userId, domain) verifyNewAccountHasDefaultFields(t, account, userId, domain, []string{userId}) } func TestAccountManager_GetOrCreateAccountByUser(t *testing.T) { manager, err := createManager(t) if err != nil { t.Fatal(err) return } account, err := manager.GetOrCreateAccountByUser(userID, "") if err != nil { t.Fatal(err) } if account == nil { t.Fatalf("expected to create an account for a user %s", userID) return } account, err = manager.Store.GetAccountByUser(userID) if err != nil { t.Errorf("expected to get existing account after creation, no account was found for a user %s", userID) return } if account != nil && account.Users[userID] == nil { t.Fatalf("expected to create an account for a user %s but no user was found after creation udner the account %s", userID, account.Id) return } // check the corresponding events that should have been generated ev := getEvent(t, account.Id, manager, activity.AccountCreated) assert.NotNil(t, ev) assert.Equal(t, account.Id, ev.AccountID) assert.Equal(t, userID, ev.InitiatorID) assert.Equal(t, account.Id, ev.TargetID) } func TestDefaultAccountManager_GetAccountFromToken(t *testing.T) { type initUserParams jwtclaims.AuthorizationClaims type test struct { name string inputClaims jwtclaims.AuthorizationClaims inputInitUserParams initUserParams inputUpdateAttrs bool inputUpdateClaimAccount bool testingFunc require.ComparisonAssertionFunc expectedMSG string expectedUserRole UserRole expectedDomainCategory string expectedDomain string expectedPrimaryDomainStatus bool expectedCreatedBy string expectedUsers []string } var ( publicDomain = "public.com" privateDomain = "private.com" unknownDomain = "unknown.com" ) defaultInitAccount := initUserParams{ Domain: publicDomain, UserId: "defaultUser", } testCase1 := test{ name: "New User With Public Domain", inputClaims: jwtclaims.AuthorizationClaims{ Domain: publicDomain, UserId: "pub-domain-user", DomainCategory: PublicCategory, }, inputInitUserParams: defaultInitAccount, testingFunc: require.NotEqual, expectedMSG: "account IDs shouldn't match", expectedUserRole: UserRoleAdmin, expectedDomainCategory: "", expectedDomain: publicDomain, expectedPrimaryDomainStatus: false, expectedCreatedBy: "pub-domain-user", expectedUsers: []string{"pub-domain-user"}, } initUnknown := defaultInitAccount initUnknown.DomainCategory = UnknownCategory initUnknown.Domain = unknownDomain testCase2 := test{ name: "New User With Unknown Domain", inputClaims: jwtclaims.AuthorizationClaims{ Domain: unknownDomain, UserId: "unknown-domain-user", DomainCategory: UnknownCategory, }, inputInitUserParams: initUnknown, testingFunc: require.NotEqual, expectedMSG: "account IDs shouldn't match", expectedUserRole: UserRoleAdmin, expectedDomain: unknownDomain, expectedDomainCategory: "", expectedPrimaryDomainStatus: false, expectedCreatedBy: "unknown-domain-user", expectedUsers: []string{"unknown-domain-user"}, } testCase3 := test{ name: "New User With Private Domain", inputClaims: jwtclaims.AuthorizationClaims{ Domain: privateDomain, UserId: "pvt-domain-user", DomainCategory: PrivateCategory, }, inputInitUserParams: defaultInitAccount, testingFunc: require.NotEqual, expectedMSG: "account IDs shouldn't match", expectedUserRole: UserRoleAdmin, expectedDomain: privateDomain, expectedDomainCategory: PrivateCategory, expectedPrimaryDomainStatus: true, expectedCreatedBy: "pvt-domain-user", expectedUsers: []string{"pvt-domain-user"}, } privateInitAccount := defaultInitAccount privateInitAccount.Domain = privateDomain privateInitAccount.DomainCategory = PrivateCategory testCase4 := test{ name: "New Regular User With Existing Private Domain", inputClaims: jwtclaims.AuthorizationClaims{ Domain: privateDomain, UserId: "new-pvt-domain-user", DomainCategory: PrivateCategory, }, inputUpdateAttrs: true, inputInitUserParams: privateInitAccount, testingFunc: require.Equal, expectedMSG: "account IDs should match", expectedUserRole: UserRoleUser, expectedDomain: privateDomain, expectedDomainCategory: PrivateCategory, expectedPrimaryDomainStatus: true, expectedCreatedBy: defaultInitAccount.UserId, expectedUsers: []string{defaultInitAccount.UserId, "new-pvt-domain-user"}, } testCase5 := test{ name: "Existing User With Existing Reclassified Private Domain", inputClaims: jwtclaims.AuthorizationClaims{ Domain: defaultInitAccount.Domain, UserId: defaultInitAccount.UserId, DomainCategory: PrivateCategory, }, inputInitUserParams: defaultInitAccount, testingFunc: require.Equal, expectedMSG: "account IDs should match", expectedUserRole: UserRoleAdmin, expectedDomain: defaultInitAccount.Domain, expectedDomainCategory: PrivateCategory, expectedPrimaryDomainStatus: true, expectedCreatedBy: defaultInitAccount.UserId, expectedUsers: []string{defaultInitAccount.UserId}, } testCase6 := test{ name: "Existing Account Id With Existing Reclassified Private Domain", inputClaims: jwtclaims.AuthorizationClaims{ Domain: defaultInitAccount.Domain, UserId: defaultInitAccount.UserId, DomainCategory: PrivateCategory, }, inputUpdateClaimAccount: true, inputInitUserParams: defaultInitAccount, testingFunc: require.Equal, expectedMSG: "account IDs should match", expectedUserRole: UserRoleAdmin, expectedDomain: defaultInitAccount.Domain, expectedDomainCategory: PrivateCategory, expectedPrimaryDomainStatus: true, expectedCreatedBy: defaultInitAccount.UserId, expectedUsers: []string{defaultInitAccount.UserId}, } testCase7 := test{ name: "User With Private Category And Empty Domain", inputClaims: jwtclaims.AuthorizationClaims{ Domain: "", UserId: "pvt-domain-user", DomainCategory: PrivateCategory, }, inputInitUserParams: defaultInitAccount, testingFunc: require.NotEqual, expectedMSG: "account IDs shouldn't match", expectedUserRole: UserRoleAdmin, expectedDomain: "", expectedDomainCategory: "", expectedPrimaryDomainStatus: false, expectedCreatedBy: "pvt-domain-user", expectedUsers: []string{"pvt-domain-user"}, } for _, testCase := range []test{testCase1, testCase2, testCase3, testCase4, testCase5, testCase6, testCase7} { t.Run(testCase.name, func(t *testing.T) { manager, err := createManager(t) require.NoError(t, err, "unable to create account manager") initAccount, err := manager.GetAccountByUserOrAccountID(testCase.inputInitUserParams.UserId, testCase.inputInitUserParams.AccountId, testCase.inputInitUserParams.Domain) require.NoError(t, err, "create init user failed") if testCase.inputUpdateAttrs { err = manager.updateAccountDomainAttributes(initAccount, jwtclaims.AuthorizationClaims{UserId: testCase.inputInitUserParams.UserId, Domain: testCase.inputInitUserParams.Domain, DomainCategory: testCase.inputInitUserParams.DomainCategory}, true) require.NoError(t, err, "update init user failed") } if testCase.inputUpdateClaimAccount { testCase.inputClaims.AccountId = initAccount.Id } account, _, err := manager.GetAccountFromToken(testCase.inputClaims) require.NoError(t, err, "support function failed") verifyNewAccountHasDefaultFields(t, account, testCase.expectedCreatedBy, testCase.inputClaims.Domain, testCase.expectedUsers) verifyCanAddPeerToAccount(t, manager, account, testCase.expectedCreatedBy) testCase.testingFunc(t, initAccount.Id, account.Id, testCase.expectedMSG) require.EqualValues(t, testCase.expectedUserRole, account.Users[testCase.inputClaims.UserId].Role, "expected user role should match") require.EqualValues(t, testCase.expectedDomainCategory, account.DomainCategory, "expected account domain category should match") require.EqualValues(t, testCase.expectedPrimaryDomainStatus, account.IsDomainPrimaryAccount, "expected account primary status should match") require.EqualValues(t, testCase.expectedDomain, account.Domain, "expected account domain should match") }) } } func TestAccountManager_PrivateAccount(t *testing.T) { manager, err := createManager(t) if err != nil { t.Fatal(err) return } userId := "test_user" account, err := manager.GetOrCreateAccountByUser(userId, "") if err != nil { t.Fatal(err) } if account == nil { t.Fatalf("expected to create an account for a user %s", userId) } account, err = manager.Store.GetAccountByUser(userId) if err != nil { t.Errorf("expected to get existing account after creation, no account was found for a user %s", userId) } if account != nil && account.Users[userId] == nil { t.Fatalf("expected to create an account for a user %s but no user was found after creation udner the account %s", userId, account.Id) } } func TestAccountManager_SetOrUpdateDomain(t *testing.T) { manager, err := createManager(t) if err != nil { t.Fatal(err) return } userId := "test_user" domain := "hotmail.com" account, err := manager.GetOrCreateAccountByUser(userId, domain) if err != nil { t.Fatal(err) } if account == nil { t.Fatalf("expected to create an account for a user %s", userId) } if account.Domain != domain { t.Errorf("setting account domain failed, expected %s, got %s", domain, account.Domain) } domain = "gmail.com" account, err = manager.GetOrCreateAccountByUser(userId, domain) if err != nil { t.Fatalf("got the following error while retrieving existing acc: %v", err) } if account == nil { t.Fatalf("expected to get an account for a user %s", userId) } if account.Domain != domain { t.Errorf("updating domain. expected %s got %s", domain, account.Domain) } } func TestAccountManager_GetAccountByUserOrAccountId(t *testing.T) { manager, err := createManager(t) if err != nil { t.Fatal(err) return } userId := "test_user" account, err := manager.GetAccountByUserOrAccountID(userId, "", "") if err != nil { t.Fatal(err) } if account == nil { t.Fatalf("expected to create an account for a user %s", userId) } accountId := account.Id _, err = manager.GetAccountByUserOrAccountID("", accountId, "") if err != nil { t.Errorf("expected to get existing account after creation using userid, no account was found for a account %s", accountId) } _, err = manager.GetAccountByUserOrAccountID("", "", "") if err == nil { t.Errorf("expected an error when user and account IDs are empty") } } func createAccount(am *DefaultAccountManager, accountID, userID, domain string) (*Account, error) { account := newAccountWithId(accountID, userID, domain) err := am.Store.SaveAccount(account) if err != nil { return nil, err } return account, nil } func TestAccountManager_AccountExists(t *testing.T) { manager, err := createManager(t) if err != nil { t.Fatal(err) return } expectedId := "test_account" userId := "account_creator" _, err = createAccount(manager, expectedId, userId, "") if err != nil { t.Fatal(err) } exists, err := manager.AccountExists(expectedId) if err != nil { t.Fatal(err) } if !*exists { t.Errorf("expected account to exist after creation, got false") } } func TestAccountManager_GetAccount(t *testing.T) { manager, err := createManager(t) if err != nil { t.Fatal(err) return } expectedId := "test_account" userId := "account_creator" account, err := createAccount(manager, expectedId, userId, "") if err != nil { t.Fatal(err) } // AddAccount has been already tested so we can assume it is correct and compare results getAccount, err := manager.Store.GetAccount(account.Id) if err != nil { t.Fatal(err) return } if account.Id != getAccount.Id { t.Errorf("expected account.Id %s, got %s", account.Id, getAccount.Id) } for _, peer := range account.Peers { if _, ok := getAccount.Peers[peer.ID]; !ok { t.Errorf("expected account to have peer %s, not found", peer.ID) } } for _, key := range account.SetupKeys { if _, ok := getAccount.SetupKeys[key.Key]; !ok { t.Errorf("expected account to have setup key %s, not found", key.Key) } } } func TestAccountManager_AddPeer(t *testing.T) { manager, err := createManager(t) if err != nil { t.Fatal(err) return } account, err := createAccount(manager, "test_account", "account_creator", "netbird.cloud") if err != nil { t.Fatal(err) } serial := account.Network.CurrentSerial() // should be 0 var setupKey *SetupKey for _, key := range account.SetupKeys { setupKey = key } if setupKey == nil { t.Errorf("expecting account to have a default setup key") return } if account.Network.Serial != 0 { t.Errorf("expecting account network to have an initial Serial=0") return } key, err := wgtypes.GeneratePrivateKey() if err != nil { t.Fatal(err) return } expectedPeerKey := key.PublicKey().String() expectedSetupKey := setupKey.Key peer, err := manager.AddPeer(setupKey.Key, "", &Peer{ Key: expectedPeerKey, Meta: PeerSystemMeta{}, Name: expectedPeerKey, }) if err != nil { t.Errorf("expecting peer to be added, got failure %v", err) return } account, err = manager.Store.GetAccount(account.Id) if err != nil { t.Fatal(err) return } if peer.Key != expectedPeerKey { t.Errorf("expecting just added peer to have key = %s, got %s", expectedPeerKey, peer.Key) } if !account.Network.Net.Contains(peer.IP) { t.Errorf("expecting just added peer's IP %s to be in a network range %s", peer.IP.String(), account.Network.Net.String()) } if peer.SetupKey != expectedSetupKey { t.Errorf("expecting just added peer to have SetupKey = %s, got %s", expectedSetupKey, peer.SetupKey) } if account.Network.CurrentSerial() != 1 { t.Errorf("expecting Network Serial=%d to be incremented by 1 and be equal to %d when adding new peer to account", serial, account.Network.CurrentSerial()) } ev := getEvent(t, account.Id, manager, activity.PeerAddedWithSetupKey) assert.NotNil(t, ev) assert.Equal(t, account.Id, ev.AccountID) assert.Equal(t, peer.Name, ev.Meta["name"]) assert.Equal(t, peer.FQDN(account.Domain), ev.Meta["fqdn"]) assert.Equal(t, setupKey.Id, ev.InitiatorID) assert.Equal(t, peer.ID, ev.TargetID) assert.Equal(t, peer.IP.String(), fmt.Sprint(ev.Meta["ip"])) } func TestAccountManager_AddPeerWithUserID(t *testing.T) { manager, err := createManager(t) if err != nil { t.Fatal(err) return } account, err := manager.GetOrCreateAccountByUser(userID, "netbird.cloud") if err != nil { t.Fatal(err) } serial := account.Network.CurrentSerial() // should be 0 if account.Network.Serial != 0 { t.Errorf("expecting account network to have an initial Serial=0") return } key, err := wgtypes.GeneratePrivateKey() if err != nil { t.Fatal(err) return } expectedPeerKey := key.PublicKey().String() expectedUserID := userID peer, err := manager.AddPeer("", userID, &Peer{ Key: expectedPeerKey, Meta: PeerSystemMeta{}, Name: expectedPeerKey, }) if err != nil { t.Errorf("expecting peer to be added, got failure %v, account users: %v", err, account.CreatedBy) return } account, err = manager.Store.GetAccount(account.Id) if err != nil { t.Fatal(err) return } if peer.Key != expectedPeerKey { t.Errorf("expecting just added peer to have key = %s, got %s", expectedPeerKey, peer.Key) } if !account.Network.Net.Contains(peer.IP) { t.Errorf("expecting just added peer's IP %s to be in a network range %s", peer.IP.String(), account.Network.Net.String()) } if peer.UserID != expectedUserID { t.Errorf("expecting just added peer to have UserID = %s, got %s", expectedUserID, peer.UserID) } if account.Network.CurrentSerial() != 1 { t.Errorf("expecting Network Serial=%d to be incremented by 1 and be equal to %d when adding new peer to account", serial, account.Network.CurrentSerial()) } ev := getEvent(t, account.Id, manager, activity.PeerAddedByUser) assert.NotNil(t, ev) assert.Equal(t, account.Id, ev.AccountID) assert.Equal(t, peer.Name, ev.Meta["name"]) assert.Equal(t, peer.FQDN(account.Domain), ev.Meta["fqdn"]) assert.Equal(t, userID, ev.InitiatorID) assert.Equal(t, peer.ID, ev.TargetID) assert.Equal(t, peer.IP.String(), fmt.Sprint(ev.Meta["ip"])) } func TestAccountManager_NetworkUpdates(t *testing.T) { manager, err := createManager(t) if err != nil { t.Fatal(err) return } userID := "account_creator" account, err := createAccount(manager, "test_account", userID, "") if err != nil { t.Fatal(err) } var setupKey *SetupKey for _, key := range account.SetupKeys { setupKey = key if setupKey.Type == SetupKeyReusable { break } } if setupKey == nil { t.Errorf("expecting account to have a default setup key") return } if account.Network.Serial != 0 { t.Errorf("expecting account network to have an initial Serial=0") return } getPeer := func() *Peer { key, err := wgtypes.GeneratePrivateKey() if err != nil { t.Fatal(err) return nil } expectedPeerKey := key.PublicKey().String() peer, err := manager.AddPeer(setupKey.Key, "", &Peer{ Key: expectedPeerKey, Meta: PeerSystemMeta{}, Name: expectedPeerKey, }) if err != nil { t.Fatalf("expecting peer1 to be added, got failure %v", err) return nil } return peer } peer1 := getPeer() peer2 := getPeer() peer3 := getPeer() account, err = manager.Store.GetAccount(account.Id) if err != nil { t.Fatal(err) return } updMsg := manager.peersUpdateManager.CreateChannel(peer1.ID) defer manager.peersUpdateManager.CloseChannel(peer1.ID) group := Group{ ID: "group-id", Name: "GroupA", Peers: []string{peer1.ID, peer2.ID, peer3.ID}, } rule := Rule{ Source: []string{"group-id"}, Destination: []string{"group-id"}, Flow: TrafficFlowBidirect, } wg := sync.WaitGroup{} t.Run("save group update", func(t *testing.T) { wg.Add(1) go func() { defer wg.Done() message := <-updMsg networkMap := message.Update.GetNetworkMap() if len(networkMap.RemotePeers) != 2 { t.Errorf("mismatch peers count: 2 expected, got %v", len(networkMap.RemotePeers)) } }() if err := manager.SaveGroup(account.Id, userID, &group); err != nil { t.Errorf("save group: %v", err) return } wg.Wait() }) t.Run("delete rule update", func(t *testing.T) { wg.Add(1) go func() { defer wg.Done() message := <-updMsg networkMap := message.Update.GetNetworkMap() if len(networkMap.RemotePeers) != 0 { t.Errorf("mismatch peers count: 0 expected, got %v", len(networkMap.RemotePeers)) } }() var defaultRule *Rule for _, r := range account.Rules { defaultRule = r } if err := manager.DeleteRule(account.Id, defaultRule.ID, userID); err != nil { t.Errorf("delete default rule: %v", err) return } wg.Wait() }) t.Run("save rule update", func(t *testing.T) { wg.Add(1) go func() { defer wg.Done() message := <-updMsg networkMap := message.Update.GetNetworkMap() if len(networkMap.RemotePeers) != 2 { t.Errorf("mismatch peers count: 2 expected, got %v", len(networkMap.RemotePeers)) } }() if err := manager.SaveRule(account.Id, userID, &rule); err != nil { t.Errorf("delete default rule: %v", err) return } wg.Wait() }) t.Run("delete peer update", func(t *testing.T) { wg.Add(1) go func() { defer wg.Done() message := <-updMsg networkMap := message.Update.GetNetworkMap() if len(networkMap.RemotePeers) != 1 { t.Errorf("mismatch peers count: 1 expected, got %v", len(networkMap.RemotePeers)) } }() if _, err := manager.DeletePeer(account.Id, peer3.ID, userID); err != nil { t.Errorf("delete peer: %v", err) return } wg.Wait() }) t.Run("delete group update", func(t *testing.T) { wg.Add(1) go func() { defer wg.Done() message := <-updMsg networkMap := message.Update.GetNetworkMap() if len(networkMap.RemotePeers) != 0 { t.Errorf("mismatch peers count: 0 expected, got %v", len(networkMap.RemotePeers)) } }() if err := manager.DeleteGroup(account.Id, group.ID); err != nil { t.Errorf("delete group rule: %v", err) return } wg.Wait() }) } func TestAccountManager_DeletePeer(t *testing.T) { manager, err := createManager(t) if err != nil { t.Fatal(err) return } userID := "account_creator" account, err := createAccount(manager, "test_account", userID, "netbird.cloud") if err != nil { t.Fatal(err) } var setupKey *SetupKey for _, key := range account.SetupKeys { setupKey = key } key, err := wgtypes.GenerateKey() if err != nil { t.Fatal(err) return } peerKey := key.PublicKey().String() peer, err := manager.AddPeer(setupKey.Key, "", &Peer{ Key: peerKey, Meta: PeerSystemMeta{}, Name: peerKey, }) if err != nil { t.Errorf("expecting peer to be added, got failure %v", err) return } _, err = manager.DeletePeer(account.Id, peerKey, userID) if err != nil { return } account, err = manager.Store.GetAccount(account.Id) if err != nil { t.Fatal(err) return } if account.Network.CurrentSerial() != 2 { t.Errorf("expecting Network Serial=%d to be incremented and be equal to 2 after adding and deleteing a peer", account.Network.CurrentSerial()) } ev := getEvent(t, account.Id, manager, activity.PeerRemovedByUser) assert.NotNil(t, ev) assert.Equal(t, account.Id, ev.AccountID) assert.Equal(t, peer.Name, ev.Meta["name"]) assert.Equal(t, peer.FQDN(account.Domain), ev.Meta["fqdn"]) assert.Equal(t, userID, ev.InitiatorID) assert.Equal(t, peer.IP.String(), ev.TargetID) assert.Equal(t, peer.IP.String(), fmt.Sprint(ev.Meta["ip"])) } func getEvent(t *testing.T, accountID string, manager AccountManager, eventType activity.Activity) *activity.Event { for { select { case <-time.After(time.Second): t.Fatal("no PeerAddedWithSetupKey event was generated") default: events, err := manager.GetEvents(accountID, userID) if err != nil { t.Fatal(err) } for _, event := range events { if event.Activity == eventType { return event } } } } } func TestGetUsersFromAccount(t *testing.T) { manager, err := createManager(t) if err != nil { t.Fatal(err) } users := map[string]*User{"1": {Id: "1", Role: "admin"}, "2": {Id: "2", Role: "user"}, "3": {Id: "3", Role: "user"}} accountId := "test_account_id" account, err := createAccount(manager, accountId, users["1"].Id, "") if err != nil { t.Fatal(err) } // add a user to the account for _, user := range users { account.Users[user.Id] = user } userInfos, err := manager.GetUsersFromAccount(accountId, "1") if err != nil { t.Fatal(err) } for _, userInfo := range userInfos { id := userInfo.ID assert.Equal(t, userInfo.ID, users[id].Id) assert.Equal(t, userInfo.Role, string(users[id].Role)) assert.Equal(t, userInfo.Name, "") assert.Equal(t, userInfo.Email, "") } } func TestAccountManager_UpdatePeerMeta(t *testing.T) { manager, err := createManager(t) if err != nil { t.Fatal(err) return } account, err := createAccount(manager, "test_account", "account_creator", "") if err != nil { t.Fatal(err) } var setupKey *SetupKey for _, key := range account.SetupKeys { setupKey = key } key, err := wgtypes.GeneratePrivateKey() if err != nil { t.Fatal(err) return } peer, err := manager.AddPeer(setupKey.Key, "", &Peer{ Key: key.PublicKey().String(), Meta: PeerSystemMeta{ Hostname: "Hostname", GoOS: "GoOS", Kernel: "Kernel", Core: "Core", Platform: "Platform", OS: "OS", WtVersion: "WtVersion", }, Name: key.PublicKey().String(), }) if err != nil { t.Errorf("expecting peer to be added, got failure %v", err) return } newMeta := PeerSystemMeta{ Hostname: "new-Hostname", GoOS: "new-GoOS", Kernel: "new-Kernel", Core: "new-Core", Platform: "new-Platform", OS: "new-OS", WtVersion: "new-WtVersion", } err = manager.UpdatePeerMeta(peer.ID, newMeta) if err != nil { t.Error(err) return } p, err := manager.GetPeerByKey(peer.Key) if err != nil { return } if err != nil { t.Fatal(err) return } assert.Equal(t, newMeta, p.Meta) } func TestAccount_GetPeerRules(t *testing.T) { groups := map[string]*Group{ "group_1": { ID: "group_1", Name: "group_1", Peers: []string{"peer-1", "peer-2"}, }, "group_2": { ID: "group_2", Name: "group_2", Peers: []string{"peer-2", "peer-3"}, }, "group_3": { ID: "group_3", Name: "group_3", Peers: []string{"peer-4"}, }, "group_4": { ID: "group_4", Name: "group_4", Peers: []string{"peer-1"}, }, "group_5": { ID: "group_5", Name: "group_5", Peers: []string{"peer-1"}, }, } rules := map[string]*Rule{ "rule-1": { ID: "rule-1", Name: "rule-1", Description: "rule-1", Disabled: false, Source: []string{"group_1", "group_5"}, Destination: []string{"group_2"}, Flow: 0, }, "rule-2": { ID: "rule-2", Name: "rule-2", Description: "rule-2", Disabled: false, Source: []string{"group_1"}, Destination: []string{"group_1"}, Flow: 0, }, "rule-3": { ID: "rule-3", Name: "rule-3", Description: "rule-3", Disabled: false, Source: []string{"group_3"}, Destination: []string{"group_3"}, Flow: 0, }, } account := &Account{ Groups: groups, Rules: rules, } srcRules, dstRules := account.GetPeerRules("peer-1") assert.Equal(t, 2, len(srcRules)) assert.Equal(t, 1, len(dstRules)) } func TestFileStore_GetRoutesByPrefix(t *testing.T) { _, prefix, err := route.ParseNetwork("192.168.64.0/24") if err != nil { t.Fatal(err) } account := &Account{ Routes: map[string]*route.Route{ "route-1": { ID: "route-1", Network: prefix, NetID: "network-1", Description: "network-1", Peer: "peer-1", NetworkType: 0, Masquerade: false, Metric: 999, Enabled: true, }, "route-2": { ID: "route-2", Network: prefix, NetID: "network-1", Description: "network-1", Peer: "peer-2", NetworkType: 0, Masquerade: false, Metric: 999, Enabled: true, }, }, } routes := account.GetRoutesByPrefix(prefix) assert.Len(t, routes, 2) routeIDs := make(map[string]struct{}, 2) for _, r := range routes { routeIDs[r.ID] = struct{}{} } assert.Contains(t, routeIDs, "route-1") assert.Contains(t, routeIDs, "route-2") } func TestAccount_GetRoutesToSync(t *testing.T) { _, prefix, err := route.ParseNetwork("192.168.64.0/24") if err != nil { t.Fatal(err) } _, prefix2, err := route.ParseNetwork("192.168.0.0/24") if err != nil { t.Fatal(err) } account := &Account{ Peers: map[string]*Peer{ "peer-1": {Key: "peer-1"}, "peer-2": {Key: "peer-2"}, "peer-3": {Key: "peer-1"}, }, Groups: map[string]*Group{"group1": {ID: "group1", Peers: []string{"peer-1", "peer-2"}}}, Routes: map[string]*route.Route{ "route-1": { ID: "route-1", Network: prefix, NetID: "network-1", Description: "network-1", Peer: "peer-1", NetworkType: 0, Masquerade: false, Metric: 999, Enabled: true, Groups: []string{"group1"}, }, "route-2": { ID: "route-2", Network: prefix2, NetID: "network-2", Description: "network-2", Peer: "peer-2", NetworkType: 0, Masquerade: false, Metric: 999, Enabled: true, Groups: []string{"group1"}, }, "route-3": { ID: "route-3", Network: prefix, NetID: "network-1", Description: "network-1", Peer: "peer-2", NetworkType: 0, Masquerade: false, Metric: 999, Enabled: true, Groups: []string{"group1"}, }, }, } routes := account.getRoutesToSync("peer-2", []*Peer{{Key: "peer-1"}, {Key: "peer-3"}}) assert.Len(t, routes, 2) routeIDs := make(map[string]struct{}, 2) for _, r := range routes { routeIDs[r.ID] = struct{}{} } assert.Contains(t, routeIDs, "route-2") assert.Contains(t, routeIDs, "route-3") emptyRoutes := account.getRoutesToSync("peer-3", []*Peer{{Key: "peer-1"}, {Key: "peer-2"}}) assert.Len(t, emptyRoutes, 0) } func TestAccount_Copy(t *testing.T) { account := &Account{ Id: "account1", CreatedBy: "tester", Domain: "test.com", DomainCategory: "public", IsDomainPrimaryAccount: true, SetupKeys: map[string]*SetupKey{ "setup1": { Id: "setup1", AutoGroups: []string{"group1"}, }, }, Network: &Network{ Id: "net1", }, Peers: map[string]*Peer{ "peer1": { Key: "key1", }, }, Users: map[string]*User{ "user1": { Id: "user1", Role: UserRoleAdmin, AutoGroups: []string{"group1"}, }, }, Groups: map[string]*Group{ "group1": { ID: "group1", }, }, Rules: map[string]*Rule{ "rule1": { ID: "rule1", }, }, Routes: map[string]*route.Route{ "route1": { ID: "route1", }, }, NameServerGroups: map[string]*nbdns.NameServerGroup{ "nsGroup1": { ID: "nsGroup1", }, }, DNSSettings: &DNSSettings{DisabledManagementGroups: []string{}}, Settings: &Settings{}, } err := hasNilField(account) if err != nil { t.Fatal(err) } accountCopy := account.Copy() assert.Equal(t, account, accountCopy, "account copy returned a different value than expected") } // hasNilField validates pointers, maps and slices if they are nil func hasNilField(x interface{}) error { rv := reflect.ValueOf(x) rv = rv.Elem() for i := 0; i < rv.NumField(); i++ { if f := rv.Field(i); f.IsValid() { k := f.Kind() switch k { case reflect.Ptr: if f.IsNil() { return fmt.Errorf("field %s is nil", f.String()) } case reflect.Map, reflect.Slice: if f.Len() == 0 || f.IsNil() { return fmt.Errorf("field %s is nil", f.String()) } } } } return nil } func TestDefaultAccountManager_DefaultAccountSettings(t *testing.T) { manager, err := createManager(t) require.NoError(t, err, "unable to create account manager") account, err := manager.GetAccountByUserOrAccountID(userID, "", "") require.NoError(t, err, "unable to create an account") assert.NotNil(t, account.Settings) assert.Equal(t, account.Settings.PeerLoginExpirationEnabled, true) assert.Equal(t, account.Settings.PeerLoginExpiration, 24*time.Hour) } func TestDefaultAccountManager_UpdatePeer_PeerLoginExpiration(t *testing.T) { manager, err := createManager(t) require.NoError(t, err, "unable to create account manager") account, err := manager.GetAccountByUserOrAccountID(userID, "", "") require.NoError(t, err, "unable to create an account") key, err := wgtypes.GenerateKey() require.NoError(t, err, "unable to generate WireGuard key") peer, err := manager.AddPeer("", userID, &Peer{ Key: key.PublicKey().String(), Meta: PeerSystemMeta{}, Name: "test-peer", LoginExpirationEnabled: true, }) require.NoError(t, err, "unable to add peer") err = manager.MarkPeerConnected(key.PublicKey().String(), true) require.NoError(t, err, "unable to mark peer connected") account, err = manager.UpdateAccountSettings(account.Id, userID, &Settings{ PeerLoginExpiration: time.Hour, PeerLoginExpirationEnabled: true}) require.NoError(t, err, "expecting to update account settings successfully but got error") wg := &sync.WaitGroup{} wg.Add(2) manager.peerLoginExpiry = &MockScheduler{ CancelFunc: func(IDs []string) { wg.Done() }, ScheduleFunc: func(in time.Duration, ID string, job func() (nextRunIn time.Duration, reschedule bool)) { wg.Done() }, } // disable expiration first update := peer.Copy() update.LoginExpirationEnabled = false _, err = manager.UpdatePeer(account.Id, userID, update) require.NoError(t, err, "unable to update peer") // enabling expiration should trigger the routine update.LoginExpirationEnabled = true _, err = manager.UpdatePeer(account.Id, userID, update) require.NoError(t, err, "unable to update peer") failed := waitTimeout(wg, time.Second) if failed { t.Fatal("timeout while waiting for test to finish") } } func TestDefaultAccountManager_MarkPeerConnected_PeerLoginExpiration(t *testing.T) { manager, err := createManager(t) require.NoError(t, err, "unable to create account manager") account, err := manager.GetAccountByUserOrAccountID(userID, "", "") require.NoError(t, err, "unable to create an account") key, err := wgtypes.GenerateKey() require.NoError(t, err, "unable to generate WireGuard key") _, err = manager.AddPeer("", userID, &Peer{ Key: key.PublicKey().String(), Meta: PeerSystemMeta{}, Name: "test-peer", LoginExpirationEnabled: true, }) require.NoError(t, err, "unable to add peer") _, err = manager.UpdateAccountSettings(account.Id, userID, &Settings{ PeerLoginExpiration: time.Hour, PeerLoginExpirationEnabled: true}) require.NoError(t, err, "expecting to update account settings successfully but got error") wg := &sync.WaitGroup{} wg.Add(2) manager.peerLoginExpiry = &MockScheduler{ CancelFunc: func(IDs []string) { wg.Done() }, ScheduleFunc: func(in time.Duration, ID string, job func() (nextRunIn time.Duration, reschedule bool)) { wg.Done() }, } // when we mark peer as connected, the peer login expiration routine should trigger err = manager.MarkPeerConnected(key.PublicKey().String(), true) require.NoError(t, err, "unable to mark peer connected") failed := waitTimeout(wg, time.Second) if failed { t.Fatal("timeout while waiting for test to finish") } } func TestDefaultAccountManager_UpdateAccountSettings_PeerLoginExpiration(t *testing.T) { manager, err := createManager(t) require.NoError(t, err, "unable to create account manager") account, err := manager.GetAccountByUserOrAccountID(userID, "", "") require.NoError(t, err, "unable to create an account") key, err := wgtypes.GenerateKey() require.NoError(t, err, "unable to generate WireGuard key") _, err = manager.AddPeer("", userID, &Peer{ Key: key.PublicKey().String(), Meta: PeerSystemMeta{}, Name: "test-peer", LoginExpirationEnabled: true, }) require.NoError(t, err, "unable to add peer") err = manager.MarkPeerConnected(key.PublicKey().String(), true) require.NoError(t, err, "unable to mark peer connected") wg := &sync.WaitGroup{} wg.Add(2) manager.peerLoginExpiry = &MockScheduler{ CancelFunc: func(IDs []string) { wg.Done() }, ScheduleFunc: func(in time.Duration, ID string, job func() (nextRunIn time.Duration, reschedule bool)) { wg.Done() }, } // enabling PeerLoginExpirationEnabled should trigger the expiration job account, err = manager.UpdateAccountSettings(account.Id, userID, &Settings{ PeerLoginExpiration: time.Hour, PeerLoginExpirationEnabled: true}) require.NoError(t, err, "expecting to update account settings successfully but got error") failed := waitTimeout(wg, time.Second) if failed { t.Fatal("timeout while waiting for test to finish") } wg.Add(1) // disabling PeerLoginExpirationEnabled should trigger cancel _, err = manager.UpdateAccountSettings(account.Id, userID, &Settings{ PeerLoginExpiration: time.Hour, PeerLoginExpirationEnabled: false}) require.NoError(t, err, "expecting to update account settings successfully but got error") failed = waitTimeout(wg, time.Second) if failed { t.Fatal("timeout while waiting for test to finish") } } func TestDefaultAccountManager_UpdateAccountSettings(t *testing.T) { manager, err := createManager(t) require.NoError(t, err, "unable to create account manager") account, err := manager.GetAccountByUserOrAccountID(userID, "", "") require.NoError(t, err, "unable to create an account") updated, err := manager.UpdateAccountSettings(account.Id, userID, &Settings{ PeerLoginExpiration: time.Hour, PeerLoginExpirationEnabled: false}) require.NoError(t, err, "expecting to update account settings successfully but got error") assert.False(t, updated.Settings.PeerLoginExpirationEnabled) assert.Equal(t, updated.Settings.PeerLoginExpiration, time.Hour) account, err = manager.GetAccountByUserOrAccountID("", account.Id, "") require.NoError(t, err, "unable to get account by ID") assert.False(t, account.Settings.PeerLoginExpirationEnabled) assert.Equal(t, account.Settings.PeerLoginExpiration, time.Hour) _, err = manager.UpdateAccountSettings(account.Id, userID, &Settings{ PeerLoginExpiration: time.Second, PeerLoginExpirationEnabled: false}) require.Error(t, err, "expecting to fail when providing PeerLoginExpiration less than one hour") _, err = manager.UpdateAccountSettings(account.Id, userID, &Settings{ PeerLoginExpiration: time.Hour * 24 * 181, PeerLoginExpirationEnabled: false}) require.Error(t, err, "expecting to fail when providing PeerLoginExpiration more than 180 days") } func TestAccount_GetExpiredPeers(t *testing.T) { type test struct { name string peers map[string]*Peer expectedPeers map[string]struct{} } testCases := []test{ { name: "Peers with login expiration disabled, no expired peers", peers: map[string]*Peer{ "peer-1": { LoginExpirationEnabled: false, }, "peer-2": { LoginExpirationEnabled: false, }, }, expectedPeers: map[string]struct{}{}, }, { name: "Two peers expired", peers: map[string]*Peer{ "peer-1": { ID: "peer-1", LoginExpirationEnabled: true, Status: &PeerStatus{ LastSeen: time.Now(), Connected: true, LoginExpired: false, }, LastLogin: time.Now().Add(-30 * time.Minute), }, "peer-2": { ID: "peer-2", LoginExpirationEnabled: true, Status: &PeerStatus{ LastSeen: time.Now(), Connected: true, LoginExpired: false, }, LastLogin: time.Now().Add(-2 * time.Hour), }, "peer-3": { ID: "peer-3", LoginExpirationEnabled: true, Status: &PeerStatus{ LastSeen: time.Now(), Connected: true, LoginExpired: false, }, LastLogin: time.Now().Add(-1 * time.Hour), }, }, expectedPeers: map[string]struct{}{ "peer-2": {}, "peer-3": {}, }, }, } for _, testCase := range testCases { t.Run(testCase.name, func(t *testing.T) { account := &Account{ Peers: testCase.peers, Settings: &Settings{ PeerLoginExpirationEnabled: true, PeerLoginExpiration: time.Hour, }, } expiredPeers := account.GetExpiredPeers() assert.Len(t, expiredPeers, len(testCase.expectedPeers)) for _, peer := range expiredPeers { if _, ok := testCase.expectedPeers[peer.ID]; !ok { t.Fatalf("expected to have peer %s expired", peer.ID) } } }) } } func TestAccount_GetPeersWithExpiration(t *testing.T) { type test struct { name string peers map[string]*Peer expectedPeers map[string]struct{} } testCases := []test{ { name: "No account peers, no peers with expiration", peers: map[string]*Peer{}, expectedPeers: map[string]struct{}{}, }, { name: "Peers with login expiration disabled, no peers with expiration", peers: map[string]*Peer{ "peer-1": { LoginExpirationEnabled: false, }, "peer-2": { LoginExpirationEnabled: false, }, }, expectedPeers: map[string]struct{}{}, }, { name: "Peers with login expiration enabled, return peers with expiration", peers: map[string]*Peer{ "peer-1": { ID: "peer-1", LoginExpirationEnabled: true, }, "peer-2": { LoginExpirationEnabled: false, }, }, expectedPeers: map[string]struct{}{ "peer-1": {}, }, }, } for _, testCase := range testCases { t.Run(testCase.name, func(t *testing.T) { account := &Account{ Peers: testCase.peers, } actual := account.GetPeersWithExpiration() assert.Len(t, actual, len(testCase.expectedPeers)) if len(testCase.expectedPeers) > 0 { for k := range testCase.expectedPeers { contains := false for _, peer := range actual { if k == peer.ID { contains = true } } assert.True(t, contains) } } }) } } func TestAccount_GetNextPeerExpiration(t *testing.T) { type test struct { name string peers map[string]*Peer expiration time.Duration expirationEnabled bool expectedNextRun bool expectedNextExpiration time.Duration } expectedNextExpiration := time.Minute testCases := []test{ { name: "No peers, no expiration", peers: map[string]*Peer{}, expiration: time.Second, expirationEnabled: false, expectedNextRun: false, expectedNextExpiration: time.Duration(0), }, { name: "No connected peers, no expiration", peers: map[string]*Peer{ "peer-1": { Status: &PeerStatus{ Connected: false, }, LoginExpirationEnabled: true, }, "peer-2": { Status: &PeerStatus{ Connected: true, }, LoginExpirationEnabled: false, }, }, expiration: time.Second, expirationEnabled: false, expectedNextRun: false, expectedNextExpiration: time.Duration(0), }, { name: "Connected peers with disabled expiration, no expiration", peers: map[string]*Peer{ "peer-1": { Status: &PeerStatus{ Connected: true, }, LoginExpirationEnabled: false, }, "peer-2": { Status: &PeerStatus{ Connected: true, }, LoginExpirationEnabled: false, }, }, expiration: time.Second, expirationEnabled: false, expectedNextRun: false, expectedNextExpiration: time.Duration(0), }, { name: "Expired peers, no expiration", peers: map[string]*Peer{ "peer-1": { Status: &PeerStatus{ Connected: true, LoginExpired: true, }, LoginExpirationEnabled: true, }, "peer-2": { Status: &PeerStatus{ Connected: true, LoginExpired: true, }, LoginExpirationEnabled: true, }, }, expiration: time.Second, expirationEnabled: false, expectedNextRun: false, expectedNextExpiration: time.Duration(0), }, { name: "To be expired peer, return expiration", peers: map[string]*Peer{ "peer-1": { Status: &PeerStatus{ Connected: true, LoginExpired: false, }, LoginExpirationEnabled: true, LastLogin: time.Now(), }, "peer-2": { Status: &PeerStatus{ Connected: true, LoginExpired: true, }, LoginExpirationEnabled: true, }, }, expiration: time.Minute, expirationEnabled: false, expectedNextRun: true, expectedNextExpiration: expectedNextExpiration, }, } for _, testCase := range testCases { t.Run(testCase.name, func(t *testing.T) { account := &Account{ Peers: testCase.peers, Settings: &Settings{PeerLoginExpiration: testCase.expiration, PeerLoginExpirationEnabled: testCase.expirationEnabled}, } expiration, ok := account.GetNextPeerExpiration() assert.Equal(t, ok, testCase.expectedNextRun) if testCase.expectedNextRun { assert.True(t, expiration >= 0 && expiration <= testCase.expectedNextExpiration) } else { assert.Equal(t, expiration, testCase.expectedNextExpiration) } }) } } func createManager(t *testing.T) (*DefaultAccountManager, error) { store, err := createStore(t) if err != nil { return nil, err } eventStore := &activity.InMemoryEventStore{} return BuildManager(store, NewPeersUpdateManager(), nil, "", "netbird.cloud", eventStore) } func createStore(t *testing.T) (Store, error) { dataDir := t.TempDir() store, err := NewFileStore(dataDir) if err != nil { return nil, err } return store, nil } func waitTimeout(wg *sync.WaitGroup, timeout time.Duration) bool { c := make(chan struct{}) go func() { defer close(c) wg.Wait() }() select { case <-c: return false case <-time.After(timeout): return true } }