-
Notifications
You must be signed in to change notification settings - Fork 20
/
csvstream_test.cpp
627 lines (497 loc) · 13.4 KB
/
csvstream_test.cpp
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
/* csvstream_test.cpp
*
* Andrew DeOrio <[email protected]>
*
* An easy-to-use CSV file parser for C++
* https://github.com/awdeorio/csvstream
*/
#include "csvstream.hpp"
#include <iostream>
#include <fstream>
#include <string>
#include <map>
#include <vector>
using namespace std;
void test_filename_ctor();
void test_stream_ctor();
void test_getheader();
void test_emptyfields();
void test_tsv();
void test_too_few_cols_in_the_middle_strict();
void test_too_few_cols_in_the_middle_notstrict();
void test_too_few_cols_at_the_end_strict();
void test_too_few_cols_at_the_end_notstrict();
void test_too_many_cols_strict();
void test_too_many_cols_notstrict();
void test_no_newline_at_the_end();
void test_quotes();
void test_escape_quotes();
void test_multiline_quotes();
void test_osx_line_endings();
void test_windows_line_endings();
void test_strict_notsctrict();
void test_notstrict_exceptions();
int main() {
test_filename_ctor();
test_stream_ctor();
test_getheader();
test_emptyfields();
test_tsv();
test_too_few_cols_in_the_middle_strict();
test_too_few_cols_in_the_middle_notstrict();
test_too_few_cols_at_the_end_strict();
test_too_few_cols_at_the_end_notstrict();
test_too_many_cols_strict();
test_too_many_cols_notstrict();
test_no_newline_at_the_end();
test_quotes();
test_escape_quotes();
test_multiline_quotes();
test_osx_line_endings();
test_windows_line_endings();
test_strict_notsctrict();
test_notstrict_exceptions();
cout << "csvstream_test PASSED\n";
return 0;
}
// data for next few unit tests
const string input_filename_animals = "input.csv";
const vector<string> header_correct_animals = {"name", "animal"};
const vector<map<string, string>> output_correct_animals =
{
{{"name","Fergie"},{"animal","horse"}},
{{"name","Myrtle II"},{"animal","chicken"}},
{{"name","Oscar"},{"animal","cat"}},
}
;
void test_filename_ctor() {
// Test creating a csvstream object from a filename string
// Save actual output
vector<map<string, string>> output_observed;
// Read file
csvstream csvin(input_filename_animals);
map<string, string> row;
while (csvin >> row) {
output_observed.push_back(row);
}
// Check output
assert(output_observed == output_correct_animals);
}
void test_stream_ctor() {
// Test creating a csvstream object from a stream
// Save actual output
vector<map<string, string>> output_observed;
// Open file
ifstream fin(input_filename_animals.c_str());
assert(fin.is_open());
// Read file from stream
csvstream csvin(fin);
map<string, string> row;
while (csvin >> row) {
output_observed.push_back(row);
}
// Check output
assert(output_observed == output_correct_animals);
// Clean up
fin.close();
}
void test_getheader() {
// Test reading header from first line of CSV file
csvstream csvin(input_filename_animals);
auto header = csvin.getheader();
assert(header == header_correct_animals);
}
void test_emptyfields() {
// Test with input data containing empty fields (consecutive commas)
// Input
stringstream iss("a,b,c\n,,\n,,\n");
// Correct answer
const vector<map<string, string>> output_correct =
{
{{"a",""},{"b",""},{"c",""}},
{{"a",""},{"b",""},{"c",""}},
}
;
// Save actual output
vector<map<string, string>> output_observed;
// Read stream
csvstream csvin(iss);
map<string, string> row;
try {
while (csvin >> row) {
output_observed.push_back(row);
}
} catch(const csvstream_exception &e) {
cout << e.what() << endl;
assert(0);
}
// Check output
assert(output_observed == output_correct);
}
void test_tsv() {
// Test with tab separated data
// Input
stringstream iss("a\tb\tc\nd\te\tf\n\t\t\n");
// Correct answer
const vector<map<string, string>> output_correct =
{
{{"a","d"},{"b","e"},{"c","f"}},
{{"a",""},{"b",""},{"c",""}},
}
;
// Save actual output
vector<map<string, string>> output_observed;
// Read file
csvstream csvin(iss, '\t');
map<string, string> row;
try {
while (csvin >> row) {
output_observed.push_back(row);
}
} catch(const csvstream_exception &e) {
cout << e.what() << endl;
assert(0);
}
// Check output
assert(output_observed == output_correct);
}
void test_too_few_cols_in_the_middle_strict() {
// Test error condition: a row in the middle of the file that doesn't have
// enough fields
// Input
stringstream iss("a,b,c\n,\nd,e,f");
// Create object
csvstream csvin(iss);
// Read file
map<string, string> row;
try {
while (csvin >> row); // throw away data
} catch(const csvstream_exception &e) {
//if we caught an exception, then it worked
return;
}
// if we made it this far, then it didn't work
assert(0);
}
void test_too_few_cols_in_the_middle_notstrict() {
// Test error condition: a row in the middle of the file that doesn't have
// enough fields. When strict=false, this should *not* cause an error.
// Input
stringstream iss("a,b,c\n,\nd,e,f");
// Create object with strict=false
csvstream csvin(iss, ',', false);
// Read file
map<string, string> row;
try {
while (csvin >> row); // throw away data
} catch(const csvstream_exception &e) {
// If we caught an exception, then strict=false failed to coerce the number
// of values.
assert(0);
}
}
void test_too_few_cols_at_the_end_strict() {
// Test error condition: last row doesn't have enough fields
// Input
stringstream iss("a,b,c\n,");
// Create object
csvstream csvin(iss);
// Read file
map<string, string> row;
try {
while (csvin >> row); // throw away data
} catch(const csvstream_exception &e) {
//if we caught an exception, then it worked
return;
}
// if we made it this far, then it didn't work
assert(0);
}
void test_too_few_cols_at_the_end_notstrict() {
// Test error condition: last row doesn't have enough fields
// Input
stringstream iss("a,b,c\n,");
// Create object with strict=false
csvstream csvin(iss, ',', false);
// Read file
map<string, string> row;
try {
while (csvin >> row); // throw away data
} catch(const csvstream_exception &e) {
// If we caught an exception, then strict=false failed to coerce the number
// of values.
assert(0);
}
}
void test_too_many_cols_strict() {
// Test error condition: row with too many fields
// Input
stringstream iss("a,b,c\n,,,");
// Create object
csvstream csvin(iss);
// Read file
map<string, string> row;
try {
while (csvin >> row); // throw away data
} catch(const csvstream_exception &e) {
//if we caught an exception, then it worked
return;
}
// if we made it this far, then it didn't work
assert(0);
}
void test_too_many_cols_notstrict() {
// Test error condition: row with too many fields. When strict=false,
// this should *not* cause an error.
// Input
stringstream iss("a,b,c\n,,,");
// Create object, with strict=false
csvstream csvin(iss, ',', false);
// Read file
map<string, string> row;
try {
while (csvin >> row); // throw away data
} catch(const csvstream_exception &e) {
// If we caught an exception, then strict=false failed to coerce the number
// of values.
assert(0);
}
}
void test_no_newline_at_the_end() {
// Test with input that has no newline at the end
// Input
stringstream iss("a,b,c\n,,");
// Create object
csvstream csvin(iss);
// Correct answer
const vector<map<string, string>> output_correct =
{
{{"a",""},{"b",""},{"c",""}},
}
;
// Save actual output
vector<map<string, string>> output_observed;
// Read stream
map<string, string> row;
try {
while (csvin >> row) {
output_observed.push_back(row);
}
} catch(const csvstream_exception &e) {
cout << e.what() << endl;
assert(0);
}
// Check output
assert(output_observed == output_correct);
}
void test_quotes() {
// Input
stringstream iss("\"a\",b,c\n\"1\",2,3\n\"4,44\",5,6\n");
// Correct answer
const vector<map<string, string>> output_correct =
{
{{"a","1"},{"b","2"},{"c","3"}},
{{"a","4,44"},{"b","5"},{"c","6"}}, //quoted comma
}
;
// Save actual output
vector<map<string, string>> output_observed;
// Read stream
csvstream csvin(iss);
map<string, string> row;
try {
while (csvin >> row) {
output_observed.push_back(row);
}
} catch(const csvstream_exception &e) {
cout << e.what() << endl;
assert(0);
}
// Check output
assert(output_observed == output_correct);
}
void test_escape_quotes() {
// Test with input data containing escaped quotes
// Input
stringstream iss("\\\"a\\\",b,c\n\\\"1\\\",2,3\n\"4,\\\"44\",5,6");
// Correct answer
const vector<map<string, string>> output_correct =
{
{{"\\\"a\\\"","\\\"1\\\""},{"b","2"},{"c","3"}}, //escaped quote
{{"\\\"a\\\"","4,\\\"44"},{"b","5"},{"c","6"}}, //escaped quote
}
;
// Save actual output
vector<map<string, string>> output_observed;
// Read stream
csvstream csvin(iss);
map<string, string> row;
try {
while (csvin >> row) {
output_observed.push_back(row);
}
} catch(const csvstream_exception &e) {
cout << e.what() << endl;
assert(0);
}
// Check output
assert(output_observed == output_correct);
}
void test_multiline_quotes() {
// Test with input data containing a quoted field containing newlines
stringstream iss("a,b\n\"hello\nworld\",\"b\"\n");
const vector<map<string, string>> output_correct =
{
{{"a", "hello\nworld"},{"b", "b"}}
}
;
vector<map<string, string>> output_observed;
csvstream csvin(iss);
map<string, string> row;
try {
while (csvin >> row) {
output_observed.push_back(row);
}
} catch(const csvstream_exception &e) {
cout << e.what() << endl;
assert(0);
}
// Check output
assert(output_observed == output_correct);
}
void test_osx_line_endings() {
// Test with input data containing OSX line endings: \r
// Input
stringstream iss("a,b,c\r1,2,3\r,,\r");
// Correct answer
const vector<map<string, string>> output_correct =
{
{{"a","1"},{"b","2"},{"c","3"}},
{{"a",""},{"b",""},{"c",""}},
}
;
// Save actual output
vector<map<string, string>> output_observed;
// Read stream
csvstream csvin(iss);
map<string, string> row;
try {
while (csvin >> row) {
output_observed.push_back(row);
}
} catch(const csvstream_exception &e) {
cout << e.what() << endl;
assert(0);
}
// Check output
assert(output_observed == output_correct);
}
void test_windows_line_endings() {
// Test with input data containing Windows line endings: \r\n
// Input
stringstream iss("a,b,c\r\n1,2,3\r\n,,\r\n");
// Correct answer
const vector<map<string, string>> output_correct =
{
{{"a","1"},{"b","2"},{"c","3"}},
{{"a",""},{"b",""},{"c",""}},
}
;
// Save actual output
vector<map<string, string>> output_observed;
// Read stream
csvstream csvin(iss);
map<string, string> row;
try {
while (csvin >> row) {
output_observed.push_back(row);
}
} catch(const csvstream_exception &e) {
cout << e.what() << endl;
assert(0);
}
// Check output
assert(output_observed == output_correct);
}
void test_ordered() {
// Test ordered stream extraction operator. Store data in a vector instead
// of a map.
// Input
stringstream iss("b,a,c\n2,1,3\n");
// Correct answer
const vector<vector<pair<string, string>>> output_correct =
{
{{"b","2"},{"a","1"},{"c","3"}},
}
;
// Save actual output
vector<vector<pair<string, string>>> output_observed;
// Read stream
csvstream csvin(iss);
vector<pair<string, string>> row;
try {
while (csvin >> row) {
output_observed.push_back(row);
}
} catch(const csvstream_exception &e) {
cout << e.what() << endl;
assert(0);
}
// Check output
assert(output_observed == output_correct);
}
void test_strict_notsctrict() {
// Test with same input for strict and not strict modes.
// Correct answer
const vector<vector<pair<string, string>>> output_correct =
{
{{"a","1"},{"b","2"},{"c","3"}},
{{"a","4"},{"b","5"},{"c","6"}},
}
;
for (auto strict : { false, true }) {
// Input
stringstream iss("a,b,c\n1,2,3\n4,5,6");
// Save actual output
vector<vector<pair<string, string>>> output_observed;
// Read stream
csvstream csvin(iss, ',', strict);
vector<pair<string, string>> row;
try {
while (csvin >> row) {
output_observed.push_back(row);
}
} catch(const csvstream_exception &e) {
cout << e.what() << endl;
assert(0);
}
// Check output
assert(output_observed == output_correct);
}
}
void test_notstrict_exceptions() {
// Test for exceptions in not strict mode.
// Invalid input strings
vector<string> input_strings = {
"\"a,b,c\n1,2,3", // no closing bracket
",,,\n1,2,3", // empty headers
"\n\n\n\n" // string with endings only
"a,b\n1,2,3\n1", // lines have different size
"a,b,c\n,,,,,\n,,\n,\n\n", // empty values
}
;
for (auto &input_string : input_strings) {
// Input
stringstream iss(input_string);
// Read stream
csvstream csvin(iss, ',', false);
vector<pair<string, string>> row;
try {
while (csvin >> row);
} catch(const csvstream_exception &e) {
cout << e.what() << endl;
// If exception was caught, it didn't work
assert(0);
}
}
}