aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/libutil
diff options
context:
space:
mode:
authoreldritch horrors <pennae@lix.systems>2024-03-08 08:10:05 +0100
committereldritch horrors <pennae@lix.systems>2024-03-09 07:00:13 -0700
commitb221a14f0a477db06f8ab705bd08404e431ec135 (patch)
tree33cab3bfa39ca17a070e1afca13e531052021eee /tests/unit/libutil
parent3d9c7fc1e72e3471ae35c96ec418e8ac0913b099 (diff)
Merge pull request #9925 from 9999years/fmt-cleanup
Cleanup `fmt.hh` (cherry picked from commit 47a1dbb4b8e7913cbb9b4d604728b912e76e4ca0) Change-Id: Id076a45cb39652f437fe3f8bda10c310a9894777
Diffstat (limited to 'tests/unit/libutil')
-rw-r--r--tests/unit/libutil/logging.cc36
1 files changed, 18 insertions, 18 deletions
diff --git a/tests/unit/libutil/logging.cc b/tests/unit/libutil/logging.cc
index 2ffdc2e9b..94cbe9c51 100644
--- a/tests/unit/libutil/logging.cc
+++ b/tests/unit/libutil/logging.cc
@@ -43,7 +43,7 @@ namespace nix {
makeJSONLogger(*logger)->logEI({
.name = "error name",
- .msg = hintfmt("this hint has %1% templated %2%!!",
+ .msg = HintFmt("this hint has %1% templated %2%!!",
"yellow",
"values"),
.errPos = Pos(foFile, problem_file, 02, 13)
@@ -63,7 +63,7 @@ namespace nix {
throw TestError(e.info());
} catch (Error &e) {
ErrorInfo ei = e.info();
- ei.msg = hintfmt("%s; subsequent error message.", normaltxt(e.info().msg.str()));
+ ei.msg = HintFmt("%s; subsequent error message.", Uncolored(e.info().msg.str()));
testing::internal::CaptureStderr();
logger->logEI(ei);
@@ -177,7 +177,7 @@ namespace nix {
logError({
.name = "error name",
- .msg = hintfmt("this hint has %1% templated %2%!!",
+ .msg = HintFmt("this hint has %1% templated %2%!!",
"yellow",
"values"),
.errPos = Pos(foString, problem_file, 02, 13),
@@ -194,7 +194,7 @@ namespace nix {
logError({
.name = "error name",
- .msg = hintfmt("this hint has %1% templated %2%!!",
+ .msg = HintFmt("this hint has %1% templated %2%!!",
"yellow",
"values"),
.errPos = Pos(foFile, problem_file, 02, 13)
@@ -209,7 +209,7 @@ namespace nix {
logError({
.name = "error name",
- .msg = hintfmt("hint %1%", "only"),
+ .msg = HintFmt("hint %1%", "only"),
});
auto str = testing::internal::GetCapturedStderr();
@@ -226,7 +226,7 @@ namespace nix {
logWarning({
.name = "name",
- .msg = hintfmt("there was a %1%", "warning"),
+ .msg = HintFmt("there was a %1%", "warning"),
});
auto str = testing::internal::GetCapturedStderr();
@@ -242,7 +242,7 @@ namespace nix {
logWarning({
.name = "warning name",
- .msg = hintfmt("this hint has %1% templated %2%!!",
+ .msg = HintFmt("this hint has %1% templated %2%!!",
"yellow",
"values"),
.errPos = Pos(foStdin, problem_file, 2, 13),
@@ -265,7 +265,7 @@ namespace nix {
auto e = AssertionError(ErrorInfo {
.name = "wat",
- .msg = hintfmt("it has been %1% days since our last error", "zero"),
+ .msg = HintFmt("it has been %1% days since our last error", "zero"),
.errPos = Pos(foString, problem_file, 2, 13),
});
@@ -291,7 +291,7 @@ namespace nix {
auto e = AssertionError(ErrorInfo {
.name = "wat",
- .msg = hintfmt("it has been %1% days since our last error", "zero"),
+ .msg = HintFmt("it has been %1% days since our last error", "zero"),
.errPos = Pos(foString, problem_file, 2, 13),
});
@@ -311,39 +311,39 @@ namespace nix {
/* ----------------------------------------------------------------------------
- * hintfmt
+ * HintFmt
* --------------------------------------------------------------------------*/
- TEST(hintfmt, percentStringWithoutArgs) {
+ TEST(HintFmt, percentStringWithoutArgs) {
const char *teststr = "this is 100%s correct!";
ASSERT_STREQ(
- hintfmt(teststr).str().c_str(),
+ HintFmt(teststr).str().c_str(),
teststr);
}
- TEST(hintfmt, fmtToHintfmt) {
+ TEST(HintFmt, fmtToHintfmt) {
ASSERT_STREQ(
- hintfmt(fmt("the color of this this text is %1%", "not yellow")).str().c_str(),
+ HintFmt(fmt("the color of this this text is %1%", "not yellow")).str().c_str(),
"the color of this this text is not yellow");
}
- TEST(hintfmt, tooFewArguments) {
+ TEST(HintFmt, tooFewArguments) {
ASSERT_STREQ(
- hintfmt("only one arg %1% %2%", "fulfilled").str().c_str(),
+ HintFmt("only one arg %1% %2%", "fulfilled").str().c_str(),
"only one arg " ANSI_WARNING "fulfilled" ANSI_NORMAL " ");
}
- TEST(hintfmt, tooManyArguments) {
+ TEST(HintFmt, tooManyArguments) {
ASSERT_STREQ(
- hintfmt("what about this %1% %2%", "%3%", "one", "two").str().c_str(),
+ HintFmt("what about this %1% %2%", "%3%", "one", "two").str().c_str(),
"what about this " ANSI_WARNING "%3%" ANSI_NORMAL " " ANSI_YELLOW "one" ANSI_NORMAL);
}