-
Notifications
You must be signed in to change notification settings - Fork 36
/
subnet_test.go
99 lines (88 loc) · 2.78 KB
/
subnet_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Copyright 2016 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package gomaasapi
import (
jc "github.com/juju/testing/checkers"
"github.com/juju/version"
gc "gopkg.in/check.v1"
)
type subnetSuite struct{}
var _ = gc.Suite(&subnetSuite{})
func (*subnetSuite) TestNilVLAN(c *gc.C) {
var empty subnet
c.Check(empty.VLAN() == nil, jc.IsTrue)
}
func (*subnetSuite) TestReadSubnetsBadSchema(c *gc.C) {
_, err := readSubnets(twoDotOh, "wat?")
c.Assert(err.Error(), gc.Equals, `subnet base schema check failed: expected list, got string("wat?")`)
}
func (*subnetSuite) TestReadSubnets(c *gc.C) {
subnets, err := readSubnets(twoDotOh, parseJSON(c, subnetResponse))
c.Assert(err, jc.ErrorIsNil)
c.Assert(subnets, gc.HasLen, 2)
subnet := subnets[0]
c.Assert(subnet.ID(), gc.Equals, 1)
c.Assert(subnet.Name(), gc.Equals, "192.168.100.0/24")
c.Assert(subnet.Space(), gc.Equals, "space-0")
c.Assert(subnet.Gateway(), gc.Equals, "192.168.100.1")
c.Assert(subnet.CIDR(), gc.Equals, "192.168.100.0/24")
vlan := subnet.VLAN()
c.Assert(vlan, gc.NotNil)
c.Assert(vlan.Name(), gc.Equals, "untagged")
c.Assert(subnet.DNSServers(), jc.DeepEquals, []string{"8.8.8.8", "8.8.4.4"})
}
func (*subnetSuite) TestLowVersion(c *gc.C) {
_, err := readSubnets(version.MustParse("1.9.0"), parseJSON(c, subnetResponse))
c.Assert(err.Error(), gc.Equals, `no subnet read func for version 1.9.0`)
}
func (*subnetSuite) TestHighVersion(c *gc.C) {
subnets, err := readSubnets(version.MustParse("2.1.9"), parseJSON(c, subnetResponse))
c.Assert(err, jc.ErrorIsNil)
c.Assert(subnets, gc.HasLen, 2)
}
var subnetResponse = `
[
{
"gateway_ip": "192.168.100.1",
"name": "192.168.100.0/24",
"vlan": {
"fabric": "fabric-0",
"resource_uri": "/MAAS/api/2.0/vlans/1/",
"name": "untagged",
"secondary_rack": null,
"primary_rack": "4y3h7n",
"vid": 0,
"dhcp_on": true,
"id": 1,
"mtu": 1500
},
"space": "space-0",
"id": 1,
"resource_uri": "/MAAS/api/2.0/subnets/1/",
"dns_servers": ["8.8.8.8", "8.8.4.4"],
"cidr": "192.168.100.0/24",
"rdns_mode": 2
},
{
"gateway_ip": null,
"name": "192.168.122.0/24",
"vlan": {
"fabric": "fabric-1",
"resource_uri": "/MAAS/api/2.0/vlans/5001/",
"name": "untagged",
"secondary_rack": null,
"primary_rack": null,
"vid": 0,
"dhcp_on": false,
"id": 5001,
"mtu": 1500
},
"space": "space-0",
"id": 34,
"resource_uri": "/MAAS/api/2.0/subnets/34/",
"dns_servers": null,
"cidr": "192.168.122.0/24",
"rdns_mode": 2
}
]
`