-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintegration_test.go
More file actions
389 lines (308 loc) · 10.5 KB
/
Copy pathintegration_test.go
File metadata and controls
389 lines (308 loc) · 10.5 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
package errors
import (
"strings"
"testing"
)
// TestIntegration_PrefixRemovalWithStackTrace tests the complete flow
// of creating an error, setting prefixes, and verifying they're removed
func TestIntegration_PrefixRemovalWithStackTrace(t *testing.T) {
// Save original policy
originalPolicy := getPolicy()
defer SetPolicy(originalPolicy)
// Set policy to Normal to filter boilerplate
SetPolicy(PolicyNormal)
// Configure prefixes to remove
SetPrefixesToSanitize("github.com/tech4works/", "sdk-manas")
defer SetPrefixesToSanitize() // reset
// Create an error
err := New("integration test error")
// Get the stack trace
stack := err.Stack()
// Verify prefixes are removed
if strings.Contains(stack, "github.com/tech4works/") {
t.Errorf("expected 'github.com/tech4works/' to be removed from stack, got: %s", stack)
}
if strings.Contains(stack, "sdk-manas") {
t.Errorf("expected 'sdk-manas' to be removed from stack, got: %s", stack)
}
// Verify the error message is still present
if !strings.Contains(err.Error(), "integration test error") {
t.Errorf("expected error message to be present, got: %s", err.Error())
}
}
// TestIntegration_MultipleErrorsWithPrefixRemoval tests that prefix removal
// works consistently across multiple errors
func TestIntegration_MultipleErrorsWithPrefixRemoval(t *testing.T) {
SetPrefixesToSanitize("github.com/tech4works/")
defer SetPrefixesToSanitize()
// Create multiple errors
err1 := New("error 1")
err2 := New("error 2")
err3 := Newf("error %d", 3)
// Verify all have prefixes removed
for i, err := range []*Err{err1, err2, err3} {
stack := err.Stack()
if strings.Contains(stack, "github.com/tech4works/") {
t.Errorf("error %d: expected prefix to be removed, got: %s", i+1, stack)
}
}
}
// TestIntegration_InheritWithPrefixRemoval tests that prefix removal works
// with error inheritance
func TestIntegration_InheritWithPrefixRemoval(t *testing.T) {
SetPrefixesToSanitize("github.com/tech4works/")
defer SetPrefixesToSanitize()
// Create a base error
baseErr := New("base error")
// Inherit from it
inheritedErr := Inherit(baseErr, "inherited error")
// Verify prefixes are removed in both
if strings.Contains(inheritedErr.Stack(), "github.com/tech4works/") {
t.Errorf("expected prefix to be removed from inherited error stack")
}
}
// TestIntegration_BoilerplateFilteringWithPrefixRemoval tests that both
// boilerplate filtering and prefix removal work together
func TestIntegration_BoilerplateFilteringWithPrefixRemoval(t *testing.T) {
originalPolicy := getPolicy()
defer SetPolicy(originalPolicy)
SetPolicy(PolicyNormal)
SetPrefixesToSanitize("github.com/tech4works/", "github.com/tech4works/sdk-manas")
defer SetPrefixesToSanitize()
err := New("test error")
stack := err.Stack()
// Verify boilerplate is filtered
if strings.Contains(stack, "runtime.") {
t.Errorf("expected runtime boilerplate to be filtered")
}
// Verify prefixes are removed
if strings.Contains(stack, "github.com/tech4works/") {
t.Errorf("expected github.com/tech4works/ prefix to be removed")
}
if strings.Contains(stack, "sdk-manas") {
t.Errorf("expected sdk-manas prefix to be removed")
}
}
// TestIntegration_ResetPrefixes tests that calling SetPrefixesToRemove()
// with no arguments resets the prefixes
func TestIntegration_ResetPrefixes(t *testing.T) {
// Set prefixes
SetPrefixesToSanitize("github.com/tech4works/")
// Create error with prefix
err1 := New("error with prefix")
stack1 := err1.Stack()
// Reset prefixes
SetPrefixesToSanitize()
// Create error without prefix removal
err2 := New("error without prefix")
stack2 := err2.Stack()
// The second error might have the prefix (depending on the actual stack)
// but we can verify that the function doesn't panic
_ = stack1
_ = stack2
}
// TestIntegration_ConcurrentPrefixRemoval tests that SetPrefixesToRemove
// is thread-safe
func TestIntegration_ConcurrentPrefixRemoval(t *testing.T) {
done := make(chan bool, 10)
// Goroutine 1: Set prefixes
go func() {
for i := 0; i < 100; i++ {
SetPrefixesToSanitize("github.com/tech4works/")
}
done <- true
}()
// Goroutine 2: Create errors
go func() {
for i := 0; i < 100; i++ {
err := New("concurrent error")
_ = err.Stack()
}
done <- true
}()
// Goroutine 3: Reset prefixes
go func() {
for i := 0; i < 100; i++ {
SetPrefixesToSanitize()
}
done <- true
}()
// Wait for all goroutines
for i := 0; i < 3; i++ {
<-done
}
}
// TestIntegration_PrefixRemovalWithCode tests prefix removal with error codes
func TestIntegration_PrefixRemovalWithCode(t *testing.T) {
SetPrefixesToSanitize("github.com/tech4works/")
defer SetPrefixesToSanitize()
err := NewWithCode("BAD_REQUEST", "invalid input")
stack := err.Stack()
// Verify code is preserved
if !strings.Contains(err.Error(), "BAD_REQUEST") {
t.Errorf("expected code to be preserved")
}
// Verify prefix is removed
if strings.Contains(stack, "github.com/tech4works/") {
t.Errorf("expected prefix to be removed")
}
}
// TestIntegration_PrefixRemovalWithMetadata tests prefix removal with metadata
func TestIntegration_PrefixRemovalWithMetadata(t *testing.T) {
SetPrefixesToSanitize("github.com/tech4works/")
defer SetPrefixesToSanitize()
metadata := map[string]any{
"user_id": 123,
"action": "login",
}
err := NewWithMetadata(metadata, "metadata error")
stack := err.Stack()
// Verify metadata is preserved
if !strings.Contains(err.Error(), "user_id") {
t.Errorf("expected metadata to be preserved")
}
// Verify prefix is removed
if strings.Contains(stack, "github.com/tech4works/") {
t.Errorf("expected prefix to be removed")
}
}
// --- SetFrameToSanitize Integration Tests ---
func TestIntegration_FrameSanitizationWithStackTrace(t *testing.T) {
originalPolicy := getPolicy()
defer SetPolicy(originalPolicy)
SetPolicy(PolicyNormal)
SetFrameToSanitize("github.com/tech4works/sdk-manas")
defer SetFrameToSanitize()
err := New("frame sanitization test")
stack := err.Stack()
// Verify frame is removed
if strings.Contains(stack, "sdk-manas") {
t.Errorf("expected 'sdk-manas' frame to be removed from stack")
}
// Verify error message is preserved
if !strings.Contains(err.Error(), "frame sanitization test") {
t.Errorf("expected error message to be preserved")
}
}
func TestIntegration_MultipleFrameSanitization(t *testing.T) {
SetFrameToSanitize("runtime.goexit", "testing.tRunner", "gin")
defer SetFrameToSanitize()
raw := []byte("runtime.goexit()\n\t/usr/local/go/src/runtime/asm.s:1650 +0x1\ntesting.tRunner()\n\t/usr/local/go/src/testing/testing.go:1234 +0x1\ngithub.com/gin-gonic/gin.().Next()\n\t/go/pkg/mod/github.com/gin-gonic/gin@v1.12.0/context.go:192 +0x5f\nmyapp.myFunc()\n\t/app/main.go:42 +0x1")
result := normalizeStack(raw)
// Verify all frames are removed
if strings.Contains(result, "runtime.goexit") {
t.Errorf("expected 'runtime.goexit' frame to be removed")
}
if strings.Contains(result, "testing.tRunner") {
t.Errorf("expected 'testing.tRunner' frame to be removed")
}
if strings.Contains(result, "gin") {
t.Errorf("expected 'gin' frame to be removed")
}
// Verify user code is preserved
if !strings.Contains(result, "myapp.myFunc") {
t.Errorf("expected 'myapp.myFunc' frame to be preserved")
}
}
func TestIntegration_FrameAndPrefixSanitization(t *testing.T) {
originalPolicy := getPolicy()
defer SetPolicy(originalPolicy)
SetPolicy(PolicyNormal)
SetPrefixesToSanitize("github.com/tech4works/")
SetFrameToSanitize("sdk-manas")
defer func() {
SetPrefixesToSanitize()
SetFrameToSanitize()
}()
err := New("combined sanitization test")
stack := err.Stack()
// Verify both sanitizations work
if strings.Contains(stack, "github.com/tech4works/") {
t.Errorf("expected prefix to be removed")
}
if strings.Contains(stack, "sdk-manas") {
t.Errorf("expected frame containing 'sdk-manas' to be removed")
}
}
func TestIntegration_FrameSanitizationWithInheritance(t *testing.T) {
SetFrameToSanitize("gin")
defer SetFrameToSanitize()
baseErr := New("base error")
inheritedErr := Inherit(baseErr, "inherited error")
stack := inheritedErr.Stack()
// Verify frame sanitization works with inherited errors
if strings.Contains(stack, "gin") {
t.Errorf("expected 'gin' frame to be removed from inherited error stack")
}
}
// --- Hex Offset Sanitization Integration Tests ---
func TestIntegration_HexOffsetRemoval(t *testing.T) {
originalPolicy := getPolicy()
defer SetPolicy(originalPolicy)
SetPolicy(PolicyNormal)
err := New("hex offset test")
stack := err.Stack()
// Verify hex offsets are removed
if strings.Contains(stack, "+0x") {
t.Errorf("expected hex offsets to be removed from stack, got: %s", stack)
}
// Verify error message is preserved
if !strings.Contains(err.Error(), "hex offset test") {
t.Errorf("expected error message to be preserved")
}
}
func TestIntegration_HexOffsetWithPrefixSanitization(t *testing.T) {
originalPolicy := getPolicy()
defer SetPolicy(originalPolicy)
SetPolicy(PolicyNormal)
SetPrefixesToSanitize("github.com/tech4works/")
defer SetPrefixesToSanitize()
err := New("combined sanitization")
stack := err.Stack()
// Verify both sanitizations work
if strings.Contains(stack, "+0x") {
t.Errorf("expected hex offsets to be removed")
}
if strings.Contains(stack, "github.com/tech4works/") {
t.Errorf("expected prefixes to be removed")
}
}
func TestIntegration_HexOffsetWithFrameSanitization(t *testing.T) {
originalPolicy := getPolicy()
defer SetPolicy(originalPolicy)
SetPolicy(PolicyNormal)
SetFrameToSanitize("gin")
defer SetFrameToSanitize()
err := New("frame and offset test")
stack := err.Stack()
// Verify both sanitizations work
if strings.Contains(stack, "+0x") {
t.Errorf("expected hex offsets to be removed")
}
if strings.Contains(stack, "gin") {
t.Errorf("expected 'gin' frames to be removed")
}
}
func TestIntegration_AllSanitizationsCombined(t *testing.T) {
originalPolicy := getPolicy()
defer SetPolicy(originalPolicy)
SetPolicy(PolicyNormal)
SetPrefixesToSanitize("github.com/tech4works/")
SetFrameToSanitize("gin", "sdk-manas")
defer func() {
SetPrefixesToSanitize()
SetFrameToSanitize()
}()
err := New("all sanitizations")
stack := err.Stack()
// Verify all sanitizations work together
if strings.Contains(stack, "+0x") {
t.Errorf("expected hex offsets to be removed")
}
if strings.Contains(stack, "github.com/tech4works/") {
t.Errorf("expected prefixes to be removed")
}
if strings.Contains(stack, "gin") || strings.Contains(stack, "sdk-manas") {
t.Errorf("expected frames to be removed")
}
}