-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstructors_test.go
137 lines (118 loc) · 3.68 KB
/
constructors_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
package errors
import (
"errors"
"fmt"
"strings"
"testing"
"github.com/gofrs/uuid"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestNew(t *testing.T) {
t.Run("without metadata", func(t *testing.T) {
var err = New(testCode(true))
require.IsType(t, derror{}, err)
var derr = err.(derror)
assert.Equal(t, derr.c, testCode(true))
assert.NotEqual(t, uuid.UUID{}, derr.id)
assert.Empty(t, derr.mds)
assert.Nil(t, derr.werr)
assert.NotEmpty(t, derr.cs)
assert.NotContains(t, fmt.Sprintf("%+v", err), "errors.New")
})
t.Run("with metadata", func(t *testing.T) {
var err = New(testCode(true), MD{K: "a", V: "va"}, MD{K: "b", V: "vb"})
require.IsType(t, derror{}, err)
var derr = err.(derror)
assert.Equal(t, derr.c, testCode(true))
assert.NotEqual(t, uuid.UUID{}, derr.id)
assert.Equal(t, derr.mds, mDatas{{K: "a", V: "va"}, {K: "b", V: "vb"}})
assert.Nil(t, derr.werr)
assert.NotEmpty(t, derr.cs)
assert.NotContains(t, fmt.Sprintf("%+v", err), "errors.New")
})
}
func TestWrap(t *testing.T) {
t.Run("ext error & without metadata", func(t *testing.T) {
var (
extErr = errors.New("ext error: " + t.Name())
err = Wrap(extErr, testCode(true))
)
require.IsType(t, derror{}, err)
var derr = err.(derror)
assert.Equal(t, derr.c, testCode(true))
assert.NotEqual(t, uuid.UUID{}, derr.id)
assert.Empty(t, derr.mds)
assert.Equal(t, extErr, derr.werr)
assert.NotEmpty(t, derr.cs)
assert.NotContains(t, fmt.Sprintf("%+v", err), "errors.Wrap")
})
t.Run("ext error & with metadata", func(t *testing.T) {
var (
extErr = errors.New("ext error: " + t.Name())
err = Wrap(extErr, testCode(true), MD{K: "a", V: "va"}, MD{K: "b", V: "vb"})
)
require.IsType(t, derror{}, err)
var derr = err.(derror)
assert.Equal(t, derr.c, testCode(true))
assert.NotEqual(t, uuid.UUID{}, derr.id)
assert.Equal(t, derr.mds, mDatas{{K: "a", V: "va"}, {K: "b", V: "vb"}})
assert.Equal(t, extErr, derr.werr)
assert.NotEmpty(t, derr.cs)
assert.NotContains(t, fmt.Sprintf("%+v", err), "errors.Wrap")
})
t.Run("derror & without metadata", func(t *testing.T) {
var (
dErr = New(testCode(true), MD{K: "da", V: "vda"}, MD{K: "db", V: "vdb"})
err = Wrap(dErr, testCode(true))
)
require.IsType(t, derror{}, err)
var derr = err.(derror)
assert.Equal(t, derr.c, testCode(true))
assert.NotEqual(t, uuid.UUID{}, derr.id)
assert.Empty(t, derr.mds)
assert.NotEmpty(t, derr.cs)
var (
cdErr = dErr.(derror)
expDErr = derror{
c: cdErr.c,
id: cdErr.id,
mds: cdErr.mds,
werr: cdErr.werr,
}
)
assert.Equal(t, expDErr, derr.werr)
var prcs = fmt.Sprintf("%+v", err)
assert.NotContains(t, prcs, "errors.Wrap")
// Make sure that call stack of derr is not printed
var parts = strings.Split(prcs, "call stack")
assert.Len(t, parts, 2)
})
t.Run("derror & with metadata", func(t *testing.T) {
var (
dErr = New(testCode(true), MD{K: "da", V: "vda"}, MD{K: "db", V: "vdb"})
err = Wrap(dErr, testCode(true), MD{K: "a", V: "va"}, MD{K: "b", V: "vb"})
)
require.IsType(t, derror{}, err)
var derr = err.(derror)
assert.Equal(t, derr.c, testCode(true))
assert.NotEqual(t, uuid.UUID{}, derr.id)
assert.Equal(t, derr.mds, mDatas{{K: "a", V: "va"}, {K: "b", V: "vb"}})
assert.NotEmpty(t, derr.cs)
var (
cdErr = dErr.(derror)
expDErr = derror{
c: cdErr.c,
id: cdErr.id,
mds: cdErr.mds,
werr: cdErr.werr,
}
)
assert.Equal(t, expDErr, derr.werr)
var prcs = fmt.Sprintf("%+v", err)
assert.NotContains(t, prcs, "errors.Wrap")
// Make sure that call stack of derr is not printed
var parts = strings.Split(prcs, "call stack")
assert.Len(t, parts, 2)
})
}