forked from PaloAltoNetworks/pango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_test.go
473 lines (412 loc) · 9.44 KB
/
client_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
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
package pango
import (
"bytes"
"encoding/xml"
"fmt"
"log"
"net/url"
"os"
"strings"
"testing"
"github.com/PaloAltoNetworks/pango/commit"
"github.com/PaloAltoNetworks/pango/errors"
"github.com/PaloAltoNetworks/pango/testdata"
)
func init() {
log.SetFlags(0)
}
// rl restores the logger output to the default log location.
func rl() {
log.SetOutput(os.Stderr)
}
func TestClientStringerHidesPasswords(t *testing.T) {
c := &Client{
Hostname: "foo",
Username: "admin",
Password: "secret",
}
if strings.Index(c.String(), "secret") != -1 {
t.Fail()
}
}
func TestClientStringerHidesApiKey(t *testing.T) {
c := &Client{
Hostname: "foo",
Username: "admin",
ApiKey: "secret",
}
if strings.Index(c.String(), "secret") != -1 {
t.Fail()
}
}
func TestLogActionDisabled(t *testing.T) {
var buf bytes.Buffer
log.SetOutput(&buf)
defer rl()
c := &Client{
Logging: LogQuiet,
}
c.LogAction("no")
if buf.String() != "" {
t.Fail()
}
}
func TestLogActionEnabled(t *testing.T) {
var buf bytes.Buffer
log.SetOutput(&buf)
defer rl()
c := &Client{
Logging: LogAction,
}
c.LogAction("yes")
s := buf.String()
if s != "yes\n" {
t.Fail()
}
}
func TestLogQueryDisabled(t *testing.T) {
var buf bytes.Buffer
log.SetOutput(&buf)
defer rl()
c := &Client{
Logging: LogQuiet,
}
c.LogQuery("no")
if buf.String() != "" {
t.Fail()
}
}
func TestLogQueryEnabled(t *testing.T) {
var buf bytes.Buffer
log.SetOutput(&buf)
defer rl()
c := &Client{
Logging: LogQuery,
}
c.LogQuery("yes")
s := buf.String()
if s != "yes\n" {
t.Fail()
}
}
func TestLogOpDisabled(t *testing.T) {
var buf bytes.Buffer
log.SetOutput(&buf)
defer rl()
c := &Client{
Logging: LogQuiet,
}
c.LogOp("no")
if buf.String() != "" {
t.Fail()
}
}
func TestLogOpEnabled(t *testing.T) {
var buf bytes.Buffer
log.SetOutput(&buf)
defer rl()
c := &Client{
Logging: LogOp,
}
c.LogOp("yes")
s := buf.String()
if s != "yes\n" {
t.Fail()
}
}
func TestLogUidDisabled(t *testing.T) {
var buf bytes.Buffer
log.SetOutput(&buf)
defer rl()
c := &Client{
Logging: LogQuiet,
}
c.LogUid("no")
if buf.String() != "" {
t.Fail()
}
}
func TestLogUidEnabled(t *testing.T) {
var buf bytes.Buffer
log.SetOutput(&buf)
defer rl()
c := &Client{
Logging: LogUid,
}
c.LogUid("yes")
s := buf.String()
if s != "yes\n" {
t.Fail()
}
}
func TestRetrieveApiKey(t *testing.T) {
c := &Client{}
c.rb = [][]byte{
[]byte(testdata.ApiKeyXml),
}
if err := c.Initialize(); err != nil {
t.Errorf("Initialize failed: %s", err)
return
}
err := c.RetrieveApiKey()
if err != nil {
t.Errorf("Failed to retrieve api key: %s", err)
} else if c.ApiKey != "secret" {
t.Fail()
}
}
func TestAsStringWithString(t *testing.T) {
expected := "foobar"
val, err := asString(expected, true)
if err != nil {
t.Errorf("Failed asString: %s", err)
} else if val != expected {
t.Errorf("Expected:%s got:%s", expected, val)
}
}
type StringerCheck struct{}
func (o StringerCheck) String() string { return "hello" }
func TestAsStringWithStringer(t *testing.T) {
x := StringerCheck{}
expected := x.String()
val, err := asString(x, true)
if err != nil {
t.Errorf("Failed asString: %s", err)
} else if val != expected {
t.Errorf("Expected:%s got:%s", expected, val)
}
}
func TestAsStringWithElementer(t *testing.T) {
x := commit.FirewallCommit{
Description: "hello",
}
expected, err := xml.Marshal(x.Element())
if err != nil {
t.Errorf("Failed to marshal firewall commit: %s", err)
}
val, err := asString(x, true)
if err != nil {
t.Errorf("Failed asString: %s", err)
} else if val != string(expected) {
t.Errorf("Expected:%s got:%s", expected, val)
}
}
func TestAsStringWithNil(t *testing.T) {
if _, err := asString(nil, true); err == nil {
t.Errorf("asString() returned no error on nil input")
}
}
func TestLogSendBasic(t *testing.T) {
var buf bytes.Buffer
log.SetOutput(&buf)
defer rl()
c := &Client{
ApiKey: "secret",
Logging: LogSend,
}
values := url.Values{
"type": []string{"keygen"},
"user": []string{"foo"},
"password": []string{"bar"},
"key": []string{c.ApiKey},
}
c.logSend(values)
s := buf.String()
if s == "" {
t.Fail()
} else if strings.Contains(s, c.ApiKey) {
t.Errorf("API key was not masked")
} else {
for _, k := range []string{"type", "keygen", "user", "foo", "password", "bar"} {
if !strings.Contains(s, k) {
t.Errorf("%s is not present in basic logsend", k)
}
}
}
}
func TestLogSendOsxCurlWithoutPersonalDataWithoutElement(t *testing.T) {
var buf bytes.Buffer
log.SetOutput(&buf)
defer rl()
c := &Client{
Hostname: "127.0.0.1",
ApiKey: "secret",
Protocol: "https",
Logging: LogOsxCurl,
}
values := url.Values{
"type": []string{"config"},
"action": []string{"delete"},
"xpath": []string{"mypathhere"},
"key": []string{"APIKEY"},
}
expected := fmt.Sprintf("curl -k 'https://HOST/api?%s'\n", values.Encode())
values.Set("key", c.ApiKey)
c.logSend(values)
s := buf.String()
if s == "" {
t.Fail()
} else if strings.Contains(s, c.ApiKey) {
t.Errorf("API key was included in the output")
} else if expected != s {
t.Errorf("expected: %q\ngot: %q", expected, s)
}
}
func TestLogSendOsxCurlVerifyCertificate(t *testing.T) {
var buf bytes.Buffer
log.SetOutput(&buf)
defer rl()
c := &Client{
Hostname: "127.0.0.1",
ApiKey: "secret",
Protocol: "https",
VerifyCertificate: true,
Logging: LogOsxCurl,
}
values := url.Values{
"type": []string{"config"},
"action": []string{"delete"},
"xpath": []string{"mypathhere"},
"key": []string{c.ApiKey},
}
c.logSend(values)
s := buf.String()
if s == "" {
t.Fail()
} else if strings.Contains(s, c.ApiKey) {
t.Errorf("API key was included in the output")
} else if strings.Contains(s, " -k ") {
t.Errorf("Insecure flag was incorrectly present")
}
}
func TestLogSendOsxCurlWithoutPersonalDataWithElement(t *testing.T) {
var buf bytes.Buffer
log.SetOutput(&buf)
defer rl()
c := &Client{
Hostname: "127.0.0.1",
ApiKey: "secret",
Protocol: "https",
Logging: LogOsxCurl,
Headers: map[string]string{
"X-Header-1": "value",
},
}
element := "<my><xml/></my>"
values := url.Values{
"type": []string{"config"},
"action": []string{"set"},
"xpath": []string{"mypathhere"},
"key": []string{"APIKEY"},
}
lines := []string{
fmt.Sprintf("curl -k --data-urlencode [email protected] 'https://HOST/api?%s'\n", values.Encode()),
"element.xml:\n",
fmt.Sprintf("%s\n", element),
}
expected := strings.Join(lines, "")
values.Set("element", element)
values.Set("key", c.ApiKey)
c.logSend(values)
s := buf.String()
if s == "" {
t.Fail()
} else if strings.Contains(s, c.ApiKey) {
t.Errorf("API key was included in the output")
} else if strings.Contains(s, " --header ") {
t.Errorf("Header was incorrectly included")
} else if expected != s {
t.Errorf("expected: %q\ngot: %q", expected, s)
}
}
func TestLogSendOsxCurlWithPersonalDataHeadersWithValues(t *testing.T) {
var buf bytes.Buffer
log.SetOutput(&buf)
defer rl()
c := &Client{
Hostname: "127.0.0.1",
ApiKey: "secret",
Protocol: "https",
Logging: LogOsxCurl | LogCurlWithPersonalData,
Headers: map[string]string{
"X-Header-1": "wu tang clan",
"X-Do-Stuff": "daft punk",
},
}
values := url.Values{
"type": []string{"config"},
"action": []string{"delete"},
"xpath": []string{"mypathhere"},
"key": []string{c.ApiKey},
}
c.logSend(values)
s := buf.String()
if s == "" {
t.Fail()
} else {
regular := []string{
" -k ",
c.Hostname,
c.ApiKey,
}
expected := make([]string, 0, len(regular)+len(c.Headers))
for _, k := range regular {
expected = append(expected, k)
}
for k, v := range c.Headers {
expected = append(expected, fmt.Sprintf(" --header '%s: %s'", k, v))
}
for _, v := range expected {
if !strings.Contains(s, v) {
t.Errorf("Could not find %q in output: %s", v, s)
}
}
}
}
func TestGetOnMissingObjectReturnsObjectNotFoundError(t *testing.T) {
resp := `<response status="success" code="7"><result/></response>`
c := &Client{}
err := c.endCommunication([]byte(resp), nil)
if err == nil {
t.Errorf("Error is nil")
}
e2, ok := err.(errors.Panos)
if !ok {
t.Errorf("Error is not an errors.Panos")
}
if !e2.ObjectNotFound() {
t.Errorf("Is not an object not found error")
}
}
func TestShowOnMissingObjectReturnsNoSuchNode(t *testing.T) {
expected := "No such node"
resp := `<response status="error"><msg><line>No such node</line></msg></response>`
c := &Client{}
err := c.endCommunication([]byte(resp), nil)
if err == nil {
t.Errorf("Error is nil")
}
e2, ok := err.(errors.Panos)
if !ok {
t.Errorf("Error is not an errors.Panos")
}
if e2.Msg != "No such node" {
t.Errorf("Error is %q, not %q", e2.Msg, expected)
}
}
func TestMultilineErrorMessage(t *testing.T) {
expected := "HTTP method must be GET"
resp := fmt.Sprintf(`<response status="error" code="12"><msg><line><![CDATA[ tf123456 -> server -> first server is invalid. %s, Username/Password must not be empty when Tag Distribution is chosen]]></line><line><![CDATA[ tf123456 -> server is invalid]]></line></msg></response>`, expected)
c := &Client{}
err := c.endCommunication([]byte(resp), nil)
if err == nil {
t.Errorf("Error is nil")
}
e2, ok := err.(errors.Panos)
if !ok {
t.Errorf("Error is not an errors.Panos")
}
if !strings.Contains(e2.Msg, expected) {
t.Errorf("Error does not have the %q substring in the first error line", expected)
}
}