@@ -18,25 +18,52 @@ package plugin
18
18
import (
19
19
"encoding/json"
20
20
"fmt"
21
- "testing "
22
-
21
+ "github.com/contiv/netplugin/core "
22
+ "github.com/contiv/netplugin/netmaster/mastercfg"
23
23
"github.com/contiv/netplugin/state"
24
+ "github.com/contiv/netplugin/utils"
25
+ "testing"
24
26
)
25
27
26
28
var fakeStateDriver * state.FakeStateDriver
27
29
30
+ func initFakeStateDriver (t * testing.T ) {
31
+ // init fake state driver
32
+ instInfo := core.InstanceInfo {}
33
+ d , err := utils .NewStateDriver ("fakedriver" , & instInfo )
34
+ if err != nil {
35
+ t .Fatalf ("failed to init statedriver. Error: %s" , err )
36
+ }
37
+
38
+ fakeStateDriver = d .(* state.FakeStateDriver )
39
+ }
40
+
41
+ func deinitFakeStateDriver () {
42
+ // release fake state driver
43
+ utils .ReleaseStateDriver ()
44
+ }
45
+
28
46
func TestNetPluginInit (t * testing.T ) {
47
+ // Testing init NetPlugin
48
+ initFakeStateDriver (t )
49
+ defer deinitFakeStateDriver ()
50
+ gCfg := mastercfg.GlobConfig {
51
+ FwdMode : "bridge" ,
52
+ PvtSubnet : "172.19.0.0/16" }
53
+ gCfg .StateDriver = fakeStateDriver
54
+ gCfg .Write ()
55
+
29
56
configStr := `{
30
- "drivers" : {
31
- "network": "ovs",
32
- "endpoint": "ovs",
33
- "state": "fakedriver"
34
- },
35
- "plugin-instance": {
36
- "host-label": "testHost",
37
- "fwd-mode":"bridge"
38
- }
39
- }`
57
+ "drivers" : {
58
+ "network": "ovs",
59
+ "endpoint": "ovs",
60
+ "state": "fakedriver"
61
+ },
62
+ "plugin-instance": {
63
+ "host-label": "testHost",
64
+ "fwd-mode":"bridge"
65
+ }
66
+ }`
40
67
41
68
// Parse the config
42
69
pluginConfig := Config {}
@@ -56,6 +83,7 @@ func TestNetPluginInit(t *testing.T) {
56
83
}
57
84
58
85
func TestNetPluginInitInvalidConfigEmptyString (t * testing.T ) {
86
+ // Test NetPlugin init failure when no config provided
59
87
pluginConfig := Config {}
60
88
61
89
plugin := NetPlugin {}
@@ -66,13 +94,14 @@ func TestNetPluginInitInvalidConfigEmptyString(t *testing.T) {
66
94
}
67
95
68
96
func TestNetPluginInitInvalidConfigMissingInstance (t * testing.T ) {
97
+ // Test NetPlugin init failure when missing instance config
69
98
configStr := `{
70
- "drivers" : {
71
- "network": "ovs",
72
- "endpoint": "ovs",
73
- "state": "fakedriver"
74
- }
75
- }`
99
+ "drivers" : {
100
+ "network": "ovs",
101
+ "endpoint": "ovs",
102
+ "state": "fakedriver"
103
+ }
104
+ }`
76
105
77
106
// Parse the config
78
107
pluginConfig := Config {}
@@ -86,18 +115,19 @@ func TestNetPluginInitInvalidConfigMissingInstance(t *testing.T) {
86
115
}
87
116
88
117
func TestNetPluginInitInvalidConfigEmptyHostLabel (t * testing.T ) {
118
+ // Test NetPlugin init failure when empty HostLabel provided
89
119
configStr := `{
90
- "drivers" : {
91
- "network": "ovs",
92
- "endpoint": "ovs",
93
- "state": "fakedriver"
94
- },
95
- "plugin-instance": {
96
- "host-label": "",
97
- "fwd-mode":"bridge",
98
- "db-url": "etcd://127.0.0.1:4001"
99
- }
100
- }`
120
+ "drivers" : {
121
+ "network": "ovs",
122
+ "endpoint": "ovs",
123
+ "state": "fakedriver"
124
+ },
125
+ "plugin-instance": {
126
+ "host-label": "",
127
+ "fwd-mode":"bridge",
128
+ "db-url": "etcd://127.0.0.1:4001"
129
+ }
130
+ }`
101
131
102
132
// Parse the config
103
133
pluginConfig := Config {}
@@ -114,17 +144,18 @@ func TestNetPluginInitInvalidConfigEmptyHostLabel(t *testing.T) {
114
144
}
115
145
116
146
func TestNetPluginInitInvalidConfigMissingStateDriverName (t * testing.T ) {
147
+ // Test NetPlugin init failure when missing state driver name
117
148
configStr := `{
118
- "drivers" : {
119
- "network": "ovs",
120
- "endpoint": "ovs"
121
- },
122
- "plugin-instance": {
123
- "host-label": "testHost",
124
- "fwd-mode":"bridge",
125
- "db-url": "etcd://127.0.0.1:4001"
126
- }
127
- }`
149
+ "drivers" : {
150
+ "network": "ovs",
151
+ "endpoint": "ovs"
152
+ },
153
+ "plugin-instance": {
154
+ "host-label": "testHost",
155
+ "fwd-mode":"bridge",
156
+ "db-url": "etcd://127.0.0.1:4001"
157
+ }
158
+ }`
128
159
129
160
// Parse the config
130
161
pluginConfig := Config {}
@@ -141,17 +172,18 @@ func TestNetPluginInitInvalidConfigMissingStateDriverName(t *testing.T) {
141
172
}
142
173
143
174
func TestNetPluginInitInvalidConfigMissingStateDriverURL (t * testing.T ) {
175
+ // Test NetPlugin init failure when missing state driver url
144
176
configStr := `{
145
- "drivers" : {
146
- "network": "ovs",
147
- "endpoint": "ovs",
148
- "state": "etcd"
149
- },
150
- "plugin-instance": {
151
- "host-label": "testHost",
152
- "fwd-mode":"bridge"
153
- }
154
- }`
177
+ "drivers" : {
178
+ "network": "ovs",
179
+ "endpoint": "ovs",
180
+ "state": "etcd"
181
+ },
182
+ "plugin-instance": {
183
+ "host-label": "testHost",
184
+ "fwd-mode":"bridge"
185
+ }
186
+ }`
155
187
156
188
// Parse the config
157
189
pluginConfig := Config {}
@@ -169,18 +201,26 @@ func TestNetPluginInitInvalidConfigMissingStateDriverURL(t *testing.T) {
169
201
}
170
202
171
203
func TestNetPluginInitInvalidConfigMissingNetworkDriverName (t * testing.T ) {
204
+ // Test NetPlugin init failure when missing network driver name
205
+ initFakeStateDriver (t )
206
+ defer deinitFakeStateDriver ()
207
+ gCfg := mastercfg.GlobConfig {
208
+ FwdMode : "bridge" ,
209
+ PvtSubnet : "172.19.0.0/16" }
210
+ gCfg .StateDriver = fakeStateDriver
211
+ gCfg .Write ()
172
212
configStr := `{
173
- "drivers" : {
174
- "endpoint": "ovs",
175
- "state": "fakedriver",
176
- "container": "docker"
177
- },
178
- "plugin-instance": {
179
- "host-label": "testHost",
180
- "fwd-mode":"bridge",
181
- "db-url": "etcd://127.0.0.1:4001"
182
- }
183
- }`
213
+ "drivers" : {
214
+ "endpoint": "ovs",
215
+ "state": "fakedriver",
216
+ "container": "docker"
217
+ },
218
+ "plugin-instance": {
219
+ "host-label": "testHost",
220
+ "fwd-mode":"bridge",
221
+ "db-url": "etcd://127.0.0.1:4001"
222
+ }
223
+ }`
184
224
185
225
// Parse the config
186
226
pluginConfig := Config {}
@@ -196,19 +236,28 @@ func TestNetPluginInitInvalidConfigMissingNetworkDriverName(t *testing.T) {
196
236
}
197
237
}
198
238
199
- func TestNetPluginInitInvalidConfigMissingFwdMode (t * testing.T ) {
239
+ func TestNetPluginInitInvalidConfigInvalidPrivateSubnet (t * testing.T ) {
240
+ // Test NetPlugin init failure when private subnet is not valid
241
+ initFakeStateDriver (t )
242
+ defer deinitFakeStateDriver ()
243
+ gCfg := mastercfg.GlobConfig {
244
+ FwdMode : "routing" ,
245
+ PvtSubnet : "172.19.0.0" }
246
+ gCfg .StateDriver = fakeStateDriver
247
+ gCfg .Write ()
200
248
configStr := `{
201
- "drivers" : {
202
- "network": "ovs",
203
- "endpoint": "ovs",
204
- "state": "fakedriver",
205
- "container": "docker",
206
- },
249
+ "drivers" : {
250
+ "network": "ovs",
251
+ "endpoint": "ovs",
252
+ "state": "fakedriver",
253
+ "container": "docker",
254
+ },
207
255
"plugin-instance": {
208
- "host-label": "testHost",
209
- "db-url": "etcd://127.0.0.1:4001"
256
+ "host-label": "testHost",
257
+ "db-url": "etcd://127.0.0.1:4001",
258
+ "fwd-mode":"routing",
210
259
}
211
- }`
260
+ }`
212
261
213
262
// Parse the config
214
263
pluginConfig := Config {}
0 commit comments