Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/cycles/test/util_path_test.cpp')
-rw-r--r--intern/cycles/test/util_path_test.cpp401
1 files changed, 401 insertions, 0 deletions
diff --git a/intern/cycles/test/util_path_test.cpp b/intern/cycles/test/util_path_test.cpp
new file mode 100644
index 00000000000..92be1dd4cbe
--- /dev/null
+++ b/intern/cycles/test/util_path_test.cpp
@@ -0,0 +1,401 @@
+/*
+ * Copyright 2011-2016 Blender Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "testing/testing.h"
+
+#include "util/util_path.h"
+
+CCL_NAMESPACE_BEGIN
+
+/* ******** Tests for path_filename() ******** */
+
+#ifndef _WIN32
+TEST(util_path_filename, simple_unix)
+{
+ string str = path_filename("/tmp/foo.txt");
+ EXPECT_EQ("foo.txt", str);
+}
+
+TEST(util_path_filename, root_unix)
+{
+ string str = path_filename("/");
+ EXPECT_EQ("/", str);
+}
+
+TEST(util_path_filename, last_slash_unix)
+{
+ string str = path_filename("/tmp/foo.txt/");
+ EXPECT_EQ(".", str);
+}
+
+TEST(util_path_filename, alternate_slash_unix)
+{
+ string str = path_filename("/tmp\\foo.txt");
+ EXPECT_EQ("tmp\\foo.txt", str);
+}
+#endif /* !_WIN32 */
+
+TEST(util_path_filename, file_only)
+{
+ string str = path_filename("foo.txt");
+ EXPECT_EQ("foo.txt", str);
+}
+
+TEST(util_path_filename, empty)
+{
+ string str = path_filename("");
+ EXPECT_EQ("", str);
+}
+
+#ifdef _WIN32
+TEST(util_path_filename, simple_windows)
+{
+ string str = path_filename("C:\\tmp\\foo.txt");
+ EXPECT_EQ("foo.txt", str);
+}
+
+TEST(util_path_filename, root_windows)
+{
+ string str = path_filename("C:\\");
+ EXPECT_EQ("\\", str);
+}
+
+TEST(util_path_filename, last_slash_windows)
+{
+ string str = path_filename("C:\\tmp\\foo.txt\\");
+ EXPECT_EQ(".", str);
+}
+
+TEST(util_path_filename, alternate_slash_windows)
+{
+ string str = path_filename("C:\\tmp/foo.txt");
+ EXPECT_EQ("foo.txt", str);
+}
+#endif /* _WIN32 */
+
+/* ******** Tests for path_dirname() ******** */
+
+#ifndef _WIN32
+TEST(util_path_dirname, simple_unix)
+{
+ string str = path_dirname("/tmp/foo.txt");
+ EXPECT_EQ("/tmp", str);
+}
+
+TEST(util_path_dirname, root_unix)
+{
+ string str = path_dirname("/");
+ EXPECT_EQ("", str);
+}
+
+TEST(util_path_dirname, last_slash_unix)
+{
+ string str = path_dirname("/tmp/foo.txt/");
+ EXPECT_EQ("/tmp/foo.txt", str);
+}
+
+TEST(util_path_dirname, alternate_slash_unix)
+{
+ string str = path_dirname("/tmp\\foo.txt");
+ EXPECT_EQ("/", str);
+}
+#endif /* !_WIN32 */
+
+TEST(util_path_dirname, file_only)
+{
+ string str = path_dirname("foo.txt");
+ EXPECT_EQ("", str);
+}
+
+TEST(util_path_dirname, empty)
+{
+ string str = path_dirname("");
+ EXPECT_EQ("", str);
+}
+
+#ifdef _WIN32
+TEST(util_path_dirname, simple_windows)
+{
+ string str = path_dirname("C:\\tmp\\foo.txt");
+ EXPECT_EQ("C:\\tmp", str);
+}
+
+TEST(util_path_dirname, root_windows)
+{
+ string str = path_dirname("C:\\");
+ EXPECT_EQ("C:", str);
+}
+
+TEST(util_path_dirname, last_slash_windows)
+{
+ string str = path_dirname("C:\\tmp\\foo.txt\\");
+ EXPECT_EQ("C:\\tmp\\foo.txt", str);
+}
+
+TEST(util_path_dirname, alternate_slash_windows)
+{
+ string str = path_dirname("C:\\tmp/foo.txt");
+ EXPECT_EQ("C:\\tmp", str);
+}
+#endif /* _WIN32 */
+
+/* ******** Tests for path_join() ******** */
+
+TEST(util_path_join, empty_both)
+{
+ string str = path_join("", "");
+ EXPECT_EQ("", str);
+}
+
+TEST(util_path_join, empty_directory)
+{
+ string str = path_join("", "foo.txt");
+ EXPECT_EQ("foo.txt", str);
+}
+
+TEST(util_path_join, empty_filename)
+{
+ string str = path_join("foo", "");
+ EXPECT_EQ("foo", str);
+}
+
+#ifndef _WIN32
+TEST(util_path_join, simple_unix)
+{
+ string str = path_join("foo", "bar");
+ EXPECT_EQ("foo/bar", str);
+}
+
+TEST(util_path_join, directory_slash_unix)
+{
+ string str = path_join("foo/", "bar");
+ EXPECT_EQ("foo/bar", str);
+}
+
+TEST(util_path_join, filename_slash_unix)
+{
+ string str = path_join("foo", "/bar");
+ EXPECT_EQ("foo/bar", str);
+}
+
+TEST(util_path_join, both_slash_unix)
+{
+ string str = path_join("foo/", "/bar");
+ EXPECT_EQ("foo//bar", str);
+}
+
+TEST(util_path_join, directory_alternate_slash_unix)
+{
+ string str = path_join("foo\\", "bar");
+ EXPECT_EQ("foo\\/bar", str);
+}
+
+TEST(util_path_join, filename_alternate_slash_unix)
+{
+ string str = path_join("foo", "\\bar");
+ EXPECT_EQ("foo/\\bar", str);
+}
+
+TEST(util_path_join, both_alternate_slash_unix)
+{
+ string str = path_join("foo", "\\bar");
+ EXPECT_EQ("foo/\\bar", str);
+}
+
+TEST(util_path_join, empty_dir_filename_slash_unix)
+{
+ string str = path_join("", "/foo.txt");
+ EXPECT_EQ("/foo.txt", str);
+}
+
+TEST(util_path_join, empty_dir_filename_alternate_slash_unix)
+{
+ string str = path_join("", "\\foo.txt");
+ EXPECT_EQ("\\foo.txt", str);
+}
+
+TEST(util_path_join, empty_filename_dir_slash_unix)
+{
+ string str = path_join("foo/", "");
+ EXPECT_EQ("foo/", str);
+}
+
+TEST(util_path_join, empty_filename_dir_alternate_slash_unix)
+{
+ string str = path_join("foo\\", "");
+ EXPECT_EQ("foo\\", str);
+}
+#else /* !_WIN32 */
+TEST(util_path_join, simple_windows)
+{
+ string str = path_join("foo", "bar");
+ EXPECT_EQ("foo\\bar", str);
+}
+
+TEST(util_path_join, directory_slash_windows)
+{
+ string str = path_join("foo\\", "bar");
+ EXPECT_EQ("foo\\bar", str);
+}
+
+TEST(util_path_join, filename_slash_windows)
+{
+ string str = path_join("foo", "\\bar");
+ EXPECT_EQ("foo\\bar", str);
+}
+
+TEST(util_path_join, both_slash_windows)
+{
+ string str = path_join("foo\\", "\\bar");
+ EXPECT_EQ("foo\\\\bar", str);
+}
+
+TEST(util_path_join, directory_alternate_slash_windows)
+{
+ string str = path_join("foo/", "bar");
+ EXPECT_EQ("foo/bar", str);
+}
+
+TEST(util_path_join, filename_alternate_slash_windows)
+{
+ string str = path_join("foo", "/bar");
+ EXPECT_EQ("foo/bar", str);
+}
+
+TEST(util_path_join, both_alternate_slash_windows)
+{
+ string str = path_join("foo/", "/bar");
+ EXPECT_EQ("foo//bar", str);
+}
+
+TEST(util_path_join, empty_dir_filename_slash_windows)
+{
+ string str = path_join("", "\\foo.txt");
+ EXPECT_EQ("\\foo.txt", str);
+}
+
+TEST(util_path_join, empty_dir_filename_alternate_slash_windows)
+{
+ string str = path_join("", "/foo.txt");
+ EXPECT_EQ("/foo.txt", str);
+}
+
+TEST(util_path_join, empty_filename_dir_slash_windows)
+{
+ string str = path_join("foo\\", "");
+ EXPECT_EQ("foo\\", str);
+}
+
+TEST(util_path_join, empty_filename_dir_alternate_slash_windows)
+{
+ string str = path_join("foo/", "");
+ EXPECT_EQ("foo/", str);
+}
+#endif /* !_WIN32 */
+
+/* ******** Tests for path_escape() ******** */
+
+TEST(util_path_escape, no_escape_chars)
+{
+ string str = path_escape("/tmp/foo/bar");
+ EXPECT_EQ("/tmp/foo/bar", str);
+}
+
+TEST(util_path_escape, simple)
+{
+ string str = path_escape("/tmp/foo bar");
+ EXPECT_EQ("/tmp/foo\\ bar", str);
+}
+
+TEST(util_path_escape, simple_end)
+{
+ string str = path_escape("/tmp/foo/bar ");
+ EXPECT_EQ("/tmp/foo/bar\\ ", str);
+}
+
+TEST(util_path_escape, multiple)
+{
+ string str = path_escape("/tmp/foo bar");
+ EXPECT_EQ("/tmp/foo\\ \\ bar", str);
+}
+
+TEST(util_path_escape, simple_multiple_end)
+{
+ string str = path_escape("/tmp/foo/bar ");
+ EXPECT_EQ("/tmp/foo/bar\\ \\ ", str);
+}
+
+/* ******** Tests for path_is_relative() ******** */
+
+TEST(util_path_is_relative, filename)
+{
+ bool is_relative = path_is_relative("foo.txt");
+ EXPECT_TRUE(is_relative);
+}
+
+#ifndef _WIN32
+TEST(util_path_is_relative, absolute_unix)
+{
+ bool is_relative = path_is_relative("/tmp/foo.txt");
+ EXPECT_FALSE(is_relative);
+}
+
+TEST(util_path_is_relative, relative_dir_unix)
+{
+ bool is_relative = path_is_relative("tmp/foo.txt");
+ EXPECT_TRUE(is_relative);
+}
+
+TEST(util_path_is_relative, absolute_windir_on_unix)
+{
+ bool is_relative = path_is_relative("C:\\tmp\\foo.txt");
+ EXPECT_TRUE(is_relative);
+}
+
+TEST(util_path_is_relative, relative_windir_on_unix)
+{
+ bool is_relative = path_is_relative("tmp\\foo.txt");
+ EXPECT_TRUE(is_relative);
+}
+#endif /* !_WIN32 */
+
+#ifdef _WIN32
+TEST(util_path_is_relative, absolute_windows)
+{
+ bool is_relative = path_is_relative("C:\\tmp\\foo.txt");
+ EXPECT_FALSE(is_relative);
+}
+
+TEST(util_path_is_relative, relative_dir_windows)
+{
+ bool is_relative = path_is_relative("tmp\\foo.txt");
+ EXPECT_TRUE(is_relative);
+}
+
+TEST(util_path_is_relative, absolute_unixdir_on_windows)
+{
+ bool is_relative = path_is_relative("/tmp/foo.txt");
+ EXPECT_TRUE(is_relative);
+}
+
+TEST(util_path_is_relative, relative_unixdir_on_windows)
+{
+ bool is_relative = path_is_relative("tmp/foo.txt");
+ EXPECT_TRUE(is_relative);
+}
+#endif /* _WIN32 */
+
+CCL_NAMESPACE_END