forked from abice/go-enum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuggy_test.go
More file actions
234 lines (213 loc) · 4.83 KB
/
buggy_test.go
File metadata and controls
234 lines (213 loc) · 4.83 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
//go:build example
// +build example
package example
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestBuggyConstants(t *testing.T) {
// Test that constants have correct values
assert.Equal(t, Buggy(0), BuggyA, "BuggyA should have value 0")
assert.Equal(t, Buggy(2), BuggyB, "BuggyB should have value 2")
assert.Equal(t, Buggy(1), BuggyC, "BuggyC should have value 1")
}
func TestBuggyString(t *testing.T) {
tests := []struct {
name string
value Buggy
expected string
}{
{
name: "BuggyA",
value: BuggyA,
expected: "A",
},
{
name: "BuggyB",
value: BuggyB,
expected: "B",
},
{
name: "BuggyC",
value: BuggyC,
expected: "C",
},
{
name: "Invalid value",
value: Buggy(99),
expected: "Buggy(99)",
},
{
name: "Invalid value 3",
value: Buggy(3),
expected: "Buggy(3)",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
assert.Equal(t, tt.expected, tt.value.String())
})
}
}
func TestBuggyIsValid(t *testing.T) {
tests := []struct {
name string
value Buggy
expected bool
}{
{
name: "BuggyA is valid",
value: BuggyA,
expected: true,
},
{
name: "BuggyB is valid",
value: BuggyB,
expected: true,
},
{
name: "BuggyC is valid",
value: BuggyC,
expected: true,
},
{
name: "Invalid value 99",
value: Buggy(99),
expected: false,
},
{
name: "Invalid value 3",
value: Buggy(3),
expected: false,
},
{
name: "Invalid value 3",
value: Buggy(3),
expected: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
assert.Equal(t, tt.expected, tt.value.IsValid())
})
}
}
func TestParseBuggy(t *testing.T) {
tests := []struct {
name string
input string
expected Buggy
errorExpected bool
}{
{
name: "Parse A",
input: "A",
expected: BuggyA,
errorExpected: false,
},
{
name: "Parse B",
input: "B",
expected: BuggyB,
errorExpected: false,
},
{
name: "Parse C",
input: "C",
expected: BuggyC,
errorExpected: false,
},
{
name: "Parse invalid string",
input: "D",
expected: Buggy(0),
errorExpected: true,
},
{
name: "Parse empty string",
input: "",
expected: Buggy(0),
errorExpected: true,
},
{
name: "Parse lowercase a",
input: "a",
expected: Buggy(0),
errorExpected: true,
},
{
name: "Parse numeric string",
input: "1",
expected: Buggy(0),
errorExpected: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
result, err := ParseBuggy(tt.input)
if tt.errorExpected {
require.Error(t, err, "Expected error for input: %s", tt.input)
assert.Contains(t, err.Error(), "not a valid Buggy", "Error should contain 'not a valid Buggy'")
assert.Equal(t, tt.expected, result, "Result should be zero value on error")
} else {
require.NoError(t, err, "Unexpected error for input: %s", tt.input)
assert.Equal(t, tt.expected, result, "Parsed value should match expected")
}
})
}
}
func TestBuggyErrorType(t *testing.T) {
// Test that ErrInvalidBuggy is properly defined
assert.NotNil(t, ErrInvalidBuggy)
assert.Equal(t, "not a valid Buggy", ErrInvalidBuggy.Error())
// Test that ParseBuggy returns an error that wraps ErrInvalidBuggy
_, err := ParseBuggy("invalid")
require.Error(t, err)
assert.ErrorIs(t, err, ErrInvalidBuggy)
}
func TestBuggyEdgeCases(t *testing.T) {
t.Run("Zero value behavior", func(t *testing.T) {
var b Buggy
// Zero value should be 0, which is BuggyA
assert.Equal(t, Buggy(0), b)
assert.Equal(t, BuggyA, b)
assert.True(t, b.IsValid())
assert.Equal(t, "A", b.String())
})
t.Run("Non-sequential values", func(t *testing.T) {
// Test that the enum handles non-sequential values correctly
// A=0, B=2, C=1 - so value 1 should map to C, not B
assert.Equal(t, "C", Buggy(1).String())
assert.Equal(t, "B", Buggy(2).String())
assert.True(t, Buggy(1).IsValid())
assert.True(t, Buggy(2).IsValid())
})
}
func BenchmarkBuggyString(b *testing.B) {
values := []Buggy{BuggyA, BuggyB, BuggyC, Buggy(99)}
b.ResetTimer()
for i := 0; i < b.N; i++ {
for _, v := range values {
_ = v.String()
}
}
}
func BenchmarkParseBuggy(b *testing.B) {
inputs := []string{"A", "B", "C", "invalid"}
b.ResetTimer()
for i := 0; i < b.N; i++ {
for _, input := range inputs {
_, _ = ParseBuggy(input)
}
}
}
func BenchmarkBuggyIsValid(b *testing.B) {
values := []Buggy{BuggyA, BuggyB, BuggyC, Buggy(99)}
b.ResetTimer()
for i := 0; i < b.N; i++ {
for _, v := range values {
_ = v.IsValid()
}
}
}