@@ -5,129 +5,129 @@ discard block |
||
5 | 5 | class PreprocessorTest extends \SwaggerGen_TestCase |
6 | 6 | { |
7 | 7 | |
8 | - /** |
|
9 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::__construct |
|
10 | - */ |
|
11 | - public function testConstructor_Empty() |
|
12 | - { |
|
13 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
14 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
15 | - } |
|
16 | - |
|
17 | - /** |
|
18 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
19 | - */ |
|
20 | - public function testPreprocess_Ifdef_NotDefined() |
|
21 | - { |
|
22 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
23 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
24 | - $out = $object->preprocess(' |
|
8 | + /** |
|
9 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::__construct |
|
10 | + */ |
|
11 | + public function testConstructor_Empty() |
|
12 | + { |
|
13 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
14 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
15 | + } |
|
16 | + |
|
17 | + /** |
|
18 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
19 | + */ |
|
20 | + public function testPreprocess_Ifdef_NotDefined() |
|
21 | + { |
|
22 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
23 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
24 | + $out = $object->preprocess(' |
|
25 | 25 | ifdef test |
26 | 26 | whatever |
27 | 27 | endif |
28 | 28 | '); |
29 | 29 | |
30 | - $this->assertEquals(' |
|
30 | + $this->assertEquals(' |
|
31 | 31 | |
32 | 32 | |
33 | 33 | |
34 | 34 | ', $out); |
35 | - } |
|
36 | - |
|
37 | - /** |
|
38 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
39 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
40 | - */ |
|
41 | - public function testPreprocess_Ifdef_Defined() |
|
42 | - { |
|
43 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
44 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
45 | - $object->define('test'); |
|
46 | - $out = $object->preprocess(' |
|
35 | + } |
|
36 | + |
|
37 | + /** |
|
38 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
39 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
40 | + */ |
|
41 | + public function testPreprocess_Ifdef_Defined() |
|
42 | + { |
|
43 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
44 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
45 | + $object->define('test'); |
|
46 | + $out = $object->preprocess(' |
|
47 | 47 | ifdef test |
48 | 48 | whatever |
49 | 49 | endif |
50 | 50 | '); |
51 | 51 | |
52 | - $this->assertEquals(' |
|
52 | + $this->assertEquals(' |
|
53 | 53 | |
54 | 54 | whatever |
55 | 55 | |
56 | 56 | ', $out); |
57 | - } |
|
58 | - |
|
59 | - /** |
|
60 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
61 | - */ |
|
62 | - public function testPreprocess_Ifndef_NotDefined() |
|
63 | - { |
|
64 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
65 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
66 | - $out = $object->preprocess(' |
|
57 | + } |
|
58 | + |
|
59 | + /** |
|
60 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
61 | + */ |
|
62 | + public function testPreprocess_Ifndef_NotDefined() |
|
63 | + { |
|
64 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
65 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
66 | + $out = $object->preprocess(' |
|
67 | 67 | ifndef test |
68 | 68 | whatever |
69 | 69 | endif |
70 | 70 | '); |
71 | 71 | |
72 | - $this->assertEquals(' |
|
72 | + $this->assertEquals(' |
|
73 | 73 | |
74 | 74 | whatever |
75 | 75 | |
76 | 76 | ', $out); |
77 | - } |
|
78 | - |
|
79 | - /** |
|
80 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
81 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
82 | - */ |
|
83 | - public function testPreprocess_Ifndef_Defined() |
|
84 | - { |
|
85 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
86 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
87 | - $object->define('test'); |
|
88 | - $out = $object->preprocess(' |
|
77 | + } |
|
78 | + |
|
79 | + /** |
|
80 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
81 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
82 | + */ |
|
83 | + public function testPreprocess_Ifndef_Defined() |
|
84 | + { |
|
85 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
86 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
87 | + $object->define('test'); |
|
88 | + $out = $object->preprocess(' |
|
89 | 89 | ifndef test |
90 | 90 | whatever |
91 | 91 | endif |
92 | 92 | '); |
93 | 93 | |
94 | - $this->assertEquals(' |
|
94 | + $this->assertEquals(' |
|
95 | 95 | |
96 | 96 | |
97 | 97 | |
98 | 98 | ', $out); |
99 | - } |
|
100 | - |
|
101 | - /** |
|
102 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
103 | - */ |
|
104 | - public function testPreprocess_Define() |
|
105 | - { |
|
106 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
107 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
108 | - $out = $object->preprocess(' |
|
99 | + } |
|
100 | + |
|
101 | + /** |
|
102 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
103 | + */ |
|
104 | + public function testPreprocess_Define() |
|
105 | + { |
|
106 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
107 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
108 | + $out = $object->preprocess(' |
|
109 | 109 | define test |
110 | 110 | ifndef test |
111 | 111 | whatever |
112 | 112 | endif |
113 | 113 | '); |
114 | 114 | |
115 | - $this->assertEquals(' |
|
115 | + $this->assertEquals(' |
|
116 | 116 | |
117 | 117 | |
118 | 118 | |
119 | 119 | |
120 | 120 | ', $out); |
121 | - } |
|
122 | - |
|
123 | - /** |
|
124 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
125 | - */ |
|
126 | - public function testPreprocess_Undef() |
|
127 | - { |
|
128 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
129 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
130 | - $out = $object->preprocess(' |
|
121 | + } |
|
122 | + |
|
123 | + /** |
|
124 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
125 | + */ |
|
126 | + public function testPreprocess_Undef() |
|
127 | + { |
|
128 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
129 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
130 | + $out = $object->preprocess(' |
|
131 | 131 | define test |
132 | 132 | undef test |
133 | 133 | ifdef test |
@@ -135,133 +135,133 @@ discard block |
||
135 | 135 | endif |
136 | 136 | '); |
137 | 137 | |
138 | - $this->assertEquals(' |
|
138 | + $this->assertEquals(' |
|
139 | 139 | |
140 | 140 | |
141 | 141 | |
142 | 142 | |
143 | 143 | |
144 | 144 | ', $out); |
145 | - } |
|
146 | - |
|
147 | - /** |
|
148 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
149 | - */ |
|
150 | - public function testPreprocess_If_NotDefined() |
|
151 | - { |
|
152 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
153 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
154 | - $out = $object->preprocess(' |
|
145 | + } |
|
146 | + |
|
147 | + /** |
|
148 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
149 | + */ |
|
150 | + public function testPreprocess_If_NotDefined() |
|
151 | + { |
|
152 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
153 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
154 | + $out = $object->preprocess(' |
|
155 | 155 | if test red |
156 | 156 | whatever |
157 | 157 | endif |
158 | 158 | '); |
159 | 159 | |
160 | - $this->assertEquals(' |
|
160 | + $this->assertEquals(' |
|
161 | 161 | |
162 | 162 | |
163 | 163 | |
164 | 164 | ', $out); |
165 | - } |
|
166 | - |
|
167 | - /** |
|
168 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
169 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
170 | - */ |
|
171 | - public function testPreprocess_If_AnyValue() |
|
172 | - { |
|
173 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
174 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
175 | - $object->define('test', 'green'); |
|
176 | - $out = $object->preprocess(' |
|
165 | + } |
|
166 | + |
|
167 | + /** |
|
168 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
169 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
170 | + */ |
|
171 | + public function testPreprocess_If_AnyValue() |
|
172 | + { |
|
173 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
174 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
175 | + $object->define('test', 'green'); |
|
176 | + $out = $object->preprocess(' |
|
177 | 177 | if test |
178 | 178 | whatever |
179 | 179 | endif |
180 | 180 | '); |
181 | 181 | |
182 | - $this->assertEquals(' |
|
182 | + $this->assertEquals(' |
|
183 | 183 | |
184 | 184 | whatever |
185 | 185 | |
186 | 186 | ', $out); |
187 | - } |
|
188 | - |
|
189 | - /** |
|
190 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
191 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
192 | - */ |
|
193 | - public function testPreprocess_If_NoValue() |
|
194 | - { |
|
195 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
196 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
197 | - $object->define('test'); |
|
198 | - $out = $object->preprocess(' |
|
187 | + } |
|
188 | + |
|
189 | + /** |
|
190 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
191 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
192 | + */ |
|
193 | + public function testPreprocess_If_NoValue() |
|
194 | + { |
|
195 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
196 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
197 | + $object->define('test'); |
|
198 | + $out = $object->preprocess(' |
|
199 | 199 | if test red |
200 | 200 | whatever |
201 | 201 | endif |
202 | 202 | '); |
203 | 203 | |
204 | - $this->assertEquals(' |
|
204 | + $this->assertEquals(' |
|
205 | 205 | |
206 | 206 | |
207 | 207 | |
208 | 208 | ', $out); |
209 | - } |
|
210 | - |
|
211 | - /** |
|
212 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
213 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
214 | - */ |
|
215 | - public function testPreprocess_If_Mismatch() |
|
216 | - { |
|
217 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
218 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
219 | - $object->define('test', 'green'); |
|
220 | - $out = $object->preprocess(' |
|
209 | + } |
|
210 | + |
|
211 | + /** |
|
212 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
213 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
214 | + */ |
|
215 | + public function testPreprocess_If_Mismatch() |
|
216 | + { |
|
217 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
218 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
219 | + $object->define('test', 'green'); |
|
220 | + $out = $object->preprocess(' |
|
221 | 221 | if test red |
222 | 222 | whatever |
223 | 223 | endif |
224 | 224 | '); |
225 | 225 | |
226 | - $this->assertEquals(' |
|
226 | + $this->assertEquals(' |
|
227 | 227 | |
228 | 228 | |
229 | 229 | |
230 | 230 | ', $out); |
231 | - } |
|
232 | - |
|
233 | - /** |
|
234 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
235 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
236 | - */ |
|
237 | - public function testPreprocess_If_Match() |
|
238 | - { |
|
239 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
240 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
241 | - $object->define('test', 'red'); |
|
242 | - $out = $object->preprocess(' |
|
231 | + } |
|
232 | + |
|
233 | + /** |
|
234 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
235 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
236 | + */ |
|
237 | + public function testPreprocess_If_Match() |
|
238 | + { |
|
239 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
240 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
241 | + $object->define('test', 'red'); |
|
242 | + $out = $object->preprocess(' |
|
243 | 243 | if test red |
244 | 244 | whatever |
245 | 245 | endif |
246 | 246 | '); |
247 | 247 | |
248 | - $this->assertEquals(' |
|
248 | + $this->assertEquals(' |
|
249 | 249 | |
250 | 250 | whatever |
251 | 251 | |
252 | 252 | ', $out); |
253 | - } |
|
254 | - |
|
255 | - /** |
|
256 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
257 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
258 | - */ |
|
259 | - public function testPreprocess_Else_Match() |
|
260 | - { |
|
261 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
262 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
263 | - $object->define('test', 'blue'); |
|
264 | - $out = $object->preprocess(' |
|
253 | + } |
|
254 | + |
|
255 | + /** |
|
256 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
257 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
258 | + */ |
|
259 | + public function testPreprocess_Else_Match() |
|
260 | + { |
|
261 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
262 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
263 | + $object->define('test', 'blue'); |
|
264 | + $out = $object->preprocess(' |
|
265 | 265 | if test red |
266 | 266 | whatever |
267 | 267 | else |
@@ -269,25 +269,25 @@ discard block |
||
269 | 269 | endif |
270 | 270 | '); |
271 | 271 | |
272 | - $this->assertEquals(' |
|
272 | + $this->assertEquals(' |
|
273 | 273 | |
274 | 274 | |
275 | 275 | |
276 | 276 | otherwise |
277 | 277 | |
278 | 278 | ', $out); |
279 | - } |
|
280 | - |
|
281 | - /** |
|
282 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
283 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
284 | - */ |
|
285 | - public function testPreprocess_Elif_Match() |
|
286 | - { |
|
287 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
288 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
289 | - $object->define('test', 'blue'); |
|
290 | - $out = $object->preprocess(' |
|
279 | + } |
|
280 | + |
|
281 | + /** |
|
282 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
283 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
284 | + */ |
|
285 | + public function testPreprocess_Elif_Match() |
|
286 | + { |
|
287 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
288 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
289 | + $object->define('test', 'blue'); |
|
290 | + $out = $object->preprocess(' |
|
291 | 291 | if test red |
292 | 292 | whatever |
293 | 293 | elif test green |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | endif |
298 | 298 | '); |
299 | 299 | |
300 | - $this->assertEquals(' |
|
300 | + $this->assertEquals(' |
|
301 | 301 | |
302 | 302 | |
303 | 303 | |
@@ -306,18 +306,18 @@ discard block |
||
306 | 306 | otherwise |
307 | 307 | |
308 | 308 | ', $out); |
309 | - } |
|
310 | - |
|
311 | - /** |
|
312 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
313 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
314 | - */ |
|
315 | - public function testPreprocess_Elif_NoValue() |
|
316 | - { |
|
317 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
318 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
319 | - $object->define('test', 'blue'); |
|
320 | - $out = $object->preprocess(' |
|
309 | + } |
|
310 | + |
|
311 | + /** |
|
312 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
313 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
314 | + */ |
|
315 | + public function testPreprocess_Elif_NoValue() |
|
316 | + { |
|
317 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
318 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
319 | + $object->define('test', 'blue'); |
|
320 | + $out = $object->preprocess(' |
|
321 | 321 | if test red |
322 | 322 | whatever |
323 | 323 | elif test green |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | endif |
328 | 328 | '); |
329 | 329 | |
330 | - $this->assertEquals(' |
|
330 | + $this->assertEquals(' |
|
331 | 331 | |
332 | 332 | |
333 | 333 | |
@@ -336,76 +336,76 @@ discard block |
||
336 | 336 | otherwise |
337 | 337 | |
338 | 338 | ', $out); |
339 | - } |
|
340 | - |
|
341 | - /** |
|
342 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
343 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::undefine |
|
344 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
345 | - */ |
|
346 | - public function testPreprocess_Undefine() |
|
347 | - { |
|
348 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
349 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
350 | - $object->define('test'); |
|
351 | - $object->undefine('test'); |
|
352 | - $out = $object->preprocess(' |
|
339 | + } |
|
340 | + |
|
341 | + /** |
|
342 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
343 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::undefine |
|
344 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
345 | + */ |
|
346 | + public function testPreprocess_Undefine() |
|
347 | + { |
|
348 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
349 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
350 | + $object->define('test'); |
|
351 | + $object->undefine('test'); |
|
352 | + $out = $object->preprocess(' |
|
353 | 353 | ifdef test |
354 | 354 | whatever |
355 | 355 | endif |
356 | 356 | '); |
357 | 357 | |
358 | - $this->assertEquals(' |
|
358 | + $this->assertEquals(' |
|
359 | 359 | |
360 | 360 | |
361 | 361 | |
362 | 362 | ', $out); |
363 | - } |
|
364 | - |
|
365 | - /** |
|
366 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
367 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::resetDefines |
|
368 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
369 | - */ |
|
370 | - public function testPreprocess_ResetDefines() |
|
371 | - { |
|
372 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
373 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
374 | - $object->define('test'); |
|
375 | - $object->resetDefines(); |
|
376 | - $out = $object->preprocess(' |
|
363 | + } |
|
364 | + |
|
365 | + /** |
|
366 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::define |
|
367 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::resetDefines |
|
368 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
369 | + */ |
|
370 | + public function testPreprocess_ResetDefines() |
|
371 | + { |
|
372 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
373 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
374 | + $object->define('test'); |
|
375 | + $object->resetDefines(); |
|
376 | + $out = $object->preprocess(' |
|
377 | 377 | ifdef test |
378 | 378 | whatever |
379 | 379 | endif |
380 | 380 | '); |
381 | 381 | |
382 | - $this->assertEquals(' |
|
382 | + $this->assertEquals(' |
|
383 | 383 | |
384 | 384 | |
385 | 385 | |
386 | 386 | ', $out); |
387 | - } |
|
388 | - |
|
389 | - /** |
|
390 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::addDefines |
|
391 | - * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
392 | - */ |
|
393 | - public function testPreprocess_AddDefines() |
|
394 | - { |
|
395 | - $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
396 | - $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
397 | - $object->addDefines(['test' => true]); |
|
398 | - $out = $object->preprocess(' |
|
387 | + } |
|
388 | + |
|
389 | + /** |
|
390 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::addDefines |
|
391 | + * @covers \SwaggerGen\Parser\Text\Preprocessor::preprocess |
|
392 | + */ |
|
393 | + public function testPreprocess_AddDefines() |
|
394 | + { |
|
395 | + $object = new \SwaggerGen\Parser\Text\Preprocessor(); |
|
396 | + $this->assertInstanceOf('\SwaggerGen\Parser\Text\Preprocessor', $object); |
|
397 | + $object->addDefines(['test' => true]); |
|
398 | + $out = $object->preprocess(' |
|
399 | 399 | ifdef test |
400 | 400 | whatever |
401 | 401 | endif |
402 | 402 | '); |
403 | 403 | |
404 | - $this->assertEquals(' |
|
404 | + $this->assertEquals(' |
|
405 | 405 | |
406 | 406 | whatever |
407 | 407 | |
408 | 408 | ', $out); |
409 | - } |
|
409 | + } |
|
410 | 410 | |
411 | 411 | } |
@@ -14,61 +14,61 @@ |
||
14 | 14 | class Statement |
15 | 15 | { |
16 | 16 | |
17 | - private $command; |
|
18 | - private $data; |
|
19 | - private $file; |
|
20 | - private $line; |
|
17 | + private $command; |
|
18 | + private $data; |
|
19 | + private $file; |
|
20 | + private $line; |
|
21 | 21 | |
22 | - public function __construct($command, $data = null, $file = null, $line = null) |
|
23 | - { |
|
24 | - $this->command = $command; |
|
25 | - $this->data = $data; |
|
26 | - $this->file = $file; |
|
27 | - $this->line = $line; |
|
28 | - } |
|
22 | + public function __construct($command, $data = null, $file = null, $line = null) |
|
23 | + { |
|
24 | + $this->command = $command; |
|
25 | + $this->data = $data; |
|
26 | + $this->file = $file; |
|
27 | + $this->line = $line; |
|
28 | + } |
|
29 | 29 | |
30 | - public function __toString() |
|
31 | - { |
|
32 | - $message = "Command '{$this->command}'"; |
|
33 | - $message .= $this->data ? " with data '{$this->data}'" : ' without data'; |
|
34 | - $message .= $this->file ? " from static text" : " in file '{$this->file}' on line {$this->line}"; |
|
35 | - return $message; |
|
36 | - } |
|
30 | + public function __toString() |
|
31 | + { |
|
32 | + $message = "Command '{$this->command}'"; |
|
33 | + $message .= $this->data ? " with data '{$this->data}'" : ' without data'; |
|
34 | + $message .= $this->file ? " from static text" : " in file '{$this->file}' on line {$this->line}"; |
|
35 | + return $message; |
|
36 | + } |
|
37 | 37 | |
38 | - /** |
|
39 | - * Get the command part of this statement |
|
40 | - * @return string single word, without spaces |
|
41 | - */ |
|
42 | - public function getCommand() |
|
43 | - { |
|
44 | - return $this->command; |
|
45 | - } |
|
38 | + /** |
|
39 | + * Get the command part of this statement |
|
40 | + * @return string single word, without spaces |
|
41 | + */ |
|
42 | + public function getCommand() |
|
43 | + { |
|
44 | + return $this->command; |
|
45 | + } |
|
46 | 46 | |
47 | - /** |
|
48 | - * Get the data of this statement |
|
49 | - * @return string may contain spaces |
|
50 | - */ |
|
51 | - public function getData() |
|
52 | - { |
|
53 | - return $this->data; |
|
54 | - } |
|
47 | + /** |
|
48 | + * Get the data of this statement |
|
49 | + * @return string may contain spaces |
|
50 | + */ |
|
51 | + public function getData() |
|
52 | + { |
|
53 | + return $this->data; |
|
54 | + } |
|
55 | 55 | |
56 | - /** |
|
57 | - * Get the file (if available) where this statement was parsed from |
|
58 | - * @return string|null the full filename or null of from static text |
|
59 | - */ |
|
60 | - public function getFile() |
|
61 | - { |
|
62 | - return $this->file; |
|
63 | - } |
|
56 | + /** |
|
57 | + * Get the file (if available) where this statement was parsed from |
|
58 | + * @return string|null the full filename or null of from static text |
|
59 | + */ |
|
60 | + public function getFile() |
|
61 | + { |
|
62 | + return $this->file; |
|
63 | + } |
|
64 | 64 | |
65 | - /** |
|
66 | - * Get the line number where this statement was found |
|
67 | - * @return int|null the line number |
|
68 | - */ |
|
69 | - public function getLine() |
|
70 | - { |
|
71 | - return $this->line; |
|
72 | - } |
|
65 | + /** |
|
66 | + * Get the line number where this statement was found |
|
67 | + * @return int|null the line number |
|
68 | + */ |
|
69 | + public function getLine() |
|
70 | + { |
|
71 | + return $this->line; |
|
72 | + } |
|
73 | 73 | |
74 | 74 | } |
@@ -14,9 +14,9 @@ |
||
14 | 14 | class Error extends Response |
15 | 15 | { |
16 | 16 | |
17 | - public function __construct(AbstractObject $parent, $code, $description = null) |
|
18 | - { |
|
19 | - parent::__construct($parent, $code, null, $description); |
|
20 | - } |
|
17 | + public function __construct(AbstractObject $parent, $code, $description = null) |
|
18 | + { |
|
19 | + parent::__construct($parent, $code, null, $description); |
|
20 | + } |
|
21 | 21 | |
22 | 22 | } |
@@ -13,5 +13,5 @@ |
||
13 | 13 | interface IParameter |
14 | 14 | { |
15 | 15 | |
16 | - public function getName(); |
|
16 | + public function getName(); |
|
17 | 17 | } |
@@ -15,15 +15,15 @@ |
||
15 | 15 | class StringUuidType extends AbstractRegexType |
16 | 16 | { |
17 | 17 | |
18 | - /** |
|
19 | - * Construct and set up the regular expression for this type |
|
20 | - * |
|
21 | - * @param AbstractObject $parent |
|
22 | - * @param string $definition |
|
23 | - */ |
|
24 | - public function __construct(AbstractObject $parent, $definition) |
|
25 | - { |
|
26 | - parent::__construct($parent, $definition, 'uuid', '[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[1-5][a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}'); |
|
27 | - } |
|
18 | + /** |
|
19 | + * Construct and set up the regular expression for this type |
|
20 | + * |
|
21 | + * @param AbstractObject $parent |
|
22 | + * @param string $definition |
|
23 | + */ |
|
24 | + public function __construct(AbstractObject $parent, $definition) |
|
25 | + { |
|
26 | + parent::__construct($parent, $definition, 'uuid', '[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[1-5][a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}'); |
|
27 | + } |
|
28 | 28 | |
29 | 29 | } |
@@ -13,16 +13,16 @@ |
||
13 | 13 | interface ICustomType |
14 | 14 | { |
15 | 15 | |
16 | - /** |
|
17 | - * Return a list of formats recognized by this type |
|
18 | - * @return string[] |
|
19 | - */ |
|
20 | - public static function getFormats(); |
|
16 | + /** |
|
17 | + * Return a list of formats recognized by this type |
|
18 | + * @return string[] |
|
19 | + */ |
|
20 | + public static function getFormats(); |
|
21 | 21 | |
22 | - /** |
|
23 | - * Overwrite format names recognized by this type |
|
24 | - * @param string[] $formats |
|
25 | - */ |
|
26 | - public static function setFormats(array $formats); |
|
22 | + /** |
|
23 | + * Overwrite format names recognized by this type |
|
24 | + * @param string[] $formats |
|
25 | + */ |
|
26 | + public static function setFormats(array $formats); |
|
27 | 27 | |
28 | 28 | } |
@@ -17,99 +17,99 @@ |
||
17 | 17 | class Parser implements IParser |
18 | 18 | { |
19 | 19 | |
20 | - /** |
|
21 | - * List of directories to scan for class files referenced in the parsed |
|
22 | - * command statements. |
|
23 | - * |
|
24 | - * @var string[] |
|
25 | - */ |
|
26 | - protected $common_dirs = []; |
|
20 | + /** |
|
21 | + * List of directories to scan for class files referenced in the parsed |
|
22 | + * command statements. |
|
23 | + * |
|
24 | + * @var string[] |
|
25 | + */ |
|
26 | + protected $common_dirs = []; |
|
27 | 27 | |
28 | - /** |
|
29 | - * @var AbstractPreprocessor |
|
30 | - */ |
|
31 | - private $Preprocessor; |
|
28 | + /** |
|
29 | + * @var AbstractPreprocessor |
|
30 | + */ |
|
31 | + private $Preprocessor; |
|
32 | 32 | |
33 | - /** |
|
34 | - * Create a new text parser and set directories to scan for referenced |
|
35 | - * class files. |
|
36 | - * |
|
37 | - * @param string[] $dirs |
|
38 | - */ |
|
39 | - public function __construct(array $dirs = []) |
|
40 | - { |
|
41 | - foreach ($dirs as $dir) { |
|
42 | - $this->common_dirs[] = realpath($dir); |
|
43 | - } |
|
33 | + /** |
|
34 | + * Create a new text parser and set directories to scan for referenced |
|
35 | + * class files. |
|
36 | + * |
|
37 | + * @param string[] $dirs |
|
38 | + */ |
|
39 | + public function __construct(array $dirs = []) |
|
40 | + { |
|
41 | + foreach ($dirs as $dir) { |
|
42 | + $this->common_dirs[] = realpath($dir); |
|
43 | + } |
|
44 | 44 | |
45 | - $this->Preprocessor = new Preprocessor(); |
|
46 | - } |
|
45 | + $this->Preprocessor = new Preprocessor(); |
|
46 | + } |
|
47 | 47 | |
48 | - /** |
|
49 | - * Add additional directories to scan for referenced class files. |
|
50 | - * |
|
51 | - * @param string[] $dirs |
|
52 | - */ |
|
53 | - public function addDirs(array $dirs) |
|
54 | - { |
|
55 | - foreach ($dirs as $dir) { |
|
56 | - $this->common_dirs[] = realpath($dir); |
|
57 | - } |
|
58 | - } |
|
48 | + /** |
|
49 | + * Add additional directories to scan for referenced class files. |
|
50 | + * |
|
51 | + * @param string[] $dirs |
|
52 | + */ |
|
53 | + public function addDirs(array $dirs) |
|
54 | + { |
|
55 | + foreach ($dirs as $dir) { |
|
56 | + $this->common_dirs[] = realpath($dir); |
|
57 | + } |
|
58 | + } |
|
59 | 59 | |
60 | - /** |
|
61 | - * Parse a text file |
|
62 | - * |
|
63 | - * @param string $file |
|
64 | - * @param string[] $dirs |
|
65 | - * @param string[] $defines |
|
66 | - * @return Statement[] |
|
67 | - */ |
|
68 | - public function parse($file, array $dirs = [], array $defines = []) |
|
69 | - { |
|
70 | - return $this->parseText(file_get_contents(realpath($file)), $dirs); |
|
71 | - } |
|
60 | + /** |
|
61 | + * Parse a text file |
|
62 | + * |
|
63 | + * @param string $file |
|
64 | + * @param string[] $dirs |
|
65 | + * @param string[] $defines |
|
66 | + * @return Statement[] |
|
67 | + */ |
|
68 | + public function parse($file, array $dirs = [], array $defines = []) |
|
69 | + { |
|
70 | + return $this->parseText(file_get_contents(realpath($file)), $dirs); |
|
71 | + } |
|
72 | 72 | |
73 | - /** |
|
74 | - * Parse plain text |
|
75 | - * |
|
76 | - * @param string $text |
|
77 | - * @param string[] $dirs |
|
78 | - * @param string[] $defines |
|
79 | - * @return Statement[] |
|
80 | - */ |
|
81 | - public function parseText($text, array $dirs = [], array $defines = []): array |
|
82 | - { |
|
83 | - $this->Preprocessor->resetDefines(); |
|
84 | - $this->Preprocessor->addDefines($defines); |
|
85 | - $text = $this->Preprocessor->preprocess($text); |
|
73 | + /** |
|
74 | + * Parse plain text |
|
75 | + * |
|
76 | + * @param string $text |
|
77 | + * @param string[] $dirs |
|
78 | + * @param string[] $defines |
|
79 | + * @return Statement[] |
|
80 | + */ |
|
81 | + public function parseText($text, array $dirs = [], array $defines = []): array |
|
82 | + { |
|
83 | + $this->Preprocessor->resetDefines(); |
|
84 | + $this->Preprocessor->addDefines($defines); |
|
85 | + $text = $this->Preprocessor->preprocess($text); |
|
86 | 86 | |
87 | - $Statements = []; |
|
87 | + $Statements = []; |
|
88 | 88 | |
89 | - foreach (preg_split('/\\R/m', $text) as $line => $data) { |
|
90 | - $data = trim($data); |
|
91 | - $command = self::wordShift($data); |
|
92 | - if (!empty($command)) { |
|
93 | - $Statements[] = new Statement($command, $data, null, $line); |
|
94 | - } |
|
95 | - } |
|
89 | + foreach (preg_split('/\\R/m', $text) as $line => $data) { |
|
90 | + $data = trim($data); |
|
91 | + $command = self::wordShift($data); |
|
92 | + if (!empty($command)) { |
|
93 | + $Statements[] = new Statement($command, $data, null, $line); |
|
94 | + } |
|
95 | + } |
|
96 | 96 | |
97 | - return $Statements; |
|
98 | - } |
|
97 | + return $Statements; |
|
98 | + } |
|
99 | 99 | |
100 | - /** |
|
101 | - * Get the first word from a string and remove it from the string. |
|
102 | - * |
|
103 | - * @param string $data |
|
104 | - * @return boolean|string |
|
105 | - */ |
|
106 | - private static function wordShift(&$data) |
|
107 | - { |
|
108 | - if (preg_match('~^(\S+)\s*(.*)$~', $data, $matches) === 1) { |
|
109 | - $data = $matches[2]; |
|
110 | - return $matches[1]; |
|
111 | - } |
|
112 | - return false; |
|
113 | - } |
|
100 | + /** |
|
101 | + * Get the first word from a string and remove it from the string. |
|
102 | + * |
|
103 | + * @param string $data |
|
104 | + * @return boolean|string |
|
105 | + */ |
|
106 | + private static function wordShift(&$data) |
|
107 | + { |
|
108 | + if (preg_match('~^(\S+)\s*(.*)$~', $data, $matches) === 1) { |
|
109 | + $data = $matches[2]; |
|
110 | + return $matches[1]; |
|
111 | + } |
|
112 | + return false; |
|
113 | + } |
|
114 | 114 | |
115 | 115 | } |
@@ -13,14 +13,14 @@ |
||
13 | 13 | class Example |
14 | 14 | { |
15 | 15 | |
16 | - /** |
|
17 | - * @rest\endpoint /endpoint |
|
18 | - * @rest\method GET Something |
|
19 | - * @rest\response 200 uuid |
|
20 | - */ |
|
21 | - public function Dummy() |
|
22 | - { |
|
16 | + /** |
|
17 | + * @rest\endpoint /endpoint |
|
18 | + * @rest\method GET Something |
|
19 | + * @rest\response 200 uuid |
|
20 | + */ |
|
21 | + public function Dummy() |
|
22 | + { |
|
23 | 23 | |
24 | - } |
|
24 | + } |
|
25 | 25 | |
26 | 26 | } |
@@ -11,15 +11,15 @@ |
||
11 | 11 | class Example |
12 | 12 | { |
13 | 13 | |
14 | - /** |
|
15 | - * @rest\endpoint /endpoint/{listid} |
|
16 | - * @rest\method GET Something |
|
17 | - * @rest\param listid |
|
18 | - * @rest\response 200 |
|
19 | - */ |
|
20 | - public function Dummy() |
|
21 | - { |
|
14 | + /** |
|
15 | + * @rest\endpoint /endpoint/{listid} |
|
16 | + * @rest\method GET Something |
|
17 | + * @rest\param listid |
|
18 | + * @rest\response 200 |
|
19 | + */ |
|
20 | + public function Dummy() |
|
21 | + { |
|
22 | 22 | |
23 | - } |
|
23 | + } |
|
24 | 24 | |
25 | 25 | } |