-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdevice_wifi_test.go
More file actions
397 lines (330 loc) · 11.9 KB
/
Copy pathdevice_wifi_test.go
File metadata and controls
397 lines (330 loc) · 11.9 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
package onvif
import (
"context"
"net/http"
"net/http/httptest"
"strings"
"testing"
)
func newMockDeviceWiFiServer() *httptest.Server {
return httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/soap+xml")
// Parse request to determine which operation
buf := make([]byte, r.ContentLength)
_, _ = r.Body.Read(buf)
requestBody := string(buf)
var response string
switch {
case strings.Contains(requestBody, "GetDot11Capabilities"):
response = `<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope">
<SOAP-ENV:Body>
<tds:GetDot11CapabilitiesResponse>
<tds:Capabilities>
<tt:TKIP>true</tt:TKIP>
<tt:ScanAvailableNetworks>true</tt:ScanAvailableNetworks>
<tt:MultipleConfiguration>false</tt:MultipleConfiguration>
<tt:AdHocStationMode>false</tt:AdHocStationMode>
<tt:WEP>false</tt:WEP>
</tds:Capabilities>
</tds:GetDot11CapabilitiesResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>`
case strings.Contains(requestBody, "GetDot11Status"):
response = `<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope">
<SOAP-ENV:Body>
<tds:GetDot11StatusResponse>
<tds:Status>
<tt:SSID>TestNetwork</tt:SSID>
<tt:BSSID>00:11:22:33:44:55</tt:BSSID>
<tt:PairCipher>CCMP</tt:PairCipher>
<tt:GroupCipher>CCMP</tt:GroupCipher>
<tt:SignalStrength>Good</tt:SignalStrength>
<tt:ActiveConfigAlias>dot11-config-001</tt:ActiveConfigAlias>
</tds:Status>
</tds:GetDot11StatusResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>`
case strings.Contains(requestBody, "GetDot1XConfiguration") && !strings.Contains(requestBody, "GetDot1XConfigurations"):
response = `<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope">
<SOAP-ENV:Body>
<tds:GetDot1XConfigurationResponse>
<tds:Dot1XConfiguration token="dot1x-config-001">
<tt:Dot1XConfigurationToken>dot1x-config-001</tt:Dot1XConfigurationToken>
<tt:Identity>device@example.com</tt:Identity>
</tds:Dot1XConfiguration>
</tds:GetDot1XConfigurationResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>`
case strings.Contains(requestBody, "GetDot1XConfigurations"):
response = `<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope">
<SOAP-ENV:Body>
<tds:GetDot1XConfigurationsResponse>
<tds:Dot1XConfiguration token="dot1x-config-001">
<tt:Dot1XConfigurationToken>dot1x-config-001</tt:Dot1XConfigurationToken>
<tt:Identity>device1@example.com</tt:Identity>
</tds:Dot1XConfiguration>
<tds:Dot1XConfiguration token="dot1x-config-002">
<tt:Dot1XConfigurationToken>dot1x-config-002</tt:Dot1XConfigurationToken>
<tt:Identity>device2@example.com</tt:Identity>
</tds:Dot1XConfiguration>
</tds:GetDot1XConfigurationsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>`
case strings.Contains(requestBody, "SetDot1XConfiguration"):
response = `<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope">
<SOAP-ENV:Body>
<tds:SetDot1XConfigurationResponse/>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>`
case strings.Contains(requestBody, "CreateDot1XConfiguration"):
response = `<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope">
<SOAP-ENV:Body>
<tds:CreateDot1XConfigurationResponse/>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>`
case strings.Contains(requestBody, "DeleteDot1XConfiguration"):
response = `<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope">
<SOAP-ENV:Body>
<tds:DeleteDot1XConfigurationResponse/>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>`
case strings.Contains(requestBody, "ScanAvailableDot11Networks"):
response = `<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope">
<SOAP-ENV:Body>
<tds:ScanAvailableDot11NetworksResponse>
<tds:Networks>
<tt:SSID>Network1</tt:SSID>
<tt:BSSID>00:11:22:33:44:55</tt:BSSID>
<tt:AuthAndMangementSuite>PSK</tt:AuthAndMangementSuite>
<tt:PairCipher>CCMP</tt:PairCipher>
<tt:GroupCipher>CCMP</tt:GroupCipher>
<tt:SignalStrength>Very Good</tt:SignalStrength>
</tds:Networks>
<tds:Networks>
<tt:SSID>Network2</tt:SSID>
<tt:BSSID>AA:BB:CC:DD:EE:FF</tt:BSSID>
<tt:AuthAndMangementSuite>Dot1X</tt:AuthAndMangementSuite>
<tt:PairCipher>CCMP</tt:PairCipher>
<tt:GroupCipher>CCMP</tt:GroupCipher>
<tt:SignalStrength>Good</tt:SignalStrength>
</tds:Networks>
</tds:ScanAvailableDot11NetworksResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>`
default:
response = `<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope">
<SOAP-ENV:Body>
<SOAP-ENV:Fault>
<SOAP-ENV:Code><SOAP-ENV:Value>SOAP-ENV:Receiver</SOAP-ENV:Value></SOAP-ENV:Code>
<SOAP-ENV:Reason><SOAP-ENV:Text>Unknown operation</SOAP-ENV:Text></SOAP-ENV:Reason>
</SOAP-ENV:Fault>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>`
}
_, _ = w.Write([]byte(response))
}))
}
func TestGetDot11Capabilities(t *testing.T) {
server := newMockDeviceWiFiServer()
defer server.Close()
client, err := NewClient(server.URL)
if err != nil {
t.Fatalf("NewClient failed: %v", err)
}
ctx := context.Background()
caps, err := client.GetDot11Capabilities(ctx)
if err != nil {
t.Fatalf("GetDot11Capabilities failed: %v", err)
}
if !caps.TKIP {
t.Error("Expected TKIP to be supported")
}
if !caps.ScanAvailableNetworks {
t.Error("Expected ScanAvailableNetworks to be supported")
}
if caps.MultipleConfiguration {
t.Error("Expected MultipleConfiguration to be false")
}
if caps.WEP {
t.Error("Expected WEP to be false")
}
}
func TestGetDot11Status(t *testing.T) {
server := newMockDeviceWiFiServer()
defer server.Close()
client, err := NewClient(server.URL)
if err != nil {
t.Fatalf("NewClient failed: %v", err)
}
ctx := context.Background()
status, err := client.GetDot11Status(ctx, "wifi0")
if err != nil {
t.Fatalf("GetDot11Status failed: %v", err)
}
if status.SSID != "TestNetwork" {
t.Errorf("Expected SSID 'TestNetwork', got '%s'", status.SSID)
}
if status.BSSID != "00:11:22:33:44:55" {
t.Errorf("Expected BSSID '00:11:22:33:44:55', got '%s'", status.BSSID)
}
if status.PairCipher != Dot11CipherCCMP {
t.Errorf("Expected PairCipher 'CCMP', got '%s'", status.PairCipher)
}
if status.GroupCipher != Dot11CipherCCMP {
t.Errorf("Expected GroupCipher 'CCMP', got '%s'", status.GroupCipher)
}
if status.SignalStrength != Dot11SignalGood {
t.Errorf("Expected SignalStrength 'Good', got '%s'", status.SignalStrength)
}
if status.ActiveConfigAlias != "dot11-config-001" {
t.Errorf("Expected ActiveConfigAlias 'dot11-config-001', got '%s'", status.ActiveConfigAlias)
}
}
func TestGetDot1XConfiguration(t *testing.T) {
server := newMockDeviceWiFiServer()
defer server.Close()
client, err := NewClient(server.URL)
if err != nil {
t.Fatalf("NewClient failed: %v", err)
}
ctx := context.Background()
config, err := client.GetDot1XConfiguration(ctx, "dot1x-config-001")
if err != nil {
t.Fatalf("GetDot1XConfiguration failed: %v", err)
}
if config.Dot1XConfigurationToken != "dot1x-config-001" {
t.Errorf("Expected Dot1XConfigurationToken 'dot1x-config-001', got '%s'", config.Dot1XConfigurationToken)
}
if config.Identity != "device@example.com" {
t.Errorf("Expected Identity 'device@example.com', got '%s'", config.Identity)
}
}
func TestGetDot1XConfigurations(t *testing.T) {
server := newMockDeviceWiFiServer()
defer server.Close()
client, err := NewClient(server.URL)
if err != nil {
t.Fatalf("NewClient failed: %v", err)
}
ctx := context.Background()
configs, err := client.GetDot1XConfigurations(ctx)
if err != nil {
t.Fatalf("GetDot1XConfigurations failed: %v", err)
}
if len(configs) != 2 {
t.Fatalf("Expected 2 configurations, got %d", len(configs))
}
if configs[0].Dot1XConfigurationToken != "dot1x-config-001" {
t.Errorf("Expected first config token 'dot1x-config-001', got '%s'", configs[0].Dot1XConfigurationToken)
}
if configs[0].Identity != "device1@example.com" {
t.Errorf("Expected first identity 'device1@example.com', got '%s'", configs[0].Identity)
}
if configs[1].Dot1XConfigurationToken != "dot1x-config-002" {
t.Errorf("Expected second config token 'dot1x-config-002', got '%s'", configs[1].Dot1XConfigurationToken)
}
if configs[1].Identity != "device2@example.com" {
t.Errorf("Expected second identity 'device2@example.com', got '%s'", configs[1].Identity)
}
}
func TestSetDot1XConfiguration(t *testing.T) {
server := newMockDeviceWiFiServer()
defer server.Close()
client, err := NewClient(server.URL)
if err != nil {
t.Fatalf("NewClient failed: %v", err)
}
ctx := context.Background()
config := &Dot1XConfiguration{
Dot1XConfigurationToken: "dot1x-config-001",
Identity: "updated@example.com",
}
err = client.SetDot1XConfiguration(ctx, config)
if err != nil {
t.Fatalf("SetDot1XConfiguration failed: %v", err)
}
}
func TestCreateDot1XConfiguration(t *testing.T) {
server := newMockDeviceWiFiServer()
defer server.Close()
client, err := NewClient(server.URL)
if err != nil {
t.Fatalf("NewClient failed: %v", err)
}
ctx := context.Background()
config := &Dot1XConfiguration{
Dot1XConfigurationToken: "dot1x-config-new",
Identity: "new@example.com",
}
err = client.CreateDot1XConfiguration(ctx, config)
if err != nil {
t.Fatalf("CreateDot1XConfiguration failed: %v", err)
}
}
func TestDeleteDot1XConfiguration(t *testing.T) {
server := newMockDeviceWiFiServer()
defer server.Close()
client, err := NewClient(server.URL)
if err != nil {
t.Fatalf("NewClient failed: %v", err)
}
ctx := context.Background()
err = client.DeleteDot1XConfiguration(ctx, "dot1x-config-001")
if err != nil {
t.Fatalf("DeleteDot1XConfiguration failed: %v", err)
}
}
func TestScanAvailableDot11Networks(t *testing.T) {
server := newMockDeviceWiFiServer()
defer server.Close()
client, err := NewClient(server.URL)
if err != nil {
t.Fatalf("NewClient failed: %v", err)
}
ctx := context.Background()
networks, err := client.ScanAvailableDot11Networks(ctx, "wifi0")
if err != nil {
t.Fatalf("ScanAvailableDot11Networks failed: %v", err)
}
if len(networks) != 2 {
t.Fatalf("Expected 2 networks, got %d", len(networks))
}
// Test first network
if networks[0].SSID != "Network1" {
t.Errorf("Expected first SSID 'Network1', got '%s'", networks[0].SSID)
}
if networks[0].BSSID != "00:11:22:33:44:55" {
t.Errorf("Expected first BSSID '00:11:22:33:44:55', got '%s'", networks[0].BSSID)
}
if len(networks[0].AuthAndMangementSuite) == 0 || networks[0].AuthAndMangementSuite[0] != Dot11AuthPSK {
t.Errorf("Expected first auth suite 'PSK'")
}
if len(networks[0].PairCipher) == 0 || networks[0].PairCipher[0] != Dot11CipherCCMP {
t.Errorf("Expected first pair cipher 'CCMP'")
}
if networks[0].SignalStrength != Dot11SignalVeryGood {
t.Errorf("Expected first signal strength 'VeryGood', got '%s'", networks[0].SignalStrength)
}
// Test second network
if networks[1].SSID != "Network2" {
t.Errorf("Expected second SSID 'Network2', got '%s'", networks[1].SSID)
}
if networks[1].BSSID != "AA:BB:CC:DD:EE:FF" {
t.Errorf("Expected second BSSID 'AA:BB:CC:DD:EE:FF', got '%s'", networks[1].BSSID)
}
if len(networks[1].AuthAndMangementSuite) == 0 || networks[1].AuthAndMangementSuite[0] != Dot11AuthDot1X {
t.Errorf("Expected second auth suite 'Dot1X'")
}
if networks[1].SignalStrength != Dot11SignalGood {
t.Errorf("Expected second signal strength 'Good', got '%s'", networks[1].SignalStrength)
}
}