-
Notifications
You must be signed in to change notification settings - Fork 23
/
relationnetworks_test.go
116 lines (100 loc) · 3.27 KB
/
relationnetworks_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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
// Copyright 2019 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package description
import (
jc "github.com/juju/testing/checkers"
gc "gopkg.in/check.v1"
"gopkg.in/yaml.v2"
)
type RelationNetworkSerializationSuite struct {
SliceSerializationSuite
}
var _ = gc.Suite(&RelationNetworkSerializationSuite{})
func (s *RelationNetworkSerializationSuite) SetUpTest(c *gc.C) {
s.SliceSerializationSuite.SetUpTest(c)
s.importName = "relation networks"
s.sliceName = "relation-networks"
s.importFunc = func(m map[string]interface{}) (interface{}, error) {
return importRelationNetworks(m)
}
s.testFields = func(m map[string]interface{}) {
m["relation-networks"] = []interface{}{}
}
}
func minimalRelationNetworkMap() map[interface{}]interface{} {
return map[interface{}]interface{}{
"id": "rel-netw-id",
"relation-key": "keys-to-the-city",
"cidrs": []interface{}{
"1.2.3.4/24",
"0.0.0.1",
},
"type": "ingress",
}
}
func minimalRelationNetwork() *relationNetwork {
c := newRelationNetwork(RelationNetworkArgs{
ID: "rel-netw-id",
RelationKey: "keys-to-the-city",
CIDRS: []string{
"1.2.3.4/24",
"0.0.0.1",
},
})
return c
}
func (*RelationNetworkSerializationSuite) TestNew(c *gc.C) {
e := minimalRelationNetwork()
c.Check(e.ID(), gc.Equals, "rel-netw-id")
c.Check(e.RelationKey(), gc.Equals, "keys-to-the-city")
c.Check(e.CIDRS(), gc.DeepEquals, []string{
"1.2.3.4/24",
"0.0.0.1",
})
}
func (*RelationNetworkSerializationSuite) TestBadSchema1(c *gc.C) {
container := map[string]interface{}{
"version": 1,
"relation-networks": []interface{}{1234},
}
_, err := importRelationNetworks(container)
c.Assert(err, gc.ErrorMatches, `relation networks version schema check failed: relation-networks\[0\]: expected map, got int\(1234\)`)
}
func (*RelationNetworkSerializationSuite) TestBadSchema2(c *gc.C) {
m := minimalRelationNetworkMap()
m["id"] = true
container := map[string]interface{}{
"version": 1,
"relation-networks": []interface{}{m},
}
_, err := importRelationNetworks(container)
c.Assert(err, gc.ErrorMatches, `relation network 0 v1 schema check failed: id: expected string, got bool\(true\)`)
}
func (*RelationNetworkSerializationSuite) TestMinimalMatches(c *gc.C) {
bytes, err := yaml.Marshal(minimalRelationNetworkMap())
c.Assert(err, jc.ErrorIsNil)
var source map[interface{}]interface{}
err = yaml.Unmarshal(bytes, &source)
c.Assert(err, jc.ErrorIsNil)
c.Assert(source, jc.DeepEquals, minimalRelationNetworkMap())
}
func (s *RelationNetworkSerializationSuite) TestRoundTrip(c *gc.C) {
rIn := minimalRelationNetwork()
rOut := s.exportImport(c, rIn)
c.Assert(rOut, jc.DeepEquals, rIn)
}
func (s *RelationNetworkSerializationSuite) exportImport(c *gc.C, relationNetworkIn *relationNetwork) *relationNetwork {
relationNetworksIn := &relationNetworks{
Version: 1,
RelationNetworks: []*relationNetwork{relationNetworkIn},
}
bytes, err := yaml.Marshal(relationNetworksIn)
c.Assert(err, jc.ErrorIsNil)
var source map[string]interface{}
err = yaml.Unmarshal(bytes, &source)
c.Assert(err, jc.ErrorIsNil)
relationNetworksOut, err := importRelationNetworks(source)
c.Assert(err, jc.ErrorIsNil)
c.Assert(relationNetworksOut, gc.HasLen, 1)
return relationNetworksOut[0]
}