blob: 87ed385eab5a03d7f9c72dda51d761a8183f667f (
plain) (
blame)
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
|
/*
* Unit tests for src/util/
*/
#include "check.h"
#include "util/SplitString.hxx"
#include "util/Macros.hxx"
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
#include <string.h>
class SplitStringTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(SplitStringTest);
CPPUNIT_TEST(TestBasic);
CPPUNIT_TEST(TestStrip);
CPPUNIT_TEST(TestNoStrip);
CPPUNIT_TEST(TestEmpty);
CPPUNIT_TEST_SUITE_END();
public:
void TestBasic() {
constexpr char input[] = "foo.bar";
const char *const output[] = { "foo", "bar" };
size_t i = 0;
for (auto p : SplitString(input, '.')) {
CPPUNIT_ASSERT(i < ARRAY_SIZE(output));
CPPUNIT_ASSERT(p == output[i]);
++i;
}
CPPUNIT_ASSERT_EQUAL(ARRAY_SIZE(output), i);
}
void TestStrip() {
constexpr char input[] = " foo\t.\r\nbar\r\n2";
const char *const output[] = { "foo", "bar\r\n2" };
size_t i = 0;
for (auto p : SplitString(input, '.')) {
CPPUNIT_ASSERT(i < ARRAY_SIZE(output));
CPPUNIT_ASSERT(p == output[i]);
++i;
}
CPPUNIT_ASSERT_EQUAL(ARRAY_SIZE(output), i);
}
void TestNoStrip() {
constexpr char input[] = " foo\t.\r\nbar\r\n2";
const char *const output[] = { " foo\t", "\r\nbar\r\n2" };
size_t i = 0;
for (auto p : SplitString(input, '.', false)) {
CPPUNIT_ASSERT(i < ARRAY_SIZE(output));
CPPUNIT_ASSERT(p == output[i]);
++i;
}
CPPUNIT_ASSERT_EQUAL(ARRAY_SIZE(output), i);
}
void TestEmpty() {
CPPUNIT_ASSERT(SplitString("", '.').empty());
}
};
|