-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresult_test.go
More file actions
690 lines (567 loc) · 14.3 KB
/
result_test.go
File metadata and controls
690 lines (567 loc) · 14.3 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
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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
package result
import (
"errors"
"fmt"
"testing"
)
// ============================================================================
// Constructor Tests
// ============================================================================
func TestOk(t *testing.T) {
r := Ok(42)
if !r.IsOk() {
t.Error("Ok() should create an Ok result")
}
if r.IsErr() {
t.Error("Ok() result should not be Err")
}
if r.value != 42 {
t.Errorf("Ok() value = %v, want 42", r.value)
}
if r.err != nil {
t.Errorf("Ok() err = %v, want nil", r.err)
}
}
func TestErr(t *testing.T) {
testErr := errors.New("test error")
r := Err[int](testErr)
if r.IsOk() {
t.Error("Err() result should not be Ok")
}
if !r.IsErr() {
t.Error("Err() should create an Err result")
}
if r.err != testErr {
t.Errorf("Err() err = %v, want %v", r.err, testErr)
}
}
func TestFrom(t *testing.T) {
t.Run("with nil error creates Ok", func(t *testing.T) {
r := From(42, nil)
if !r.IsOk() {
t.Error("From(value, nil) should create Ok result")
}
if r.value != 42 {
t.Errorf("From() value = %v, want 42", r.value)
}
})
t.Run("with error creates Err", func(t *testing.T) {
testErr := errors.New("test error")
r := From(0, testErr)
if !r.IsErr() {
t.Error("From(value, err) should create Err result")
}
if r.err != testErr {
t.Errorf("From() err = %v, want %v", r.err, testErr)
}
})
}
// ============================================================================
// Predicate Tests
// ============================================================================
func TestIsOk(t *testing.T) {
tests := []struct {
name string
result Result[int]
expected bool
}{
{
name: "Ok result",
result: Ok(42),
expected: true,
},
{
name: "Err result",
result: Err[int](errors.New("error")),
expected: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.result.IsOk()
if got != tt.expected {
t.Errorf("IsOk() = %v, want %v", got, tt.expected)
}
})
}
}
func TestIsErr(t *testing.T) {
tests := []struct {
name string
result Result[int]
expected bool
}{
{
name: "Ok result",
result: Ok(42),
expected: false,
},
{
name: "Err result",
result: Err[int](errors.New("error")),
expected: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.result.IsErr()
if got != tt.expected {
t.Errorf("IsErr() = %v, want %v", got, tt.expected)
}
})
}
}
func TestIsErrKind(t *testing.T) {
tests := []struct {
name string
result Result[int]
kind Kind
expected bool
}{
{
name: "Ok result",
result: Ok(42),
kind: KindNotFound,
expected: false,
},
{
name: "Err with matching kind",
result: Err[int](NotFound("test", "resource")),
kind: KindNotFound,
expected: true,
},
{
name: "Err with non-matching kind",
result: Err[int](NotFound("test", "resource")),
kind: KindValidation,
expected: false,
},
{
name: "Err with standard error",
result: Err[int](errors.New("standard error")),
kind: KindInternal,
expected: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.result.IsErrKind(tt.kind)
if got != tt.expected {
t.Errorf("IsErrKind() = %v, want %v", got, tt.expected)
}
})
}
}
// ============================================================================
// Extractor Tests
// ============================================================================
func TestUnwrap(t *testing.T) {
t.Run("Ok result returns value", func(t *testing.T) {
r := Ok(42)
value := r.Unwrap()
if value != 42 {
t.Errorf("Unwrap() = %v, want 42", value)
}
})
t.Run("Err result panics", func(t *testing.T) {
r := Err[int](errors.New("test error"))
defer func() {
if r := recover(); r == nil {
t.Error("Unwrap() should panic on Err result")
}
}()
_ = r.Unwrap()
})
}
func TestUnwrapOr(t *testing.T) {
t.Run("Ok result returns value", func(t *testing.T) {
r := Ok(42)
value := r.UnwrapOr(0)
if value != 42 {
t.Errorf("UnwrapOr() = %v, want 42", value)
}
})
t.Run("Err result returns default", func(t *testing.T) {
r := Err[int](errors.New("test error"))
value := r.UnwrapOr(99)
if value != 99 {
t.Errorf("UnwrapOr() = %v, want 99", value)
}
})
}
func TestUnwrapOrElse(t *testing.T) {
t.Run("Ok result returns value", func(t *testing.T) {
r := Ok(42)
value := r.UnwrapOrElse(func(err error) int {
return -1
})
if value != 42 {
t.Errorf("UnwrapOrElse() = %v, want 42", value)
}
})
t.Run("Err result computes default", func(t *testing.T) {
testErr := errors.New("test error")
r := Err[int](testErr)
var capturedErr error
value := r.UnwrapOrElse(func(err error) int {
capturedErr = err
return 99
})
if value != 99 {
t.Errorf("UnwrapOrElse() = %v, want 99", value)
}
if capturedErr != testErr {
t.Errorf("UnwrapOrElse() error = %v, want %v", capturedErr, testErr)
}
})
}
func TestExpect(t *testing.T) {
t.Run("Ok result returns value", func(t *testing.T) {
r := Ok(42)
value := r.Expect("should have value")
if value != 42 {
t.Errorf("Expect() = %v, want 42", value)
}
})
t.Run("Err result panics with custom message", func(t *testing.T) {
r := Err[int](errors.New("test error"))
defer func() {
if r := recover(); r == nil {
t.Error("Expect() should panic on Err result")
} else {
msg := fmt.Sprintf("%v", r)
if msg != "custom panic message: test error" {
t.Errorf("Expect() panic message = %v, want custom message", msg)
}
}
}()
_ = r.Expect("custom panic message")
})
}
func TestValue(t *testing.T) {
t.Run("Ok result", func(t *testing.T) {
r := Ok(42)
value, err := r.Value()
if value != 42 {
t.Errorf("Value() value = %v, want 42", value)
}
if err != nil {
t.Errorf("Value() err = %v, want nil", err)
}
})
t.Run("Err result", func(t *testing.T) {
testErr := errors.New("test error")
r := Err[int](testErr)
value, err := r.Value()
if value != 0 {
t.Errorf("Value() value = %v, want zero value", value)
}
if err != testErr {
t.Errorf("Value() err = %v, want %v", err, testErr)
}
})
}
func TestError(t *testing.T) {
t.Run("Ok result returns nil", func(t *testing.T) {
r := Ok(42)
err := r.Error()
if err != nil {
t.Errorf("Error() = %v, want nil", err)
}
})
t.Run("Err result returns error", func(t *testing.T) {
testErr := errors.New("test error")
r := Err[int](testErr)
err := r.Error()
if err != testErr {
t.Errorf("Error() = %v, want %v", err, testErr)
}
})
}
func TestUnwrapErr(t *testing.T) {
t.Run("returns error from Err result", func(t *testing.T) {
expectedErr := errors.New("test error")
result := Err[int](expectedErr)
got := result.UnwrapErr()
if got != expectedErr {
t.Errorf("UnwrapErr() = %v, want %v", got, expectedErr)
}
})
t.Run("returns nil from Ok result", func(t *testing.T) {
result := Ok(42)
got := result.UnwrapErr()
if got != nil {
t.Errorf("UnwrapErr() = %v, want nil", got)
}
})
t.Run("preserves error type", func(t *testing.T) {
customErr := &Error{
Kind: KindValidation,
Op: "test",
Message: "validation failed",
}
result := Err[string](customErr)
got := result.UnwrapErr()
var e *Error
if !errors.As(got, &e) {
t.Error("UnwrapErr() did not preserve error type")
}
if e.Kind != KindValidation {
t.Errorf("Kind = %v, want %v", e.Kind, KindValidation)
}
})
}
// ============================================================================
// Context Builder Tests
// ============================================================================
func TestWithOp(t *testing.T) {
r := Ok(42).WithOp("Service.GetUser")
if r.op != "Service.GetUser" {
t.Errorf("WithOp() op = %v, want Service.GetUser", r.op)
}
// Value should be preserved
if r.value != 42 {
t.Errorf("WithOp() value = %v, want 42", r.value)
}
}
func TestWithMeta(t *testing.T) {
r := Ok(42).
WithMeta("user_id", "123").
WithMeta("request_id", "req_abc")
if r.meta == nil {
t.Fatal("WithMeta() should initialize meta map")
}
if r.meta["user_id"] != "123" {
t.Errorf("WithMeta() meta[user_id] = %v, want 123", r.meta["user_id"])
}
if r.meta["request_id"] != "req_abc" {
t.Errorf("WithMeta() meta[request_id] = %v, want req_abc", r.meta["request_id"])
}
// Value should be preserved
if r.value != 42 {
t.Errorf("WithMeta() value = %v, want 42", r.value)
}
}
func TestWithMetaMap(t *testing.T) {
meta := map[string]any{
"user_id": "123",
"request_id": "req_abc",
}
r := Ok(42).WithMetaMap(meta)
if r.meta == nil {
t.Fatal("WithMetaMap() should initialize meta map")
}
if r.meta["user_id"] != "123" {
t.Errorf("WithMetaMap() meta[user_id] = %v, want 123", r.meta["user_id"])
}
if r.meta["request_id"] != "req_abc" {
t.Errorf("WithMetaMap() meta[request_id] = %v, want req_abc", r.meta["request_id"])
}
// Value should be preserved
if r.value != 42 {
t.Errorf("WithMetaMap() value = %v, want 42", r.value)
}
}
func TestWithMetaMap_PreservesExisting(t *testing.T) {
r := Ok(42).
WithMeta("key1", "value1").
WithMetaMap(map[string]any{
"key2": "value2",
"key3": "value3",
})
if r.meta["key1"] != "value1" {
t.Error("WithMetaMap() should preserve existing metadata")
}
if r.meta["key2"] != "value2" {
t.Error("WithMetaMap() should add new metadata")
}
}
// ============================================================================
// Transformer Tests
// ============================================================================
func TestMap(t *testing.T) {
t.Run("Ok result transforms value", func(t *testing.T) {
r := Ok(21).Map(func(n int) int {
return n * 2
})
if !r.IsOk() {
t.Error("Map() should preserve Ok status")
}
if r.value != 42 {
t.Errorf("Map() value = %v, want 42", r.value)
}
})
t.Run("Err result unchanged", func(t *testing.T) {
testErr := errors.New("test error")
r := Err[int](testErr).Map(func(n int) int {
return n * 2
})
if !r.IsErr() {
t.Error("Map() should preserve Err status")
}
if r.err != testErr {
t.Errorf("Map() err = %v, want %v", r.err, testErr)
}
})
t.Run("preserves context", func(t *testing.T) {
r := Ok(21).
WithOp("test").
WithMeta("key", "value").
Map(func(n int) int {
return n * 2
})
if r.op != "test" {
t.Error("Map() should preserve op")
}
if r.meta["key"] != "value" {
t.Error("Map() should preserve meta")
}
})
}
func TestMapErr(t *testing.T) {
t.Run("Err result transforms error", func(t *testing.T) {
originalErr := errors.New("original")
r := Err[int](originalErr).MapErr(func(err error) error {
return fmt.Errorf("wrapped: %w", err)
})
if !r.IsErr() {
t.Error("MapErr() should preserve Err status")
}
expectedMsg := "wrapped: original"
if r.err.Error() != expectedMsg {
t.Errorf("MapErr() err = %v, want %v", r.err.Error(), expectedMsg)
}
})
t.Run("Ok result unchanged", func(t *testing.T) {
r := Ok(42).MapErr(func(err error) error {
return errors.New("should not be called")
})
if !r.IsOk() {
t.Error("MapErr() should preserve Ok status")
}
if r.value != 42 {
t.Errorf("MapErr() value = %v, want 42", r.value)
}
})
t.Run("preserves context", func(t *testing.T) {
r := Err[int](errors.New("original")).
WithOp("test").
WithMeta("key", "value").
MapErr(func(err error) error {
return fmt.Errorf("wrapped: %w", err)
})
if r.op != "test" {
t.Error("MapErr() should preserve op")
}
if r.meta["key"] != "value" {
t.Error("MapErr() should preserve meta")
}
})
}
func TestMapValue(t *testing.T) {
t.Run("Ok result transforms to different type", func(t *testing.T) {
r := MapValue(
Ok(42),
func(n int) string {
return fmt.Sprintf("number: %d", n)
},
)
if !r.IsOk() {
t.Error("MapValue() should preserve Ok status")
}
expected := "number: 42"
if r.value != expected {
t.Errorf("MapValue() value = %v, want %v", r.value, expected)
}
})
t.Run("Err result preserves error", func(t *testing.T) {
testErr := errors.New("test error")
r := MapValue(
Err[int](testErr),
func(n int) string {
return fmt.Sprintf("number: %d", n)
},
)
if !r.IsErr() {
t.Error("MapValue() should preserve Err status")
}
if r.err != testErr {
t.Errorf("MapValue() err = %v, want %v", r.err, testErr)
}
})
t.Run("preserves context", func(t *testing.T) {
r := MapValue(
Ok(42).WithOp("test").WithMeta("key", "value"),
func(n int) string {
return fmt.Sprintf("%d", n)
},
)
if r.op != "test" {
t.Error("MapValue() should preserve op")
}
if r.meta["key"] != "value" {
t.Error("MapValue() should preserve meta")
}
})
}
// ============================================================================
// Integration Tests
// ============================================================================
func TestResultChaining(t *testing.T) {
// Test fluent API chaining
r := Ok(42).
WithOp("Service.Process").
WithMeta("step", "1").
Map(func(n int) int {
return n * 2
}).
WithMeta("step", "2")
if !r.IsOk() {
t.Error("Chaining should preserve Ok status")
}
if r.value != 84 {
t.Errorf("Chaining value = %v, want 84", r.value)
}
if r.op != "Service.Process" {
t.Error("Chaining should preserve op")
}
if r.meta["step"] != "2" {
t.Error("Chaining should update meta")
}
}
func TestResultWithGoIdioms(t *testing.T) {
// Simulate a function that returns (T, error)
getUserByID := func(id int) (string, error) {
if id == 0 {
return "", errors.New("invalid id")
}
return fmt.Sprintf("user_%d", id), nil
}
t.Run("convert success to Result", func(t *testing.T) {
name, err := getUserByID(42)
r := From(name, err)
if !r.IsOk() {
t.Error("Should convert successful call to Ok")
}
if r.value != "user_42" {
t.Errorf("Value = %v, want user_42", r.value)
}
})
t.Run("convert error to Result", func(t *testing.T) {
name, err := getUserByID(0)
r := From(name, err)
if !r.IsErr() {
t.Error("Should convert error call to Err")
}
})
t.Run("convert Result back to (T, error)", func(t *testing.T) {
r := Ok("test")
value, err := r.Value()
if err != nil {
t.Error("Value() should return nil error for Ok")
}
if value != "test" {
t.Errorf("Value() = %v, want test", value)
}
})
}