@@ -32,6 +32,7 @@ package test
32
32
import (
33
33
"arduino.cc/builder"
34
34
"arduino.cc/builder/constants"
35
+ "arduino.cc/builder/types"
35
36
"github.com/stretchr/testify/require"
36
37
"io/ioutil"
37
38
"path/filepath"
@@ -49,14 +50,14 @@ func TestCTagsParserShouldListPrototypes(t *testing.T) {
49
50
ctagsParser := builder.CTagsParser {PrototypesField : constants .CTX_PROTOTYPES }
50
51
ctagsParser .Run (context )
51
52
52
- prototypes := context [constants .CTX_PROTOTYPES ].([]string )
53
+ prototypes := context [constants .CTX_PROTOTYPES ].([]* types. Prototype )
53
54
54
55
require .Equal (t , 5 , len (prototypes ))
55
- require .Equal (t , "void setup();" , prototypes [0 ])
56
- require .Equal (t , "void loop();" , prototypes [1 ])
57
- require .Equal (t , "void digitalCommand(YunClient client);" , prototypes [2 ])
58
- require .Equal (t , "void analogCommand(YunClient client);" , prototypes [3 ])
59
- require .Equal (t , "void modeCommand(YunClient client);" , prototypes [4 ])
56
+ require .Equal (t , "void setup();" , prototypes [0 ]. Prototype )
57
+ require .Equal (t , "void loop();" , prototypes [1 ]. Prototype )
58
+ require .Equal (t , "void digitalCommand(YunClient client);" , prototypes [2 ]. Prototype )
59
+ require .Equal (t , "void analogCommand(YunClient client);" , prototypes [3 ]. Prototype )
60
+ require .Equal (t , "void modeCommand(YunClient client);" , prototypes [4 ]. Prototype )
60
61
}
61
62
62
63
func TestCTagsParserShouldListTemplates (t * testing.T ) {
@@ -70,12 +71,12 @@ func TestCTagsParserShouldListTemplates(t *testing.T) {
70
71
ctagsParser := builder.CTagsParser {PrototypesField : constants .CTX_PROTOTYPES }
71
72
ctagsParser .Run (context )
72
73
73
- prototypes := context [constants .CTX_PROTOTYPES ].([]string )
74
+ prototypes := context [constants .CTX_PROTOTYPES ].([]* types. Prototype )
74
75
75
76
require .Equal (t , 3 , len (prototypes ))
76
- require .Equal (t , "template <typename T> T minimum (T a, T b);" , prototypes [0 ])
77
- require .Equal (t , "void setup();" , prototypes [1 ])
78
- require .Equal (t , "void loop();" , prototypes [2 ])
77
+ require .Equal (t , "template <typename T> T minimum (T a, T b);" , prototypes [0 ]. Prototype )
78
+ require .Equal (t , "void setup();" , prototypes [1 ]. Prototype )
79
+ require .Equal (t , "void loop();" , prototypes [2 ]. Prototype )
79
80
}
80
81
81
82
func TestCTagsParserShouldListTemplates2 (t * testing.T ) {
@@ -89,13 +90,13 @@ func TestCTagsParserShouldListTemplates2(t *testing.T) {
89
90
ctagsParser := builder.CTagsParser {PrototypesField : constants .CTX_PROTOTYPES }
90
91
ctagsParser .Run (context )
91
92
92
- prototypes := context [constants .CTX_PROTOTYPES ].([]string )
93
+ prototypes := context [constants .CTX_PROTOTYPES ].([]* types. Prototype )
93
94
94
95
require .Equal (t , 4 , len (prototypes ))
95
- require .Equal (t , "void setup();" , prototypes [0 ])
96
- require .Equal (t , "void loop();" , prototypes [1 ])
97
- require .Equal (t , "template <class T> int SRAM_writeAnything(int ee, const T& value);" , prototypes [2 ])
98
- require .Equal (t , "template <class T> int SRAM_readAnything(int ee, T& value);" , prototypes [3 ])
96
+ require .Equal (t , "void setup();" , prototypes [0 ]. Prototype )
97
+ require .Equal (t , "void loop();" , prototypes [1 ]. Prototype )
98
+ require .Equal (t , "template <class T> int SRAM_writeAnything(int ee, const T& value);" , prototypes [2 ]. Prototype )
99
+ require .Equal (t , "template <class T> int SRAM_readAnything(int ee, T& value);" , prototypes [3 ]. Prototype )
99
100
}
100
101
101
102
func TestCTagsParserShouldDealWithClasses (t * testing.T ) {
@@ -109,7 +110,7 @@ func TestCTagsParserShouldDealWithClasses(t *testing.T) {
109
110
ctagsParser := builder.CTagsParser {PrototypesField : constants .CTX_PROTOTYPES }
110
111
ctagsParser .Run (context )
111
112
112
- prototypes := context [constants .CTX_PROTOTYPES ].([]string )
113
+ prototypes := context [constants .CTX_PROTOTYPES ].([]* types. Prototype )
113
114
114
115
require .Equal (t , 0 , len (prototypes ))
115
116
}
@@ -125,12 +126,12 @@ func TestCTagsParserShouldDealWithStructs(t *testing.T) {
125
126
ctagsParser := builder.CTagsParser {PrototypesField : constants .CTX_PROTOTYPES }
126
127
ctagsParser .Run (context )
127
128
128
- prototypes := context [constants .CTX_PROTOTYPES ].([]string )
129
+ prototypes := context [constants .CTX_PROTOTYPES ].([]* types. Prototype )
129
130
130
131
require .Equal (t , 3 , len (prototypes ))
131
- require .Equal (t , "void setup();" , prototypes [0 ])
132
- require .Equal (t , "void loop();" , prototypes [1 ])
133
- require .Equal (t , "void dostuff(A_NEW_TYPE * bar);" , prototypes [2 ])
132
+ require .Equal (t , "void setup();" , prototypes [0 ]. Prototype )
133
+ require .Equal (t , "void loop();" , prototypes [1 ]. Prototype )
134
+ require .Equal (t , "void dostuff(A_NEW_TYPE * bar);" , prototypes [2 ]. Prototype )
134
135
}
135
136
136
137
func TestCTagsParserShouldDealWithMacros (t * testing.T ) {
@@ -144,14 +145,14 @@ func TestCTagsParserShouldDealWithMacros(t *testing.T) {
144
145
ctagsParser := builder.CTagsParser {PrototypesField : constants .CTX_PROTOTYPES }
145
146
ctagsParser .Run (context )
146
147
147
- prototypes := context [constants .CTX_PROTOTYPES ].([]string )
148
+ prototypes := context [constants .CTX_PROTOTYPES ].([]* types. Prototype )
148
149
149
150
require .Equal (t , 5 , len (prototypes ))
150
- require .Equal (t , "void setup();" , prototypes [0 ])
151
- require .Equal (t , "void loop();" , prototypes [1 ])
152
- require .Equal (t , "void debug();" , prototypes [2 ])
153
- require .Equal (t , "void disabledIsDefined();" , prototypes [3 ])
154
- require .Equal (t , "int useMyType(MyType type);" , prototypes [4 ])
151
+ require .Equal (t , "void setup();" , prototypes [0 ]. Prototype )
152
+ require .Equal (t , "void loop();" , prototypes [1 ]. Prototype )
153
+ require .Equal (t , "void debug();" , prototypes [2 ]. Prototype )
154
+ require .Equal (t , "void disabledIsDefined();" , prototypes [3 ]. Prototype )
155
+ require .Equal (t , "int useMyType(MyType type);" , prototypes [4 ]. Prototype )
155
156
}
156
157
157
158
func TestCTagsParserShouldDealFunctionWithDifferentSignatures (t * testing.T ) {
@@ -165,10 +166,10 @@ func TestCTagsParserShouldDealFunctionWithDifferentSignatures(t *testing.T) {
165
166
ctagsParser := builder.CTagsParser {PrototypesField : constants .CTX_PROTOTYPES }
166
167
ctagsParser .Run (context )
167
168
168
- prototypes := context [constants .CTX_PROTOTYPES ].([]string )
169
+ prototypes := context [constants .CTX_PROTOTYPES ].([]* types. Prototype )
169
170
170
171
require .Equal (t , 1 , len (prototypes ))
171
- require .Equal (t , "boolean getBytes( byte addr, int amount );" , prototypes [0 ])
172
+ require .Equal (t , "boolean getBytes( byte addr, int amount );" , prototypes [0 ]. Prototype )
172
173
}
173
174
174
175
func TestCTagsParserClassMembersAreFilteredOut (t * testing.T ) {
@@ -182,11 +183,11 @@ func TestCTagsParserClassMembersAreFilteredOut(t *testing.T) {
182
183
ctagsParser := builder.CTagsParser {PrototypesField : constants .CTX_PROTOTYPES }
183
184
ctagsParser .Run (context )
184
185
185
- prototypes := context [constants .CTX_PROTOTYPES ].([]string )
186
+ prototypes := context [constants .CTX_PROTOTYPES ].([]* types. Prototype )
186
187
187
188
require .Equal (t , 2 , len (prototypes ))
188
- require .Equal (t , "void setup();" , prototypes [0 ])
189
- require .Equal (t , "void loop();" , prototypes [1 ])
189
+ require .Equal (t , "void setup();" , prototypes [0 ]. Prototype )
190
+ require .Equal (t , "void loop();" , prototypes [1 ]. Prototype )
190
191
}
191
192
192
193
func TestCTagsParserStructWithFunctions (t * testing.T ) {
@@ -200,11 +201,11 @@ func TestCTagsParserStructWithFunctions(t *testing.T) {
200
201
ctagsParser := builder.CTagsParser {PrototypesField : constants .CTX_PROTOTYPES }
201
202
ctagsParser .Run (context )
202
203
203
- prototypes := context [constants .CTX_PROTOTYPES ].([]string )
204
+ prototypes := context [constants .CTX_PROTOTYPES ].([]* types. Prototype )
204
205
205
206
require .Equal (t , 2 , len (prototypes ))
206
- require .Equal (t , "void setup();" , prototypes [0 ])
207
- require .Equal (t , "void loop();" , prototypes [1 ])
207
+ require .Equal (t , "void setup();" , prototypes [0 ]. Prototype )
208
+ require .Equal (t , "void loop();" , prototypes [1 ]. Prototype )
208
209
}
209
210
210
211
func TestCTagsParserDefaultArguments (t * testing.T ) {
@@ -218,9 +219,9 @@ func TestCTagsParserDefaultArguments(t *testing.T) {
218
219
ctagsParser := builder.CTagsParser {PrototypesField : constants .CTX_PROTOTYPES }
219
220
ctagsParser .Run (context )
220
221
221
- prototypes := context [constants .CTX_PROTOTYPES ].([]string )
222
+ prototypes := context [constants .CTX_PROTOTYPES ].([]* types. Prototype )
222
223
223
224
require .Equal (t , 2 , len (prototypes ))
224
- require .Equal (t , "void setup();" , prototypes [0 ])
225
- require .Equal (t , "void loop();" , prototypes [1 ])
225
+ require .Equal (t , "void setup();" , prototypes [0 ]. Prototype )
226
+ require .Equal (t , "void loop();" , prototypes [1 ]. Prototype )
226
227
}
0 commit comments