forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsanitize_json_test.go
94 lines (83 loc) · 3.01 KB
/
sanitize_json_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
package ui_test
import (
"strings"
. "code.cloudfoundry.org/cli/util/ui"
. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/gomega"
)
var _ = Describe("SanitizeJSON", func() {
DescribeTable("sanitizes the json input",
func(original string) {
expected := strings.Replace(original, "CrAzY_PaSSw0rd", RedactedValue, -1)
redacted, err := SanitizeJSON([]byte(original))
Expect(err).ToNot(HaveOccurred())
Expect(redacted).To(MatchJSON(expected))
},
Entry("when the top level is an array", `[
{
"some url":"jdbc:mysql://hostname/db-name?user=username&password=CrAzY_PaSSw0rd",
"some other url":"jdbc:mysql://hostname/db-name?password=CrAzY_PaSSw0rd&user=username",
"uri":"postgres://some-user-name:[email protected]:5432/some-other-data"
},
{
"real password ": "CrAzY_PaSSw0rd",
"testtokentest": "CrAzY_PaSSw0rd",
"simple": "https://www.google.com/search?q=i+am+a+potato&oq=I+am+a+potato&aqs=chrome.0.0l6.2383j0j8&client=ubuntu&sourceid=chrome&ie=UTF-8"
}
]`),
Entry("when the top level is an array", `{
"mytoken": "CrAzY_PaSSw0rd",
"next_level": {
"again": {
"real password ": "CrAzY_PaSSw0rd",
"simple": "https://www.google.com/search?q=i+am+a+potato&oq=I+am+a+potato&aqs=chrome.0.0l6.2383j0j8&client=ubuntu&sourceid=chrome&ie=UTF-8",
"some other url":"jdbc:mysql://hostname/db-name?password=CrAzY_PaSSw0rd&user=username",
"some url":"jdbc:mysql://hostname/db-name?user=username&password=CrAzY_PaSSw0rd",
"testtokentest": "CrAzY_PaSSw0rd",
"uri":"postgres://some-user-name:[email protected]:5432/some-other-data"
},
"ary": [
"jdbc:mysql://hostname/db-name?user=username&password=CrAzY_PaSSw0rd",
"postgres://some-user-name:[email protected]:5432/some-other-data"
],
"ary2": [
{
"some other url":"jdbc:mysql://hostname/db-name?password=CrAzY_PaSSw0rd&user=username",
"some url":"jdbc:mysql://hostname/db-name?user=username&password=CrAzY_PaSSw0rd",
"uri":"postgres://some-user-name:[email protected]:5432/some-other-data"
}
],
"next_pAssword_all": "CrAzY_PaSSw0rd"
}
}`),
)
It("formats spacing", func() {
original := `{"a":"b"}`
expected := `{
"a": "b"
}
` // Extra new line is required due to encoder
redacted, err := SanitizeJSON([]byte(original))
Expect(err).ToNot(HaveOccurred())
Expect(redacted).To(Equal([]byte(expected)))
})
It("does not escape characters", func() {
original := `{"a":"&<foo#>"}`
expected := `{
"a": "&<foo#>"
}
` // Extra new line is required due to encoder
redacted, err := SanitizeJSON([]byte(original))
Expect(err).ToNot(HaveOccurred())
Expect(redacted).To(Equal([]byte(expected)))
})
It("represents empty arrays as []", func() {
original := `{"resources": []}`
expected := `{"resources": []}
` // Extra new line is required due to encoder
redacted, err := SanitizeJSON([]byte(original))
Expect(err).ToNot(HaveOccurred())
Expect(string(redacted)).To(MatchJSON(expected))
})
})