#include #include #include TEST(path_simplify) { #define TEST_WRAPPER(argument, result) do { \ int len = path_simplify(argument, buf, sizeof(argument) - 1); \ if (result == 0) { \ TEST_COND(len < 0); \ } else { \ if (len == sizeof(result) - 1) { \ TEST_COND(0 == memcmp(result, buf, len)); \ } else { \ TEST_COND(false); \ } \ } \ } while (0) char buf[256]; // some easy cases first TEST_WRAPPER("/", "/"); TEST_WRAPPER("/.", "/"); TEST_WRAPPER("//", "/"); TEST_WRAPPER("/asdf", "/asdf"); TEST_WRAPPER("/asdf/", "/asdf/"); TEST_WRAPPER("/asdf//", "/asdf/"); TEST_WRAPPER("/asdf/./", "/asdf/"); TEST_WRAPPER("/a/./b", "/a/b"); TEST_WRAPPER("/a/./b/", "/a/b/"); // some slightly less easy cases TEST_WRAPPER("/asdf/..", "/"); TEST_WRAPPER("/asdf/../", "/"); TEST_WRAPPER("/asdf/.", "/asdf/"); TEST_WRAPPER("/asdf//.", "/asdf/"); // going under the root or close to it TEST_WRAPPER("/..", 0); TEST_WRAPPER("/../asdf", 0); TEST_WRAPPER("/../asdf/", 0); TEST_WRAPPER("/./a/../..", 0); TEST_WRAPPER("/a/a/../..", "/"); TEST_WRAPPER("/a/../a/..", "/"); TEST_WRAPPER("/a/../../a", 0); TEST_WRAPPER("/../a/../a", 0); TEST_WRAPPER("/../../a/a", 0); TEST_WRAPPER("/////../..", 0); TEST_WRAPPER("//a//../..", 0); // relative paths aren't allowed TEST_WRAPPER("relative", 0); TEST_WRAPPER("some/stuff", 0); TEST_WRAPPER("./stuff", 0); TEST_WRAPPER("../stuff", 0); TEST_WRAPPER("", 0); #undef TEST_WRAPPER } void tests_vfs() { TEST_RUN(path_simplify); }