@@ -63,11 +63,12 @@ public function testValidateOneFileNegativeTable(): void
63
63
Found CSV files: 1
64
64
65
65
Schema is invalid: ./tests/schemas/demo_invalid.yml
66
- +-------+-----------+----- demo_invalid.yml --------------------------+
67
- | Line | id:Column | Rule | Message |
68
- +-------+-----------+----------+--------------------------------------+
69
- | undef | 2:Float | is_float | Value "Qwerty" is not a float number |
70
- +-------+-----------+----- demo_invalid.yml --------------------------+
66
+ +-------+------------------+--------------+----- demo_invalid.yml -----------------------------------------------+
67
+ | Line | id:Column | Rule | Message |
68
+ +-------+------------------+--------------+----------------------------------------------------------------------+
69
+ | undef | 2:Float | is_float | Value "Qwerty" is not a float number |
70
+ | undef | 4:Favorite color | allow_values | Value "123" is not allowed. Allowed values: ["red", "green", "Blue"] |
71
+ +-------+------------------+--------------+----- demo_invalid.yml -----------------------------------------------+
71
72
72
73
(1/1) Invalid file: ./tests/fixtures/demo.csv
73
74
+------+------------------+------------------+----------------------- demo.csv ---------------------------------------------------------------------+
@@ -89,7 +90,7 @@ public function testValidateOneFileNegativeTable(): void
89
90
90
91
91
92
Found 9 issues in CSV file.
92
- Found 1 issues in schema.
93
+ Found 2 issues in schema.
93
94
94
95
TXT;
95
96
@@ -111,11 +112,12 @@ public function testValidateManyFileNegativeTable(): void
111
112
Found CSV files: 3
112
113
113
114
Schema is invalid: ./tests/schemas/demo_invalid.yml
114
- +-------+-----------+----- demo_invalid.yml --------------------------+
115
- | Line | id:Column | Rule | Message |
116
- +-------+-----------+----------+--------------------------------------+
117
- | undef | 2:Float | is_float | Value "Qwerty" is not a float number |
118
- +-------+-----------+----- demo_invalid.yml --------------------------+
115
+ +-------+------------------+--------------+----- demo_invalid.yml -----------------------------------------------+
116
+ | Line | id:Column | Rule | Message |
117
+ +-------+------------------+--------------+----------------------------------------------------------------------+
118
+ | undef | 2:Float | is_float | Value "Qwerty" is not a float number |
119
+ | undef | 4:Favorite color | allow_values | Value "123" is not allowed. Allowed values: ["red", "green", "Blue"] |
120
+ +-------+------------------+--------------+----- demo_invalid.yml -----------------------------------------------+
119
121
120
122
(1/3) Invalid file: ./tests/fixtures/batch/demo-1.csv
121
123
+------+------------------+--------------+--------- demo-1.csv --------------------------------------------------+
@@ -148,7 +150,7 @@ public function testValidateManyFileNegativeTable(): void
148
150
149
151
150
152
Found 8 issues in 3 out of 3 CSV files.
151
- Found 1 issues in schema.
153
+ Found 2 issues in schema.
152
154
153
155
TXT;
154
156
@@ -170,6 +172,7 @@ public function testValidateOneFileNegativeText(): void
170
172
171
173
Schema is invalid: ./tests/schemas/demo_invalid.yml
172
174
"is_float", column "2:Float". Value "Qwerty" is not a float number.
175
+ "allow_values", column "4:Favorite color". Value "123" is not allowed. Allowed values: ["red", "green", "Blue"].
173
176
174
177
(1/1) Invalid file: ./tests/fixtures/demo.csv
175
178
"filename_pattern" at line 1, column "". Filename "./tests/fixtures/demo.csv" does not match pattern: "/demo-[12].csv$/i".
@@ -184,7 +187,7 @@ public function testValidateOneFileNegativeText(): void
184
187
185
188
186
189
Found 9 issues in CSV file.
187
- Found 1 issues in schema.
190
+ Found 2 issues in schema.
188
191
189
192
TXT;
190
193
@@ -200,6 +203,7 @@ public function testValidateManyFilesNegativeTextQuick(): void
200
203
201
204
Schema is invalid: ./tests/schemas/demo_invalid.yml
202
205
"is_float", column "2:Float". Value "Qwerty" is not a float number.
206
+ "allow_values", column "4:Favorite color". Value "123" is not allowed. Allowed values: ["red", "green", "Blue"].
203
207
204
208
(1/3) Invalid file: ./tests/fixtures/batch/demo-1.csv
205
209
"ag:is_unique" at line 1, column "1:City". Column has non-unique values. Unique: 1, total: 2.
@@ -208,7 +212,7 @@ public function testValidateManyFilesNegativeTextQuick(): void
208
212
(3/3) Skipped: ./tests/fixtures/batch/sub/demo-3.csv
209
213
210
214
Found 1 issues in 1 out of 3 CSV files.
211
- Found 1 issues in schema.
215
+ Found 2 issues in schema.
212
216
213
217
TXT;
214
218
@@ -267,6 +271,7 @@ public function testValidateManyFilesNegativeTextQuick(): void
267
271
268
272
Schema is invalid: ./tests/schemas/demo_invalid.yml
269
273
"is_float", column "2:Float". Value "Qwerty" is not a float number.
274
+ "allow_values", column "4:Favorite color". Value "123" is not allowed. Allowed values: ["red", "green", "Blue"].
270
275
271
276
(1/3) Invalid file: ./tests/fixtures/batch/demo-1.csv
272
277
"ag:is_unique" at line 1, column "1:City". Column has non-unique values. Unique: 1, total: 2.
@@ -284,7 +289,7 @@ public function testValidateManyFilesNegativeTextQuick(): void
284
289
285
290
286
291
Found 8 issues in 3 out of 3 CSV files.
287
- Found 1 issues in schema.
292
+ Found 2 issues in schema.
288
293
289
294
TXT;
290
295
@@ -308,14 +313,18 @@ public function testCreateValidateNegativeTeamcity(): void
308
313
309
314
Schema is invalid: ./tests/schemas/demo_invalid.yml
310
315
311
- ##teamcity[testCount count='1 ' flowId='42']
316
+ ##teamcity[testCount count='2 ' flowId='42']
312
317
313
318
##teamcity[testSuiteStarted name='demo_invalid.yml' flowId='42']
314
319
315
320
##teamcity[testStarted name='is_float at column 2:Float' locationHint='php_qn://./tests/schemas/demo_invalid.yml' flowId='42']
316
321
"is_float", column "2:Float". Value "Qwerty" is not a float number.
317
322
##teamcity[testFinished name='is_float at column 2:Float' flowId='42']
318
323
324
+ ##teamcity[testStarted name='allow_values at column 4:Favorite color' locationHint='php_qn://./tests/schemas/demo_invalid.yml' flowId='42']
325
+ "allow_values", column "4:Favorite color". Value "123" is not allowed. Allowed values: ["red", "green", "Blue"].
326
+ ##teamcity[testFinished name='allow_values at column 4:Favorite color' flowId='42']
327
+
319
328
##teamcity[testSuiteFinished name='demo_invalid.yml' flowId='42']
320
329
321
330
(1/3) Invalid file: ./tests/fixtures/batch/demo-1.csv
@@ -376,7 +385,7 @@ public function testCreateValidateNegativeTeamcity(): void
376
385
377
386
378
387
Found 8 issues in 3 out of 3 CSV files.
379
- Found 1 issues in schema.
388
+ Found 2 issues in schema.
380
389
381
390
TXT;
382
391
0 commit comments