-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
73 lines (69 loc) · 1.49 KB
/
main_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
package main
import (
"encoding"
"testing"
"github.com/stretchr/testify/assert"
)
func TestTotpToksUnmarshalText(t *testing.T) {
type inOut struct {
in []byte
out TotpToks
expectErr bool
}
testCases := map[string]inOut{
"one input": {
in: []byte(`hoge:xxxxxxxxxxxx`),
out: TotpToks{map[service]totpTok{
"hoge": `xxxxxxxxxxxx`,
}},
expectErr: false,
},
"multi input": {
in: []byte(`hoge:xxxxx,fuga:111111`),
out: TotpToks{map[service]totpTok{
"hoge": "xxxxx",
"fuga": "111111",
}},
expectErr: false,
},
"no token with service name": {
in: []byte(`hoge`),
out: TotpToks{nil},
expectErr: true,
},
"no token in last service": {
in: []byte(`hoge:xxxxxxx,fuga`),
out: TotpToks{nil},
expectErr: true,
},
"empty input": {
in: []byte(``),
out: TotpToks{m: nil},
expectErr: true,
},
"multi input with inner spaces": {
in: []byte(`hoge:xxxxx xxxxx xxxxx, fuga: yyyyy yyyyy yyyyy`),
out: TotpToks{map[service]totpTok{
"hoge": "xxxxx xxxxx xxxxx",
"fuga": "yyyyy yyyyy yyyyy",
},
},
expectErr: false,
},
}
for k, v := range testCases {
t.Run(k, func(t *testing.T) {
var buf TotpToks
err := buf.UnmarshalText(v.in)
if v.expectErr {
assert.Error(t, err)
} else {
assert.NoError(t, err)
}
assert.Equal(t, v.out, buf)
})
}
}
func TestTotpToksImpl(t *testing.T) {
assert.Implements(t, (*encoding.TextUnmarshaler)(nil), new(TotpToks))
}