forked from lix-project/lix
Use ASSERT_EQ instead of ASSERT_STREQ
No need to use `c_str()` in combination with `ASSERT_STREQ`. It's possible to just use ASSERT_EQ on std::string
This commit is contained in:
parent
58ed1e6d68
commit
987b3d6469
|
@ -12,14 +12,14 @@ namespace nix {
|
||||||
TEST(absPath, doesntChangeRoot) {
|
TEST(absPath, doesntChangeRoot) {
|
||||||
auto p = absPath("/");
|
auto p = absPath("/");
|
||||||
|
|
||||||
ASSERT_STREQ(p.c_str(), "/");
|
ASSERT_EQ(p, "/");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(absPath, turnsEmptyPathIntoCWD) {
|
TEST(absPath, turnsEmptyPathIntoCWD) {
|
||||||
char cwd[PATH_MAX+1];
|
char cwd[PATH_MAX+1];
|
||||||
auto p = absPath("");
|
auto p = absPath("");
|
||||||
|
|
||||||
ASSERT_STREQ(p.c_str(), getcwd((char*)&cwd, PATH_MAX));
|
ASSERT_EQ(p, getcwd((char*)&cwd, PATH_MAX));
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(absPath, usesOptionalBasePathWhenGiven) {
|
TEST(absPath, usesOptionalBasePathWhenGiven) {
|
||||||
|
@ -28,7 +28,7 @@ namespace nix {
|
||||||
|
|
||||||
auto p = absPath("", cwd);
|
auto p = absPath("", cwd);
|
||||||
|
|
||||||
ASSERT_STREQ(p.c_str(), cwd);
|
ASSERT_EQ(p, cwd);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(absPath, isIdempotent) {
|
TEST(absPath, isIdempotent) {
|
||||||
|
@ -37,7 +37,7 @@ namespace nix {
|
||||||
auto p1 = absPath(cwd);
|
auto p1 = absPath(cwd);
|
||||||
auto p2 = absPath(p1);
|
auto p2 = absPath(p1);
|
||||||
|
|
||||||
ASSERT_STREQ(p1.c_str(), p2.c_str());
|
ASSERT_EQ(p1, p2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -46,8 +46,8 @@ namespace nix {
|
||||||
auto p1 = absPath(path);
|
auto p1 = absPath(path);
|
||||||
auto p2 = absPath(p1);
|
auto p2 = absPath(p1);
|
||||||
|
|
||||||
ASSERT_STREQ(p1.c_str(), "/some/path/with/trailing/dot");
|
ASSERT_EQ(p1, "/some/path/with/trailing/dot");
|
||||||
ASSERT_STREQ(p1.c_str(), p2.c_str());
|
ASSERT_EQ(p1, p2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------
|
/* ----------------------------------------------------------------------------
|
||||||
|
@ -58,21 +58,21 @@ namespace nix {
|
||||||
auto path = "/this/is/a/path//";
|
auto path = "/this/is/a/path//";
|
||||||
auto p = canonPath(path);
|
auto p = canonPath(path);
|
||||||
|
|
||||||
ASSERT_STREQ(p.c_str(), "/this/is/a/path");
|
ASSERT_EQ(p, "/this/is/a/path");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(canonPath, removesDots) {
|
TEST(canonPath, removesDots) {
|
||||||
auto path = "/this/./is/a/path/./";
|
auto path = "/this/./is/a/path/./";
|
||||||
auto p = canonPath(path);
|
auto p = canonPath(path);
|
||||||
|
|
||||||
ASSERT_STREQ(p.c_str(), "/this/is/a/path");
|
ASSERT_EQ(p, "/this/is/a/path");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(canonPath, removesDots2) {
|
TEST(canonPath, removesDots2) {
|
||||||
auto path = "/this/a/../is/a////path/foo/..";
|
auto path = "/this/a/../is/a////path/foo/..";
|
||||||
auto p = canonPath(path);
|
auto p = canonPath(path);
|
||||||
|
|
||||||
ASSERT_STREQ(p.c_str(), "/this/is/a/path");
|
ASSERT_EQ(p, "/this/is/a/path");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(canonPath, requiresAbsolutePath) {
|
TEST(canonPath, requiresAbsolutePath) {
|
||||||
|
@ -91,18 +91,18 @@ namespace nix {
|
||||||
TEST(dirOf, DISABLED_returnsEmptyStringForRoot) {
|
TEST(dirOf, DISABLED_returnsEmptyStringForRoot) {
|
||||||
auto p = dirOf("/");
|
auto p = dirOf("/");
|
||||||
|
|
||||||
ASSERT_STREQ(p.c_str(), "");
|
ASSERT_EQ(p, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(dirOf, returnsFirstPathComponent) {
|
TEST(dirOf, returnsFirstPathComponent) {
|
||||||
auto p1 = dirOf("/dir/");
|
auto p1 = dirOf("/dir/");
|
||||||
ASSERT_STREQ(p1.c_str(), "/dir");
|
ASSERT_EQ(p1, "/dir");
|
||||||
auto p2 = dirOf("/dir");
|
auto p2 = dirOf("/dir");
|
||||||
ASSERT_STREQ(p2.c_str(), "/");
|
ASSERT_EQ(p2, "/");
|
||||||
auto p3 = dirOf("/dir/..");
|
auto p3 = dirOf("/dir/..");
|
||||||
ASSERT_STREQ(p3.c_str(), "/dir");
|
ASSERT_EQ(p3, "/dir");
|
||||||
auto p4 = dirOf("/dir/../");
|
auto p4 = dirOf("/dir/../");
|
||||||
ASSERT_STREQ(p4.c_str(), "/dir/..");
|
ASSERT_EQ(p4, "/dir/..");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------
|
/* ----------------------------------------------------------------------------
|
||||||
|
@ -111,29 +111,29 @@ namespace nix {
|
||||||
|
|
||||||
TEST(baseNameOf, emptyPath) {
|
TEST(baseNameOf, emptyPath) {
|
||||||
auto p1 = baseNameOf("");
|
auto p1 = baseNameOf("");
|
||||||
ASSERT_STREQ(std::string(p1).c_str(), "");
|
ASSERT_EQ(std::string(p1), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(baseNameOf, pathOnRoot) {
|
TEST(baseNameOf, pathOnRoot) {
|
||||||
auto p1 = baseNameOf("/dir");
|
auto p1 = baseNameOf("/dir");
|
||||||
ASSERT_STREQ(std::string(p1).c_str(), "dir");
|
ASSERT_EQ(std::string(p1), "dir");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(baseNameOf, relativePath) {
|
TEST(baseNameOf, relativePath) {
|
||||||
auto p1 = baseNameOf("dir/foo");
|
auto p1 = baseNameOf("dir/foo");
|
||||||
ASSERT_STREQ(std::string(p1).c_str(), "foo");
|
ASSERT_EQ(std::string(p1), "foo");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(baseNameOf, pathWithTrailingSlashRoot) {
|
TEST(baseNameOf, pathWithTrailingSlashRoot) {
|
||||||
auto p1 = baseNameOf("/");
|
auto p1 = baseNameOf("/");
|
||||||
ASSERT_STREQ(std::string(p1).c_str(), "");
|
ASSERT_EQ(std::string(p1), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
// XXX: according to the doc of `baseNameOf`, baseNameOf("/dir/") should return
|
// XXX: according to the doc of `baseNameOf`, baseNameOf("/dir/") should return
|
||||||
// "" but it actually returns "dir"
|
// "" but it actually returns "dir"
|
||||||
TEST(baseNameOf, DISABLED_trailingSlash) {
|
TEST(baseNameOf, DISABLED_trailingSlash) {
|
||||||
auto p1 = baseNameOf("/dir/");
|
auto p1 = baseNameOf("/dir/");
|
||||||
ASSERT_STREQ(std::string(p1).c_str(), "");
|
ASSERT_EQ(std::string(p1), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------
|
/* ----------------------------------------------------------------------------
|
||||||
|
@ -265,11 +265,11 @@ namespace nix {
|
||||||
* --------------------------------------------------------------------------*/
|
* --------------------------------------------------------------------------*/
|
||||||
|
|
||||||
TEST(base64Encode, emptyString) {
|
TEST(base64Encode, emptyString) {
|
||||||
ASSERT_STREQ(base64Encode("").c_str(), "");
|
ASSERT_EQ(base64Encode(""), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(base64Encode, encodesAString) {
|
TEST(base64Encode, encodesAString) {
|
||||||
ASSERT_STREQ(base64Encode("quod erat demonstrandum").c_str(), "cXVvZCBlcmF0IGRlbW9uc3RyYW5kdW0=");
|
ASSERT_EQ(base64Encode("quod erat demonstrandum"), "cXVvZCBlcmF0IGRlbW9uc3RyYW5kdW0=");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(base64Encode, encodeAndDecode) {
|
TEST(base64Encode, encodeAndDecode) {
|
||||||
|
@ -277,7 +277,7 @@ namespace nix {
|
||||||
auto encoded = base64Encode(s);
|
auto encoded = base64Encode(s);
|
||||||
auto decoded = base64Decode(encoded);
|
auto decoded = base64Decode(encoded);
|
||||||
|
|
||||||
ASSERT_STREQ(decoded.c_str(), s);
|
ASSERT_EQ(decoded, s);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------
|
/* ----------------------------------------------------------------------------
|
||||||
|
@ -285,11 +285,11 @@ namespace nix {
|
||||||
* --------------------------------------------------------------------------*/
|
* --------------------------------------------------------------------------*/
|
||||||
|
|
||||||
TEST(base64Decode, emptyString) {
|
TEST(base64Decode, emptyString) {
|
||||||
ASSERT_STREQ(base64Decode("").c_str(), "");
|
ASSERT_EQ(base64Decode(""), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(base64Decode, decodeAString) {
|
TEST(base64Decode, decodeAString) {
|
||||||
ASSERT_STREQ(base64Decode("cXVvZCBlcmF0IGRlbW9uc3RyYW5kdW0=").c_str(), "quod erat demonstrandum");
|
ASSERT_EQ(base64Decode("cXVvZCBlcmF0IGRlbW9uc3RyYW5kdW0="), "quod erat demonstrandum");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------
|
/* ----------------------------------------------------------------------------
|
||||||
|
@ -297,12 +297,12 @@ namespace nix {
|
||||||
* --------------------------------------------------------------------------*/
|
* --------------------------------------------------------------------------*/
|
||||||
|
|
||||||
TEST(toLower, emptyString) {
|
TEST(toLower, emptyString) {
|
||||||
ASSERT_STREQ(toLower("").c_str(), "");
|
ASSERT_EQ(toLower(""), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(toLower, nonLetters) {
|
TEST(toLower, nonLetters) {
|
||||||
auto s = "!@(*$#)(@#=\\234_";
|
auto s = "!@(*$#)(@#=\\234_";
|
||||||
ASSERT_STREQ(toLower(s).c_str(), s);
|
ASSERT_EQ(toLower(s), s);
|
||||||
}
|
}
|
||||||
|
|
||||||
// XXX: std::tolower() doesn't cover this. This probably doesn't matter
|
// XXX: std::tolower() doesn't cover this. This probably doesn't matter
|
||||||
|
@ -310,7 +310,7 @@ namespace nix {
|
||||||
// characters are not allowed.
|
// characters are not allowed.
|
||||||
TEST(toLower, DISABLED_umlauts) {
|
TEST(toLower, DISABLED_umlauts) {
|
||||||
auto s = "ÄÖÜ";
|
auto s = "ÄÖÜ";
|
||||||
ASSERT_STREQ(toLower(s).c_str(), "äöü");
|
ASSERT_EQ(toLower(s), "äöü");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------
|
/* ----------------------------------------------------------------------------
|
||||||
|
@ -377,27 +377,27 @@ namespace nix {
|
||||||
StringMap rewrites;
|
StringMap rewrites;
|
||||||
rewrites["this"] = "that";
|
rewrites["this"] = "that";
|
||||||
|
|
||||||
ASSERT_STREQ(rewriteStrings("", rewrites).c_str(), "");
|
ASSERT_EQ(rewriteStrings("", rewrites), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(rewriteStrings, emptyRewrites) {
|
TEST(rewriteStrings, emptyRewrites) {
|
||||||
StringMap rewrites;
|
StringMap rewrites;
|
||||||
|
|
||||||
ASSERT_STREQ(rewriteStrings("this and that", rewrites).c_str(), "this and that");
|
ASSERT_EQ(rewriteStrings("this and that", rewrites), "this and that");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(rewriteStrings, successfulRewrite) {
|
TEST(rewriteStrings, successfulRewrite) {
|
||||||
StringMap rewrites;
|
StringMap rewrites;
|
||||||
rewrites["this"] = "that";
|
rewrites["this"] = "that";
|
||||||
|
|
||||||
ASSERT_STREQ(rewriteStrings("this and that", rewrites).c_str(), "that and that");
|
ASSERT_EQ(rewriteStrings("this and that", rewrites), "that and that");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(rewriteStrings, doesntOccur) {
|
TEST(rewriteStrings, doesntOccur) {
|
||||||
StringMap rewrites;
|
StringMap rewrites;
|
||||||
rewrites["foo"] = "bar";
|
rewrites["foo"] = "bar";
|
||||||
|
|
||||||
ASSERT_STREQ(rewriteStrings("this and that", rewrites).c_str(), "this and that");
|
ASSERT_EQ(rewriteStrings("this and that", rewrites), "this and that");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------
|
/* ----------------------------------------------------------------------------
|
||||||
|
@ -405,16 +405,16 @@ namespace nix {
|
||||||
* --------------------------------------------------------------------------*/
|
* --------------------------------------------------------------------------*/
|
||||||
|
|
||||||
TEST(replaceStrings, emptyString) {
|
TEST(replaceStrings, emptyString) {
|
||||||
ASSERT_STREQ(replaceStrings("", "this", "that").c_str(), "");
|
ASSERT_EQ(replaceStrings("", "this", "that"), "");
|
||||||
ASSERT_STREQ(replaceStrings("this and that", "", "").c_str(), "this and that");
|
ASSERT_EQ(replaceStrings("this and that", "", ""), "this and that");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(replaceStrings, successfulReplace) {
|
TEST(replaceStrings, successfulReplace) {
|
||||||
ASSERT_STREQ(replaceStrings("this and that", "this", "that").c_str(), "that and that");
|
ASSERT_EQ(replaceStrings("this and that", "this", "that"), "that and that");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(replaceStrings, doesntOccur) {
|
TEST(replaceStrings, doesntOccur) {
|
||||||
ASSERT_STREQ(replaceStrings("this and that", "foo", "bar").c_str(), "this and that");
|
ASSERT_EQ(replaceStrings("this and that", "foo", "bar"), "this and that");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------
|
/* ----------------------------------------------------------------------------
|
||||||
|
@ -422,14 +422,14 @@ namespace nix {
|
||||||
* --------------------------------------------------------------------------*/
|
* --------------------------------------------------------------------------*/
|
||||||
|
|
||||||
TEST(trim, emptyString) {
|
TEST(trim, emptyString) {
|
||||||
ASSERT_STREQ(trim("").c_str(), "");
|
ASSERT_EQ(trim(""), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(trim, removesWhitespace) {
|
TEST(trim, removesWhitespace) {
|
||||||
ASSERT_STREQ(trim("foo").c_str(), "foo");
|
ASSERT_EQ(trim("foo"), "foo");
|
||||||
ASSERT_STREQ(trim(" foo ").c_str(), "foo");
|
ASSERT_EQ(trim(" foo "), "foo");
|
||||||
ASSERT_STREQ(trim(" foo bar baz").c_str(), "foo bar baz");
|
ASSERT_EQ(trim(" foo bar baz"), "foo bar baz");
|
||||||
ASSERT_STREQ(trim(" \t foo bar baz\n").c_str(), "foo bar baz");
|
ASSERT_EQ(trim(" \t foo bar baz\n"), "foo bar baz");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------
|
/* ----------------------------------------------------------------------------
|
||||||
|
@ -437,15 +437,15 @@ namespace nix {
|
||||||
* --------------------------------------------------------------------------*/
|
* --------------------------------------------------------------------------*/
|
||||||
|
|
||||||
TEST(chomp, emptyString) {
|
TEST(chomp, emptyString) {
|
||||||
ASSERT_STREQ(chomp("").c_str(), "");
|
ASSERT_EQ(chomp(""), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(chomp, removesWhitespace) {
|
TEST(chomp, removesWhitespace) {
|
||||||
ASSERT_STREQ(chomp("foo").c_str(), "foo");
|
ASSERT_EQ(chomp("foo"), "foo");
|
||||||
ASSERT_STREQ(chomp("foo ").c_str(), "foo");
|
ASSERT_EQ(chomp("foo "), "foo");
|
||||||
ASSERT_STREQ(chomp(" foo ").c_str(), " foo");
|
ASSERT_EQ(chomp(" foo "), " foo");
|
||||||
ASSERT_STREQ(chomp(" foo bar baz ").c_str(), " foo bar baz");
|
ASSERT_EQ(chomp(" foo bar baz "), " foo bar baz");
|
||||||
ASSERT_STREQ(chomp("\t foo bar baz\n").c_str(), "\t foo bar baz");
|
ASSERT_EQ(chomp("\t foo bar baz\n"), "\t foo bar baz");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------
|
/* ----------------------------------------------------------------------------
|
||||||
|
@ -566,29 +566,29 @@ namespace nix {
|
||||||
auto s = "";
|
auto s = "";
|
||||||
auto expected = "";
|
auto expected = "";
|
||||||
|
|
||||||
ASSERT_STREQ(filterANSIEscapes(s).c_str(), expected);
|
ASSERT_EQ(filterANSIEscapes(s), expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(filterANSIEscapes, doesntChangePrintableChars) {
|
TEST(filterANSIEscapes, doesntChangePrintableChars) {
|
||||||
auto s = "09 2q304ruyhr slk2-19024 kjsadh sar f";
|
auto s = "09 2q304ruyhr slk2-19024 kjsadh sar f";
|
||||||
|
|
||||||
ASSERT_STREQ(filterANSIEscapes(s).c_str(), s);
|
ASSERT_EQ(filterANSIEscapes(s), s);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(filterANSIEscapes, filtersColorCodes) {
|
TEST(filterANSIEscapes, filtersColorCodes) {
|
||||||
auto s = "\u001b[30m A \u001b[31m B \u001b[32m C \u001b[33m D \u001b[0m";
|
auto s = "\u001b[30m A \u001b[31m B \u001b[32m C \u001b[33m D \u001b[0m";
|
||||||
|
|
||||||
ASSERT_STREQ(filterANSIEscapes(s, true, 2).c_str(), " A" );
|
ASSERT_EQ(filterANSIEscapes(s, true, 2), " A" );
|
||||||
ASSERT_STREQ(filterANSIEscapes(s, true, 3).c_str(), " A " );
|
ASSERT_EQ(filterANSIEscapes(s, true, 3), " A " );
|
||||||
ASSERT_STREQ(filterANSIEscapes(s, true, 4).c_str(), " A " );
|
ASSERT_EQ(filterANSIEscapes(s, true, 4), " A " );
|
||||||
ASSERT_STREQ(filterANSIEscapes(s, true, 5).c_str(), " A B" );
|
ASSERT_EQ(filterANSIEscapes(s, true, 5), " A B" );
|
||||||
ASSERT_STREQ(filterANSIEscapes(s, true, 8).c_str(), " A B C" );
|
ASSERT_EQ(filterANSIEscapes(s, true, 8), " A B C" );
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(filterANSIEscapes, expandsTabs) {
|
TEST(filterANSIEscapes, expandsTabs) {
|
||||||
auto s = "foo\tbar\tbaz";
|
auto s = "foo\tbar\tbaz";
|
||||||
|
|
||||||
ASSERT_STREQ(filterANSIEscapes(s, true).c_str(), "foo bar baz" );
|
ASSERT_EQ(filterANSIEscapes(s, true), "foo bar baz" );
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue