headscale/users_test.go

416 lines
10 KiB
Go
Raw Normal View History

package headscale
import (
"net/netip"
"testing"
"gopkg.in/check.v1"
"gorm.io/gorm"
)
func (s *Suite) TestCreateAndDestroyUser(c *check.C) {
user, err := app.CreateUser("test")
c.Assert(err, check.IsNil)
c.Assert(user.Name, check.Equals, "test")
users, err := app.ListUsers()
c.Assert(err, check.IsNil)
c.Assert(len(users), check.Equals, 1)
err = app.DestroyUser("test")
c.Assert(err, check.IsNil)
_, err = app.GetUser("test")
c.Assert(err, check.NotNil)
}
func (s *Suite) TestDestroyUserErrors(c *check.C) {
err := app.DestroyUser("test")
c.Assert(err, check.Equals, ErrUserNotFound)
user, err := app.CreateUser("test")
c.Assert(err, check.IsNil)
pak, err := app.CreatePreAuthKey(user.Name, false, false, nil, nil)
c.Assert(err, check.IsNil)
err = app.DestroyUser("test")
c.Assert(err, check.IsNil)
result := app.db.Preload("User").First(&pak, "key = ?", pak.Key)
// destroying a user also deletes all associated preauthkeys
c.Assert(result.Error, check.Equals, gorm.ErrRecordNotFound)
user, err = app.CreateUser("test")
c.Assert(err, check.IsNil)
pak, err = app.CreatePreAuthKey(user.Name, false, false, nil, nil)
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
machine := Machine{
ID: 0,
MachineKey: "foo",
NodeKey: "bar",
DiscoKey: "faa",
2022-05-17 03:41:46 +08:00
Hostname: "testmachine",
UserID: user.ID,
2021-11-18 16:49:55 +08:00
RegisterMethod: RegisterMethodAuthKey,
AuthKeyID: uint(pak.ID),
}
2021-11-16 00:16:04 +08:00
app.db.Save(&machine)
err = app.DestroyUser("test")
c.Assert(err, check.Equals, ErrUserStillHasNodes)
}
func (s *Suite) TestRenameUser(c *check.C) {
userTest, err := app.CreateUser("test")
2021-10-16 23:20:06 +08:00
c.Assert(err, check.IsNil)
c.Assert(userTest.Name, check.Equals, "test")
2021-10-16 23:20:06 +08:00
users, err := app.ListUsers()
2021-10-16 23:20:06 +08:00
c.Assert(err, check.IsNil)
c.Assert(len(users), check.Equals, 1)
2021-10-16 23:20:06 +08:00
err = app.RenameUser("test", "test-renamed")
2021-10-16 23:20:06 +08:00
c.Assert(err, check.IsNil)
_, err = app.GetUser("test")
c.Assert(err, check.Equals, ErrUserNotFound)
2021-10-16 23:20:06 +08:00
_, err = app.GetUser("test-renamed")
2021-10-16 23:20:06 +08:00
c.Assert(err, check.IsNil)
err = app.RenameUser("test-does-not-exit", "test")
c.Assert(err, check.Equals, ErrUserNotFound)
2021-10-16 23:20:06 +08:00
userTest2, err := app.CreateUser("test2")
2021-10-16 23:20:06 +08:00
c.Assert(err, check.IsNil)
c.Assert(userTest2.Name, check.Equals, "test2")
2021-10-16 23:20:06 +08:00
err = app.RenameUser("test2", "test-renamed")
c.Assert(err, check.Equals, ErrUserExists)
2021-10-16 23:20:06 +08:00
}
2021-10-18 05:59:44 +08:00
func (s *Suite) TestGetMapResponseUserProfiles(c *check.C) {
userShared1, err := app.CreateUser("shared1")
c.Assert(err, check.IsNil)
userShared2, err := app.CreateUser("shared2")
c.Assert(err, check.IsNil)
userShared3, err := app.CreateUser("shared3")
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
preAuthKeyShared1, err := app.CreatePreAuthKey(
userShared1.Name,
2021-11-16 00:16:04 +08:00
false,
false,
nil,
2022-08-25 18:12:41 +08:00
nil,
2021-11-16 00:16:04 +08:00
)
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
preAuthKeyShared2, err := app.CreatePreAuthKey(
userShared2.Name,
2021-11-16 00:16:04 +08:00
false,
false,
nil,
2022-08-25 18:12:41 +08:00
nil,
2021-11-16 00:16:04 +08:00
)
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
preAuthKeyShared3, err := app.CreatePreAuthKey(
userShared3.Name,
2021-11-16 00:16:04 +08:00
false,
false,
nil,
2022-08-25 18:12:41 +08:00
nil,
2021-11-16 00:16:04 +08:00
)
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
preAuthKey2Shared1, err := app.CreatePreAuthKey(
userShared1.Name,
2021-11-16 00:16:04 +08:00
false,
false,
nil,
2022-08-25 18:12:41 +08:00
nil,
2021-11-16 00:16:04 +08:00
)
c.Assert(err, check.IsNil)
_, err = app.GetMachine(userShared1.Name, "test_get_shared_nodes_1")
c.Assert(err, check.NotNil)
2021-11-16 00:16:04 +08:00
machineInShared1 := &Machine{
ID: 1,
MachineKey: "686824e749f3b7f2a5927ee6c1e422aee5292592d9179a271ed7b3e659b44a66",
NodeKey: "686824e749f3b7f2a5927ee6c1e422aee5292592d9179a271ed7b3e659b44a66",
DiscoKey: "686824e749f3b7f2a5927ee6c1e422aee5292592d9179a271ed7b3e659b44a66",
2022-05-17 03:41:46 +08:00
Hostname: "test_get_shared_nodes_1",
UserID: userShared1.ID,
User: *userShared1,
2021-11-18 16:49:55 +08:00
RegisterMethod: RegisterMethodAuthKey,
IPAddresses: []netip.Addr{netip.MustParseAddr("100.64.0.1")},
2021-11-16 00:16:04 +08:00
AuthKeyID: uint(preAuthKeyShared1.ID),
}
2021-11-16 00:16:04 +08:00
app.db.Save(machineInShared1)
_, err = app.GetMachine(userShared1.Name, machineInShared1.Hostname)
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
machineInShared2 := &Machine{
ID: 2,
MachineKey: "dec46ef9dc45c7d2f03bfcd5a640d9e24e3cc68ce3d9da223867c9bc6d5e9863",
NodeKey: "dec46ef9dc45c7d2f03bfcd5a640d9e24e3cc68ce3d9da223867c9bc6d5e9863",
DiscoKey: "dec46ef9dc45c7d2f03bfcd5a640d9e24e3cc68ce3d9da223867c9bc6d5e9863",
2022-05-17 03:41:46 +08:00
Hostname: "test_get_shared_nodes_2",
UserID: userShared2.ID,
User: *userShared2,
2021-11-18 16:49:55 +08:00
RegisterMethod: RegisterMethodAuthKey,
IPAddresses: []netip.Addr{netip.MustParseAddr("100.64.0.2")},
2021-11-16 00:16:04 +08:00
AuthKeyID: uint(preAuthKeyShared2.ID),
}
2021-11-16 00:16:04 +08:00
app.db.Save(machineInShared2)
_, err = app.GetMachine(userShared2.Name, machineInShared2.Hostname)
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
machineInShared3 := &Machine{
ID: 3,
MachineKey: "dec46ef9dc45c7d2f03bfcd5a640d9e24e3cc68ce3d9da223867c9bc6d5e9863",
NodeKey: "dec46ef9dc45c7d2f03bfcd5a640d9e24e3cc68ce3d9da223867c9bc6d5e9863",
DiscoKey: "dec46ef9dc45c7d2f03bfcd5a640d9e24e3cc68ce3d9da223867c9bc6d5e9863",
2022-05-17 03:41:46 +08:00
Hostname: "test_get_shared_nodes_3",
UserID: userShared3.ID,
User: *userShared3,
2021-11-18 16:49:55 +08:00
RegisterMethod: RegisterMethodAuthKey,
IPAddresses: []netip.Addr{netip.MustParseAddr("100.64.0.3")},
2021-11-16 00:16:04 +08:00
AuthKeyID: uint(preAuthKeyShared3.ID),
}
2021-11-16 00:16:04 +08:00
app.db.Save(machineInShared3)
_, err = app.GetMachine(userShared3.Name, machineInShared3.Hostname)
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
machine2InShared1 := &Machine{
ID: 4,
MachineKey: "dec46ef9dc45c7d2f03bfcd5a640d9e24e3cc68ce3d9da223867c9bc6d5e9863",
NodeKey: "dec46ef9dc45c7d2f03bfcd5a640d9e24e3cc68ce3d9da223867c9bc6d5e9863",
DiscoKey: "dec46ef9dc45c7d2f03bfcd5a640d9e24e3cc68ce3d9da223867c9bc6d5e9863",
2022-05-17 03:41:46 +08:00
Hostname: "test_get_shared_nodes_4",
UserID: userShared1.ID,
User: *userShared1,
2021-11-18 16:49:55 +08:00
RegisterMethod: RegisterMethodAuthKey,
IPAddresses: []netip.Addr{netip.MustParseAddr("100.64.0.4")},
2021-11-16 00:16:04 +08:00
AuthKeyID: uint(preAuthKey2Shared1.ID),
}
2021-11-16 00:16:04 +08:00
app.db.Save(machine2InShared1)
2021-11-16 00:16:04 +08:00
peersOfMachine1InShared1, err := app.getPeers(machineInShared1)
c.Assert(err, check.IsNil)
userProfiles := app.getMapResponseUserProfiles(
2021-11-16 00:16:04 +08:00
*machineInShared1,
peersOfMachine1InShared1,
)
c.Assert(len(userProfiles), check.Equals, 3)
found := false
2021-11-16 00:16:04 +08:00
for _, userProfiles := range userProfiles {
if userProfiles.DisplayName == userShared1.Name {
found = true
2021-11-14 23:46:09 +08:00
break
}
}
c.Assert(found, check.Equals, true)
found = false
2021-11-16 00:16:04 +08:00
for _, userProfile := range userProfiles {
if userProfile.DisplayName == userShared2.Name {
found = true
2021-11-14 23:46:09 +08:00
break
}
}
c.Assert(found, check.Equals, true)
}
func TestNormalizeToFQDNRules(t *testing.T) {
type args struct {
name string
stripEmailDomain bool
}
tests := []struct {
name string
args args
want string
wantErr bool
}{
{
name: "normalize simple name",
args: args{
name: "normalize-simple.name",
stripEmailDomain: false,
},
want: "normalize-simple.name",
wantErr: false,
},
{
name: "normalize an email",
args: args{
name: "foo.bar@example.com",
stripEmailDomain: false,
},
want: "foo.bar.example.com",
wantErr: false,
},
{
name: "normalize an email domain should be removed",
args: args{
name: "foo.bar@example.com",
stripEmailDomain: true,
},
want: "foo.bar",
wantErr: false,
},
{
name: "strip enabled no email passed as argument",
args: args{
name: "not-email-and-strip-enabled",
stripEmailDomain: true,
},
want: "not-email-and-strip-enabled",
wantErr: false,
},
{
name: "normalize complex email",
args: args{
name: "foo.bar+complex-email@example.com",
stripEmailDomain: false,
},
want: "foo.bar-complex-email.example.com",
wantErr: false,
},
{
name: "user name with space",
args: args{
name: "name space",
stripEmailDomain: false,
},
want: "name-space",
wantErr: false,
},
{
name: "user with quote",
args: args{
name: "Jamie's iPhone 5",
stripEmailDomain: false,
},
want: "jamies-iphone-5",
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := NormalizeToFQDNRules(tt.args.name, tt.args.stripEmailDomain)
if (err != nil) != tt.wantErr {
t.Errorf(
"NormalizeToFQDNRules() error = %v, wantErr %v",
err,
tt.wantErr,
)
2022-02-23 04:05:39 +08:00
return
}
if got != tt.want {
t.Errorf("NormalizeToFQDNRules() = %v, want %v", got, tt.want)
}
})
}
}
func TestCheckForFQDNRules(t *testing.T) {
type args struct {
name string
}
tests := []struct {
name string
args args
wantErr bool
}{
{
name: "valid: user",
args: args{name: "valid-user"},
wantErr: false,
},
{
name: "invalid: capitalized user",
args: args{name: "Invalid-CapItaLIzed-user"},
wantErr: true,
},
{
name: "invalid: email as user",
args: args{name: "foo.bar@example.com"},
wantErr: true,
},
{
name: "invalid: chars in user name",
args: args{name: "super-user+name"},
wantErr: true,
},
{
name: "invalid: too long name for user",
args: args{
name: "super-long-useruseruser-name-that-should-be-a-little-more-than-63-chars",
},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if err := CheckForFQDNRules(tt.args.name); (err != nil) != tt.wantErr {
t.Errorf("CheckForFQDNRules() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
2022-05-02 01:40:18 +08:00
func (s *Suite) TestSetMachineUser(c *check.C) {
oldUser, err := app.CreateUser("old")
2022-05-02 01:40:18 +08:00
c.Assert(err, check.IsNil)
newUser, err := app.CreateUser("new")
2022-05-02 01:40:18 +08:00
c.Assert(err, check.IsNil)
pak, err := app.CreatePreAuthKey(oldUser.Name, false, false, nil, nil)
2022-05-02 01:40:18 +08:00
c.Assert(err, check.IsNil)
machine := Machine{
ID: 0,
MachineKey: "foo",
NodeKey: "bar",
DiscoKey: "faa",
2022-05-17 03:41:46 +08:00
Hostname: "testmachine",
UserID: oldUser.ID,
2022-05-02 01:40:18 +08:00
RegisterMethod: RegisterMethodAuthKey,
AuthKeyID: uint(pak.ID),
}
app.db.Save(&machine)
c.Assert(machine.UserID, check.Equals, oldUser.ID)
2022-05-02 01:40:18 +08:00
err = app.SetMachineUser(&machine, newUser.Name)
2022-05-02 01:40:18 +08:00
c.Assert(err, check.IsNil)
c.Assert(machine.UserID, check.Equals, newUser.ID)
c.Assert(machine.User.Name, check.Equals, newUser.Name)
2022-05-02 01:40:18 +08:00
err = app.SetMachineUser(&machine, "non-existing-user")
c.Assert(err, check.Equals, ErrUserNotFound)
2022-05-02 01:40:18 +08:00
err = app.SetMachineUser(&machine, newUser.Name)
2022-05-02 01:40:18 +08:00
c.Assert(err, check.IsNil)
c.Assert(machine.UserID, check.Equals, newUser.ID)
c.Assert(machine.User.Name, check.Equals, newUser.Name)
2022-05-02 01:40:18 +08:00
}