forked from d99kris/rapidcsv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test082.cpp
58 lines (43 loc) · 1.31 KB
/
test082.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
// test082.cpp - generate new document with insert row
#include <rapidcsv.h>
#include "unittest.h"
int main()
{
int rv = 0;
std::string csvref =
",A,B,C,D\n"
"0,2,4,16,256\n"
"1,3,9,81,6561\n"
"2,4,16,256,65536\n"
"3,5,25,625,390625\n"
;
std::string path = unittest::TempPath();
try
{
rapidcsv::Document doc("", rapidcsv::LabelParams(0, 0), rapidcsv::SeparatorParams(',', false, false));
doc.InsertRow(0, std::vector<int>({ 3, 9, 81, 6561 }), "1");
doc.InsertRow(0, std::vector<int>({ 2, 4, 16, 256 }), "0");
doc.InsertRow<int>(2);
doc.SetRow(2, std::vector<int>({ 4, 16, 256, 65536 }));
doc.SetRowName(2, "2");
doc.InsertRow(3, std::vector<int>({ 5, 25, 625, 390625 }), "3");
std::vector<int> ints = doc.GetRow<int>("1");
unittest::ExpectEqual(size_t, ints.size(), 4);
unittest::ExpectEqual(int, ints.at(0), 3);
unittest::ExpectEqual(int, ints.at(1), 9);
doc.SetColumnName(0, "A");
doc.SetColumnName(1, "B");
doc.SetColumnName(2, "C");
doc.SetColumnName(3, "D");
doc.Save(path);
std::string csvread = unittest::ReadFile(path);
unittest::ExpectEqual(std::string, csvref, csvread);
}
catch (const std::exception& ex)
{
std::cout << ex.what() << std::endl;
rv = 1;
}
unittest::DeleteFile(path);
return rv;
}