This repository was archived by the owner on Mar 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodeGen_test.go
171 lines (143 loc) · 2.3 KB
/
codeGen_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
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
package goIsoMapper
import (
"testing"
"time"
)
func TestGetPkgPrefix(t *testing.T) {
s := "aaa/cccc/bbbb"
result := getPackagePrefix(s)
if result != "bbbb." {
t.Error(result)
}
}
func TestGenPrimitiveStructMap(t *testing.T) {
type Huga struct {
a string
c uint
d int
t time.Time
}
type Hoge struct {
b Huga
}
result := genPrimitiveStructMap(Hoge{})
expectedMap := structMap{
"b": structMap{
"c": "uint",
"d": "int",
"t": "string",
"a": "string",
},
}
if !isMapEqual(result, expectedMap) {
t.Error(result)
}
}
func TestGenPrimitiveStructMap2(t *testing.T) {
type BBB string
type CCC uint
type Huga struct {
a BBB
c CCC
d int
t time.Time
}
type Hoge struct {
b Huga
}
result := genPrimitiveStructMap(Hoge{})
expectedMap := structMap{
"b": structMap{
"c": "uint",
"d": "int",
"t": "string",
"a": "string",
},
}
if !isMapEqual(result, expectedMap) {
t.Error(result)
}
}
func TestGenPrimitiveStructMap3(t *testing.T) {
type BBB string
type CCC uint
type Huga struct {
a BBB
c CCC `goIsoMapper:"coarseString"`
d int
t time.Time
}
type Hoge struct {
b Huga
}
result := genPrimitiveStructMap(Hoge{})
expectedMap := structMap{
"b": structMap{
"c": "string",
"d": "int",
"t": "string",
"a": "string",
},
}
if !isMapEqual(result, expectedMap) {
t.Error(result)
}
}
func TestGenerate(t *testing.T) {
type BBB string
type Huga struct {
A BBB
C int
D int `goIsoMapper:"coarseString"`
T time.Time
}
type Hoge struct {
B Huga
}
result := Generate(Hoge{}, "toString", "2006-01-02")
// テストコードがやばすぎる
expectedStr := `type HogeMap struct {
B struct {
A string
C int
D string
T string
}
}
func MapFromHoge(hoge Hoge) HogeMap {
return HogeMap{
B: struct {
A string
C int
D string
T string
}{
A: string(hoge.B.A),
C: hoge.B.C,
D: hoge.B.D.toString(),
T: hoge.B.T.Format("2006-01-02"),
},
}
}`
if result != expectedStr {
t.Error(result)
}
}
func TestGenerate2(t *testing.T) {
type Hoge struct {
B []int
}
result := Generate(Hoge{}, "toString", "2006-01-02")
// テストコードがやばすぎる
expectedStr := `type HogeMap struct {
B []int
}
func MapFromHoge(hoge Hoge) HogeMap {
return HogeMap{
B: []int(hoge.B),
}
}`
if result != expectedStr {
t.Error(result)
}
}