2018-10-10 22:56:56 +02:00
|
|
|
extern crate assert_cmd;
|
2018-11-02 18:33:06 +01:00
|
|
|
extern crate escargot;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
2018-10-10 22:56:56 +02:00
|
|
|
|
|
|
|
use assert_cmd::prelude::*;
|
2018-11-02 18:33:06 +01:00
|
|
|
use escargot::CargoRun;
|
2018-10-10 22:56:56 +02:00
|
|
|
use std::process::Command;
|
|
|
|
|
2018-11-02 18:33:06 +01:00
|
|
|
lazy_static! {
|
|
|
|
static ref CARGO_RUN: CargoRun = escargot::CargoBuild::new()
|
|
|
|
.bin("bat")
|
|
|
|
.current_release()
|
|
|
|
.run()
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
|
2018-11-04 10:46:56 +01:00
|
|
|
fn bat_with_config() -> Command {
|
2018-11-02 18:33:06 +01:00
|
|
|
let mut cmd = CARGO_RUN.command();
|
2018-10-10 22:56:56 +02:00
|
|
|
cmd.current_dir("tests/examples");
|
2018-10-17 20:44:15 +02:00
|
|
|
cmd.env_remove("PAGER");
|
|
|
|
cmd.env_remove("BAT_PAGER");
|
2018-11-04 10:46:56 +01:00
|
|
|
cmd.env_remove("BAT_CONFIG_PATH");
|
2018-11-04 10:50:28 +01:00
|
|
|
cmd.env_remove("BAT_STYLE");
|
|
|
|
cmd.env_remove("BAT_THEME");
|
|
|
|
cmd.env_remove("BAT_TABS");
|
2018-11-04 10:46:56 +01:00
|
|
|
cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bat() -> Command {
|
|
|
|
let mut cmd = bat_with_config();
|
|
|
|
cmd.arg("--no-config");
|
2018-10-10 22:56:56 +02:00
|
|
|
cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn basic() {
|
|
|
|
bat()
|
|
|
|
.arg("test.txt")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("hello world\n")
|
|
|
|
.stderr("");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn stdin() {
|
|
|
|
bat()
|
|
|
|
.with_stdin()
|
|
|
|
.buffer("foo\nbar\n")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("foo\nbar\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn concatenate() {
|
|
|
|
bat()
|
|
|
|
.arg("test.txt")
|
|
|
|
.arg("test.txt")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("hello world\nhello world\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn concatenate_stdin() {
|
|
|
|
bat()
|
|
|
|
.arg("test.txt")
|
|
|
|
.arg("-")
|
|
|
|
.arg("test.txt")
|
|
|
|
.with_stdin()
|
|
|
|
.buffer("stdin\n")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("hello world\nstdin\nhello world\n");
|
|
|
|
}
|
|
|
|
|
2019-02-08 04:27:48 +01:00
|
|
|
#[test]
|
|
|
|
fn concatenate_empty_first() {
|
|
|
|
bat()
|
|
|
|
.arg("empty.txt")
|
|
|
|
.arg("test.txt")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("hello world\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn concatenate_empty_last() {
|
|
|
|
bat()
|
|
|
|
.arg("test.txt")
|
|
|
|
.arg("empty.txt")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("hello world\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn concatenate_empty_both() {
|
|
|
|
bat()
|
|
|
|
.arg("empty.txt")
|
|
|
|
.arg("empty.txt")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn concatenate_empty_between() {
|
|
|
|
bat()
|
|
|
|
.arg("test.txt")
|
|
|
|
.arg("empty.txt")
|
|
|
|
.arg("test.txt")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("hello world\nhello world\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn concatenate_empty_first_and_last() {
|
|
|
|
bat()
|
|
|
|
.arg("empty.txt")
|
|
|
|
.arg("test.txt")
|
|
|
|
.arg("empty.txt")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("hello world\n");
|
|
|
|
}
|
|
|
|
|
2019-02-10 08:52:38 +01:00
|
|
|
#[test]
|
|
|
|
fn concatenate_single_line() {
|
|
|
|
bat()
|
|
|
|
.arg("single-line.txt")
|
|
|
|
.arg("single-line.txt")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("Single LineSingle Line");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn concatenate_single_line_empty() {
|
|
|
|
bat()
|
|
|
|
.arg("single-line.txt")
|
|
|
|
.arg("empty.txt")
|
|
|
|
.arg("single-line.txt")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("Single LineSingle Line");
|
|
|
|
}
|
|
|
|
|
2018-10-10 22:56:56 +02:00
|
|
|
#[test]
|
|
|
|
fn line_numbers() {
|
|
|
|
bat()
|
|
|
|
.arg("multiline.txt")
|
|
|
|
.arg("--style=numbers")
|
|
|
|
.arg("--decorations=always")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout(" 1 line 1\n 2 line 2\n 3 line 3\n 4 line 4\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn line_range_2_3() {
|
|
|
|
bat()
|
|
|
|
.arg("multiline.txt")
|
|
|
|
.arg("--line-range=2:3")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("line 2\nline 3\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn line_range_first_two() {
|
|
|
|
bat()
|
|
|
|
.arg("multiline.txt")
|
|
|
|
.arg("--line-range=:2")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("line 1\nline 2\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn line_range_last_3() {
|
|
|
|
bat()
|
|
|
|
.arg("multiline.txt")
|
|
|
|
.arg("--line-range=2:")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("line 2\nline 3\nline 4\n");
|
|
|
|
}
|
|
|
|
|
2018-10-20 00:10:10 +02:00
|
|
|
#[test]
|
|
|
|
fn line_range_multiple() {
|
|
|
|
bat()
|
|
|
|
.arg("multiline.txt")
|
|
|
|
.arg("--line-range=1:2")
|
|
|
|
.arg("--line-range=4:4")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("line 1\nline 2\nline 4\n");
|
|
|
|
}
|
|
|
|
|
2018-10-18 14:27:04 +02:00
|
|
|
#[test]
|
|
|
|
fn tabs_numbers() {
|
|
|
|
bat()
|
|
|
|
.arg("tabs.txt")
|
|
|
|
.arg("--tabs=4")
|
|
|
|
.arg("--style=numbers")
|
|
|
|
.arg("--decorations=always")
|
|
|
|
.assert()
|
|
|
|
.success()
|
2018-10-19 02:55:50 +02:00
|
|
|
.stdout(
|
|
|
|
" 1 1 2 3 4
|
2018-10-18 14:35:10 +02:00
|
|
|
2 1 ?
|
|
|
|
3 22 ?
|
|
|
|
4 333 ?
|
|
|
|
5 4444 ?
|
|
|
|
6 55555 ?
|
|
|
|
7 666666 ?
|
|
|
|
8 7777777 ?
|
|
|
|
9 88888888 ?
|
2018-10-19 02:55:50 +02:00
|
|
|
",
|
|
|
|
);
|
2018-10-18 14:27:04 +02:00
|
|
|
}
|
|
|
|
|
2018-10-14 16:22:59 +02:00
|
|
|
#[test]
|
|
|
|
fn tabs_passthrough_wrapped() {
|
2018-10-15 17:22:23 +02:00
|
|
|
bat()
|
|
|
|
.arg("tabs.txt")
|
|
|
|
.arg("--tabs=0")
|
|
|
|
.arg("--style=plain")
|
|
|
|
.arg("--decorations=always")
|
|
|
|
.assert()
|
|
|
|
.success()
|
2018-10-19 02:55:50 +02:00
|
|
|
.stdout(
|
|
|
|
" 1 2 3 4
|
2018-10-15 17:22:23 +02:00
|
|
|
1 ?
|
|
|
|
22 ?
|
|
|
|
333 ?
|
|
|
|
4444 ?
|
|
|
|
55555 ?
|
|
|
|
666666 ?
|
|
|
|
7777777 ?
|
|
|
|
88888888 ?
|
2018-10-19 02:55:50 +02:00
|
|
|
",
|
|
|
|
);
|
2018-10-14 16:22:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn tabs_4_wrapped() {
|
2018-10-15 17:22:23 +02:00
|
|
|
bat()
|
|
|
|
.arg("tabs.txt")
|
|
|
|
.arg("--tabs=4")
|
|
|
|
.arg("--style=plain")
|
|
|
|
.arg("--decorations=always")
|
|
|
|
.assert()
|
|
|
|
.success()
|
2018-10-19 02:55:50 +02:00
|
|
|
.stdout(
|
|
|
|
" 1 2 3 4
|
2018-10-15 17:22:23 +02:00
|
|
|
1 ?
|
|
|
|
22 ?
|
|
|
|
333 ?
|
|
|
|
4444 ?
|
|
|
|
55555 ?
|
|
|
|
666666 ?
|
|
|
|
7777777 ?
|
|
|
|
88888888 ?
|
2018-10-19 02:55:50 +02:00
|
|
|
",
|
|
|
|
);
|
2018-10-14 16:22:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn tabs_8_wrapped() {
|
2018-10-15 17:22:23 +02:00
|
|
|
bat()
|
|
|
|
.arg("tabs.txt")
|
|
|
|
.arg("--tabs=8")
|
|
|
|
.arg("--style=plain")
|
|
|
|
.arg("--decorations=always")
|
|
|
|
.assert()
|
|
|
|
.success()
|
2018-10-19 02:55:50 +02:00
|
|
|
.stdout(
|
|
|
|
" 1 2 3 4
|
2018-10-15 17:22:23 +02:00
|
|
|
1 ?
|
|
|
|
22 ?
|
|
|
|
333 ?
|
|
|
|
4444 ?
|
|
|
|
55555 ?
|
|
|
|
666666 ?
|
|
|
|
7777777 ?
|
|
|
|
88888888 ?
|
2018-10-19 02:55:50 +02:00
|
|
|
",
|
|
|
|
);
|
2018-10-14 16:22:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn tabs_passthrough() {
|
2018-10-15 17:22:23 +02:00
|
|
|
bat()
|
|
|
|
.arg("tabs.txt")
|
|
|
|
.arg("--tabs=0")
|
|
|
|
.arg("--style=plain")
|
|
|
|
.arg("--decorations=always")
|
|
|
|
.assert()
|
|
|
|
.success()
|
2018-10-19 02:55:50 +02:00
|
|
|
.stdout(
|
|
|
|
" 1 2 3 4
|
2018-10-15 17:22:23 +02:00
|
|
|
1 ?
|
|
|
|
22 ?
|
|
|
|
333 ?
|
|
|
|
4444 ?
|
|
|
|
55555 ?
|
|
|
|
666666 ?
|
|
|
|
7777777 ?
|
|
|
|
88888888 ?
|
2018-10-19 02:55:50 +02:00
|
|
|
",
|
|
|
|
);
|
2018-10-14 16:22:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn tabs_4() {
|
2018-10-15 17:22:23 +02:00
|
|
|
bat()
|
|
|
|
.arg("tabs.txt")
|
|
|
|
.arg("--tabs=4")
|
|
|
|
.arg("--style=plain")
|
|
|
|
.arg("--decorations=always")
|
|
|
|
.assert()
|
|
|
|
.success()
|
2018-10-19 02:55:50 +02:00
|
|
|
.stdout(
|
|
|
|
" 1 2 3 4
|
2018-10-15 17:22:23 +02:00
|
|
|
1 ?
|
|
|
|
22 ?
|
|
|
|
333 ?
|
|
|
|
4444 ?
|
|
|
|
55555 ?
|
|
|
|
666666 ?
|
|
|
|
7777777 ?
|
|
|
|
88888888 ?
|
2018-10-19 02:55:50 +02:00
|
|
|
",
|
|
|
|
);
|
2018-10-14 16:22:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn tabs_8() {
|
2018-10-15 17:22:23 +02:00
|
|
|
bat()
|
|
|
|
.arg("tabs.txt")
|
|
|
|
.arg("--tabs=8")
|
|
|
|
.arg("--style=plain")
|
|
|
|
.arg("--decorations=always")
|
|
|
|
.assert()
|
|
|
|
.success()
|
2018-10-19 02:55:50 +02:00
|
|
|
.stdout(
|
|
|
|
" 1 2 3 4
|
2018-10-15 17:22:23 +02:00
|
|
|
1 ?
|
|
|
|
22 ?
|
|
|
|
333 ?
|
|
|
|
4444 ?
|
|
|
|
55555 ?
|
|
|
|
666666 ?
|
|
|
|
7777777 ?
|
|
|
|
88888888 ?
|
2018-10-19 02:55:50 +02:00
|
|
|
",
|
|
|
|
);
|
2018-10-14 16:22:59 +02:00
|
|
|
}
|
|
|
|
|
2018-10-10 22:56:56 +02:00
|
|
|
#[test]
|
|
|
|
fn fail_non_existing() {
|
|
|
|
bat().arg("non-existing-file").assert().failure();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn fail_directory() {
|
|
|
|
bat().arg("sub_directory").assert().failure();
|
|
|
|
}
|
2018-10-11 21:54:19 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn do_not_exit_directory() {
|
|
|
|
bat()
|
|
|
|
.arg("sub_directory")
|
|
|
|
.arg("test.txt")
|
|
|
|
.assert()
|
|
|
|
.stdout("hello world\n")
|
|
|
|
.failure();
|
|
|
|
}
|
2018-10-17 20:44:15 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn pager_basic() {
|
|
|
|
bat()
|
|
|
|
.env("PAGER", "echo pager-output")
|
|
|
|
.arg("--paging=always")
|
|
|
|
.arg("test.txt")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("pager-output\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn pager_overwrite() {
|
|
|
|
bat()
|
|
|
|
.env("PAGER", "echo other-pager")
|
|
|
|
.env("BAT_PAGER", "echo pager-output")
|
|
|
|
.arg("--paging=always")
|
|
|
|
.arg("test.txt")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("pager-output\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn pager_disable() {
|
|
|
|
bat()
|
|
|
|
.env("PAGER", "echo other-pager")
|
|
|
|
.env("BAT_PAGER", "")
|
|
|
|
.arg("--paging=always")
|
|
|
|
.arg("test.txt")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("hello world\n");
|
|
|
|
}
|
2018-11-01 16:48:56 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn config_location_test() {
|
2018-11-04 10:46:56 +01:00
|
|
|
bat_with_config()
|
2018-11-01 16:48:56 +01:00
|
|
|
.env("BAT_CONFIG_PATH", "bat.conf")
|
|
|
|
.arg("--config-file")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("bat.conf\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2018-11-04 10:56:31 +01:00
|
|
|
fn config_read_arguments_from_file() {
|
2018-11-04 10:46:56 +01:00
|
|
|
bat_with_config()
|
2018-11-01 16:48:56 +01:00
|
|
|
.env("BAT_CONFIG_PATH", "bat.conf")
|
|
|
|
.arg("test.txt")
|
|
|
|
.assert()
|
|
|
|
.success()
|
2018-11-04 10:56:31 +01:00
|
|
|
.stdout("dummy-pager-from-config\n");
|
2018-11-01 16:48:56 +01:00
|
|
|
}
|
2019-02-10 09:19:38 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn utf16() {
|
|
|
|
// The output will be converted to UTF-8 with a leading UTF-8 BOM
|
|
|
|
bat()
|
|
|
|
.arg("--plain")
|
|
|
|
.arg("--decorations=always")
|
|
|
|
.arg("test_UTF-16LE.txt")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout(std::str::from_utf8(b"\xEF\xBB\xBFhello world\n").unwrap());
|
|
|
|
}
|
2019-05-10 21:02:08 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn can_print_file_named_cache() {
|
|
|
|
bat()
|
|
|
|
.arg("cache")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout("test\n")
|
|
|
|
.stderr("");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn does_not_print_unwanted_file_named_cache() {
|
|
|
|
bat_with_config().arg("cach").assert().failure();
|
|
|
|
}
|