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
|
#include <cppunit/CompilerOutputter.h>
#include <cppunit/TestCaller.h>
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
#include <cppunit/ui/text/TestRunner.h>
#include "csvstringfield.hh"
class CSVStringFieldTest : public CppUnit::TestFixture {
public:
static CppUnit::TestSuite *suite() {
CppUnit::TestSuite *suiteOfTests =
new CppUnit::TestSuite("CSV String Field");
suiteOfTests->addTest(new CppUnit::TestCaller<CSVStringFieldTest>(
"should escape field", &CSVStringFieldTest::escape));
suiteOfTests->addTest(new CppUnit::TestCaller<CSVStringFieldTest>(
"should properly handle escapeing double quote",
&CSVStringFieldTest::escapeDoubleQuote));
suiteOfTests->addTest(new CppUnit::TestCaller<CSVStringFieldTest>(
"should not escape field", &CSVStringFieldTest::noEscape));
suiteOfTests->addTest(new CppUnit::TestCaller<CSVStringFieldTest>(
"escape should properly handle empty string",
&CSVStringFieldTest::escapeEmptyField));
suiteOfTests->addTest(new CppUnit::TestCaller<CSVStringFieldTest>(
"should unescape escaped field", &CSVStringFieldTest::unescape));
suiteOfTests->addTest(new CppUnit::TestCaller<CSVStringFieldTest>(
"should not unescape wrongly escaped field",
&CSVStringFieldTest::unescapeWronglyEscapedField));
suiteOfTests->addTest(new CppUnit::TestCaller<CSVStringFieldTest>(
"should not unescape non-escaped field",
&CSVStringFieldTest::noUnescape));
suiteOfTests->addTest(new CppUnit::TestCaller<CSVStringFieldTest>(
"should properly handle empty field",
&CSVStringFieldTest::unescapeEmptyField));
suiteOfTests->addTest(new CppUnit::TestCaller<CSVStringFieldTest>(
"should properly construct empty",
&CSVStringFieldTest::defaultConstructed));
suiteOfTests->addTest(new CppUnit::TestCaller<CSVStringFieldTest>(
"should properly copy without prior function call",
&CSVStringFieldTest::copyNoPriorCall));
suiteOfTests->addTest(new CppUnit::TestCaller<CSVStringFieldTest>(
"should properly copy with prior call",
&CSVStringFieldTest::copyPriorCall));
suiteOfTests->addTest(new CppUnit::TestCaller<CSVStringFieldTest>(
"should properly move without prior function call",
&CSVStringFieldTest::moveNoPriorCall));
suiteOfTests->addTest(new CppUnit::TestCaller<CSVStringFieldTest>(
"should properly move with prior call",
&CSVStringFieldTest::movePriorCall));
return suiteOfTests;
}
void escape() {
yapet::CSVStringField csvStringField{"Test,field"};
std::string actual{csvStringField.escape()};
std::string expected{"\"Test,field\""};
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField2{"Test\nfield"};
actual = csvStringField2.escape();
expected = "\"Test\nfield\"";
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField3{"a\"a"};
actual = csvStringField3.escape();
expected = "a\"a";
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField4{"a\""};
actual = csvStringField4.escape();
expected = "a\"";
CPPUNIT_ASSERT_EQUAL(expected, actual);
}
void escapeDoubleQuote() {
yapet::CSVStringField csvStringField{"Test,\"field\""};
std::string actual = csvStringField.escape();
std::string expected{"\"Test,\"\"field\"\"\""};
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField2{"Test \"field\""};
actual = csvStringField2.escape();
expected = "Test \"field\"";
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField3{",\"\"\""};
actual = csvStringField3.escape();
expected = "\",\"\"\"\"\"\"\"";
CPPUNIT_ASSERT_EQUAL(expected, actual);
}
void noEscape() {
yapet::CSVStringField csvStringField{"No escape necessary"};
std::string actual = csvStringField.escape();
std::string expected{"No escape necessary"};
CPPUNIT_ASSERT_EQUAL(expected, actual);
}
void escapeEmptyField() {
yapet::CSVStringField csvStringField{""};
std::string actual = csvStringField.escape();
std::string expected{""};
CPPUNIT_ASSERT_EQUAL(expected, actual);
}
void unescape() {
yapet::CSVStringField csvStringField{"\"test,\"\"field\""};
std::string actual = csvStringField.unescape();
std::string expected{"test,\"field"};
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField2{"\"\"\"\""};
actual = csvStringField2.unescape();
expected = "\"";
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField3{"\",\"\"\"\"\"\"\""};
actual = csvStringField3.unescape();
expected = ",\"\"\"";
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField4{"a\"a"};
actual = csvStringField4.unescape();
expected = "a\"a";
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField5{"a\""};
actual = csvStringField5.unescape();
expected = "a\"";
CPPUNIT_ASSERT_EQUAL(expected, actual);
}
void unescapeWronglyEscapedField() {
yapet::CSVStringField csvStringField{"\"test,\"field\""};
CPPUNIT_ASSERT_THROW(csvStringField.unescape(), std::invalid_argument);
}
void noUnescape() {
yapet::CSVStringField csvStringField{"test field"};
std::string actual = csvStringField.unescape();
std::string expected{"test field"};
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField2{"test \" field"};
actual = csvStringField2.unescape();
expected = "test \" field";
CPPUNIT_ASSERT_EQUAL(expected, actual);
}
void unescapeEmptyField() {
yapet::CSVStringField csvStringField{""};
std::string actual = csvStringField.unescape();
std::string expected{""};
CPPUNIT_ASSERT_EQUAL(expected, actual);
}
void defaultConstructed() {
yapet::CSVStringField defaultConstructed;
std::string emptyString{};
CPPUNIT_ASSERT_EQUAL(emptyString, defaultConstructed.escape());
CPPUNIT_ASSERT_EQUAL(emptyString, defaultConstructed.unescape());
}
void copyNoPriorCall() {
// Unescape
yapet::CSVStringField csvStringField{"\"test,\"\"field\""};
yapet::CSVStringField empty{csvStringField};
std::string actual = empty.unescape();
std::string expected{"test,\"field"};
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField2{"\"test,\"\"field\""};
yapet::CSVStringField empty2{};
empty2 = csvStringField2;
actual = empty2.unescape();
CPPUNIT_ASSERT_EQUAL(expected, actual);
// Escape
yapet::CSVStringField csvStringField3{"Test,field"};
yapet::CSVStringField empty3{csvStringField3};
actual = empty3.escape();
expected = "\"Test,field\"";
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField4{"Test,field"};
yapet::CSVStringField empty4;
empty4 = csvStringField4;
actual = empty4.escape();
CPPUNIT_ASSERT_EQUAL(expected, actual);
}
void copyPriorCall() {
// Unescape
yapet::CSVStringField csvStringField{"\"test,\"\"field\""};
csvStringField.unescape();
yapet::CSVStringField empty{csvStringField};
std::string actual = empty.unescape();
std::string expected{"test,\"field"};
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField2{"\"test,\"\"field\""};
csvStringField2.unescape();
yapet::CSVStringField empty2{};
empty2 = csvStringField2;
actual = empty2.unescape();
CPPUNIT_ASSERT_EQUAL(expected, actual);
// Escape
yapet::CSVStringField csvStringField3{"Test,field"};
csvStringField3.escape();
yapet::CSVStringField empty3{csvStringField3};
actual = empty3.escape();
expected = "\"Test,field\"";
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField4{"Test,field"};
csvStringField4.escape();
yapet::CSVStringField empty4;
empty4 = csvStringField4;
actual = empty4.escape();
CPPUNIT_ASSERT_EQUAL(expected, actual);
}
void moveNoPriorCall() {
// Unescape
yapet::CSVStringField csvStringField{"\"test,\"\"field\""};
yapet::CSVStringField empty{std::move(csvStringField)};
std::string actual = empty.unescape();
std::string expected{"test,\"field"};
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField2{"\"test,\"\"field\""};
yapet::CSVStringField empty2{};
empty2 = std::move(csvStringField2);
actual = empty2.unescape();
CPPUNIT_ASSERT_EQUAL(expected, actual);
// Escape
yapet::CSVStringField csvStringField3{"Test,field"};
yapet::CSVStringField empty3{std::move(csvStringField3)};
actual = empty3.escape();
expected = "\"Test,field\"";
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField4{"Test,field"};
yapet::CSVStringField empty4;
empty4 = std::move(csvStringField4);
actual = empty4.escape();
CPPUNIT_ASSERT_EQUAL(expected, actual);
}
void movePriorCall() {
// Unescape
yapet::CSVStringField csvStringField{"\"test,\"\"field\""};
csvStringField.unescape();
yapet::CSVStringField empty{std::move(csvStringField)};
std::string actual = empty.unescape();
std::string expected{"test,\"field"};
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField2{"\"test,\"\"field\""};
csvStringField2.unescape();
yapet::CSVStringField empty2{};
empty2 = std::move(csvStringField2);
actual = empty2.unescape();
CPPUNIT_ASSERT_EQUAL(expected, actual);
// Escape
yapet::CSVStringField csvStringField3{"Test,field"};
csvStringField3.escape();
yapet::CSVStringField empty3{std::move(csvStringField3)};
actual = empty3.escape();
expected = "\"Test,field\"";
CPPUNIT_ASSERT_EQUAL(expected, actual);
yapet::CSVStringField csvStringField4{"Test,field"};
csvStringField4.escape();
yapet::CSVStringField empty4;
empty4 = std::move(csvStringField4);
actual = empty4.escape();
CPPUNIT_ASSERT_EQUAL(expected, actual);
}
};
int main() {
CppUnit::TextUi::TestRunner runner;
runner.addTest(CSVStringFieldTest::suite());
return runner.run() ? 0 : 1;
}
|