-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtests.zig
More file actions
465 lines (412 loc) · 13.6 KB
/
tests.zig
File metadata and controls
465 lines (412 loc) · 13.6 KB
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
//! Unit and Integration tests for the module scope `src/*.zig`
//! [Released under GNU LGPLv3]
const std = @import("std");
const csv = @import("root.zig");
const expect = std.testing.expect;
const allocator = std.testing.allocator;
test "Initialize Table using Table.parse and export to CSV via Table.exportCSV" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
const csv_data =
\\id,shorthand,animal name,scientific name
\\0,r,rat,rattus rattus
\\1,c,cat,felis catus
\\2,p,pig,sus domesticus
\\3,d,dog,canis familiaris
;
try table.parse(csv_data);
const exported: []const u8 = try table.exportCSV(allocator);
defer allocator.free(exported);
try expect(std.mem.eql(u8, exported, csv_data));
}
test "Initialize Table using Table.parseRow and export to CSV via Table.exportCSV" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
const csv_data =
\\id,letter
\\0,a
\\1,b
;
var csv_data_1_iterator = std.mem.splitSequence(u8, csv_data, "\n");
while (csv_data_1_iterator.next()) |row| try table.parse(row);
const exported: []const u8 = try table.exportCSV(allocator);
defer allocator.free(exported);
try expect(std.mem.eql(u8, exported, csv_data));
}
test "Initialize Table using custom delimiter and terminator and export to CSV via Table.exportCSV" {
var table = csv.Table.init(allocator, csv.Settings{
.delimiter = "-",
.terminator = "|",
});
defer table.deinit();
const csv_data =
\\1-2-3|a-b-c
;
try table.parse(csv_data);
const exported: []const u8 = try table.exportCSV(allocator);
defer allocator.free(exported);
try expect(std.mem.eql(u8, exported, csv_data));
}
test "Get number of rows using Table.getRowCount" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\id,animal name,scientific name
\\0,rat,rattus rattus
);
const row_count = table.getRowCount();
try expect(row_count == 2);
}
test "Get number of columns using Table.getColumnCount" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\id,animal name,scientific name
\\0,rat,rattus rattus
);
const column_count = try table.getColumnCount();
try expect(column_count == 3);
}
test "Find indexes of columns using Table.findColumnIndexesByValue" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\id,animal name,scientific name
\\0,rat,rattus rattus
\\1,pig,sus domesticus
);
var arena = std.heap.ArenaAllocator.init(allocator);
defer arena.deinit();
const arena_allocator = arena.allocator();
const cases = [_]struct {
row_index: usize,
expected_index: usize,
searched_key: []const u8,
}{
.{ .row_index = 0, .searched_key = "id", .expected_index = 0 },
.{ .row_index = 0, .searched_key = "animal name", .expected_index = 1 },
.{ .row_index = 0, .searched_key = "scientific name", .expected_index = 2 },
.{ .row_index = 1, .searched_key = "rat", .expected_index = 1 },
};
inline for (cases) |case| {
const indexes = try table.findColumnIndexesByValue(arena_allocator, case.row_index, case.searched_key);
try expect(indexes.len == 1);
try expect(indexes[0] == case.expected_index);
}
const column_indexes_ne = table.findColumnIndexesByValue(arena_allocator, 0, "non-existent");
try expect(column_indexes_ne == csv.TableError.ValueNotFound);
}
test "Find indexes of columns using Table.findRowIndexesByValue" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\id,animal name,scientific name
\\0,rat,rattus rattus
\\1,pig,sus domesticus
);
var arena = std.heap.ArenaAllocator.init(allocator);
defer arena.deinit();
const arena_allocator = arena.allocator();
const cases = [_]struct {
column_index: usize,
expected_index: usize,
searched_key: []const u8,
}{
.{ .column_index = 0, .searched_key = "id", .expected_index = 0 },
.{ .column_index = 0, .searched_key = "0", .expected_index = 1 },
.{ .column_index = 0, .searched_key = "1", .expected_index = 2 },
.{ .column_index = 1, .searched_key = "rat", .expected_index = 1 },
};
inline for (cases) |case| {
const indexes = try table.findRowIndexesByValue(arena_allocator, case.column_index, case.searched_key);
try expect(indexes.len == 1);
try expect(indexes[0] == case.expected_index);
}
const column_indexes_ne = table.findRowIndexesByValue(arena_allocator, 0, "non-existent");
try expect(column_indexes_ne == csv.TableError.ValueNotFound);
}
test "Get column by index using Table.getColumnByIndex" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\id,letter
\\0,a
);
var arena = std.heap.ArenaAllocator.init(allocator);
defer arena.deinit();
const arena_allocator = arena.allocator();
const column_0 = try table.getColumnByIndex(arena_allocator, 0);
try expect(column_0.len == 2);
try expect(std.mem.eql(u8, column_0[0], "id"));
try expect(std.mem.eql(u8, column_0[1], "0"));
const column_1 = try table.getColumnByIndex(arena_allocator, 1);
try expect(column_1.len == 2);
try expect(std.mem.eql(u8, column_1[0], "letter"));
try expect(std.mem.eql(u8, column_1[1], "a"));
}
test "Get row by index using Table.getRowByIndex" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\id,letter
\\0,a
);
const row_0 = try table.getRowByIndex(0);
try expect(row_0.len == 2);
try expect(std.mem.eql(u8, row_0[0], "id"));
try expect(std.mem.eql(u8, row_0[1], "letter"));
const row_1 = try table.getRowByIndex(1);
try expect(row_1.len == 2);
try expect(std.mem.eql(u8, row_1[0], "0"));
try expect(std.mem.eql(u8, row_1[1], "a"));
}
test "Replace values using Table.replaceValue" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\id,letter
\\0,a
\\1,b
);
try table.replaceValue(1, 0, "2");
try table.replaceValue(2, 1, "c");
const exported = try table.exportCSV(allocator);
defer allocator.free(exported);
const expected_csv =
\\id,letter
\\2,a
\\1,c
;
try expect(std.mem.eql(u8, exported, expected_csv));
}
test "Replace values containing illegal characters using Table.replaceValues" {
var table = csv.Table.init(allocator, csv.Settings{
.delimiter = ",",
.terminator = "\n",
});
defer table.deinit();
try table.parse(
\\a,b
\\c,d
);
try expect(table.replaceValue(0, 0, ",2") == csv.TableError.IllegalCharacter);
try expect(table.replaceValue(0, 0, "2\n") == csv.TableError.IllegalCharacter);
}
test "Append row using Table.insertEmptyRow" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\id,letter
\\0,a
);
const inserted_at = try table.insertEmptyRow(null);
const exported = try table.exportCSV(allocator);
defer allocator.free(exported);
const expected_csv =
\\id,letter
\\0,a
\\,
;
try expect(std.mem.eql(u8, exported, expected_csv));
try expect(inserted_at == 2);
}
test "Insert row using Table.insertEmptyRow" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
const csv_data =
\\id,letter
\\1,b
;
try table.parse(csv_data);
const inserted_at = try table.insertEmptyRow(1);
const exported = try table.exportCSV(allocator);
defer allocator.free(exported);
const expected_csv =
\\id,letter
\\,
\\1,b
;
try expect(std.mem.eql(u8, exported, expected_csv));
try expect(inserted_at == 1);
}
test "Append column using Table.insertEmptyColumn" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\id,letter
\\0,a
);
const inserted_at = try table.insertEmptyColumn(null);
const exported = try table.exportCSV(allocator);
defer allocator.free(exported);
const expected_csv =
\\id,letter,
\\0,a,
;
try expect(std.mem.eql(u8, exported, expected_csv));
try expect(inserted_at == 2);
}
test "Insert column using Table.insertEmptyColumn" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
const csv_data =
\\id,letter
\\1,b
;
try table.parse(csv_data);
const inserted_at = try table.insertEmptyColumn(1);
const exported = try table.exportCSV(allocator);
defer allocator.free(exported);
const expected_csv =
\\id,,letter
\\1,,b
;
try expect(std.mem.eql(u8, exported, expected_csv));
try expect(inserted_at == 1);
}
test "Append row using Table.insertEmptyRow and Table.replaceValue" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\id,letter
\\0,a
\\1,b
);
const row_index = try table.insertEmptyRow(null);
try table.replaceValue(row_index, 0, "2");
try table.replaceValue(row_index, 1, "c");
const exported = try table.exportCSV(allocator);
defer allocator.free(exported);
const expected_csv =
\\id,letter
\\0,a
\\1,b
\\2,c
;
try expect(std.mem.eql(u8, exported, expected_csv));
}
test "Append column using Table.insertEmptyColumn and Table.replaceValue" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\id,letter
\\0,a
\\1,b
);
const column_index = try table.insertEmptyColumn(null);
try table.replaceValue(0, column_index, "example word");
try table.replaceValue(1, column_index, "anemone");
try table.replaceValue(2, column_index, "bee");
const exported = try table.exportCSV(allocator);
defer allocator.free(exported);
const expected_csv =
\\id,letter,example word
\\0,a,anemone
\\1,b,bee
;
try expect(std.mem.eql(u8, exported, expected_csv));
}
test "Delete row using Table.deleteRowByIndex" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\id,letter
\\0,a
\\1,b
);
try table.deleteRowByIndex(1);
const exported = try table.exportCSV(allocator);
defer allocator.free(exported);
const expected_csv =
\\id,letter
\\1,b
;
try expect(std.mem.eql(u8, exported, expected_csv));
}
test "Delete column using Table.deleteColumnByIndex" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\id,letter
\\0,a
\\1,b
);
try table.deleteColumnByIndex(0);
const exported = try table.exportCSV(allocator);
defer allocator.free(exported);
const expected_csv =
\\letter
\\a
\\b
;
try expect(std.mem.eql(u8, exported, expected_csv));
}
test "Parse row with trailing delimiter" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\a,b,
);
const row = try table.getRowByIndex(0);
try expect(row.len == 3);
try expect(std.mem.eql(u8, row[0], "a"));
try expect(std.mem.eql(u8, row[1], "b"));
try expect(std.mem.eql(u8, row[2], ""));
}
test "Parse multiple consecutive delimiters" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\a,,,d
);
const row = try table.getRowByIndex(0);
try expect(row.len == 4);
try expect(std.mem.eql(u8, row[0], "a"));
try expect(std.mem.eql(u8, row[1], ""));
try expect(std.mem.eql(u8, row[2], ""));
try expect(std.mem.eql(u8, row[3], "d"));
}
test "Parse unescaped empty field" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\a,,c
);
const row = try table.getRowByIndex(0);
try expect(row.len == 3);
try expect(std.mem.eql(u8, row[0], "a"));
try expect(std.mem.eql(u8, row[1], ""));
try expect(std.mem.eql(u8, row[2], "c"));
}
test "Handle trailing empty row" {
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
try table.parse(
\\a,b
\\
);
const exported = try table.exportCSV(allocator);
defer allocator.free(exported);
try expect(std.mem.eql(u8, exported, "a,b"));
}
test "Fail-fast on empty row" {
const data =
\\a,b
\\
\\c,d
;
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
const result = table.parse(data);
try expect(result == csv.TableError.InconsistentRowLength);
}
test "Fail-fast on inconsistent row lengths" {
const data =
\\a,b
\\c,d,e"
;
var table = csv.Table.init(allocator, csv.Settings.default());
defer table.deinit();
const result = table.parse(data);
try expect(result == csv.TableError.InconsistentRowLength);
}