‰PNG  IHDR @ @ ªiqÞ pHYs   šœ —tEXtComment #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace Passenger; using namespace std; namespace tut { struct UtilsTest: public TestBase { vector output; string cwd; string oldPath; TempDir tempDir; UtilsTest(): tempDir("tmp.dir") { char buffer[PATH_MAX]; cwd = getcwd(buffer, sizeof(buffer)); oldPath = getenv("PATH"); unsetenv("TMPDIR"); } ~UtilsTest() { setenv("PATH", oldPath.c_str(), 1); unsetenv("TMPDIR"); chdir(cwd.c_str()); } void testMakeDirTreeMode(const char *name, const char *mode, mode_t expected) { TempDir td("tmp.dir2"); struct stat buf; mode_t allModes = S_IRWXU | S_ISUID | S_IRWXG | S_ISGID | S_IRWXO; makeDirTree("tmp.dir2/foo", mode); stat("tmp.dir2/foo", &buf); ensure_equals(name, buf.st_mode & allModes, expected); } }; DEFINE_TEST_GROUP_WITH_LIMIT(UtilsTest, 100); /***** Test split() *****/ TEST_METHOD(1) { split("", ':', output); ensure_equals(output.size(), 0u); splitIncludeSep("", ':', output); ensure_equals(output.size(), 0u); } TEST_METHOD(2) { split("hello world", ':', output); ensure_equals(output.size(), 1u); ensure_equals(output[0], "hello world"); splitIncludeSep("hello world", ':', output); ensure_equals(output.size(), 1u); ensure_equals(output[0], "hello world"); } TEST_METHOD(3) { split("hello world:foo bar", ':', output); ensure_equals(output.size(), 2u); ensure_equals(output[0], "hello world"); ensure_equals(output[1], "foo bar"); splitIncludeSep("hello world:foo bar", ':', output); ensure_equals(output.size(), 2u); ensure_equals(output[0], "hello world:"); ensure_equals(output[1], "foo bar"); } TEST_METHOD(4) { split("hello world:", ':', output); ensure_equals("(1)", output.size(), 2u); ensure_equals("(2)", output[0], "hello world"); ensure_equals("(3)", output[1], ""); splitIncludeSep("hello world:", ':', output); ensure_equals("(4)", output.size(), 1u); ensure_equals("(5)", output[0], "hello world:"); } TEST_METHOD(5) { split(":hello world", ':', output); ensure_equals(output.size(), 2u); ensure_equals(output[0], ""); ensure_equals(output[1], "hello world"); splitIncludeSep(":hello world", ':', output); ensure_equals(output.size(), 2u); ensure_equals(output[0], ":"); ensure_equals(output[1], "hello world"); } TEST_METHOD(6) { split("abc:def::ghi", ':', output); ensure_equals(output.size(), 4u); ensure_equals(output[0], "abc"); ensure_equals(output[1], "def"); ensure_equals(output[2], ""); ensure_equals(output[3], "ghi"); splitIncludeSep("abc:def::ghi", ':', output); ensure_equals(output.size(), 4u); ensure_equals(output[0], "abc:"); ensure_equals(output[1], "def:"); ensure_equals(output[2], ":"); ensure_equals(output[3], "ghi"); } TEST_METHOD(7) { split("abc:::def", ':', output); ensure_equals(output.size(), 4u); ensure_equals(output[0], "abc"); ensure_equals(output[1], ""); ensure_equals(output[2], ""); ensure_equals(output[3], "def"); splitIncludeSep("abc:::def", ':', output); ensure_equals(output.size(), 4u); ensure_equals(output[0], "abc:"); ensure_equals(output[1], ":"); ensure_equals(output[2], ":"); ensure_equals(output[3], "def"); } /***** Test getSystemTempDir() *****/ TEST_METHOD(11) { // It returns "/tmp" if the TMPDIR environment is NULL. ensure_equals(string(getSystemTempDir()), "/tmp"); } TEST_METHOD(12) { // It returns "/tmp" if the TMPDIR environment is an empty string. setenv("TMPDIR", "", 1); ensure_equals(string(getSystemTempDir()), "/tmp"); } TEST_METHOD(13) { // It returns the value of the TMPDIR environment if it is not NULL and not empty. setenv("TMPDIR", "/foo", 1); ensure_equals(string(getSystemTempDir()), "/foo"); } /***** Test escapeForXml() *****/ TEST_METHOD(25) { ensure_equals(escapeForXml(""), ""); ensure_equals(escapeForXml("hello world"), "hello world"); ensure_equals(escapeForXml("./hello_world/foo.txt"), "./hello_world/foo.txt"); ensure_equals(escapeForXml("hello(0x0, buf), 1u); ensure("(1)", strcmp(buf, "0") == 0); ensure_equals("(2)", integerToHex(0x1, buf), 1u); ensure("(2)", strcmp(buf, "1") == 0); ensure_equals("(3)", integerToHex(0x9, buf), 1u); ensure("(3)", strcmp(buf, "9") == 0); ensure_equals("(4)", integerToHex(0xe, buf), 1u); ensure("(4)", strcmp(buf, "e") == 0); ensure_equals("(5)", integerToHex(0xdeadbeef, buf), 8u); ensure("(5)", strcmp(buf, "deadbeef") == 0); ensure_equals("(6)", integerToHex(0x1234f, buf), 5u); ensure("(6)", strcmp(buf, "1234f") == 0); ensure_equals("(7)", integerToHexatri(0x0, buf), 1u); ensure("(7)", strcmp(buf, "0") == 0); ensure_equals("(8)", integerToHexatri(0x1, buf), 1u); ensure("(8)", strcmp(buf, "1") == 0); ensure_equals("(9)", integerToHexatri(0x9, buf), 1u); ensure("(9)", strcmp(buf, "9") == 0); ensure_equals("(10)", integerToHexatri(0xe, buf), 1u); ensure("(10)", strcmp(buf, "e") == 0); ensure_equals("(11)", integerToHexatri(35, buf), 1u); ensure("(11)", strcmp(buf, "z") == 0); ensure_equals(integerToHexatri(0xdeadbeef, buf), 7u); ensure(strcmp(buf, "1ps9wxb") == 0); ensure_equals(integerToHexatri(0x1234f, buf), 4u); ensure(strcmp(buf, "1ljj") == 0); } /***** Test hexToULL(), hexToUint() and hexatriToULL() *****/ TEST_METHOD(49) { ensure_equals(hexToULL(""), 0ull); ensure_equals(hexToULL(" "), 0ull); ensure_equals(hexToULL("1"), 1ull); ensure_equals(hexToULL("9"), 9ull); ensure_equals(hexToULL("a"), 10ull); ensure_equals(hexToULL("B"), 11ull); ensure_equals(hexToULL("1234"), 4660ull); ensure_equals(hexToULL("1a6b"), 6763ull); ensure_equals(hexToULL("1A6B"), 6763ull); ensure_equals(hexToULL("1a6B"), 6763ull); ensure_equals(hexToULL("deadbeef"), 3735928559ull); ensure_equals(hexToULL("dEaDbEeF"), 3735928559ull); ensure_equals(hexToULL("09a2s89"), 2466ull); ensure_equals(hexToULL(" 9a2s89"), 0ull); ensure_equals(hexToUint(""), 0u); ensure_equals(hexToUint(" "), 0u); ensure_equals(hexToUint("1"), 1u); ensure_equals(hexToUint("9"), 9u); ensure_equals(hexToUint("a"), 10u); ensure_equals(hexToUint("B"), 11u); ensure_equals(hexToUint("1234"), 4660u); ensure_equals(hexToUint("1a6b"), 6763u); ensure_equals(hexToUint("1A6B"), 6763u); ensure_equals(hexToUint("1a6B"), 6763u); ensure_equals(hexToUint("deadbeef"), 3735928559u); ensure_equals(hexToUint("dEaDbEeF"), 3735928559u); ensure_equals(hexToUint("09a2s89"), 2466u); ensure_equals(hexToUint(" 9a2s89"), 0u); ensure_equals(hexatriToULL(""), 0ull); ensure_equals(hexatriToULL(" "), 0ull); ensure_equals(hexatriToULL("1"), 1ull); ensure_equals(hexatriToULL("9"), 9ull); ensure_equals(hexatriToULL("a"), 10ull); ensure_equals(hexatriToULL("B"), 11ull); ensure_equals(hexatriToULL("1234"), 49360ull); ensure_equals(hexatriToULL("1a6z"), 59867ull); ensure_equals(hexatriToULL("1A6Z"), 59867ull); ensure_equals(hexatriToULL("1a6Z"), 59867ull); ensure_equals(hexatriToULL("deadroof"), 1049836874415ull); ensure_equals(hexatriToULL("dEaDrOoF"), 1049836874415ull); ensure_equals(hexatriToULL("09a2s89"), 561121641ull); ensure_equals(hexatriToULL(" 9a2s89"), 0ull); } /***** Test stringToLL(), stringToInt() *****/ TEST_METHOD(50) { ensure_equals(stringToLL(""), 0ll); ensure_equals(stringToLL("bla"), 0ll); ensure_equals(stringToLL("0"), 0ll); ensure_equals(stringToLL("000"), 0ll); ensure_equals(stringToLL("1"), 1ll); ensure_equals(stringToLL("9"), 9ll); ensure_equals(stringToLL("010"), 10ll); ensure_equals(stringToLL("928"), 928ll); ensure_equals(stringToLL("2937104"), 2937104ll); ensure_equals(stringToLL("9223372036854775807"), 9223372036854775807ll); ensure_equals(stringToLL(" 5abcdef1234"), 5ll); ensure_equals(stringToLL("-0"), 0ll); ensure_equals(stringToLL("-1"), -1ll); ensure_equals(stringToLL("-010"), -10ll); ensure_equals(stringToLL("-9876"), -9876ll); ensure_equals(stringToLL("-9223372036854775807"), -9223372036854775807ll); ensure_equals(stringToLL(" -5abcdef1234"), -5ll); ensure_equals(stringToInt(""), 0); ensure_equals(stringToInt("bla"), 0); ensure_equals(stringToInt("0"), 0); ensure_equals(stringToInt("000"), 0); ensure_equals(stringToInt("1"), 1); ensure_equals(stringToInt("9"), 9); ensure_equals(stringToInt("010"), 10); ensure_equals(stringToInt("928"), 928); ensure_equals(stringToInt("2937104"), 2937104); ensure_equals(stringToInt(" 5abcdef1234"), 5); ensure_equals(stringToInt("-0"), 0ll); ensure_equals(stringToInt("-1"), -1ll); ensure_equals(stringToInt("-010"), -10ll); ensure_equals(stringToInt("-9876"), -9876); ensure_equals(stringToInt(" -5abcdef1234"), -5); } /***** Test cEscapeString() *****/ TEST_METHOD(51) { ensure_equals(cEscapeString(""), ""); ensure_equals(cEscapeString("abcdXYZ123!?"), "abcdXYZ123!?"); ensure_equals(cEscapeString("foo\n"), "foo\\n"); ensure_equals(cEscapeString("foo\r\nbar\e"), "foo\\r\\nbar\\e"); ensure_equals(cEscapeString(StaticString("\0\x1\x2\x3\x4\x5\x6\x7\x8\x9", 10)), "\\000\\001\\002\\003\\004\\005\\006\\007\\010\\t"); ensure_equals(cEscapeString("\xFF\xFE\t\xD0"), "\\377\\376\\t\\320"); } /***** Test escapeHTML() *****/ TEST_METHOD(52) { const char weird[] = "Weird \x01\x00 characters?"; ensure_equals(escapeHTML(""), ""); ensure_equals(escapeHTML("hello\n\r\t WORLD!"), "hello\n\r\t WORLD!"); ensure_equals(escapeHTML("bold"), "<b>bold</b>"); ensure_equals(escapeHTML(StaticString(weird, sizeof(weird) - 1)), "Weird � characters?"); ensure_equals(escapeHTML("UTF-8: ☃ ☀; ☁ ☂\x01"), "UTF-8: ☃ ☀; ☁ ☂"); } /***** Test absolutizePath() *****/ TEST_METHOD(53) { ensure_equals(absolutizePath(""), cwd); ensure_equals(absolutizePath("."), cwd); ensure_equals(absolutizePath("foo"), cwd + "/foo"); ensure_equals(absolutizePath("foo/bar"), cwd + "/foo/bar"); ensure_equals(absolutizePath("foo//bar"), cwd + "/foo/bar"); ensure_equals(absolutizePath("foo/bar///baz"), cwd + "/foo/bar/baz"); ensure_equals(absolutizePath("foo/./bar"), cwd + "/foo/bar"); ensure_equals(absolutizePath("foo/bar/../baz"), cwd + "/foo/baz"); ensure_equals(absolutizePath("foo/bar/../.."), cwd); ensure_equals(absolutizePath("foo/.././bar"), cwd + "/bar"); ensure_equals(absolutizePath("foo/../bar/./baz"), cwd + "/bar/baz"); ensure_equals(absolutizePath("foo/"), cwd + "/foo"); ensure_equals(absolutizePath("foo//"), cwd + "/foo"); ensure_equals(absolutizePath("/"), "/"); ensure_equals(absolutizePath("////"), "/"); ensure_equals(absolutizePath("/."), "/"); ensure_equals(absolutizePath("/foo"), "/foo"); ensure_equals(absolutizePath("/foo/bar"), "/foo/bar"); ensure_equals(absolutizePath("/foo//bar"), "/foo/bar"); ensure_equals(absolutizePath("/foo/bar///baz"), "/foo/bar/baz"); ensure_equals(absolutizePath("/foo/./bar"), "/foo/bar"); ensure_equals(absolutizePath("/foo/bar/../baz"), "/foo/baz"); ensure_equals(absolutizePath("/foo/bar/../.."), "/"); ensure_equals(absolutizePath("/foo/.././bar"), "/bar"); ensure_equals(absolutizePath("/foo/../bar/./baz"), "/bar/baz"); ensure_equals(absolutizePath("/foo/"), "/foo"); ensure_equals(absolutizePath("/foo//"), "/foo"); ensure_equals(absolutizePath("//foo/bar"), "/foo/bar"); ensure_equals(absolutizePath("///foo//bar"), "/foo/bar"); ensure_equals(absolutizePath("/../.."), "/"); ensure_equals(absolutizePath("/../.././foo"), "/foo"); chdir("/usr/lib"); ensure_equals(absolutizePath(".."), "/usr"); ensure_equals(absolutizePath("."), "/usr/lib"); ensure_equals(absolutizePath("../.."), "/"); ensure_equals(absolutizePath("../../foo"), "/foo"); ensure_equals(absolutizePath("../.././foo/bar"), "/foo/bar"); ensure_equals(absolutizePath("..", "/usr/local/bin"), "/usr/local"); ensure_equals(absolutizePath(".", "/usr/local/bin"), "/usr/local/bin"); ensure_equals(absolutizePath("../..", "/usr/local/bin"), "/usr"); ensure_equals(absolutizePath("../../foo", "/usr/local/bin"), "/usr/foo"); ensure_equals(absolutizePath("../.././foo/bar", "/usr/local/bin"), "/usr/foo/bar"); } /***** Test constantTimeCompare() *****/ TEST_METHOD(54) { ensure("(1)", constantTimeCompare("", "")); ensure("(2)", constantTimeCompare("a", "a")); ensure("(3)", constantTimeCompare("aa", "aa")); ensure("(4)", constantTimeCompare("abc", "abc")); ensure("(5)", !constantTimeCompare("", "a")); ensure("(6)", !constantTimeCompare("", "abcd")); ensure("(7)", !constantTimeCompare("ab", "cd")); ensure("(8)", !constantTimeCompare("ab", "abc")); ensure("(9)", !constantTimeCompare("ab", "abcd")); ensure("(10)", !constantTimeCompare("a", "")); ensure("(11)", !constantTimeCompare("abcd", "")); ensure("(12)", !constantTimeCompare("cd", "ab")); ensure("(13)", !constantTimeCompare("abc", "ab")); ensure("(14)", !constantTimeCompare("abcd", "ab")); } /***** Test integerToOtherBase() *****/ TEST_METHOD(56) { char buf[20], smallbuf[4]; ensure_equals("(1)", integerToOtherBase(0, buf, sizeof(buf)), 1u); ensure_equals("(1.1)", buf[0], '0'); ensure_equals("(1.2)", buf[1], '\0'); ensure_equals("(2)", integerToOtherBase(1234, buf, sizeof(buf)), 4u); ensure_equals("(2.1)", buf[0], '1'); ensure_equals("(2.2)", buf[1], '2'); ensure_equals("(2.3)", buf[2], '3'); ensure_equals("(2.4)", buf[3], '4'); ensure_equals("(2.5)", buf[4], '\0'); ensure_equals("(3)", integerToOtherBase(123, smallbuf, sizeof(smallbuf)), 3u); ensure_equals("(3.1)", smallbuf[0], '1'); ensure_equals("(3.2)", smallbuf[1], '2'); ensure_equals("(3.3)", smallbuf[2], '3'); ensure_equals("(3.4)", smallbuf[3], '\0'); try { integerToOtherBase(1234, smallbuf, sizeof(smallbuf)); fail("Exception expected"); } catch (const std::length_error &) { // Pass. } } }