summaryrefslogtreecommitdiffstats
path: root/testfiles/src/dir-util-test.cpp
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2016-06-09 07:42:03 +0000
committerAlexander Valavanis <valavanisalex@gmail.com>2016-06-09 07:42:03 +0000
commit2f6f66fc8e4c21d0bd9f3d8dc15197fb945727c0 (patch)
treef4f9cbe38f955c59b1d9a689b23921ca2d1d420e /testfiles/src/dir-util-test.cpp
parent[Bug #1574561] Italian translation updates for 0.92.x. (diff)
downloadinkscape-2f6f66fc8e4c21d0bd9f3d8dc15197fb945727c0.tar.gz
inkscape-2f6f66fc8e4c21d0bd9f3d8dc15197fb945727c0.zip
Rename test->testfiles folder to avoid naming conflict
(bzr r14967.1.1)
Diffstat (limited to 'testfiles/src/dir-util-test.cpp')
-rw-r--r--testfiles/src/dir-util-test.cpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/testfiles/src/dir-util-test.cpp b/testfiles/src/dir-util-test.cpp
new file mode 100644
index 000000000..32b3fce74
--- /dev/null
+++ b/testfiles/src/dir-util-test.cpp
@@ -0,0 +1,63 @@
+/*
+ * Unit tests for dir utils.
+ *
+ * Author:
+ * Jon A. Cruz <jon@joncruz.org>
+ *
+ * Copyright (C) 2015 Authors
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#include "gtest/gtest.h"
+
+#include <glib.h>
+
+#include "dir-util.h"
+
+namespace {
+
+
+TEST(DirUtilTest, Base)
+{
+ char const* cases[][3] = {
+#if defined(WIN32) || defined(__WIN32__)
+ {"\\foo\\bar", "\\foo", "bar"},
+ {"\\foo\\barney", "\\foo\\bar", "\\foo\\barney"},
+ {"\\foo\\bar\\baz", "\\foo\\", "bar\\baz"},
+ {"\\foo\\bar\\baz", "\\", "foo\\bar\\baz"},
+ {"\\foo\\bar\\baz", "\\foo\\qux", "\\foo\\bar\\baz"},
+#else
+ {"/foo/bar", "/foo", "bar"},
+ {"/foo/barney", "/foo/bar", "/foo/barney"},
+ {"/foo/bar/baz", "/foo/", "bar/baz"},
+ {"/foo/bar/baz", "/", "foo/bar/baz"},
+ {"/foo/bar/baz", "/foo/qux", "/foo/bar/baz"},
+#endif
+ };
+
+ for ( size_t i = 0; i < G_N_ELEMENTS(cases); i++ )
+ {
+ if ( cases[i][0] && cases[i][1] ) { // std::string can't use null.
+ std::string result = sp_relative_path_from_path( cases[i][0], cases[i][1] );
+ ASSERT_FALSE( result.empty() );
+ if ( !result.empty() )
+ {
+ ASSERT_EQ( std::string(cases[i][2]), result );
+ }
+ }
+ }
+}
+
+} // namespace
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :