mirror of
https://github.com/netbirdio/netbird.git
synced 2025-01-18 20:08:28 +01:00
Add network routers store implementation
Signed-off-by: bcmmbaga <bethuelmbaga12@gmail.com>
This commit is contained in:
parent
21586acc16
commit
6dd6992415
@ -1652,24 +1652,56 @@ func (s *SqlStore) DeleteNetwork(ctx context.Context, lockStrength LockingStreng
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *SqlStore) GetNetworkRoutersByNetID(ctx context.Context, lockStrength LockingStrength, accountID, networkID string) ([]*networks.NetworkRouter, error) {
|
func (s *SqlStore) GetNetworkRoutersByNetID(ctx context.Context, lockStrength LockingStrength, accountID, netID string) ([]*networks.NetworkRouter, error) {
|
||||||
//TODO implement me
|
var netRouters []*networks.NetworkRouter
|
||||||
panic("implement me")
|
result := s.db.Clauses(clause.Locking{Strength: string(lockStrength)}).
|
||||||
|
Find(&netRouters, "account_id = ? AND network_id = ?", accountID, netID)
|
||||||
|
if result.Error != nil {
|
||||||
|
log.WithContext(ctx).Errorf("failed to get network routers from store: %v", result.Error)
|
||||||
|
return nil, status.Errorf(status.Internal, "failed to get network routers from store")
|
||||||
|
}
|
||||||
|
|
||||||
|
return netRouters, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *SqlStore) GetNetworkRouterByID(ctx context.Context, lockStrength LockingStrength, accountID, routerID string) (*networks.NetworkRouter, error) {
|
func (s *SqlStore) GetNetworkRouterByID(ctx context.Context, lockStrength LockingStrength, accountID, routerID string) (*networks.NetworkRouter, error) {
|
||||||
//TODO implement me
|
var netRouter *networks.NetworkRouter
|
||||||
panic("implement me")
|
result := s.db.Clauses(clause.Locking{Strength: string(lockStrength)}).
|
||||||
|
First(&netRouter, accountAndIDQueryCondition, accountID, routerID)
|
||||||
|
if result.Error != nil {
|
||||||
|
if errors.Is(result.Error, gorm.ErrRecordNotFound) {
|
||||||
|
return nil, status.NewNetworkRouterNotFoundError(routerID)
|
||||||
|
}
|
||||||
|
log.WithContext(ctx).Errorf("failed to get network router from store: %v", result.Error)
|
||||||
|
return nil, status.Errorf(status.Internal, "failed to get network router from store")
|
||||||
|
}
|
||||||
|
|
||||||
|
return netRouter, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *SqlStore) SaveNetworkRouter(ctx context.Context, lockStrength LockingStrength, router *networks.NetworkRouter) error {
|
func (s *SqlStore) SaveNetworkRouter(ctx context.Context, lockStrength LockingStrength, router *networks.NetworkRouter) error {
|
||||||
//TODO implement me
|
result := s.db.Clauses(clause.Locking{Strength: string(lockStrength)}).Save(router)
|
||||||
panic("implement me")
|
if result.Error != nil {
|
||||||
|
log.WithContext(ctx).Errorf("failed to save network router to store: %v", result.Error)
|
||||||
|
return status.Errorf(status.Internal, "failed to save network router to store")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *SqlStore) DeleteNetworkRouter(ctx context.Context, lockStrength LockingStrength, accountID, routerID string) error {
|
func (s *SqlStore) DeleteNetworkRouter(ctx context.Context, lockStrength LockingStrength, accountID, routerID string) error {
|
||||||
//TODO implement me
|
result := s.db.Clauses(clause.Locking{Strength: string(lockStrength)}).
|
||||||
panic("implement me")
|
Delete(&networks.NetworkRouter{}, accountAndIDQueryCondition, accountID, routerID)
|
||||||
|
if result.Error != nil {
|
||||||
|
log.WithContext(ctx).Errorf("failed to delete network router from store: %v", result.Error)
|
||||||
|
return status.Errorf(status.Internal, "failed to delete network router from store")
|
||||||
|
}
|
||||||
|
|
||||||
|
if result.RowsAffected == 0 {
|
||||||
|
return status.NewNetworkRouterNotFoundError(routerID)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *SqlStore) GetAccountNetworkResourceByNetID(ctx context.Context, lockStrength LockingStrength, accountID, networkID string) (*networks.NetworkResource, error) {
|
func (s *SqlStore) GetAccountNetworkResourceByNetID(ctx context.Context, lockStrength LockingStrength, accountID, networkID string) (*networks.NetworkResource, error) {
|
||||||
@ -1677,7 +1709,7 @@ func (s *SqlStore) GetAccountNetworkResourceByNetID(ctx context.Context, lockStr
|
|||||||
panic("implement me")
|
panic("implement me")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *SqlStore) GetAccountNetworkResourceByID(ctx context.Context, lockStrength LockingStrength, accountID, resourceID string) (*networks.NetworkResource, error) {
|
func (s *SqlStore) GetNetworkResourceByID(ctx context.Context, lockStrength LockingStrength, accountID, resourceID string) (*networks.NetworkResource, error) {
|
||||||
//TODO implement me
|
//TODO implement me
|
||||||
panic("implement me")
|
panic("implement me")
|
||||||
}
|
}
|
||||||
|
@ -307,6 +307,24 @@ func TestSqlite_DeleteAccount(t *testing.T) {
|
|||||||
Status: &nbpeer.PeerStatus{Connected: true, LastSeen: time.Now().UTC()},
|
Status: &nbpeer.PeerStatus{Connected: true, LastSeen: time.Now().UTC()},
|
||||||
}
|
}
|
||||||
account.Users[testUserID] = user
|
account.Users[testUserID] = user
|
||||||
|
account.Networks = []*networks.Network{
|
||||||
|
{
|
||||||
|
ID: "network_id",
|
||||||
|
AccountID: account.Id,
|
||||||
|
Name: "network name",
|
||||||
|
Description: "network description",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
account.NetworkRouters = []*networks.NetworkRouter{
|
||||||
|
{
|
||||||
|
ID: "router_id",
|
||||||
|
NetworkID: account.Networks[0].ID,
|
||||||
|
AccountID: account.Id,
|
||||||
|
PeerGroups: []string{"group_id"},
|
||||||
|
Masquerade: true,
|
||||||
|
Metric: 1,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
err = store.SaveAccount(context.Background(), account)
|
err = store.SaveAccount(context.Background(), account)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
@ -353,6 +371,11 @@ func TestSqlite_DeleteAccount(t *testing.T) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for _, network := range account.Networks {
|
||||||
|
routers, err := store.GetNetworkRoutersByNetID(context.Background(), LockingStrengthShare, account.Id, network.ID)
|
||||||
|
require.NoError(t, err, "expecting no error after removing DeleteAccount when searching for network routers")
|
||||||
|
require.Len(t, routers, 0, "expecting no network routers to be found after DeleteAccount")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestSqlite_GetAccount(t *testing.T) {
|
func TestSqlite_GetAccount(t *testing.T) {
|
||||||
@ -2169,3 +2192,120 @@ func TestSqlStore_DeleteNetwork(t *testing.T) {
|
|||||||
require.Equal(t, status.NotFound, sErr.Type())
|
require.Equal(t, status.NotFound, sErr.Type())
|
||||||
require.Nil(t, network)
|
require.Nil(t, network)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestSqlStore_GetNetworkRoutersByNetID(t *testing.T) {
|
||||||
|
store, cleanup, err := NewTestStoreFromSQL(context.Background(), "testdata/store.sql", t.TempDir())
|
||||||
|
t.Cleanup(cleanup)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
accountID := "bf1c8084-ba50-4ce7-9439-34653001fc3b"
|
||||||
|
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
networkID string
|
||||||
|
expectedCount int
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "retrieve routers by existing network ID",
|
||||||
|
networkID: "ct286bi7qv930dsrrug0",
|
||||||
|
expectedCount: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "retrieve routers by non-existing network ID",
|
||||||
|
networkID: "non-existent",
|
||||||
|
expectedCount: 0,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
routers, err := store.GetNetworkRoutersByNetID(context.Background(), LockingStrengthShare, accountID, tt.networkID)
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.Len(t, routers, tt.expectedCount)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestSqlStore_GetNetworkRouterByID(t *testing.T) {
|
||||||
|
store, cleanup, err := NewTestStoreFromSQL(context.Background(), "testdata/store.sql", t.TempDir())
|
||||||
|
t.Cleanup(cleanup)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
accountID := "bf1c8084-ba50-4ce7-9439-34653001fc3b"
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
networkRouterID string
|
||||||
|
expectError bool
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "retrieve existing network router ID",
|
||||||
|
networkRouterID: "ctc20ji7qv9ck2sebc80",
|
||||||
|
expectError: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "retrieve non-existing network router ID",
|
||||||
|
networkRouterID: "non-existing",
|
||||||
|
expectError: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "retrieve network with empty router ID",
|
||||||
|
networkRouterID: "",
|
||||||
|
expectError: true,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
networkRouter, err := store.GetNetworkRouterByID(context.Background(), LockingStrengthShare, accountID, tt.networkRouterID)
|
||||||
|
if tt.expectError {
|
||||||
|
require.Error(t, err)
|
||||||
|
sErr, ok := status.FromError(err)
|
||||||
|
require.True(t, ok)
|
||||||
|
require.Equal(t, sErr.Type(), status.NotFound)
|
||||||
|
require.Nil(t, networkRouter)
|
||||||
|
} else {
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.NotNil(t, networkRouter)
|
||||||
|
require.Equal(t, tt.networkRouterID, networkRouter.ID)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestSqlStore_SaveNetworkRouter(t *testing.T) {
|
||||||
|
store, cleanup, err := NewTestStoreFromSQL(context.Background(), "testdata/store.sql", t.TempDir())
|
||||||
|
t.Cleanup(cleanup)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
accountID := "bf1c8084-ba50-4ce7-9439-34653001fc3b"
|
||||||
|
networkID := "ct286bi7qv930dsrrug0"
|
||||||
|
|
||||||
|
netRouter, err := networks.NewNetworkRouter(accountID, networkID, "", []string{"net-router-grp"}, true, 0)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
err = store.SaveNetworkRouter(context.Background(), LockingStrengthUpdate, netRouter)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
savedNetRouter, err := store.GetNetworkRouterByID(context.Background(), LockingStrengthShare, accountID, netRouter.ID)
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.Equal(t, netRouter, savedNetRouter)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestSqlStore_DeleteNetworkRouter(t *testing.T) {
|
||||||
|
store, cleanup, err := NewTestStoreFromSQL(context.Background(), "testdata/store.sql", t.TempDir())
|
||||||
|
t.Cleanup(cleanup)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
accountID := "bf1c8084-ba50-4ce7-9439-34653001fc3b"
|
||||||
|
netRouterID := "ctc20ji7qv9ck2sebc80"
|
||||||
|
|
||||||
|
err = store.DeleteNetworkRouter(context.Background(), LockingStrengthUpdate, accountID, netRouterID)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
netRouter, err := store.GetNetworkByID(context.Background(), LockingStrengthShare, accountID, netRouterID)
|
||||||
|
require.Error(t, err)
|
||||||
|
sErr, ok := status.FromError(err)
|
||||||
|
require.True(t, ok)
|
||||||
|
require.Equal(t, status.NotFound, sErr.Type())
|
||||||
|
require.Nil(t, netRouter)
|
||||||
|
}
|
||||||
|
@ -159,3 +159,8 @@ func NewNameServerGroupNotFoundError(nsGroupID string) error {
|
|||||||
func NewNetworkNotFoundError(networkID string) error {
|
func NewNetworkNotFoundError(networkID string) error {
|
||||||
return Errorf(NotFound, "network: %s not found", networkID)
|
return Errorf(NotFound, "network: %s not found", networkID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewNetworkRouterNotFoundError creates a new Error with NotFound type for a missing network router.
|
||||||
|
func NewNetworkRouterNotFoundError(routerID string) error {
|
||||||
|
return Errorf(NotFound, "network router: %s not found", routerID)
|
||||||
|
}
|
||||||
|
@ -147,13 +147,13 @@ type Store interface {
|
|||||||
SaveNetwork(ctx context.Context, lockStrength LockingStrength, network *networks.Network) error
|
SaveNetwork(ctx context.Context, lockStrength LockingStrength, network *networks.Network) error
|
||||||
DeleteNetwork(ctx context.Context, lockStrength LockingStrength, accountID, networkID string) error
|
DeleteNetwork(ctx context.Context, lockStrength LockingStrength, accountID, networkID string) error
|
||||||
|
|
||||||
GetNetworkRoutersByNetID(ctx context.Context, lockStrength LockingStrength, accountID, networkID string) ([]*networks.NetworkRouter, error)
|
GetNetworkRoutersByNetID(ctx context.Context, lockStrength LockingStrength, accountID, netID string) ([]*networks.NetworkRouter, error)
|
||||||
GetNetworkRouterByID(ctx context.Context, lockStrength LockingStrength, accountID, routerID string) (*networks.NetworkRouter, error)
|
GetNetworkRouterByID(ctx context.Context, lockStrength LockingStrength, accountID, routerID string) (*networks.NetworkRouter, error)
|
||||||
SaveNetworkRouter(ctx context.Context, lockStrength LockingStrength, router *networks.NetworkRouter) error
|
SaveNetworkRouter(ctx context.Context, lockStrength LockingStrength, router *networks.NetworkRouter) error
|
||||||
DeleteNetworkRouter(ctx context.Context, lockStrength LockingStrength, accountID, routerID string) error
|
DeleteNetworkRouter(ctx context.Context, lockStrength LockingStrength, accountID, routerID string) error
|
||||||
|
|
||||||
GetAccountNetworkResourceByNetID(ctx context.Context, lockStrength LockingStrength, accountID, networkID string) (*networks.NetworkResource, error)
|
GetAccountNetworkResourceByNetID(ctx context.Context, lockStrength LockingStrength, accountID, netID string) (*networks.NetworkResource, error)
|
||||||
GetAccountNetworkResourceByID(ctx context.Context, lockStrength LockingStrength, accountID, resourceID string) (*networks.NetworkResource, error)
|
GetNetworkResourceByID(ctx context.Context, lockStrength LockingStrength, accountID, resourceID string) (*networks.NetworkResource, error)
|
||||||
SaveNetworkResource(ctx context.Context, lockStrength LockingStrength, resource *networks.NetworkResource) error
|
SaveNetworkResource(ctx context.Context, lockStrength LockingStrength, resource *networks.NetworkResource) error
|
||||||
DeleteNetworkResource(ctx context.Context, lockStrength LockingStrength, accountID, resourceID string) error
|
DeleteNetworkResource(ctx context.Context, lockStrength LockingStrength, accountID, resourceID string) error
|
||||||
}
|
}
|
||||||
|
5
management/server/testdata/store.sql
vendored
5
management/server/testdata/store.sql
vendored
@ -12,6 +12,7 @@ CREATE TABLE `installations` (`id` integer,`installation_id_value` text,PRIMARY
|
|||||||
CREATE TABLE `extra_settings` (`peer_approval_enabled` numeric,`integrated_validator_groups` text);
|
CREATE TABLE `extra_settings` (`peer_approval_enabled` numeric,`integrated_validator_groups` text);
|
||||||
CREATE TABLE `posture_checks` (`id` text,`name` text,`description` text,`account_id` text,`checks` text,PRIMARY KEY (`id`),CONSTRAINT `fk_accounts_posture_checks` FOREIGN KEY (`account_id`) REFERENCES `accounts`(`id`));
|
CREATE TABLE `posture_checks` (`id` text,`name` text,`description` text,`account_id` text,`checks` text,PRIMARY KEY (`id`),CONSTRAINT `fk_accounts_posture_checks` FOREIGN KEY (`account_id`) REFERENCES `accounts`(`id`));
|
||||||
CREATE TABLE `network_addresses` (`net_ip` text,`mac` text);
|
CREATE TABLE `network_addresses` (`net_ip` text,`mac` text);
|
||||||
|
CREATE TABLE `network_routers` (`id` text,`network_id` text,`account_id` text,`peer` text,`peer_groups` text,`masquerade` numeric,`metric` integer,PRIMARY KEY (`id`));
|
||||||
CREATE TABLE `networks` (`id` text,`account_id` text,`name` text,`description` text,PRIMARY KEY (`id`),CONSTRAINT `fk_accounts_networks` FOREIGN KEY (`account_id`) REFERENCES `accounts`(`id`));
|
CREATE TABLE `networks` (`id` text,`account_id` text,`name` text,`description` text,PRIMARY KEY (`id`),CONSTRAINT `fk_accounts_networks` FOREIGN KEY (`account_id`) REFERENCES `accounts`(`id`));
|
||||||
CREATE INDEX `idx_accounts_domain` ON `accounts`(`domain`);
|
CREATE INDEX `idx_accounts_domain` ON `accounts`(`domain`);
|
||||||
CREATE INDEX `idx_setup_keys_account_id` ON `setup_keys`(`account_id`);
|
CREATE INDEX `idx_setup_keys_account_id` ON `setup_keys`(`account_id`);
|
||||||
@ -25,6 +26,9 @@ CREATE INDEX `idx_policy_rules_policy_id` ON `policy_rules`(`policy_id`);
|
|||||||
CREATE INDEX `idx_routes_account_id` ON `routes`(`account_id`);
|
CREATE INDEX `idx_routes_account_id` ON `routes`(`account_id`);
|
||||||
CREATE INDEX `idx_name_server_groups_account_id` ON `name_server_groups`(`account_id`);
|
CREATE INDEX `idx_name_server_groups_account_id` ON `name_server_groups`(`account_id`);
|
||||||
CREATE INDEX `idx_posture_checks_account_id` ON `posture_checks`(`account_id`);
|
CREATE INDEX `idx_posture_checks_account_id` ON `posture_checks`(`account_id`);
|
||||||
|
CREATE INDEX `idx_network_routers_id` ON `network_routers`(`id`);
|
||||||
|
CREATE INDEX `idx_network_routers_account_id` ON `network_routers`(`account_id`);
|
||||||
|
CREATE INDEX `idx_network_routers_network_id` ON `network_routers`(`network_id`);
|
||||||
CREATE INDEX `idx_networks_id` ON `networks`(`id`);
|
CREATE INDEX `idx_networks_id` ON `networks`(`id`);
|
||||||
CREATE INDEX `idx_networks_account_id` ON `networks`(`account_id`);
|
CREATE INDEX `idx_networks_account_id` ON `networks`(`account_id`);
|
||||||
|
|
||||||
@ -37,4 +41,5 @@ INSERT INTO personal_access_tokens VALUES('9dj38s35-63fb-11ec-90d6-0242ac120003'
|
|||||||
INSERT INTO installations VALUES(1,'');
|
INSERT INTO installations VALUES(1,'');
|
||||||
INSERT INTO policies VALUES('cs1tnh0hhcjnqoiuebf0','bf1c8084-ba50-4ce7-9439-34653001fc3b','Default','This is a default rule that allows connections between all the resources',1,'[]');
|
INSERT INTO policies VALUES('cs1tnh0hhcjnqoiuebf0','bf1c8084-ba50-4ce7-9439-34653001fc3b','Default','This is a default rule that allows connections between all the resources',1,'[]');
|
||||||
INSERT INTO policy_rules VALUES('cs387mkv2d4bgq41b6n0','cs1tnh0hhcjnqoiuebf0','Default','This is a default rule that allows connections between all the resources',1,'accept','["cs1tnh0hhcjnqoiuebeg"]','["cs1tnh0hhcjnqoiuebeg"]',1,'all',NULL,NULL);
|
INSERT INTO policy_rules VALUES('cs387mkv2d4bgq41b6n0','cs1tnh0hhcjnqoiuebf0','Default','This is a default rule that allows connections between all the resources',1,'accept','["cs1tnh0hhcjnqoiuebeg"]','["cs1tnh0hhcjnqoiuebeg"]',1,'all',NULL,NULL);
|
||||||
|
INSERT INTO network_routers VALUES('ctc20ji7qv9ck2sebc80','ct286bi7qv930dsrrug0','bf1c8084-ba50-4ce7-9439-34653001fc3b','cs1tnh0hhcjnqoiuebeg',NULL,0,0);
|
||||||
INSERT INTO networks VALUES('ct286bi7qv930dsrrug0','bf1c8084-ba50-4ce7-9439-34653001fc3b','Test Network','Test Network');
|
INSERT INTO networks VALUES('ct286bi7qv930dsrrug0','bf1c8084-ba50-4ce7-9439-34653001fc3b','Test Network','Test Network');
|
||||||
|
Loading…
Reference in New Issue
Block a user