Skip to content

Commit bd378f4

Browse files
committed
test: add tests for print function with --format
1 parent 65a7d0b commit bd378f4

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

src/commands.rs

+9
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,15 @@ mod tests {
243243
unsafe { env::remove_var("TEST_PRINT_RUN") };
244244
}
245245

246+
#[test]
247+
fn test_run_command_print_with_format() {
248+
unsafe { env::set_var("TEST_PRINT_RUN", "test_value") };
249+
with_captured_output(|| {
250+
run_command(&Commands::Print(PrintArgs { format: Some("{name} = {value}".to_owned()) }));
251+
});
252+
unsafe { env::remove_var("TEST_PRINT_RUN") };
253+
}
254+
246255
#[test]
247256
fn test_run_command_delete() {
248257
unsafe { env::set_var("TEST_DELETE_RUN", "test_value") };

src/main.rs

+6
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ mod tests {
6666
assert_eq!(args.command, Commands::Print(PrintArgs { format: None }));
6767
}
6868

69+
#[test]
70+
fn test_print_command_with_format() {
71+
let args = Cli::parse_from(["envfetch", "print", "--format", "{name}: \"{value}\""]);
72+
assert_eq!(args.command, Commands::Print(PrintArgs { format: Some("{name}: \"{value}\"".to_owned()) }));
73+
}
74+
6975
#[test]
7076
fn test_set_command_simple() {
7177
let args = Cli::parse_from(["envfetch", "set", "VAR", "VALUE", "--", "npm run"]);

tests/cli.rs

+12
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,18 @@ fn print_success() -> Result<(), Box<dyn std::error::Error>> {
101101
Ok(())
102102
}
103103

104+
#[test]
105+
/// Test for print command
106+
fn print_with_format_success() -> Result<(), Box<dyn std::error::Error>> {
107+
let mut cmd = Command::cargo_bin("envfetch")?;
108+
unsafe { env::set_var("PRINT_TEST", "Print") };
109+
cmd.arg("print").arg("--format").arg("{name}: {value}")
110+
.assert()
111+
.success()
112+
.stdout(predicate::str::contains("PRINT_TEST: Print"));
113+
Ok(())
114+
}
115+
104116
#[test]
105117
/// Test for delete command if specified process is successful
106118
fn delete_command_success() -> Result<(), Box<dyn std::error::Error>> {

0 commit comments

Comments
 (0)