blob: dd2233b2ebfa4657b65ca5a0ac0e1bd5d1290b7c (
plain)
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
|
/*
* Copyright (c) 2013 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
#include <Swiften/Base/Path.h>
#include <Swiften/Base/Platform.h>
using namespace Swift;
class PathTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(PathTest);
CPPUNIT_TEST(testStringToPath);
CPPUNIT_TEST(testPathToString);
CPPUNIT_TEST_SUITE_END();
public:
void testStringToPath() {
#ifdef SWIFTEN_PLATFORM_WINDOWS
CPPUNIT_ASSERT(std::wstring(L"tron\xe7on") == stringToPath("tron\xc3\xa7on").native());
#else
CPPUNIT_ASSERT_EQUAL(std::string("tron\xc3\xa7on"), stringToPath("tron\xc3\xa7on").native());
#endif
}
void testPathToString() {
CPPUNIT_ASSERT_EQUAL(std::string("tron\xc3\xa7on"), pathToString(stringToPath("tron\xc3\xa7on")));
}
};
CPPUNIT_TEST_SUITE_REGISTRATION(PathTest);
|