-
Notifications
You must be signed in to change notification settings - Fork 36
/
space_test.go
97 lines (87 loc) · 2.86 KB
/
space_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
// 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 spaceSuite struct{}
var _ = gc.Suite(&spaceSuite{})
func (*spaceSuite) TestReadSpacesBadSchema(c *gc.C) {
_, err := readSpaces(twoDotOh, "wat?")
c.Assert(err.Error(), gc.Equals, `space base schema check failed: expected list, got string("wat?")`)
}
func (*spaceSuite) TestReadSpaces(c *gc.C) {
spaces, err := readSpaces(twoDotOh, parseJSON(c, spacesResponse))
c.Assert(err, jc.ErrorIsNil)
c.Assert(spaces, gc.HasLen, 1)
space := spaces[0]
c.Assert(space.ID(), gc.Equals, 0)
c.Assert(space.Name(), gc.Equals, "space-0")
subnets := space.Subnets()
c.Assert(subnets, gc.HasLen, 2)
c.Assert(subnets[0].ID(), gc.Equals, 34)
}
func (*spaceSuite) TestLowVersion(c *gc.C) {
_, err := readSpaces(version.MustParse("1.9.0"), parseJSON(c, spacesResponse))
c.Assert(err.Error(), gc.Equals, `no space read func for version 1.9.0`)
}
func (*spaceSuite) TestHighVersion(c *gc.C) {
spaces, err := readSpaces(version.MustParse("2.1.9"), parseJSON(c, spacesResponse))
c.Assert(err, jc.ErrorIsNil)
c.Assert(spaces, gc.HasLen, 1)
}
var spacesResponse = `
[
{
"subnets": [
{
"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": [],
"cidr": "192.168.122.0/24",
"rdns_mode": 2
},
{
"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": [],
"cidr": "192.168.100.0/24",
"rdns_mode": 2
}
],
"id": 0,
"name": "space-0",
"resource_uri": "/MAAS/api/2.0/spaces/0/"
}
]
`