forked from anu1097/golang-masking-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunit-tests.xml
225 lines (225 loc) · 43.1 KB
/
unit-tests.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite tests="50" failures="23" time="0.000000" name="github.com/anu1097/golang-mask-utility" timestamp="2022-03-06T11:46:55+05:30">
<properties>
<property name="go.version" value="go1.17.6 darwin/arm64"></property>
</properties>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomValueFilter/string" time="0.000000">
<failure message="Failed" type="">=== RUN TestCustomValueFilter/string
 masking_test.go:83: 
 	Error Trace:	masking_test.go:83
 	Error: 	Not equal: 
 	 	expected: "Authorization: Bearer ************"
 	 	actual : "Authorization: Bearer [filtered]"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-Authorization: Bearer ************
 	 	+Authorization: Bearer [filtered]
 	Test: 	TestCustomValueFilter/string
 --- FAIL: TestCustomValueFilter/string (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomValueFilter/struct" time="0.000000">
<failure message="Failed" type="">=== RUN TestCustomValueFilter/struct
 masking_test.go:105: 
 	Error Trace:	masking_test.go:105
 	Error: 	Not equal: 
 	 	expected: "************"
 	 	actual : "[filtered]"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-************
 	 	+[filtered]
 	Test: 	TestCustomValueFilter/struct
 --- FAIL: TestCustomValueFilter/struct (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomValueFilter/array" time="0.000000">
<failure message="Failed" type="">=== RUN TestCustomValueFilter/array
 masking_test.go:119: 
 	Error Trace:	masking_test.go:119
 	Error: 	Not equal: 
 	 	expected: []string{"userId", "data", "************"}
 	 	actual : []string{"userId", "data", "[filtered]"}
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -3,3 +3,3 @@
 	 	 (string) (len=4) "data",
 	 	- (string) (len=12) "************"
 	 	+ (string) (len=10) "[filtered]"
 	 	 }
 	Test: 	TestCustomValueFilter/array
 --- FAIL: TestCustomValueFilter/array (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomValueFilter" time="0.000000">
<failure message="Failed" type="">=== RUN TestCustomValueFilter
=== CONT TestCustomValueFilter
 masking_test.go:130: 
 	Error Trace:	masking_test.go:130
 	Error: 	Not equal: 
 	 	expected: map[string]interface {}{"data":"************"}
 	 	actual : map[string]interface {}{"data":"[filtered]"}
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1,3 +1,3 @@
 	 	 (map[string]interface {}) (len=1) {
 	 	- (string) (len=4) "data": (string) (len=12) "************"
 	 	+ (string) (len=4) "data": (string) (len=10) "[filtered]"
 	 	 }
 	Test: 	TestCustomValueFilter
--- FAIL: TestCustomValueFilter (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomTypeFilter/Type_Filter_with_Mask_Type" time="0.000000">
<failure message="Failed" type="">=== RUN TestCustomTypeFilter/Type_Filter_with_Mask_Type
 masking_test.go:395: 
 	Error Trace:	masking_test.go:395
 	Error: 	Not equal: 
 	 	expected: "************"
 	 	actual : "abcd1234"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1,2 +1,2 @@
 	 	-(mask.password) (len=12) "************"
 	 	+(mask.password) (len=8) "abcd1234"
 	 	 
 	Test: 	TestCustomTypeFilter/Type_Filter_with_Mask_Type
 --- FAIL: TestCustomTypeFilter/Type_Filter_with_Mask_Type (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomTypeFilter" time="0.000000">
<failure message="Failed" type="">=== RUN TestCustomTypeFilter
--- FAIL: TestCustomTypeFilter (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestTypeFilter/Default_Type_Filter" time="0.000000">
<failure message="Failed" type="">=== RUN TestTypeFilter/Default_Type_Filter
 masking_test.go:422: 
 	Error Trace:	masking_test.go:422
 	Error: 	Not equal: 
 	 	expected: "[filtered]"
 	 	actual : "abcd1234"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1,2 +1,2 @@
 	 	-(mask.password) (len=10) "[filtered]"
 	 	+(mask.password) (len=8) "abcd1234"
 	 	 
 	Test: 	TestTypeFilter/Default_Type_Filter
 --- FAIL: TestTypeFilter/Default_Type_Filter (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestTypeFilter" time="0.000000">
<failure message="Failed" type="">=== RUN TestTypeFilter
--- FAIL: TestTypeFilter (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestTagFilter/default_" time="0.000000">
<failure message="Failed" type="">=== RUN TestTagFilter/default_
 masking_test.go:445: 
 	Error Trace:	masking_test.go:445
 	Error: 	Not equal: 
 	 	expected: "[filtered]"
 	 	actual : "[email protected]"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-[filtered]
 	 	[email protected]
 	Test: 	TestTagFilter/default_
 --- FAIL: TestTagFilter/default_ (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestTagFilter/custom_" time="0.000000">
<failure message="Failed" type="">=== RUN TestTagFilter/custom_
 masking_test.go:468: 
 	Error Trace:	masking_test.go:468
 	Error: 	Not equal: 
 	 	expected: "dum****@dummy.com"
 	 	actual : "[email protected]"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-dum****@dummy.com
 	 	[email protected]
 	Test: 	TestTagFilter/custom_
 --- FAIL: TestTagFilter/custom_ (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestTagFilter" time="0.000000">
<failure message="Failed" type="">=== RUN TestTagFilter
--- FAIL: TestTagFilter (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestPiiPhoneNumber/struct" time="0.000000">
<failure message="Failed" type="">=== RUN TestPiiPhoneNumber/struct
 masking_test.go:503: 
 	Error Trace:	masking_test.go:503
 	Error: 	Not equal: 
 	 	expected: "[filtered]"
 	 	actual : "090-0000-0000"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-[filtered]
 	 	+090-0000-0000
 	Test: 	TestPiiPhoneNumber/struct
 --- FAIL: TestPiiPhoneNumber/struct (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestPiiPhoneNumber" time="0.000000">
<failure message="Failed" type="">=== RUN TestPiiPhoneNumber
=== CONT TestPiiPhoneNumber
 masking_test.go:516: 
 	Error Trace:	masking_test.go:516
 	Error: 	Not equal: 
 	 	expected: map[string]interface {}{"phone":"[filtered]"}
 	 	actual : map[string]interface {}{"phone":interface {}(nil)}
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1,3 +1,3 @@
 	 	 (map[string]interface {}) (len=1) {
 	 	- (string) (len=5) "phone": (string) (len=10) "[filtered]"
 	 	+ (string) (len=5) "phone": (interface {}) <nil>
 	 	 }
 	Test: 	TestPiiPhoneNumber
--- FAIL: TestPiiPhoneNumber (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomPiiPhoneNumber/string" time="0.000000">
<failure message="Failed" type="">=== RUN TestCustomPiiPhoneNumber/string
 masking_test.go:528: 
 	Error Trace:	masking_test.go:528
 	Error: 	Not equal: 
 	 	expected: "090-***0-0000"
 	 	actual : "[filtered]"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-090-***0-0000
 	 	+[filtered]
 	Test: 	TestCustomPiiPhoneNumber/string
 --- FAIL: TestCustomPiiPhoneNumber/string (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomPiiPhoneNumber/struct" time="0.000000">
<failure message="Failed" type="">=== RUN TestCustomPiiPhoneNumber/struct
 masking_test.go:548: 
 	Error Trace:	masking_test.go:548
 	Error: 	Not equal: 
 	 	expected: "090-***0-0000"
 	 	actual : "090-0000-0000"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-090-***0-0000
 	 	+090-0000-0000
 	Test: 	TestCustomPiiPhoneNumber/struct
 --- FAIL: TestCustomPiiPhoneNumber/struct (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomPiiPhoneNumber" time="0.000000">
<failure message="Failed" type="">=== RUN TestCustomPiiPhoneNumber
=== CONT TestCustomPiiPhoneNumber
 masking_test.go:561: 
 	Error Trace:	masking_test.go:561
 	Error: 	Not equal: 
 	 	expected: map[string]interface {}{"phone":"090-***0-0000"}
 	 	actual : map[string]interface {}{"phone":interface {}(nil)}
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1,3 +1,3 @@
 	 	 (map[string]interface {}) (len=1) {
 	 	- (string) (len=5) "phone": (string) (len=13) "090-***0-0000"
 	 	+ (string) (len=5) "phone": (interface {}) <nil>
 	 	 }
 	Test: 	TestCustomPiiPhoneNumber
--- FAIL: TestCustomPiiPhoneNumber (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestPiiEmail" time="0.000000">
<failure message="Failed" type="">=== RUN TestPiiEmail
 masking_test.go:580: 
 	Error Trace:	masking_test.go:580
 	Error: 	Not equal: 
 	 	expected: "[filtered]"
 	 	actual : "[email protected]"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-[filtered]
 	 	[email protected]
 	Test: 	TestPiiEmail
--- FAIL: TestPiiEmail (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomPiiEmail" time="0.000000">
<failure message="Failed" type="">=== RUN TestCustomPiiEmail
 masking_test.go:602: 
 	Error Trace:	masking_test.go:602
 	Error: 	Not equal: 
 	 	expected: "dum****@dummy.com"
 	 	actual : "[email protected]"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-dum****@dummy.com
 	 	[email protected]
 	Test: 	TestCustomPiiEmail
--- FAIL: TestCustomPiiEmail (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestPiiCustomRegexNumber" time="0.000000">
<failure message="Failed" type="">=== RUN TestPiiCustomRegexNumber
 masking_test.go:624: 
 	Error Trace:	masking_test.go:624
 	Error: 	Not equal: 
 	 	expected: "[filtered]"
 	 	actual : "https://dummy-backend.getsimpl.com/v2/random"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-[filtered]
 	 	+https://dummy-backend.getsimpl.com/v2/random
 	Test: 	TestPiiCustomRegexNumber
--- FAIL: TestPiiCustomRegexNumber (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestFieldFilter" time="0.000000">
<failure message="Failed" type="">=== RUN TestFieldFilter
=== CONT TestFieldFilter
 masking_test.go:648: 
 	Error Trace:	masking_test.go:648
 	Error: 	Not equal: 
 	 	expected: "[filtered]"
 	 	actual : "090-0000-0000"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-[filtered]
 	 	+090-0000-0000
 	Test: 	TestFieldFilter
--- FAIL: TestFieldFilter (0.00s)
=== RUN TestFieldFilter/struct_with_no_specific_mask
 --- PASS: TestFieldFilter/struct_with_no_specific_mask (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomFieldFilter" time="0.000000">
<failure message="Failed" type="">=== RUN TestCustomFieldFilter
=== CONT TestCustomFieldFilter
 masking_test.go:693: 
 	Error Trace:	masking_test.go:693
 	Error: 	Not equal: 
 	 	expected: "090-xxx0-0000"
 	 	actual : "090-0000-0000"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-090-xxx0-0000
 	 	+090-0000-0000
 	Test: 	TestCustomFieldFilter
 masking_test.go:694: 
 	Error Trace:	masking_test.go:694
 	Error: 	Not equal: 
 	 	expected: "[email protected]"
 	 	actual : "[email protected]"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	[email protected]
 	 	[email protected]
 	Test: 	TestCustomFieldFilter
 masking_test.go:695: 
 	Error Trace:	masking_test.go:695
 	Error: 	Not equal: 
 	 	expected: "userIdxxxx"
 	 	actual : "userId"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-userIdxxxx
 	 	+userId
 	Test: 	TestCustomFieldFilter
 masking_test.go:696: 
 	Error Trace:	masking_test.go:696
 	Error: 	Not equal: 
 	 	expected: "Jxxn Dxxe"
 	 	actual : "John Doe"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-Jxxn Dxxe
 	 	+John Doe
 	Test: 	TestCustomFieldFilter
 masking_test.go:697: 
 	Error Trace:	masking_test.go:697
 	Error: 	Not equal: 
 	 	expected: "1 AB Rxxxxxx"
 	 	actual : "1 AB Road, Paradise"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-1 AB Rxxxxxx
 	 	+1 AB Road, Paradise
 	Test: 	TestCustomFieldFilter
 masking_test.go:698: 
 	Error Trace:	masking_test.go:698
 	Error: 	Not equal: 
 	 	expected: "4444-4xxxxxx44-4444"
 	 	actual : "4444-4444-4444-4444"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-4444-4xxxxxx44-4444
 	 	+4444-4444-4444-4444
 	Test: 	TestCustomFieldFilter
 masking_test.go:699: 
 	Error Trace:	masking_test.go:699
 	Error: 	Not equal: 
 	 	expected: "http://admin:xxxxx@localhost:1234/uri"
 	 	actual : "http://admin:mysecretpassword@localhost:1234/uri"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-http://admin:xxxxx@localhost:1234/uri
 	 	+http://admin:mysecretpassword@localhost:1234/uri
 	Test: 	TestCustomFieldFilter
--- FAIL: TestCustomFieldFilter (0.00s)
=== RUN TestCustomFieldFilter/struct
 --- PASS: TestCustomFieldFilter/struct (0.00s)
=== RUN TestCustomFieldFilter/map
 --- PASS: TestCustomFieldFilter/map (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestFieldPrefixFilter" time="0.000000">
<failure message="Failed" type="">=== RUN TestFieldPrefixFilter
=== CONT TestFieldPrefixFilter
 masking_test.go:736: 
 	Error Trace:	masking_test.go:736
 	Error: 	Not equal: 
 	 	expected: "[filtered]"
 	 	actual : "090-0000-0000"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-[filtered]
 	 	+090-0000-0000
 	Test: 	TestFieldPrefixFilter
--- FAIL: TestFieldPrefixFilter (0.00s)
=== RUN TestFieldPrefixFilter/default
 --- PASS: TestFieldPrefixFilter/default (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomFieldPrefixFilter" time="0.000000">
<failure message="Failed" type="">=== RUN TestCustomFieldPrefixFilter
=== CONT TestCustomFieldPrefixFilter
 masking_test.go:763: 
 	Error Trace:	masking_test.go:763
 	Error: 	Not equal: 
 	 	expected: "090-***0-0000"
 	 	actual : "090-0000-0000"
 	 	
 	 	Diff:
 	 	--- Expected
 	 	+++ Actual
 	 	@@ -1 +1 @@
 	 	-090-***0-0000
 	 	+090-0000-0000
 	Test: 	TestCustomFieldPrefixFilter
--- FAIL: TestCustomFieldPrefixFilter (0.00s)
=== RUN TestCustomFieldPrefixFilter/custom
 --- PASS: TestCustomFieldPrefixFilter/custom (0.00s)
</failure>
</testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestDefaultValueFilter/string" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestDefaultValueFilter/struct" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestDefaultValueFilter/array" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestDefaultValueFilter/map" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestDefaultValueFilter" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomValueFilter/map" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestVariousDatastructuresForVariousScenarios/struct/original_data_is_not_modified_when_filtered" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestVariousDatastructuresForVariousScenarios/struct/non-ptr_struct_can_be_modified" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestVariousDatastructuresForVariousScenarios/struct/nested_structure_can_be_modified" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestVariousDatastructuresForVariousScenarios/struct/unexported_field_is_also_copied" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestVariousDatastructuresForVariousScenarios/struct/original_type" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestVariousDatastructuresForVariousScenarios/struct/various_field" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestVariousDatastructuresForVariousScenarios/struct/map_data" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestVariousDatastructuresForVariousScenarios/struct/array_data" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestVariousDatastructuresForVariousScenarios/struct/array_data_with_ptr" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestVariousDatastructuresForVariousScenarios/struct" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestVariousDatastructuresForVariousScenarios" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestAllFieldFilter/filter_various_type" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestAllFieldFilter" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestPiiPhoneNumber/string" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestPiiPhoneNumber/map" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomPiiPhoneNumber/map" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestFieldFilter/struct_with_no_specific_mask" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomFieldFilter/struct" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomFieldFilter/map" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestFieldPrefixFilter/default" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility" name="TestCustomFieldPrefixFilter/custom" time="0.000000"></testcase>
</testsuite>
<testsuite tests="0" failures="0" time="0.000000" name="github.com/anu1097/golang-mask-utility/filter" timestamp="2022-03-06T11:46:55+05:30">
<properties>
<property name="go.version" value="go1.17.6 darwin/arm64"></property>
</properties>
</testsuite>
<testsuite tests="111" failures="0" time="0.000000" name="github.com/anu1097/golang-mask-utility/masker" timestamp="2022-03-06T11:46:55+05:30">
<properties>
<property name="go.version" value="go1.17.6 darwin/arm64"></property>
</properties>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_overlay/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_overlay/Happy_Pass" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_overlay/Start_Less_Than_0" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_overlay/Start_Greater_Than_Length" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_overlay/End_Less_Than_0" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_overlay/Start_Less_Than_End" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_overlay" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_String/Error_Mask_Type" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_String/Password" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_String/Name" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_String/Address" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_String/Email" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_String/Mobile" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_String/ID" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_String/Telephone" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_String/CreditCard" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_String" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Name/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Name/Length_1" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Name/Length_2" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Name/Length_3" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Name/Length_4" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Name/Length_5" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Name/Length_6" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Name/English_Full_Name" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Name" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_ID/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_ID/Happy_Pass" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_ID/Length_Less_Than_6" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_ID/Length_Less_Than_6#01" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_ID/Length_Between_6_and_10" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_ID" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Address/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Address/Long_Address" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Address/Length_Less_Than_6" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Address" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_CreditCard/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_CreditCard/VISA_JCB_MasterCard" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_CreditCard/American_Express" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_CreditCard" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Email/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Email/Happy_Pass" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Email/Address_Less_Than_3" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Email/Invalid_email_format" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Email" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Mobile/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Mobile/Happy_Pass" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Mobile/Happy_Pass#01" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Mobile" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Telephone/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Telephone/With_Special_Chart" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Telephone/Happy_Pass" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Telephone/Happy_Pass#01" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Telephone/Length_Not_Eq_8_or_10" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Telephone" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Password/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Password/Happy_Pass" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Password/Happy_Pass#01" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMasker_Password" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestNew/New_Instance" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestNew" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestString/Error_Mask_Type" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestString/Password" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestString/Name" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestString/Address" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestString/Email" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestString/Mobile" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestString/ID" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestString/Telephone" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestString/CreditCard" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestString" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestName/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestName/Length_1" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestName/Length_2" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestName/Length_3" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestName/Length_4" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestName/Length_5" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestName/Length_6" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestName/English_Full_Name" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestName" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestID/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestID/Happy_Pass" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestID/Length_Less_Than_6" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestID/Length_Less_Than_6#01" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestID/Length_Between_6_and_10" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestID" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestAddress/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestAddress/Long_Address" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestAddress/Length_Less_Than_6" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestAddress" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestCreditCard/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestCreditCard/VISA_JCB_MasterCard" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestCreditCard/American_Express" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestCreditCard" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestEmail/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestEmail/Happy_Pass" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestEmail/Address_Less_Than_3" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestEmail" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMobile/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMobile/Happy_Pass" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMobile/Happy_Pass#01" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestMobile" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestTelephone/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestTelephone/With_Special_Chart" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestTelephone/Happy_Pass" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestTelephone/Happy_Pass#01" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestTelephone" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestPassword/Empty_Input" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestPassword/Happy_Pass" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestPassword/Happy_Pass#01" time="0.000000"></testcase>
<testcase classname="github.com/anu1097/golang-mask-utility/masker" name="TestPassword" time="0.000000"></testcase>
</testsuite>
</testsuites>