Skip to content

Commit 7ab7f2f

Browse files
committedFeb 3, 2025··
Isolate RGB color tests from CI environment variables
1 parent 50f7ee1 commit 7ab7f2f

File tree

2 files changed

+29
-9
lines changed

2 files changed

+29
-9
lines changed
 

‎.github/workflows/ci.yml

-3
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,6 @@ jobs:
5858

5959
- name: Run unit test
6060
run: just test
61-
env:
62-
TERM: xterm-256color
63-
COLORTERM: truecolor
6461

6562
build:
6663
name: Build release

‎src/fmt/format.rs

+29-6
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ fn apply_directive(string: ColoredString, directive: &str) -> ColoredString {
107107
#[cfg(test)]
108108
mod tests {
109109
use super::fmt;
110+
use figment::Jail;
110111

111112
macro_rules! make_test {
112113
( $($name:ident: $styles:expr => $prefix:expr, $suffix:expr,)* ) => {
@@ -131,16 +132,38 @@ mod tests {
131132
test_fmt_applies_bright_text_color: &["bright_blue"] => "\x1b[94m", "\x1b[0m",
132133
test_fmt_ignores_invalid_text_color: &["invalid"] => "", "",
133134

134-
test_fmt_applies_rgb_text_color: &["rgb(77,77,77)"] => "\x1b[38;2;77;77;77m", "\x1b[0m",
135-
test_fmt_ignores_out_of_bounds_rgb_text_color: &["rgb(256,256,256)"] => "", "",
136-
137135
test_fmt_applies_regular_background_color: &["bg:blue"] => "\x1b[44m", "\x1b[0m",
138136
test_fmt_applies_bright_background_color: &["bg:bright_blue"] => "\x1b[104m", "\x1b[0m",
139137
test_fmt_ignores_invalid_background_color: &["bg:invalid"] => "", "",
140138

141-
test_fmt_applies_rgb_background_color: &["bg:rgb(77,77,77)"] => "\x1b[48;2;77;77;77m", "\x1b[0m",
142-
test_fmt_ignores_out_of_bounds_rgb_background_color: &["bg:rgb(256,256,256)"] => "", "",
143-
144139
test_fmt_handles_clear_directive: &["bold", "italic", "clear"] => "", "", // no prefix, no suffix
145140
);
141+
142+
macro_rules! make_env_test {
143+
( $($name:ident: $colorterm: expr, $styles:expr => $prefix:expr, $suffix:expr,)* ) => {
144+
$(
145+
#[test]
146+
fn $name() {
147+
colored::control::set_override(true); // needed when running tests in CLion
148+
Jail::expect_with(|jail| {
149+
jail.set_env("COLORTERM", $colorterm);
150+
let text = fmt("Hello, World!", $styles);
151+
assert_eq!(text, format!("{}{}{}", $prefix, "Hello, World!", $suffix));
152+
Ok(())
153+
})
154+
}
155+
)*
156+
};
157+
}
158+
159+
make_env_test!(
160+
test_fmt_applies_rgb_text_color_truecolor: "truecolor", &["rgb(77,77,77)"] => "\x1b[38;2;77;77;77m", "\x1b[0m",
161+
test_fmt_applies_rgb_text_color_ansi: "ansi", &["rgb(77,77,77)"] => "\x1b[90m", "\x1b[0m",
162+
test_fmt_applies_rgb_background_color_truecolor: "truecolor", &["bg:rgb(77,77,77)"] => "\x1b[48;2;77;77;77m", "\x1b[0m",
163+
test_fmt_applies_rgb_background_color_ansi: "ansi", &["bg:rgb(77,77,77)"] => "\x1b[100m", "\x1b[0m",
164+
test_fmt_ignores_out_of_bounds_rgb_text_color_truecolor: "truecolor", &["rgb(256,256,256)"] => "", "",
165+
test_fmt_ignores_out_of_bounds_rgb_text_color_ansi: "ansi", &["rgb(256,256,256)"] => "", "",
166+
test_fmt_ignores_out_of_bounds_rgb_background_color_truecolor: "truecolor", &["bg:rgb(256,256,256)"] => "", "",
167+
test_fmt_ignores_out_of_bounds_rgb_background_color_ansi: "ansi", &["bg:rgb(256,256,256)"] => "", "",
168+
);
146169
}

0 commit comments

Comments
 (0)
Please sign in to comment.