-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
type_test.go
76 lines (73 loc) · 1.35 KB
/
type_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
package tl
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestParameterType(t *testing.T) {
for _, tt := range []struct {
Type Type
String string
}{
{
Type: Type{Name: "Ok"},
String: "Ok",
},
{
Type: Type{Name: "foo", Bare: true},
String: "foo",
},
{
Type: Type{Name: "fooBar", Bare: true},
String: "fooBar",
},
{
Type: Type{Name: "baz", Bare: true, Namespace: []string{"foo", "bar"}},
String: "foo.bar.baz",
},
{
Type: Type{
Name: "Vec",
Namespace: []string{"basic"},
GenericArg: &Type{
Name: "T",
Namespace: []string{"generic"},
},
},
String: "basic.Vec<generic.T>",
},
{
Type: Type{
Name: "vector",
GenericArg: &Type{
Name: "T",
Bare: true,
Percent: true,
Namespace: []string{"generic"},
},
Bare: true,
},
String: "vector<%generic.T>",
},
{
Type: Type{
Name: "X",
Namespace: []string{"foo"},
GenericRef: true,
},
String: "!foo.X",
},
} {
t.Run(tt.String, func(t *testing.T) {
t.Run("String", func(t *testing.T) {
require.Equal(t, tt.String, tt.Type.String())
})
t.Run("Parse", func(t *testing.T) {
var result Type
if err := result.Parse(tt.String); err != nil {
t.Fatal(err)
}
require.Equal(t, result, tt.Type)
})
})
}
}