headscale/acls_test.go

1462 lines
37 KiB
Go
Raw Normal View History

2021-07-03 17:55:32 +08:00
package headscale
import (
"errors"
2022-09-02 06:05:43 +08:00
"net/netip"
"reflect"
"testing"
2021-07-03 17:55:32 +08:00
"gopkg.in/check.v1"
"tailscale.com/tailcfg"
2021-07-03 17:55:32 +08:00
)
func (s *Suite) TestWrongPath(c *check.C) {
2021-11-16 00:16:04 +08:00
err := app.LoadACLPolicy("asdfg")
2021-07-03 17:55:32 +08:00
c.Assert(err, check.NotNil)
}
func (s *Suite) TestBrokenHuJson(c *check.C) {
2021-11-16 00:16:04 +08:00
err := app.LoadACLPolicy("./tests/acls/broken.hujson")
2021-07-03 17:55:32 +08:00
c.Assert(err, check.NotNil)
}
func (s *Suite) TestInvalidPolicyHuson(c *check.C) {
2021-11-16 00:16:04 +08:00
err := app.LoadACLPolicy("./tests/acls/invalid.hujson")
2021-07-03 17:55:32 +08:00
c.Assert(err, check.NotNil)
2021-11-16 00:33:16 +08:00
c.Assert(err, check.Equals, errEmptyPolicy)
2021-07-03 17:55:32 +08:00
}
2021-07-03 23:31:32 +08:00
func (s *Suite) TestParseHosts(c *check.C) {
2021-11-16 00:16:04 +08:00
var hosts Hosts
err := hosts.UnmarshalJSON(
2021-11-13 16:36:45 +08:00
[]byte(
`{"example-host-1": "100.100.100.100","example-host-2": "100.100.101.100/24"}`,
),
)
2021-11-16 00:16:04 +08:00
c.Assert(hosts, check.NotNil)
2021-07-03 17:55:32 +08:00
c.Assert(err, check.IsNil)
2021-07-03 23:31:32 +08:00
}
func (s *Suite) TestParseInvalidCIDR(c *check.C) {
2021-11-16 00:16:04 +08:00
var hosts Hosts
err := hosts.UnmarshalJSON([]byte(`{"example-host-1": "100.100.100.100/42"}`))
c.Assert(hosts, check.IsNil)
2021-07-03 23:31:32 +08:00
c.Assert(err, check.NotNil)
}
func (s *Suite) TestRuleInvalidGeneration(c *check.C) {
2021-11-16 00:16:04 +08:00
err := app.LoadACLPolicy("./tests/acls/acl_policy_invalid.hujson")
2021-07-03 23:31:32 +08:00
c.Assert(err, check.NotNil)
}
func (s *Suite) TestBasicRule(c *check.C) {
2021-11-16 00:16:04 +08:00
err := app.LoadACLPolicy("./tests/acls/acl_policy_basic_1.hujson")
2021-07-03 23:31:32 +08:00
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
rules, err := app.generateACLRules()
2021-07-03 23:31:32 +08:00
c.Assert(err, check.IsNil)
2021-07-04 19:01:41 +08:00
c.Assert(rules, check.NotNil)
}
2022-02-22 04:48:05 +08:00
// TODO(kradalby): Make tests values safe, independent and descriptive.
func (s *Suite) TestInvalidAction(c *check.C) {
app.aclPolicy = &ACLPolicy{
ACLs: []ACL{
2022-08-04 16:47:00 +08:00
{
Action: "invalidAction",
Sources: []string{"*"},
Destinations: []string{"*:*"},
},
},
}
err := app.UpdateACLRules()
c.Assert(errors.Is(err, errInvalidAction), check.Equals, true)
}
func (s *Suite) TestInvalidGroupInGroup(c *check.C) {
// this ACL is wrong because the group in Sources sections doesn't exist
app.aclPolicy = &ACLPolicy{
2022-02-14 22:54:51 +08:00
Groups: Groups{
"group:test": []string{"foo"},
"group:error": []string{"foo", "group:test"},
},
ACLs: []ACL{
2022-08-04 16:47:00 +08:00
{
Action: "accept",
Sources: []string{"group:error"},
Destinations: []string{"*:*"},
},
},
}
err := app.UpdateACLRules()
c.Assert(errors.Is(err, errInvalidGroup), check.Equals, true)
}
func (s *Suite) TestInvalidTagOwners(c *check.C) {
// this ACL is wrong because no tagOwners own the requested tag for the server
app.aclPolicy = &ACLPolicy{
ACLs: []ACL{
2022-08-04 16:47:00 +08:00
{
Action: "accept",
Sources: []string{"tag:foo"},
Destinations: []string{"*:*"},
},
},
}
err := app.UpdateACLRules()
c.Assert(errors.Is(err, errInvalidTag), check.Equals, true)
}
// this test should validate that we can expand a group in a TagOWner section and
// match properly the IP's of the related hosts. The owner is valid and the tag is also valid.
// the tag is matched in the Sources section.
func (s *Suite) TestValidExpandTagOwnersInSources(c *check.C) {
namespace, err := app.CreateNamespace("user1")
c.Assert(err, check.IsNil)
2022-08-25 18:12:41 +08:00
pak, err := app.CreatePreAuthKey(namespace.Name, false, false, nil, nil)
c.Assert(err, check.IsNil)
_, err = app.GetMachine("user1", "testmachine")
c.Assert(err, check.NotNil)
2022-03-02 00:34:35 +08:00
hostInfo := tailcfg.Hostinfo{
OS: "centos",
Hostname: "testmachine",
RequestTags: []string{"tag:test"},
}
machine := Machine{
ID: 0,
MachineKey: "foo",
NodeKey: "bar",
DiscoKey: "faa",
Hostname: "testmachine",
2022-09-02 06:05:43 +08:00
IPAddresses: MachineAddresses{netip.MustParseAddr("100.64.0.1")},
NamespaceID: namespace.ID,
RegisterMethod: RegisterMethodAuthKey,
AuthKeyID: uint(pak.ID),
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo(hostInfo),
}
app.db.Save(&machine)
app.aclPolicy = &ACLPolicy{
Groups: Groups{"group:test": []string{"user1", "user2"}},
TagOwners: TagOwners{"tag:test": []string{"user3", "group:test"}},
ACLs: []ACL{
2022-08-04 16:47:00 +08:00
{
Action: "accept",
Sources: []string{"tag:test"},
Destinations: []string{"*:*"},
},
},
}
err = app.UpdateACLRules()
c.Assert(err, check.IsNil)
c.Assert(app.aclRules, check.HasLen, 1)
c.Assert(app.aclRules[0].SrcIPs, check.HasLen, 1)
c.Assert(app.aclRules[0].SrcIPs[0], check.Equals, "100.64.0.1")
}
// this test should validate that we can expand a group in a TagOWner section and
// match properly the IP's of the related hosts. The owner is valid and the tag is also valid.
// the tag is matched in the Destinations section.
2022-06-11 20:12:53 +08:00
func (s *Suite) TestValidExpandTagOwnersInDestinations(c *check.C) {
namespace, err := app.CreateNamespace("user1")
c.Assert(err, check.IsNil)
2022-08-25 18:12:41 +08:00
pak, err := app.CreatePreAuthKey(namespace.Name, false, false, nil, nil)
c.Assert(err, check.IsNil)
_, err = app.GetMachine("user1", "testmachine")
c.Assert(err, check.NotNil)
2022-03-02 00:34:35 +08:00
hostInfo := tailcfg.Hostinfo{
OS: "centos",
Hostname: "testmachine",
RequestTags: []string{"tag:test"},
}
machine := Machine{
ID: 1,
MachineKey: "12345",
NodeKey: "bar",
DiscoKey: "faa",
Hostname: "testmachine",
2022-09-02 06:05:43 +08:00
IPAddresses: MachineAddresses{netip.MustParseAddr("100.64.0.1")},
NamespaceID: namespace.ID,
RegisterMethod: RegisterMethodAuthKey,
AuthKeyID: uint(pak.ID),
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo(hostInfo),
}
app.db.Save(&machine)
app.aclPolicy = &ACLPolicy{
Groups: Groups{"group:test": []string{"user1", "user2"}},
TagOwners: TagOwners{"tag:test": []string{"user3", "group:test"}},
ACLs: []ACL{
2022-08-04 16:47:00 +08:00
{
Action: "accept",
Sources: []string{"*"},
Destinations: []string{"tag:test:*"},
},
},
}
err = app.UpdateACLRules()
c.Assert(err, check.IsNil)
c.Assert(app.aclRules, check.HasLen, 1)
c.Assert(app.aclRules[0].DstPorts, check.HasLen, 1)
c.Assert(app.aclRules[0].DstPorts[0].IP, check.Equals, "100.64.0.1")
}
// need a test with:
// tag on a host that isn't owned by a tag owners. So the namespace
// of the host should be valid.
func (s *Suite) TestInvalidTagValidNamespace(c *check.C) {
namespace, err := app.CreateNamespace("user1")
c.Assert(err, check.IsNil)
2022-08-25 18:12:41 +08:00
pak, err := app.CreatePreAuthKey(namespace.Name, false, false, nil, nil)
c.Assert(err, check.IsNil)
_, err = app.GetMachine("user1", "testmachine")
c.Assert(err, check.NotNil)
2022-03-02 00:34:35 +08:00
hostInfo := tailcfg.Hostinfo{
OS: "centos",
Hostname: "testmachine",
RequestTags: []string{"tag:foo"},
}
machine := Machine{
ID: 1,
MachineKey: "12345",
NodeKey: "bar",
DiscoKey: "faa",
Hostname: "testmachine",
2022-09-02 06:05:43 +08:00
IPAddresses: MachineAddresses{netip.MustParseAddr("100.64.0.1")},
NamespaceID: namespace.ID,
RegisterMethod: RegisterMethodAuthKey,
AuthKeyID: uint(pak.ID),
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo(hostInfo),
}
app.db.Save(&machine)
app.aclPolicy = &ACLPolicy{
TagOwners: TagOwners{"tag:test": []string{"user1"}},
ACLs: []ACL{
2022-08-04 16:47:00 +08:00
{
Action: "accept",
Sources: []string{"user1"},
Destinations: []string{"*:*"},
},
},
}
err = app.UpdateACLRules()
c.Assert(err, check.IsNil)
c.Assert(app.aclRules, check.HasLen, 1)
c.Assert(app.aclRules[0].SrcIPs, check.HasLen, 1)
c.Assert(app.aclRules[0].SrcIPs[0], check.Equals, "100.64.0.1")
}
// tag on a host is owned by a tag owner, the tag is valid.
// an ACL rule is matching the tag to a namespace. It should not be valid since the
// host should be tied to the tag now.
func (s *Suite) TestValidTagInvalidNamespace(c *check.C) {
namespace, err := app.CreateNamespace("user1")
c.Assert(err, check.IsNil)
2022-08-25 18:12:41 +08:00
pak, err := app.CreatePreAuthKey(namespace.Name, false, false, nil, nil)
c.Assert(err, check.IsNil)
_, err = app.GetMachine("user1", "webserver")
c.Assert(err, check.NotNil)
2022-03-02 00:34:35 +08:00
hostInfo := tailcfg.Hostinfo{
OS: "centos",
Hostname: "webserver",
RequestTags: []string{"tag:webapp"},
}
machine := Machine{
ID: 1,
MachineKey: "12345",
NodeKey: "bar",
DiscoKey: "faa",
Hostname: "webserver",
2022-09-02 06:05:43 +08:00
IPAddresses: MachineAddresses{netip.MustParseAddr("100.64.0.1")},
NamespaceID: namespace.ID,
RegisterMethod: RegisterMethodAuthKey,
AuthKeyID: uint(pak.ID),
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo(hostInfo),
}
app.db.Save(&machine)
_, err = app.GetMachine("user1", "user")
2022-03-02 00:34:35 +08:00
hostInfo2 := tailcfg.Hostinfo{
OS: "debian",
Hostname: "Hostname",
}
c.Assert(err, check.NotNil)
machine = Machine{
ID: 2,
MachineKey: "56789",
NodeKey: "bar2",
DiscoKey: "faab",
Hostname: "user",
2022-09-02 06:05:43 +08:00
IPAddresses: MachineAddresses{netip.MustParseAddr("100.64.0.2")},
NamespaceID: namespace.ID,
RegisterMethod: RegisterMethodAuthKey,
AuthKeyID: uint(pak.ID),
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo(hostInfo2),
}
app.db.Save(&machine)
app.aclPolicy = &ACLPolicy{
TagOwners: TagOwners{"tag:webapp": []string{"user1"}},
ACLs: []ACL{
2022-02-14 22:54:51 +08:00
{
Action: "accept",
Sources: []string{"user1"},
Destinations: []string{"tag:webapp:80,443"},
2022-02-14 22:54:51 +08:00
},
},
}
err = app.UpdateACLRules()
c.Assert(err, check.IsNil)
c.Assert(app.aclRules, check.HasLen, 1)
c.Assert(app.aclRules[0].SrcIPs, check.HasLen, 1)
c.Assert(app.aclRules[0].SrcIPs[0], check.Equals, "100.64.0.2")
c.Assert(app.aclRules[0].DstPorts, check.HasLen, 2)
c.Assert(app.aclRules[0].DstPorts[0].Ports.First, check.Equals, uint16(80))
c.Assert(app.aclRules[0].DstPorts[0].Ports.Last, check.Equals, uint16(80))
c.Assert(app.aclRules[0].DstPorts[0].IP, check.Equals, "100.64.0.1")
c.Assert(app.aclRules[0].DstPorts[1].Ports.First, check.Equals, uint16(443))
c.Assert(app.aclRules[0].DstPorts[1].Ports.Last, check.Equals, uint16(443))
c.Assert(app.aclRules[0].DstPorts[1].IP, check.Equals, "100.64.0.1")
}
2021-07-04 19:01:41 +08:00
func (s *Suite) TestPortRange(c *check.C) {
2021-11-16 00:16:04 +08:00
err := app.LoadACLPolicy("./tests/acls/acl_policy_basic_range.hujson")
2021-07-04 19:01:41 +08:00
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
rules, err := app.generateACLRules()
2021-07-04 19:01:41 +08:00
c.Assert(err, check.IsNil)
c.Assert(rules, check.NotNil)
c.Assert(rules, check.HasLen, 1)
2022-01-16 21:16:59 +08:00
c.Assert(rules[0].DstPorts, check.HasLen, 1)
c.Assert(rules[0].DstPorts[0].Ports.First, check.Equals, uint16(5400))
c.Assert(rules[0].DstPorts[0].Ports.Last, check.Equals, uint16(5500))
2021-07-04 19:01:41 +08:00
}
2022-06-09 00:06:25 +08:00
func (s *Suite) TestProtocolParsing(c *check.C) {
err := app.LoadACLPolicy("./tests/acls/acl_policy_basic_protocols.hujson")
c.Assert(err, check.IsNil)
rules, err := app.generateACLRules()
c.Assert(err, check.IsNil)
c.Assert(rules, check.NotNil)
c.Assert(rules, check.HasLen, 3)
2022-06-11 21:17:07 +08:00
c.Assert(rules[0].IPProto[0], check.Equals, protocolTCP)
c.Assert(rules[1].IPProto[0], check.Equals, protocolUDP)
c.Assert(rules[2].IPProto[1], check.Equals, protocolIPv6ICMP)
2022-06-09 00:06:25 +08:00
}
2021-07-04 19:01:41 +08:00
func (s *Suite) TestPortWildcard(c *check.C) {
2021-11-16 00:16:04 +08:00
err := app.LoadACLPolicy("./tests/acls/acl_policy_basic_wildcards.hujson")
2021-07-04 19:01:41 +08:00
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
rules, err := app.generateACLRules()
2021-07-04 19:01:41 +08:00
c.Assert(err, check.IsNil)
c.Assert(rules, check.NotNil)
c.Assert(rules, check.HasLen, 1)
2022-01-16 21:16:59 +08:00
c.Assert(rules[0].DstPorts, check.HasLen, 1)
2022-02-27 16:04:59 +08:00
c.Assert(rules[0].DstPorts[0].Ports.First, check.Equals, uint16(0))
c.Assert(rules[0].DstPorts[0].Ports.Last, check.Equals, uint16(65535))
c.Assert(rules[0].SrcIPs, check.HasLen, 1)
c.Assert(rules[0].SrcIPs[0], check.Equals, "*")
}
func (s *Suite) TestPortWildcardYAML(c *check.C) {
err := app.LoadACLPolicy("./tests/acls/acl_policy_basic_wildcards.yaml")
c.Assert(err, check.IsNil)
rules, err := app.generateACLRules()
c.Assert(err, check.IsNil)
c.Assert(rules, check.NotNil)
c.Assert(rules, check.HasLen, 1)
c.Assert(rules[0].DstPorts, check.HasLen, 1)
2022-01-16 21:16:59 +08:00
c.Assert(rules[0].DstPorts[0].Ports.First, check.Equals, uint16(0))
c.Assert(rules[0].DstPorts[0].Ports.Last, check.Equals, uint16(65535))
c.Assert(rules[0].SrcIPs, check.HasLen, 1)
c.Assert(rules[0].SrcIPs[0], check.Equals, "*")
2021-07-04 19:01:41 +08:00
}
func (s *Suite) TestPortNamespace(c *check.C) {
2021-11-16 00:16:04 +08:00
namespace, err := app.CreateNamespace("testnamespace")
2021-07-04 19:01:41 +08:00
c.Assert(err, check.IsNil)
2022-08-25 18:12:41 +08:00
pak, err := app.CreatePreAuthKey(namespace.Name, false, false, nil, nil)
2021-07-04 19:01:41 +08:00
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
_, err = app.GetMachine("testnamespace", "testmachine")
2021-07-04 19:01:41 +08:00
c.Assert(err, check.NotNil)
2022-01-16 21:16:59 +08:00
ips, _ := app.getAvailableIPs()
2021-11-16 00:16:04 +08:00
machine := Machine{
2021-07-04 19:01:41 +08:00
ID: 0,
MachineKey: "12345",
2021-07-04 19:01:41 +08:00
NodeKey: "bar",
DiscoKey: "faa",
Hostname: "testmachine",
2021-11-16 00:16:04 +08:00
NamespaceID: namespace.ID,
2021-11-18 16:49:55 +08:00
RegisterMethod: RegisterMethodAuthKey,
2022-01-16 21:16:59 +08:00
IPAddresses: ips,
2021-07-04 19:01:41 +08:00
AuthKeyID: uint(pak.ID),
}
2021-11-16 00:16:04 +08:00
app.db.Save(&machine)
2021-07-04 19:01:41 +08:00
2021-11-16 00:16:04 +08:00
err = app.LoadACLPolicy(
"./tests/acls/acl_policy_basic_namespace_as_user.hujson",
)
2021-07-04 19:01:41 +08:00
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
rules, err := app.generateACLRules()
2021-07-04 19:01:41 +08:00
c.Assert(err, check.IsNil)
c.Assert(rules, check.NotNil)
c.Assert(rules, check.HasLen, 1)
2022-01-16 21:16:59 +08:00
c.Assert(rules[0].DstPorts, check.HasLen, 1)
c.Assert(rules[0].DstPorts[0].Ports.First, check.Equals, uint16(0))
c.Assert(rules[0].DstPorts[0].Ports.Last, check.Equals, uint16(65535))
c.Assert(rules[0].SrcIPs, check.HasLen, 1)
c.Assert(rules[0].SrcIPs[0], check.Not(check.Equals), "not an ip")
c.Assert(len(ips), check.Equals, 1)
c.Assert(rules[0].SrcIPs[0], check.Equals, ips[0].String())
2021-07-03 17:55:32 +08:00
}
2021-07-04 19:23:31 +08:00
func (s *Suite) TestPortGroup(c *check.C) {
2021-11-16 00:16:04 +08:00
namespace, err := app.CreateNamespace("testnamespace")
2021-07-04 19:23:31 +08:00
c.Assert(err, check.IsNil)
2022-08-25 18:12:41 +08:00
pak, err := app.CreatePreAuthKey(namespace.Name, false, false, nil, nil)
2021-07-04 19:23:31 +08:00
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
_, err = app.GetMachine("testnamespace", "testmachine")
2021-07-04 19:23:31 +08:00
c.Assert(err, check.NotNil)
2022-01-16 21:16:59 +08:00
ips, _ := app.getAvailableIPs()
2021-11-16 00:16:04 +08:00
machine := Machine{
2021-07-04 19:23:31 +08:00
ID: 0,
MachineKey: "foo",
NodeKey: "bar",
DiscoKey: "faa",
Hostname: "testmachine",
2021-11-16 00:16:04 +08:00
NamespaceID: namespace.ID,
2021-11-18 16:49:55 +08:00
RegisterMethod: RegisterMethodAuthKey,
2022-01-16 21:16:59 +08:00
IPAddresses: ips,
2021-07-04 19:23:31 +08:00
AuthKeyID: uint(pak.ID),
}
2021-11-16 00:16:04 +08:00
app.db.Save(&machine)
2021-11-16 00:16:04 +08:00
err = app.LoadACLPolicy("./tests/acls/acl_policy_basic_groups.hujson")
2021-07-04 19:23:31 +08:00
c.Assert(err, check.IsNil)
2021-11-16 00:16:04 +08:00
rules, err := app.generateACLRules()
2021-07-04 19:23:31 +08:00
c.Assert(err, check.IsNil)
c.Assert(rules, check.NotNil)
c.Assert(rules, check.HasLen, 1)
2022-01-16 21:16:59 +08:00
c.Assert(rules[0].DstPorts, check.HasLen, 1)
c.Assert(rules[0].DstPorts[0].Ports.First, check.Equals, uint16(0))
c.Assert(rules[0].DstPorts[0].Ports.Last, check.Equals, uint16(65535))
c.Assert(rules[0].SrcIPs, check.HasLen, 1)
c.Assert(rules[0].SrcIPs[0], check.Not(check.Equals), "not an ip")
c.Assert(len(ips), check.Equals, 1)
c.Assert(rules[0].SrcIPs[0], check.Equals, ips[0].String())
2021-07-04 19:23:31 +08:00
}
func Test_expandGroup(t *testing.T) {
type args struct {
2022-03-02 04:01:46 +08:00
aclPolicy ACLPolicy
group string
stripEmailDomain bool
}
tests := []struct {
name string
args args
want []string
wantErr bool
}{
{
name: "simple test",
args: args{
aclPolicy: ACLPolicy{
2022-02-14 22:54:51 +08:00
Groups: Groups{
"group:test": []string{"user1", "user2", "user3"},
"group:foo": []string{"user2", "user3"},
2022-02-14 22:54:51 +08:00
},
},
2022-03-02 04:01:46 +08:00
group: "group:test",
stripEmailDomain: true,
},
want: []string{"user1", "user2", "user3"},
wantErr: false,
},
{
name: "InexistantGroup",
args: args{
aclPolicy: ACLPolicy{
2022-02-14 22:54:51 +08:00
Groups: Groups{
"group:test": []string{"user1", "user2", "user3"},
"group:foo": []string{"user2", "user3"},
2022-02-14 22:54:51 +08:00
},
},
2022-03-02 04:01:46 +08:00
group: "group:undefined",
stripEmailDomain: true,
},
want: []string{},
wantErr: true,
},
2022-03-02 04:01:46 +08:00
{
name: "Expand emails in group",
args: args{
aclPolicy: ACLPolicy{
Groups: Groups{
"group:admin": []string{
"joe.bar@gmail.com",
"john.doe@yahoo.fr",
},
},
},
group: "group:admin",
stripEmailDomain: true,
},
want: []string{"joe.bar", "john.doe"},
wantErr: false,
},
{
name: "Expand emails in group",
args: args{
aclPolicy: ACLPolicy{
Groups: Groups{
"group:admin": []string{
"joe.bar@gmail.com",
"john.doe@yahoo.fr",
},
},
},
group: "group:admin",
stripEmailDomain: false,
},
want: []string{"joe.bar.gmail.com", "john.doe.yahoo.fr"},
wantErr: false,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
2022-03-02 04:01:46 +08:00
got, err := expandGroup(
test.args.aclPolicy,
test.args.group,
test.args.stripEmailDomain,
)
if (err != nil) != test.wantErr {
t.Errorf("expandGroup() error = %v, wantErr %v", err, test.wantErr)
return
}
if !reflect.DeepEqual(got, test.want) {
t.Errorf("expandGroup() = %v, want %v", got, test.want)
}
})
}
}
func Test_expandTagOwners(t *testing.T) {
type args struct {
2022-03-02 04:01:46 +08:00
aclPolicy ACLPolicy
tag string
stripEmailDomain bool
}
tests := []struct {
name string
args args
want []string
wantErr bool
}{
{
name: "simple tag expansion",
args: args{
aclPolicy: ACLPolicy{
TagOwners: TagOwners{"tag:test": []string{"user1"}},
},
2022-03-02 04:01:46 +08:00
tag: "tag:test",
stripEmailDomain: true,
},
want: []string{"user1"},
wantErr: false,
},
{
name: "expand with tag and group",
args: args{
aclPolicy: ACLPolicy{
Groups: Groups{"group:foo": []string{"user1", "user2"}},
TagOwners: TagOwners{"tag:test": []string{"group:foo"}},
},
2022-03-02 04:01:46 +08:00
tag: "tag:test",
stripEmailDomain: true,
},
want: []string{"user1", "user2"},
wantErr: false,
},
{
name: "expand with namespace and group",
args: args{
aclPolicy: ACLPolicy{
Groups: Groups{"group:foo": []string{"user1", "user2"}},
TagOwners: TagOwners{"tag:test": []string{"group:foo", "user3"}},
},
2022-03-02 04:01:46 +08:00
tag: "tag:test",
stripEmailDomain: true,
},
want: []string{"user1", "user2", "user3"},
wantErr: false,
},
{
name: "invalid tag",
args: args{
aclPolicy: ACLPolicy{
TagOwners: TagOwners{"tag:foo": []string{"group:foo", "user1"}},
},
2022-03-02 04:01:46 +08:00
tag: "tag:test",
stripEmailDomain: true,
},
want: []string{},
wantErr: true,
},
{
name: "invalid group",
args: args{
aclPolicy: ACLPolicy{
Groups: Groups{"group:bar": []string{"user1", "user2"}},
TagOwners: TagOwners{"tag:test": []string{"group:foo", "user2"}},
},
2022-03-02 04:01:46 +08:00
tag: "tag:test",
stripEmailDomain: true,
},
want: []string{},
wantErr: true,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
2022-03-02 04:01:46 +08:00
got, err := expandTagOwners(
test.args.aclPolicy,
test.args.tag,
test.args.stripEmailDomain,
)
if (err != nil) != test.wantErr {
t.Errorf("expandTagOwners() error = %v, wantErr %v", err, test.wantErr)
return
}
if !reflect.DeepEqual(got, test.want) {
t.Errorf("expandTagOwners() = %v, want %v", got, test.want)
}
})
}
}
func Test_expandPorts(t *testing.T) {
type args struct {
portsStr string
needsWildcard bool
}
tests := []struct {
name string
args args
want *[]tailcfg.PortRange
wantErr bool
}{
{
name: "wildcard",
args: args{portsStr: "*", needsWildcard: true},
want: &[]tailcfg.PortRange{
{First: portRangeBegin, Last: portRangeEnd},
},
wantErr: false,
},
{
name: "needs wildcard but does not require it",
args: args{portsStr: "*", needsWildcard: false},
want: &[]tailcfg.PortRange{
{First: portRangeBegin, Last: portRangeEnd},
},
wantErr: false,
},
{
name: "needs wildcard but gets port",
args: args{portsStr: "80,443", needsWildcard: true},
want: nil,
wantErr: true,
},
{
name: "two Destinations",
args: args{portsStr: "80,443", needsWildcard: false},
want: &[]tailcfg.PortRange{
{First: 80, Last: 80},
{First: 443, Last: 443},
},
wantErr: false,
},
{
name: "a range and a port",
args: args{portsStr: "80-1024,443", needsWildcard: false},
want: &[]tailcfg.PortRange{
{First: 80, Last: 1024},
{First: 443, Last: 443},
},
wantErr: false,
},
{
name: "out of bounds",
args: args{portsStr: "854038", needsWildcard: false},
want: nil,
wantErr: true,
},
{
name: "wrong port",
args: args{portsStr: "85a38", needsWildcard: false},
want: nil,
wantErr: true,
},
{
name: "wrong port in first",
args: args{portsStr: "a-80", needsWildcard: false},
want: nil,
wantErr: true,
},
{
name: "wrong port in last",
args: args{portsStr: "80-85a38", needsWildcard: false},
want: nil,
wantErr: true,
},
{
name: "wrong port format",
args: args{portsStr: "80-85a38-3", needsWildcard: false},
want: nil,
wantErr: true,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
got, err := expandPorts(test.args.portsStr, test.args.needsWildcard)
if (err != nil) != test.wantErr {
t.Errorf("expandPorts() error = %v, wantErr %v", err, test.wantErr)
return
}
if !reflect.DeepEqual(got, test.want) {
t.Errorf("expandPorts() = %v, want %v", got, test.want)
}
})
}
}
func Test_listMachinesInNamespace(t *testing.T) {
type args struct {
machines []Machine
namespace string
}
tests := []struct {
name string
args args
want []Machine
}{
{
name: "1 machine in namespace",
args: args{
machines: []Machine{
{Namespace: Namespace{Name: "joe"}},
},
namespace: "joe",
},
want: []Machine{
{Namespace: Namespace{Name: "joe"}},
},
},
{
name: "3 machines, 2 in namespace",
args: args{
machines: []Machine{
{ID: 1, Namespace: Namespace{Name: "joe"}},
{ID: 2, Namespace: Namespace{Name: "marc"}},
{ID: 3, Namespace: Namespace{Name: "marc"}},
},
namespace: "marc",
},
want: []Machine{
{ID: 2, Namespace: Namespace{Name: "marc"}},
{ID: 3, Namespace: Namespace{Name: "marc"}},
},
},
{
name: "5 machines, 0 in namespace",
args: args{
machines: []Machine{
{ID: 1, Namespace: Namespace{Name: "joe"}},
{ID: 2, Namespace: Namespace{Name: "marc"}},
{ID: 3, Namespace: Namespace{Name: "marc"}},
{ID: 4, Namespace: Namespace{Name: "marc"}},
{ID: 5, Namespace: Namespace{Name: "marc"}},
},
namespace: "mickael",
},
want: []Machine{},
},
}
2022-02-15 01:24:37 +08:00
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
if got := filterMachinesByNamespace(test.args.machines, test.args.namespace); !reflect.DeepEqual(
2022-02-14 22:54:51 +08:00
got,
2022-02-15 01:24:37 +08:00
test.want,
2022-02-14 22:54:51 +08:00
) {
2022-02-15 01:24:37 +08:00
t.Errorf("listMachinesInNamespace() = %v, want %v", got, test.want)
}
})
}
}
func Test_expandAlias(t *testing.T) {
type args struct {
2022-03-02 04:01:46 +08:00
machines []Machine
aclPolicy ACLPolicy
alias string
stripEmailDomain bool
}
tests := []struct {
name string
args args
want []string
wantErr bool
}{
{
name: "wildcard",
args: args{
alias: "*",
machines: []Machine{
2022-09-02 06:05:43 +08:00
{IPAddresses: MachineAddresses{netip.MustParseAddr("100.64.0.1")}},
2022-02-14 22:54:51 +08:00
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.78.84.227"),
2022-02-14 22:54:51 +08:00
},
},
},
2022-03-02 04:01:46 +08:00
aclPolicy: ACLPolicy{},
stripEmailDomain: true,
},
want: []string{"*"},
wantErr: false,
},
{
name: "simple group",
args: args{
alias: "group:accountant",
machines: []Machine{
2022-02-14 22:54:51 +08:00
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.1"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.2"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.3"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "marc"},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.4"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "mickael"},
2022-02-14 22:54:51 +08:00
},
},
aclPolicy: ACLPolicy{
Groups: Groups{"group:accountant": []string{"joe", "marc"}},
},
2022-03-02 04:01:46 +08:00
stripEmailDomain: true,
},
want: []string{"100.64.0.1", "100.64.0.2", "100.64.0.3"},
wantErr: false,
},
{
name: "wrong group",
args: args{
alias: "group:hr",
machines: []Machine{
2022-02-14 22:54:51 +08:00
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.1"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.2"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.3"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "marc"},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.4"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "mickael"},
2022-02-14 22:54:51 +08:00
},
},
aclPolicy: ACLPolicy{
Groups: Groups{"group:accountant": []string{"joe", "marc"}},
},
2022-03-02 04:01:46 +08:00
stripEmailDomain: true,
},
want: []string{},
wantErr: true,
},
{
name: "simple ipaddress",
args: args{
2022-03-02 04:01:46 +08:00
alias: "10.0.0.3",
machines: []Machine{},
aclPolicy: ACLPolicy{},
stripEmailDomain: true,
},
want: []string{"10.0.0.3"},
wantErr: false,
},
{
name: "private network",
args: args{
alias: "homeNetwork",
machines: []Machine{},
aclPolicy: ACLPolicy{
2022-02-14 22:54:51 +08:00
Hosts: Hosts{
2022-09-02 06:05:43 +08:00
"homeNetwork": netip.MustParsePrefix("192.168.1.0/24"),
2022-02-14 22:54:51 +08:00
},
},
2022-03-02 04:01:46 +08:00
stripEmailDomain: true,
},
want: []string{"192.168.1.0/24"},
wantErr: false,
},
{
name: "simple host",
args: args{
2022-03-02 04:01:46 +08:00
alias: "10.0.0.1",
machines: []Machine{},
aclPolicy: ACLPolicy{},
stripEmailDomain: true,
},
want: []string{"10.0.0.1"},
wantErr: false,
},
{
name: "simple CIDR",
args: args{
2022-03-02 04:01:46 +08:00
alias: "10.0.0.0/16",
machines: []Machine{},
aclPolicy: ACLPolicy{},
stripEmailDomain: true,
},
want: []string{"10.0.0.0/16"},
wantErr: false,
},
{
name: "simple tag",
args: args{
alias: "tag:hr-webserver",
machines: []Machine{
2022-02-14 22:54:51 +08:00
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.1"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo{
OS: "centos",
Hostname: "foo",
RequestTags: []string{"tag:hr-webserver"},
},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.2"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo{
OS: "centos",
Hostname: "foo",
RequestTags: []string{"tag:hr-webserver"},
},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.3"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "marc"},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.4"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-02-14 22:54:51 +08:00
},
},
aclPolicy: ACLPolicy{
TagOwners: TagOwners{"tag:hr-webserver": []string{"joe"}},
},
2022-03-02 04:01:46 +08:00
stripEmailDomain: true,
},
want: []string{"100.64.0.1", "100.64.0.2"},
wantErr: false,
},
{
name: "No tag defined",
args: args{
alias: "tag:hr-webserver",
machines: []Machine{
2022-02-14 22:54:51 +08:00
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.1"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.2"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.3"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "marc"},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.4"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "mickael"},
2022-02-14 22:54:51 +08:00
},
},
aclPolicy: ACLPolicy{
2022-02-21 23:06:20 +08:00
Groups: Groups{"group:accountant": []string{"joe", "marc"}},
TagOwners: TagOwners{
"tag:accountant-webserver": []string{"group:accountant"},
},
},
2022-03-02 04:01:46 +08:00
stripEmailDomain: true,
},
want: []string{},
wantErr: true,
},
{
name: "Forced tag defined",
args: args{
alias: "tag:hr-webserver",
machines: []Machine{
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.1"),
},
Namespace: Namespace{Name: "joe"},
ForcedTags: []string{"tag:hr-webserver"},
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.2"),
},
Namespace: Namespace{Name: "joe"},
ForcedTags: []string{"tag:hr-webserver"},
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.3"),
},
Namespace: Namespace{Name: "marc"},
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.4"),
},
Namespace: Namespace{Name: "mickael"},
},
},
aclPolicy: ACLPolicy{},
stripEmailDomain: true,
},
want: []string{"100.64.0.1", "100.64.0.2"},
wantErr: false,
},
{
name: "Forced tag with legitimate tagOwner",
args: args{
alias: "tag:hr-webserver",
machines: []Machine{
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.1"),
},
Namespace: Namespace{Name: "joe"},
ForcedTags: []string{"tag:hr-webserver"},
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.2"),
},
Namespace: Namespace{Name: "joe"},
HostInfo: HostInfo{
OS: "centos",
Hostname: "foo",
RequestTags: []string{"tag:hr-webserver"},
},
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.3"),
},
Namespace: Namespace{Name: "marc"},
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.4"),
},
Namespace: Namespace{Name: "mickael"},
},
},
aclPolicy: ACLPolicy{
TagOwners: TagOwners{
"tag:hr-webserver": []string{"joe"},
},
},
stripEmailDomain: true,
},
want: []string{"100.64.0.1", "100.64.0.2"},
wantErr: false,
},
{
name: "list host in namespace without correctly tagged servers",
args: args{
alias: "joe",
machines: []Machine{
2022-02-14 22:54:51 +08:00
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.1"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo{
OS: "centos",
Hostname: "foo",
RequestTags: []string{"tag:accountant-webserver"},
},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.2"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo{
OS: "centos",
Hostname: "foo",
RequestTags: []string{"tag:accountant-webserver"},
},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.3"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "marc"},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.4"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-02-14 22:54:51 +08:00
},
},
aclPolicy: ACLPolicy{
TagOwners: TagOwners{"tag:accountant-webserver": []string{"joe"}},
},
2022-03-02 04:01:46 +08:00
stripEmailDomain: true,
},
want: []string{"100.64.0.4"},
wantErr: false,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
2022-02-14 22:54:51 +08:00
got, err := expandAlias(
test.args.machines,
test.args.aclPolicy,
test.args.alias,
2022-03-02 04:01:46 +08:00
test.args.stripEmailDomain,
2022-02-14 22:54:51 +08:00
)
if (err != nil) != test.wantErr {
t.Errorf("expandAlias() error = %v, wantErr %v", err, test.wantErr)
return
}
if !reflect.DeepEqual(got, test.want) {
t.Errorf("expandAlias() = %v, want %v", got, test.want)
}
})
}
}
func Test_excludeCorrectlyTaggedNodes(t *testing.T) {
type args struct {
aclPolicy ACLPolicy
nodes []Machine
namespace string
stripEmailDomain bool
}
tests := []struct {
name string
args args
want []Machine
wantErr bool
}{
{
name: "exclude nodes with valid tags",
args: args{
aclPolicy: ACLPolicy{
TagOwners: TagOwners{"tag:accountant-webserver": []string{"joe"}},
},
nodes: []Machine{
2022-02-14 22:54:51 +08:00
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.1"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo{
OS: "centos",
Hostname: "foo",
RequestTags: []string{"tag:accountant-webserver"},
},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.2"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo{
OS: "centos",
Hostname: "foo",
RequestTags: []string{"tag:accountant-webserver"},
},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.4"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-02-14 22:54:51 +08:00
},
},
namespace: "joe",
stripEmailDomain: true,
},
want: []Machine{
{
2022-09-02 06:05:43 +08:00
IPAddresses: MachineAddresses{netip.MustParseAddr("100.64.0.4")},
Namespace: Namespace{Name: "joe"},
},
},
},
{
name: "exclude nodes with valid tags, and owner is in a group",
args: args{
aclPolicy: ACLPolicy{
Groups: Groups{
"group:accountant": []string{"joe", "bar"},
},
2022-08-04 16:47:00 +08:00
TagOwners: TagOwners{
"tag:accountant-webserver": []string{"group:accountant"},
},
},
nodes: []Machine{
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.1"),
},
Namespace: Namespace{Name: "joe"},
HostInfo: HostInfo{
OS: "centos",
Hostname: "foo",
RequestTags: []string{"tag:accountant-webserver"},
},
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.2"),
},
Namespace: Namespace{Name: "joe"},
HostInfo: HostInfo{
OS: "centos",
Hostname: "foo",
RequestTags: []string{"tag:accountant-webserver"},
},
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.4"),
},
Namespace: Namespace{Name: "joe"},
},
},
namespace: "joe",
stripEmailDomain: true,
},
want: []Machine{
2022-02-14 22:54:51 +08:00
{
2022-09-02 06:05:43 +08:00
IPAddresses: MachineAddresses{netip.MustParseAddr("100.64.0.4")},
Namespace: Namespace{Name: "joe"},
},
},
},
{
name: "exclude nodes with valid tags and with forced tags",
args: args{
aclPolicy: ACLPolicy{
TagOwners: TagOwners{"tag:accountant-webserver": []string{"joe"}},
},
nodes: []Machine{
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.1"),
},
Namespace: Namespace{Name: "joe"},
HostInfo: HostInfo{
OS: "centos",
Hostname: "foo",
RequestTags: []string{"tag:accountant-webserver"},
},
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.2"),
},
Namespace: Namespace{Name: "joe"},
ForcedTags: []string{"tag:accountant-webserver"},
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.4"),
},
Namespace: Namespace{Name: "joe"},
},
},
namespace: "joe",
stripEmailDomain: true,
},
want: []Machine{
{
2022-09-02 06:05:43 +08:00
IPAddresses: MachineAddresses{netip.MustParseAddr("100.64.0.4")},
Namespace: Namespace{Name: "joe"},
2022-02-14 22:54:51 +08:00
},
},
},
{
name: "all nodes have invalid tags, don't exclude them",
args: args{
aclPolicy: ACLPolicy{
TagOwners: TagOwners{"tag:accountant-webserver": []string{"joe"}},
},
nodes: []Machine{
2022-02-14 22:54:51 +08:00
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.1"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo{
OS: "centos",
Hostname: "hr-web1",
RequestTags: []string{"tag:hr-webserver"},
},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.2"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo{
OS: "centos",
Hostname: "hr-web2",
RequestTags: []string{"tag:hr-webserver"},
},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.4"),
2022-02-14 22:54:51 +08:00
},
Namespace: Namespace{Name: "joe"},
2022-02-14 22:54:51 +08:00
},
},
namespace: "joe",
stripEmailDomain: true,
},
want: []Machine{
2022-02-14 22:54:51 +08:00
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.1"),
},
Namespace: Namespace{Name: "joe"},
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo{
OS: "centos",
Hostname: "hr-web1",
RequestTags: []string{"tag:hr-webserver"},
},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.2"),
},
Namespace: Namespace{Name: "joe"},
2022-03-02 00:34:35 +08:00
HostInfo: HostInfo{
OS: "centos",
Hostname: "hr-web2",
RequestTags: []string{"tag:hr-webserver"},
},
2022-02-14 22:54:51 +08:00
},
{
IPAddresses: MachineAddresses{
2022-09-02 06:05:43 +08:00
netip.MustParseAddr("100.64.0.4"),
},
Namespace: Namespace{Name: "joe"},
2022-02-14 22:54:51 +08:00
},
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
2022-03-02 16:15:14 +08:00
got := excludeCorrectlyTaggedNodes(
2022-02-14 22:54:51 +08:00
test.args.aclPolicy,
test.args.nodes,
test.args.namespace,
test.args.stripEmailDomain,
2022-02-14 22:54:51 +08:00
)
if !reflect.DeepEqual(got, test.want) {
t.Errorf("excludeCorrectlyTaggedNodes() = %v, want %v", got, test.want)
}
})
}
}