-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathformat_test.go
161 lines (130 loc) · 4.02 KB
/
format_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
package censor
// func Test_InstanceFormatPrimitives(t *testing.T) {
// tests := map[string]struct {
// val any
// exp string
// }{
// "int": {val: -33453435, exp: `-33453435`},
// "uint": {val: 33453435, exp: `33453435`},
// "string": {val: "hello", exp: `hello`},
// "float64": {val: 12.235325, exp: `12.235325`},
// "nil": {val: nil, exp: `nil`},
// }
// for name, tt := range tests {
// t.Run(name, func(t *testing.T) {
// got := New().Format(tt.val)
// require.Equal(t, tt.exp, got)
// })
// }
// }
// func Test_InstanceConfiguration(t *testing.T) {
// t.Run("hide_struct_name", func(t *testing.T) {
// type testStruct struct {
// Name string `censor:"display"`
// Age int
// }
// exp := `{Name: John, Age: [CENSORED]}`
// got := New().Format(testStruct{Name: "John", Age: 30})
// require.Equal(t, exp, got)
// })
// t.Run("with_provided_configuration", func(t *testing.T) {
// c := Config{
// Formatter: formatter.Config{
// MaskValue: "[redacted]",
// DisplayStructName: true,
// DisplayMapType: false,
// ExcludePatterns: nil,
// },
// Encoder: encoder.Config{
// UseJSONTagName: true,
// },
// }
// p, err := NewWithOpts(WithConfig(&c))
// require.NoError(t, err)
// type testStruct struct {
// Name string `censor:"display"`
// Age int `json:"age" censor:"display"`
// }
// exp := `censor.testStruct{Name: John, age: 30}`
// got := p.Format(testStruct{Name: "John", Age: 30})
// require.Equal(t, exp, got)
// })
// t.Run("time_text_marshaler", func(t *testing.T) {
// p := New()
// tm, err := time.Parse(time.DateOnly, "2021-01-02")
// require.NoError(t, err)
// exp := `2021-01-02T00:00:00Z`
// got := p.Format(tm)
// require.Equal(t, exp, got)
// })
// }
// func Test_GlobalInstanceConfiguration(t *testing.T) {
// t.Run("hide_struct_name", func(t *testing.T) {
// t.Cleanup(func() { SetGlobalInstance(New()) })
// type testStruct struct {
// Name string `censor:"display"`
// Age int
// }
// exp := `{Name: John, Age: [CENSORED]}`
// got := Format(testStruct{Name: "John", Age: 30})
// require.Equal(t, exp, got)
// })
// t.Run("with_provided_configuration", func(t *testing.T) {
// t.Cleanup(func() { SetGlobalInstance(New()) })
// c := Config{
// Formatter: formatter.Config{
// MaskValue: "[redacted]",
// DisplayStructName: true,
// DisplayMapType: false,
// ExcludePatterns: nil,
// },
// Encoder: encoder.Config{
// UseJSONTagName: true,
// },
// }
// type testStruct struct {
// Name string `censor:"display"`
// Age int `json:"age" censor:"display"`
// }
// p, err := NewWithOpts(WithConfig(&c))
// require.NoError(t, err)
// SetGlobalInstance(p)
// exp := `censor.testStruct{Name: John, age: 30}`
// got := Format(testStruct{Name: "John", Age: 30})
// require.Equal(t, exp, got)
// })
// }
// func Test_GetGlobalInstance(t *testing.T) {
// require.EqualValues(t, globalInstance, GetGlobalInstance())
// }
// func Test_SetGlobalInstance(t *testing.T) {
// t.Cleanup(func() { SetGlobalInstance(New()) })
// p, err := NewWithOpts(WithConfig(&Config{
// Formatter: formatter.Config{
// MaskValue: "[censored]",
// },
// }))
// require.NoError(t, err)
// SetGlobalInstance(p)
// type testStruct struct {
// Email string
// }
// v := testStruct{Email: "test@exxample.com"}
// require.EqualValues(t, globalInstance.Format(v), p.Format(v))
// }
// func TestExcludePatterns(t *testing.T) {
// t.Cleanup(func() { SetGlobalInstance(New()) })
// p, err := NewWithOpts(WithConfig(&Config{
// Formatter: formatter.Config{
// MaskValue: "[CENSORED]",
// ExcludePatterns: []string{`\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b`},
// },
// }))
// require.NoError(t, err)
// SetGlobalInstance(p)
// type testStruct struct {
// Email string `censor:"display"`
// }
// exp := `{Email: [CENSORED]}`
// require.Equal(t, exp, p.Format(testStruct{Email: "test@exxample.com"}))
// }