2021-12-11 14:00:45 +01:00
use predicates ::boolean ::PredicateBooleanExt ;
2020-09-20 20:47:21 +02:00
use predicates ::{ prelude ::predicate , str ::PredicateStrExt } ;
2021-01-04 15:45:56 +01:00
use serial_test ::serial ;
2021-01-10 14:05:39 +01:00
use std ::path ::Path ;
2020-05-13 11:51:49 +02:00
use std ::str ::from_utf8 ;
2021-02-28 16:56:16 +01:00
use tempfile ::tempdir ;
2021-01-06 22:09:22 +01:00
#[ cfg(unix) ]
2021-02-27 15:33:13 +01:00
mod unix {
pub use std ::fs ::File ;
pub use std ::io ::{ self , Write } ;
pub use std ::os ::unix ::io ::FromRawFd ;
pub use std ::path ::PathBuf ;
pub use std ::process ::Stdio ;
pub use std ::thread ;
pub use std ::time ::Duration ;
pub use assert_cmd ::assert ::OutputAssertExt ;
pub use nix ::pty ::{ openpty , OpenptyResult } ;
pub use wait_timeout ::ChildExt ;
pub const SAFE_CHILD_PROCESS_CREATION_TIME : Duration = Duration ::from_millis ( 100 ) ;
pub const CHILD_WAIT_TIMEOUT : Duration = Duration ::from_secs ( 15 ) ;
}
#[ cfg(unix) ]
use unix ::* ;
2020-05-13 11:51:49 +02:00
2021-01-10 14:05:39 +01:00
mod utils ;
2021-10-28 13:52:59 +02:00
use utils ::command ::{ bat , bat_with_config } ;
#[ cfg(unix) ]
use utils ::command ::bat_raw_command ;
2021-01-10 14:05:39 +01:00
use utils ::mocked_pagers ;
2020-05-13 11:51:49 +02:00
const EXAMPLES_DIR : & str = " tests/examples " ;
2021-01-06 20:09:01 +01:00
2023-09-08 06:18:25 +02:00
fn get_config ( ) -> & 'static str {
if cfg! ( windows ) {
" bat-windows.conf "
} else {
" bat.conf "
}
}
2018-10-10 22:56:56 +02:00
#[ test ]
fn basic ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-10 22:56:56 +02:00
. arg ( " test.txt " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-10 22:56:56 +02:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: test.txt \x07 hello world \n " )
2018-10-10 22:56:56 +02:00
. stderr ( " " ) ;
}
#[ test ]
fn stdin ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2020-03-07 00:01:35 +01:00
. write_stdin ( " foo \n bar \n " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-10 22:56:56 +02:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: STDIN \x07 foo \n bar \n " ) ;
2018-10-10 22:56:56 +02:00
}
#[ test ]
fn concatenate ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-10 22:56:56 +02:00
. arg ( " test.txt " )
. arg ( " test.txt " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-10 22:56:56 +02:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: test.txt, test.txt \x07 hello world \n hello world \n " ) ;
2018-10-10 22:56:56 +02:00
}
#[ test ]
fn concatenate_stdin ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-10 22:56:56 +02:00
. arg ( " test.txt " )
. arg ( " - " )
. arg ( " test.txt " )
2020-03-07 00:01:35 +01:00
. write_stdin ( " stdin \n " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-10 22:56:56 +02:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: test.txt, STDIN, test.txt \x07 hello world \n stdin \n hello world \n " ) ;
2018-10-10 22:56:56 +02:00
}
2019-02-08 04:27:48 +01:00
#[ test ]
fn concatenate_empty_first ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2019-02-08 04:27:48 +01:00
. arg ( " empty.txt " )
. arg ( " test.txt " )
2020-06-01 23:50:24 +02:00
. assert ( )
2019-02-08 04:27:48 +01:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: empty.txt, test.txt \x07 hello world \n " ) ;
2019-02-08 04:27:48 +01:00
}
#[ test ]
fn concatenate_empty_last ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2019-02-08 04:27:48 +01:00
. arg ( " test.txt " )
. arg ( " empty.txt " )
2020-06-01 23:50:24 +02:00
. assert ( )
2019-02-08 04:27:48 +01:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: test.txt, empty.txt \x07 hello world \n " ) ;
2019-02-08 04:27:48 +01:00
}
#[ test ]
fn concatenate_empty_both ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2019-02-08 04:27:48 +01:00
. arg ( " empty.txt " )
. arg ( " empty.txt " )
2020-06-01 23:50:24 +02:00
. assert ( )
2019-02-08 04:27:48 +01:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: empty.txt, empty.txt \x07 " ) ;
2019-02-08 04:27:48 +01:00
}
#[ test ]
fn concatenate_empty_between ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2019-02-08 04:27:48 +01:00
. arg ( " test.txt " )
. arg ( " empty.txt " )
. arg ( " test.txt " )
2020-06-01 23:50:24 +02:00
. assert ( )
2019-02-08 04:27:48 +01:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: test.txt, empty.txt, test.txt \x07 hello world \n hello world \n " ) ;
2019-02-08 04:27:48 +01:00
}
#[ test ]
fn concatenate_empty_first_and_last ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2019-02-08 04:27:48 +01:00
. arg ( " empty.txt " )
. arg ( " test.txt " )
. arg ( " empty.txt " )
2020-06-01 23:50:24 +02:00
. assert ( )
2019-02-08 04:27:48 +01:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: empty.txt, test.txt, empty.txt \x07 hello world \n " ) ;
2019-02-08 04:27:48 +01:00
}
2019-02-10 08:52:38 +01:00
#[ test ]
fn concatenate_single_line ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2019-02-10 08:52:38 +01:00
. arg ( " single-line.txt " )
. arg ( " single-line.txt " )
2020-06-01 23:50:24 +02:00
. assert ( )
2019-02-10 08:52:38 +01:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: single-line.txt, single-line.txt \x07 Single LineSingle Line " ) ;
2019-02-10 08:52:38 +01:00
}
#[ test ]
fn concatenate_single_line_empty ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2019-02-10 08:52:38 +01:00
. arg ( " single-line.txt " )
. arg ( " empty.txt " )
. arg ( " single-line.txt " )
2020-06-01 23:50:24 +02:00
. assert ( )
2019-02-10 08:52:38 +01:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: single-line.txt, empty.txt, single-line.txt \x07 Single LineSingle Line " ) ;
2019-02-10 08:52:38 +01:00
}
2018-10-10 22:56:56 +02:00
#[ test ]
fn line_numbers ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-10 22:56:56 +02:00
. arg ( " multiline.txt " )
. arg ( " --style=numbers " )
. arg ( " --decorations=always " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-10 22:56:56 +02:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: multiline.txt \x07 1 line 1 \n 2 line 2 \n 3 line 3 \n 4 line 4 \n " ) ;
2018-10-10 22:56:56 +02:00
}
#[ test ]
fn line_range_2_3 ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-10 22:56:56 +02:00
. arg ( " multiline.txt " )
. arg ( " --line-range=2:3 " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-10 22:56:56 +02:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: multiline.txt \x07 line 2 \n line 3 \n " ) ;
2018-10-10 22:56:56 +02:00
}
#[ test ]
fn line_range_first_two ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-10 22:56:56 +02:00
. arg ( " multiline.txt " )
. arg ( " --line-range=:2 " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-10 22:56:56 +02:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: multiline.txt \x07 line 1 \n line 2 \n " ) ;
2018-10-10 22:56:56 +02:00
}
#[ test ]
fn line_range_last_3 ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-10 22:56:56 +02:00
. arg ( " multiline.txt " )
. arg ( " --line-range=2: " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-10 22:56:56 +02:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: multiline.txt \x07 line 2 \n line 3 \n line 4 \n " ) ;
2018-10-10 22:56:56 +02:00
}
2018-10-20 00:10:10 +02:00
#[ test ]
fn line_range_multiple ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-20 00:10:10 +02:00
. arg ( " multiline.txt " )
. arg ( " --line-range=1:2 " )
. arg ( " --line-range=4:4 " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-20 00:10:10 +02:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: multiline.txt \x07 line 1 \n line 2 \n line 4 \n " ) ;
2018-10-20 00:10:10 +02:00
}
2022-12-30 09:16:07 +01:00
#[ test ]
#[ cfg_attr(any(not(feature = " git " ), target_os = " windows " ), ignore) ]
fn short_help ( ) {
test_help ( " -h " , " ../doc/short-help.txt " ) ;
}
#[ test ]
#[ cfg_attr(any(not(feature = " git " ), target_os = " windows " ), ignore) ]
fn long_help ( ) {
test_help ( " --help " , " ../doc/long-help.txt " ) ;
}
fn test_help ( arg : & str , expect_file : & str ) {
let assert = bat ( ) . arg ( arg ) . assert ( ) ;
expect_test ::expect_file! [ expect_file ]
. assert_eq ( & String ::from_utf8_lossy ( & assert . get_output ( ) . stdout ) ) ;
}
2021-02-27 15:33:13 +01:00
#[ cfg(unix) ]
fn setup_temp_file ( content : & [ u8 ] ) -> io ::Result < ( PathBuf , tempfile ::TempDir ) > {
let dir = tempfile ::tempdir ( ) . expect ( " Couldn't create tempdir " ) ;
let path = dir . path ( ) . join ( " temp_file " ) ;
File ::create ( & path ) ? . write_all ( content ) ? ;
Ok ( ( path , dir ) )
}
#[ cfg(unix) ]
#[ test ]
fn basic_io_cycle ( ) -> io ::Result < ( ) > {
let ( filename , dir ) = setup_temp_file ( b " I am not empty " ) ? ;
let file_out = Stdio ::from ( File ::create ( & filename ) ? ) ;
let res = bat_raw_command ( )
. arg ( " test.txt " )
. arg ( & filename )
. stdout ( file_out )
. assert ( ) ;
drop ( dir ) ;
res . failure ( ) ;
Ok ( ( ) )
}
#[ cfg(unix) ]
2021-01-05 10:54:14 +01:00
#[ test ]
2021-02-27 15:33:13 +01:00
fn first_file_cyclic_is_ok ( ) -> io ::Result < ( ) > {
let ( filename , dir ) = setup_temp_file ( b " I am not empty " ) ? ;
let file_out = Stdio ::from ( File ::create ( & filename ) ? ) ;
let res = bat_raw_command ( )
. arg ( & filename )
2021-01-05 10:54:14 +01:00
. arg ( " test.txt " )
. stdout ( file_out )
2021-02-27 15:33:13 +01:00
. assert ( ) ;
drop ( dir ) ;
res . success ( ) ;
Ok ( ( ) )
2021-01-05 10:54:14 +01:00
}
2021-02-27 15:33:13 +01:00
#[ cfg(unix) ]
2021-01-05 10:54:14 +01:00
#[ test ]
2021-02-27 15:33:13 +01:00
fn empty_file_cycle_is_ok ( ) -> io ::Result < ( ) > {
let ( filename , dir ) = setup_temp_file ( b " I am not empty " ) ? ;
let file_out = Stdio ::from ( File ::create ( & filename ) ? ) ;
let res = bat_raw_command ( )
. arg ( " empty.txt " )
. arg ( & filename )
. stdout ( file_out )
. assert ( ) ;
drop ( dir ) ;
res . success ( ) ;
Ok ( ( ) )
}
#[ cfg(unix) ]
#[ test ]
fn stdin_to_stdout_cycle ( ) -> io ::Result < ( ) > {
let ( filename , dir ) = setup_temp_file ( b " I am not empty " ) ? ;
let file_in = Stdio ::from ( File ::open ( & filename ) ? ) ;
let file_out = Stdio ::from ( File ::create ( & filename ) ? ) ;
let res = bat_raw_command ( )
2021-01-05 10:54:14 +01:00
. arg ( " test.txt " )
. arg ( " - " )
2021-02-27 15:33:13 +01:00
. stdin ( file_in )
2021-01-05 10:54:14 +01:00
. stdout ( file_out )
2021-02-27 15:33:13 +01:00
. assert ( ) ;
drop ( dir ) ;
res . failure ( ) ;
Ok ( ( ) )
2021-01-05 10:54:14 +01:00
}
2021-01-05 10:55:22 +01:00
#[ cfg(unix) ]
#[ test ]
fn no_args_doesnt_break ( ) {
// To simulate bat getting started from the shell, a process is created with stdin and stdout
// as the slave end of a pseudo terminal. Although both point to the same "file", bat should
// not exit, because in this case it is safe to read and write to the same fd, which is why
// this test exists.
let OpenptyResult { master , slave } = openpty ( None , None ) . expect ( " Couldn't open pty. " ) ;
let mut master = unsafe { File ::from_raw_fd ( master ) } ;
2023-09-22 00:53:59 +02:00
let stdin_file = unsafe { File ::from_raw_fd ( slave ) } ;
let stdout_file = stdin_file . try_clone ( ) . unwrap ( ) ;
let stdin = Stdio ::from ( stdin_file ) ;
let stdout = Stdio ::from ( stdout_file ) ;
2021-01-05 10:55:22 +01:00
let mut child = bat_raw_command ( )
. stdin ( stdin )
. stdout ( stdout )
. spawn ( )
. expect ( " Failed to start. " ) ;
// Some time for the child process to start and to make sure, that we can poll the exit status.
// Although this waiting period is not necessary, it is best to keep it in and be absolutely
// sure, that the try_wait does not error later.
thread ::sleep ( SAFE_CHILD_PROCESS_CREATION_TIME ) ;
// The child process should be running and waiting for input,
// therefore no exit status should be available.
let exit_status = child
. try_wait ( )
. expect ( " Error polling exit status, this should never happen. " ) ;
assert! ( exit_status . is_none ( ) ) ;
// Write Ctrl-D (end of transmission) to the pty.
master
. write_all ( & [ 0x04 ] )
. expect ( " Couldn't write EOT character to master end. " ) ;
let exit_status = child
. wait_timeout ( CHILD_WAIT_TIMEOUT )
. expect ( " Error polling exit status, this should never happen. " )
. expect ( " Exit status not set, but the child should have exited already. " ) ;
assert! ( exit_status . success ( ) ) ;
}
2018-10-18 14:27:04 +02:00
#[ test ]
fn tabs_numbers ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-18 14:27:04 +02:00
. arg ( " tabs.txt " )
. arg ( " --tabs=4 " )
. arg ( " --style=numbers " )
. arg ( " --decorations=always " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-18 14:27:04 +02:00
. success ( )
2018-10-19 02:55:50 +02:00
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: tabs.txt \x07 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 ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-15 17:22:23 +02:00
. arg ( " tabs.txt " )
. arg ( " --tabs=0 " )
. arg ( " --style=plain " )
. arg ( " --decorations=always " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-15 17:22:23 +02:00
. success ( )
2018-10-19 02:55:50 +02:00
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: tabs.txt \x07 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 ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-15 17:22:23 +02:00
. arg ( " tabs.txt " )
. arg ( " --tabs=4 " )
. arg ( " --style=plain " )
. arg ( " --decorations=always " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-15 17:22:23 +02:00
. success ( )
2018-10-19 02:55:50 +02:00
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: tabs.txt \x07 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 ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-15 17:22:23 +02:00
. arg ( " tabs.txt " )
. arg ( " --tabs=8 " )
. arg ( " --style=plain " )
. arg ( " --decorations=always " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-15 17:22:23 +02:00
. success ( )
2018-10-19 02:55:50 +02:00
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: tabs.txt \x07 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 ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-15 17:22:23 +02:00
. arg ( " tabs.txt " )
. arg ( " --tabs=0 " )
. arg ( " --style=plain " )
. arg ( " --decorations=always " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-15 17:22:23 +02:00
. success ( )
2018-10-19 02:55:50 +02:00
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: tabs.txt \x07 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 ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-15 17:22:23 +02:00
. arg ( " tabs.txt " )
. arg ( " --tabs=4 " )
. arg ( " --style=plain " )
. arg ( " --decorations=always " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-15 17:22:23 +02:00
. success ( )
2018-10-19 02:55:50 +02:00
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: tabs.txt \x07 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 ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-15 17:22:23 +02:00
. arg ( " tabs.txt " )
. arg ( " --tabs=8 " )
. arg ( " --style=plain " )
. arg ( " --decorations=always " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-15 17:22:23 +02:00
. success ( )
2018-10-19 02:55:50 +02:00
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: tabs.txt \x07 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
}
2022-10-26 04:18:03 +02:00
#[ test ]
fn tabs_4_env_overrides_config ( ) {
bat_with_config ( )
. env ( " BAT_CONFIG_PATH " , " bat-tabs.conf " )
. env ( " BAT_TABS " , " 4 " )
. arg ( " tabs.txt " )
. arg ( " --style=plain " )
. arg ( " --decorations=always " )
. assert ( )
. success ( )
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: tabs.txt \x07 1 2 3 4
2022-10-26 04:18:03 +02:00
1 ?
22 ?
333 ?
4444 ?
55555 ?
666666 ?
7777777 ?
88888888 ?
" ,
) ;
}
#[ test ]
fn tabs_4_arg_overrides_env ( ) {
bat_with_config ( )
. env ( " BAT_CONFIG_PATH " , " bat-tabs.conf " )
. env ( " BAT_TABS " , " 6 " )
. arg ( " tabs.txt " )
. arg ( " --tabs=4 " )
. arg ( " --style=plain " )
. arg ( " --decorations=always " )
. assert ( )
. success ( )
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: tabs.txt \x07 1 2 3 4
2022-10-26 04:18:03 +02:00
1 ?
22 ?
333 ?
4444 ?
55555 ?
666666 ?
7777777 ?
88888888 ?
" ,
) ;
}
#[ test ]
fn tabs_4_arg_overrides_env_noconfig ( ) {
bat ( )
. env ( " BAT_TABS " , " 6 " )
. arg ( " tabs.txt " )
. arg ( " --tabs=4 " )
. arg ( " --style=plain " )
. arg ( " --decorations=always " )
. assert ( )
. success ( )
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: tabs.txt \x07 1 2 3 4
2022-10-26 04:18:03 +02:00
1 ?
22 ?
333 ?
4444 ?
55555 ?
666666 ?
7777777 ?
88888888 ?
" ,
) ;
}
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 ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2018-10-11 21:54:19 +02:00
. arg ( " sub_directory " )
. arg ( " test.txt " )
2020-06-01 23:50:24 +02:00
. assert ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: sub_directory, test.txt \x07 hello world \n " )
2018-10-11 21:54:19 +02:00
. failure ( ) ;
}
2018-10-17 20:44:15 +02:00
#[ test ]
2023-09-08 06:18:25 +02:00
#[ serial ]
2018-10-17 20:44:15 +02:00
fn pager_basic ( ) {
2023-09-08 06:18:25 +02:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
bat ( )
. env ( " PAGER " , mocked_pagers ::from ( " echo pager-output " ) )
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( predicate ::str ::contains ( " pager-output \n " ) . normalize ( ) ) ;
} ) ;
2018-10-17 20:44:15 +02:00
}
2022-10-26 01:30:11 +02:00
#[ test ]
2023-09-08 06:18:25 +02:00
#[ serial ]
2022-10-26 01:30:11 +02:00
fn pager_basic_arg ( ) {
2023-09-08 06:18:25 +02:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
bat ( )
. arg ( format! (
" --pager={} " ,
mocked_pagers ::from ( " echo pager-output " )
) )
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( predicate ::str ::contains ( " pager-output \n " ) . normalize ( ) ) ;
} ) ;
2022-10-26 01:30:11 +02:00
}
2018-10-17 20:44:15 +02:00
#[ test ]
2023-09-08 06:18:25 +02:00
#[ serial ]
2018-10-17 20:44:15 +02:00
fn pager_overwrite ( ) {
2023-09-08 06:18:25 +02:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
bat ( )
. env ( " PAGER " , mocked_pagers ::from ( " echo other-pager " ) )
. env ( " BAT_PAGER " , mocked_pagers ::from ( " echo pager-output " ) )
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( predicate ::str ::contains ( " pager-output \n " ) . normalize ( ) ) ;
} ) ;
2018-10-17 20:44:15 +02:00
}
#[ test ]
fn pager_disable ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2020-05-28 05:30:51 +02:00
. env ( " PAGER " , " echo other-pager " )
2018-10-17 20:44:15 +02:00
. env ( " BAT_PAGER " , " " )
. arg ( " --paging=always " )
. arg ( " test.txt " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-10-17 20:44:15 +02:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( predicate ::eq ( " \u{1b} ]2;bat: test.txt \x07 hello world \n " ) . normalize ( ) ) ;
2018-10-17 20:44:15 +02:00
}
2018-11-01 16:48:56 +01:00
2022-10-26 01:30:11 +02:00
#[ test ]
2023-09-08 06:18:25 +02:00
#[ serial ]
2022-10-26 04:18:03 +02:00
fn pager_arg_override_env_withconfig ( ) {
2023-09-08 06:18:25 +02:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
bat_with_config ( )
. env ( " BAT_CONFIG_PATH " , get_config ( ) )
. env ( " PAGER " , mocked_pagers ::from ( " echo another-pager " ) )
. env ( " BAT_PAGER " , mocked_pagers ::from ( " echo other-pager " ) )
. arg ( format! (
" --pager={} " ,
mocked_pagers ::from ( " echo pager-output " )
) )
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( predicate ::str ::contains ( " pager-output \n " ) . normalize ( ) ) ;
} ) ;
2022-10-26 01:30:11 +02:00
}
2022-10-26 04:18:03 +02:00
#[ test ]
2023-09-08 06:18:25 +02:00
#[ serial ]
2022-10-26 04:18:03 +02:00
fn pager_arg_override_env_noconfig ( ) {
2023-09-08 06:18:25 +02:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
bat ( )
. env ( " PAGER " , mocked_pagers ::from ( " echo another-pager " ) )
. env ( " BAT_PAGER " , mocked_pagers ::from ( " echo other-pager " ) )
. arg ( format! (
" --pager={} " ,
mocked_pagers ::from ( " echo pager-output " )
) )
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( predicate ::str ::contains ( " pager-output \n " ) . normalize ( ) ) ;
} ) ;
2022-10-26 04:18:03 +02:00
}
2022-10-26 01:30:11 +02:00
#[ test ]
2023-09-08 06:18:25 +02:00
#[ serial ]
2022-10-26 01:30:11 +02:00
fn pager_env_bat_pager_override_config ( ) {
2023-09-08 06:18:25 +02:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
bat_with_config ( )
. env ( " BAT_CONFIG_PATH " , get_config ( ) )
. env ( " PAGER " , mocked_pagers ::from ( " echo other-pager " ) )
. env ( " BAT_PAGER " , mocked_pagers ::from ( " echo pager-output " ) )
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( predicate ::str ::contains ( " pager-output \n " ) . normalize ( ) ) ;
} ) ;
2022-10-26 01:30:11 +02:00
}
#[ test ]
2023-09-08 06:18:25 +02:00
#[ serial ]
2022-10-26 01:30:11 +02:00
fn pager_env_pager_nooverride_config ( ) {
2023-09-08 06:18:25 +02:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
bat_with_config ( )
. env ( " BAT_CONFIG_PATH " , get_config ( ) )
. env ( " PAGER " , mocked_pagers ::from ( " echo other-pager " ) )
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( predicate ::str ::contains ( " dummy-pager-from-config \n " ) . normalize ( ) ) ;
} ) ;
2022-10-26 01:30:11 +02:00
}
2021-01-10 16:48:13 +01:00
#[ test ]
fn env_var_pager_value_bat ( ) {
bat ( )
. env ( " PAGER " , " bat " )
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( predicate ::eq ( " \u{1b} ]2;bat: test.txt \x07 hello world \n " ) . normalize ( ) ) ;
2021-01-10 16:48:13 +01:00
}
#[ test ]
fn env_var_bat_pager_value_bat ( ) {
bat ( )
. env ( " BAT_PAGER " , " bat " )
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. failure ( )
. stderr ( predicate ::str ::contains ( " bat as a pager is disallowed " ) ) ;
}
2020-10-25 10:13:57 +01:00
#[ test ]
fn pager_value_bat ( ) {
bat ( )
. arg ( " --pager=bat " )
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
2021-01-10 16:48:13 +01:00
. failure ( )
. stderr ( predicate ::str ::contains ( " bat as a pager is disallowed " ) ) ;
2020-10-25 10:13:57 +01:00
}
2021-01-04 10:23:13 +01:00
/// We shall use less instead of most if PAGER is used since PAGER
/// is a generic env var
2020-11-27 06:47:46 +01:00
#[ test ]
2021-01-04 15:45:56 +01:00
#[ serial ] // Because of PATH
2021-01-04 10:23:13 +01:00
fn pager_most_from_pager_env_var ( ) {
2021-01-10 14:05:39 +01:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
2021-01-04 17:20:02 +01:00
// If the output is not "I am most" then we know 'most' is not used
2021-01-04 10:23:13 +01:00
bat ( )
2021-01-10 14:05:39 +01:00
. env ( " PAGER " , mocked_pagers ::from ( " most " ) )
2021-01-04 10:23:13 +01:00
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( predicate ::eq ( " \u{1b} ]2;bat: test.txt \x07 hello world \n " ) . normalize ( ) ) ;
2021-01-04 10:23:13 +01:00
} ) ;
}
/// If the bat-specific BAT_PAGER is used, obey the wish of the user
/// and allow 'most'
#[ test ]
2021-01-04 15:45:56 +01:00
#[ serial ] // Because of PATH
2021-01-04 10:23:13 +01:00
fn pager_most_from_bat_pager_env_var ( ) {
2021-01-10 14:05:39 +01:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
2021-01-04 10:23:13 +01:00
bat ( )
2021-01-10 14:05:39 +01:00
. env ( " BAT_PAGER " , mocked_pagers ::from ( " most " ) )
2021-01-04 10:23:13 +01:00
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
2021-01-04 17:20:02 +01:00
. stdout ( predicate ::str ::contains ( " I am most " ) ) ;
2021-01-04 10:23:13 +01:00
} ) ;
2020-11-27 06:47:46 +01:00
}
2021-01-04 10:23:13 +01:00
/// Same reasoning with --pager as with BAT_PAGER
#[ test ]
2021-01-04 15:45:56 +01:00
#[ serial ] // Because of PATH
2021-01-04 10:23:13 +01:00
fn pager_most_from_pager_arg ( ) {
2021-01-10 14:05:39 +01:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
2021-01-04 10:23:13 +01:00
bat ( )
. arg ( " --paging=always " )
2021-01-10 14:05:39 +01:00
. arg ( format! ( " --pager= {} " , mocked_pagers ::from ( " most " ) ) )
2021-01-04 10:23:13 +01:00
. arg ( " test.txt " )
. assert ( )
. success ( )
2021-01-04 17:20:02 +01:00
. stdout ( predicate ::str ::contains ( " I am most " ) ) ;
2021-01-04 10:23:13 +01:00
} ) ;
}
/// Make sure the logic for 'most' applies even if an argument is passed
2020-11-27 06:47:46 +01:00
#[ test ]
2021-01-04 15:45:56 +01:00
#[ serial ] // Because of PATH
2020-11-27 06:47:46 +01:00
fn pager_most_with_arg ( ) {
2021-01-10 14:05:39 +01:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
2021-01-04 10:23:13 +01:00
bat ( )
2021-01-10 14:05:39 +01:00
. env ( " PAGER " , format! ( " {} -w " , mocked_pagers ::from ( " most " ) ) )
2021-01-04 10:23:13 +01:00
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( predicate ::eq ( " \u{1b} ]2;bat: test.txt \x07 hello world \n " ) . normalize ( ) ) ;
2021-01-04 10:23:13 +01:00
} ) ;
}
/// Sanity check that 'more' is treated like 'most'
#[ test ]
2021-01-04 15:45:56 +01:00
#[ serial ] // Because of PATH
2021-01-04 10:23:13 +01:00
fn pager_more ( ) {
2021-01-10 14:05:39 +01:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
2021-01-04 10:23:13 +01:00
bat ( )
2021-01-10 14:05:39 +01:00
. env ( " PAGER " , mocked_pagers ::from ( " more " ) )
2021-01-04 10:23:13 +01:00
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( predicate ::eq ( " \u{1b} ]2;bat: test.txt \x07 hello world \n " ) . normalize ( ) ) ;
2021-01-04 10:23:13 +01:00
} ) ;
2020-11-27 06:47:46 +01:00
}
2020-06-30 21:41:50 +02:00
#[ test ]
fn alias_pager_disable ( ) {
bat ( )
. env ( " PAGER " , " echo other-pager " )
. arg ( " -P " )
. arg ( " test.txt " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( predicate ::eq ( " \u{1b} ]2;bat: test.txt \x07 hello world \n " ) . normalize ( ) ) ;
2020-06-30 21:41:50 +02:00
}
#[ test ]
2023-09-08 06:18:25 +02:00
#[ serial ]
2020-06-30 21:41:50 +02:00
fn alias_pager_disable_long_overrides_short ( ) {
2023-09-08 06:18:25 +02:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
bat ( )
. env ( " PAGER " , mocked_pagers ::from ( " echo pager-output " ) )
. arg ( " -P " )
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( predicate ::str ::contains ( " pager-output \n " ) . normalize ( ) ) ;
} ) ;
2020-06-30 21:41:50 +02:00
}
2022-08-14 21:09:13 +02:00
#[ test ]
fn disable_pager_if_disable_paging_flag_comes_after_paging ( ) {
bat ( )
. env ( " PAGER " , " echo pager-output " )
. arg ( " --paging=always " )
. arg ( " -P " )
. arg ( " test.txt " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( predicate ::eq ( " \u{1b} ]2;bat: test.txt \x07 hello world \n " ) . normalize ( ) ) ;
2022-08-14 21:09:13 +02:00
}
2023-09-14 05:45:46 +02:00
#[ test ]
fn disable_pager_if_pp_flag_comes_after_paging ( ) {
bat ( )
. env ( " PAGER " , " echo pager-output " )
. arg ( " --paging=always " )
. arg ( " -pp " )
. arg ( " test.txt " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( predicate ::eq ( " \u{1b} ]2;bat: test.txt \x07 hello world \n " ) . normalize ( ) ) ;
2023-09-14 05:45:46 +02:00
}
#[ test ]
fn enable_pager_if_disable_paging_flag_comes_before_paging ( ) {
bat ( )
. env ( " PAGER " , " echo pager-output " )
. arg ( " -P " )
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( predicate ::eq ( " \u{1b} ]2;bat: test.txt \x07 pager-output \n " ) . normalize ( ) ) ;
2023-09-14 05:45:46 +02:00
}
#[ test ]
fn enable_pager_if_pp_flag_comes_before_paging ( ) {
bat ( )
. env ( " PAGER " , " echo pager-output " )
. arg ( " -pp " )
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( predicate ::eq ( " \u{1b} ]2;bat: test.txt \x07 pager-output \n " ) . normalize ( ) ) ;
2023-09-14 05:45:46 +02:00
}
2021-01-05 10:14:30 +01:00
#[ test ]
fn pager_failed_to_parse ( ) {
bat ( )
. env ( " BAT_PAGER " , " mismatched-quotes 'a " )
. arg ( " --paging=always " )
. arg ( " test.txt " )
. assert ( )
. failure ( )
. stderr ( predicate ::str ::contains ( " Could not parse pager command " ) ) ;
}
2023-08-07 19:23:52 +02:00
#[ test ]
2023-09-08 06:18:25 +02:00
#[ serial ]
2023-08-07 19:23:52 +02:00
fn env_var_bat_paging ( ) {
2023-09-08 06:18:25 +02:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
bat ( )
. env ( " BAT_PAGER " , mocked_pagers ::from ( " echo pager-output " ) )
. env ( " BAT_PAGING " , " always " )
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( predicate ::str ::contains ( " pager-output \n " ) . normalize ( ) ) ;
} ) ;
2023-08-07 19:23:52 +02:00
}
2021-08-07 12:13:12 +02:00
#[ test ]
fn diagnostic_sanity_check ( ) {
bat ( )
. arg ( " --diagnostic " )
. assert ( )
. success ( )
. stdout ( predicate ::str ::contains ( " BAT_PAGER= " ) )
. stderr ( " " ) ;
}
2018-11-01 16:48:56 +01:00
#[ test ]
fn config_location_test ( ) {
2020-06-01 23:50:24 +02:00
bat_with_config ( )
2018-11-01 16:48:56 +01:00
. env ( " BAT_CONFIG_PATH " , " bat.conf " )
. arg ( " --config-file " )
2020-06-01 23:50:24 +02:00
. assert ( )
2018-11-01 16:48:56 +01:00
. success ( )
. stdout ( " bat.conf \n " ) ;
2021-02-27 12:21:06 +01:00
bat_with_config ( )
. env ( " BAT_CONFIG_PATH " , " not-existing.conf " )
. arg ( " --config-file " )
. assert ( )
. success ( )
. stdout ( " not-existing.conf \n " ) ;
2018-11-01 16:48:56 +01:00
}
2021-02-28 15:05:41 +01:00
#[ test ]
fn config_location_when_generating ( ) {
2021-02-28 16:56:16 +01:00
let tmp_dir = tempdir ( ) . expect ( " can create temporary directory " ) ;
let tmp_config_path = tmp_dir . path ( ) . join ( " should-be-created.conf " ) ;
2021-02-28 15:05:41 +01:00
// Create the file with bat
bat_with_config ( )
. env ( " BAT_CONFIG_PATH " , tmp_config_path . to_str ( ) . unwrap ( ) )
. arg ( " --generate-config-file " )
. assert ( )
. success ( )
2021-02-28 16:56:16 +01:00
. stdout (
predicate ::str ::is_match ( " Success! Config file written to .*should-be-created.conf \n " )
. unwrap ( ) ,
) ;
2021-02-28 15:05:41 +01:00
// Now we expect the file to exist. If it exists, we assume contents are correct
assert! ( tmp_config_path . exists ( ) ) ;
}
2021-08-13 00:08:13 +02:00
#[ test ]
fn config_location_from_bat_config_dir_variable ( ) {
bat_with_config ( )
2021-08-14 21:42:34 +02:00
. env ( " BAT_CONFIG_DIR " , " conf/ " )
. arg ( " --config-file " )
2021-08-13 00:08:13 +02:00
. assert ( )
. success ( )
2021-08-18 13:45:22 +02:00
. stdout ( predicate ::str ::is_match ( " conf/config \n " ) . unwrap ( ) ) ;
2021-08-13 00:08:13 +02:00
}
2018-11-01 16:48:56 +01:00
#[ test ]
2023-09-08 06:18:25 +02:00
#[ serial ]
2018-11-04 10:56:31 +01:00
fn config_read_arguments_from_file ( ) {
2023-09-08 06:18:25 +02:00
mocked_pagers ::with_mocked_versions_of_more_and_most_in_path ( | | {
bat_with_config ( )
. env ( " BAT_CONFIG_PATH " , get_config ( ) )
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( predicate ::str ::contains ( " dummy-pager-from-config \n " ) . normalize ( ) ) ;
} ) ;
2018-11-01 16:48:56 +01:00
}
2019-02-10 09:19:38 +01:00
2022-10-26 20:28:38 +02:00
#[ cfg(unix) ]
#[ test ]
fn cache_clear ( ) {
let src_dir = " cache_source " ;
let tmp_dir = tempdir ( ) . expect ( " can create temporary directory " ) ;
let themes_filename = " themes.bin " ;
let syntaxes_filename = " syntaxes.bin " ;
let metadata_filename = " metadata.yaml " ;
[ themes_filename , syntaxes_filename , metadata_filename ]
. iter ( )
. map ( | filename | {
let fp = tmp_dir . path ( ) . join ( filename ) ;
let mut file = File ::create ( fp ) . expect ( " can create temporary file " ) ;
writeln! ( file , " dummy content " ) . expect ( " can write to file " ) ;
} )
. count ( ) ;
// Clear the targeted cache
2022-11-02 22:09:15 +01:00
// Include the BAT_CONFIG_PATH and BAT_THEME environment variables to ensure that
// options loaded from a config or the environment are not inserted
// before the cache subcommand, which would break it.
2022-10-26 20:28:38 +02:00
bat_with_config ( )
. current_dir ( Path ::new ( EXAMPLES_DIR ) . join ( src_dir ) )
. env ( " BAT_CONFIG_PATH " , " bat.conf " )
. env ( " BAT_THEME " , " 1337 " )
. arg ( " cache " )
. arg ( " --clear " )
. arg ( " --source " )
. arg ( " . " )
. arg ( " --target " )
. arg ( tmp_dir . path ( ) . to_str ( ) . unwrap ( ) )
. assert ( )
. success ( )
. stdout (
predicate ::str ::is_match (
" Clearing theme set cache ... okay
Clearing syntax set cache .. . okay
Clearing metadata file .. . okay " ,
)
. unwrap ( ) ,
) ;
// We expect these files to be removed
assert! ( ! tmp_dir . path ( ) . join ( themes_filename ) . exists ( ) ) ;
assert! ( ! tmp_dir . path ( ) . join ( syntaxes_filename ) . exists ( ) ) ;
assert! ( ! tmp_dir . path ( ) . join ( metadata_filename ) . exists ( ) ) ;
}
#[ cfg(unix) ]
#[ test ]
fn cache_build ( ) {
let src_dir = " cache_source " ;
let tmp_dir = tempdir ( ) . expect ( " can create temporary directory " ) ;
let tmp_themes_path = tmp_dir . path ( ) . join ( " themes.bin " ) ;
let tmp_syntaxes_path = tmp_dir . path ( ) . join ( " syntaxes.bin " ) ;
let tmp_acknowledgements_path = tmp_dir . path ( ) . join ( " acknowledgements.bin " ) ;
let tmp_metadata_path = tmp_dir . path ( ) . join ( " metadata.yaml " ) ;
// Build the cache
2022-11-02 22:09:15 +01:00
// Include the BAT_CONFIG_PATH and BAT_THEME environment variables to ensure that
// options loaded from a config or the environment are not inserted
// before the cache subcommand, which would break it.
2022-10-26 20:28:38 +02:00
bat_with_config ( )
. current_dir ( Path ::new ( EXAMPLES_DIR ) . join ( src_dir ) )
. env ( " BAT_CONFIG_PATH " , " bat.conf " )
. env ( " BAT_THEME " , " 1337 " )
. arg ( " cache " )
. arg ( " --build " )
. arg ( " --blank " )
. arg ( " --source " )
. arg ( " . " )
. arg ( " --target " )
. arg ( tmp_dir . path ( ) . to_str ( ) . unwrap ( ) )
. arg ( " --acknowledgements " )
. assert ( )
. success ( )
. stdout (
predicate ::str ::is_match (
" Writing theme set to .*/themes.bin ... okay
Writing syntax set to . * / syntaxes . bin .. . okay
Writing acknowledgements to . * / acknowledgements . bin .. . okay
Writing metadata to folder . * .. . okay " ,
)
. unwrap ( ) ,
) ;
// Now we expect the files to exist. If they exist, we assume contents are correct
assert! ( tmp_themes_path . exists ( ) ) ;
assert! ( tmp_syntaxes_path . exists ( ) ) ;
assert! ( tmp_acknowledgements_path . exists ( ) ) ;
assert! ( tmp_metadata_path . exists ( ) ) ;
}
2019-02-10 09:19:38 +01:00
#[ test ]
fn utf16 ( ) {
2022-09-06 19:08:38 +02:00
// The output will be converted to UTF-8 with the leading UTF-16
// BOM removed. This behavior is wanted in interactive mode as
// some terminals seem to display the BOM character as a space,
// and it also breaks syntax highlighting.
2020-06-01 23:50:24 +02:00
bat ( )
2019-02-10 09:19:38 +01:00
. arg ( " --plain " )
. arg ( " --decorations=always " )
. arg ( " test_UTF-16LE.txt " )
2020-06-01 23:50:24 +02:00
. assert ( )
2019-02-10 09:19:38 +01:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: test_UTF-16LE.txt \x07 hello world \n " ) ;
2022-09-06 19:08:38 +02:00
}
// Regression test for https://github.com/sharkdp/bat/issues/1922
#[ test ]
fn bom_not_stripped_in_loop_through_mode ( ) {
bat ( )
. arg ( " --plain " )
. arg ( " --decorations=never " )
. arg ( " --color=never " )
. arg ( " test_BOM.txt " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: test_BOM.txt \x07 \u{feff} hello world \n " ) ;
2022-09-06 19:08:38 +02:00
}
// Regression test for https://github.com/sharkdp/bat/issues/1922
#[ test ]
fn bom_stripped_when_colored_output ( ) {
bat ( )
. arg ( " --color=always " )
. arg ( " --decorations=never " )
. arg ( " test_BOM.txt " )
. assert ( )
. success ( )
. stdout (
predicate ::str ::is_match ( " \u{1b} \\ [38;5;[0-9]{3}mhello world \u{1b} \\ [0m \n " ) . unwrap ( ) ,
) ;
}
// Regression test for https://github.com/sharkdp/bat/issues/1922
#[ test ]
fn bom_stripped_when_no_color_and_not_loop_through ( ) {
bat ( )
. arg ( " --color=never " )
. arg ( " --decorations=always " )
. arg ( " --style=numbers,grid,header " )
. arg ( " --terminal-width=80 " )
. arg ( " test_BOM.txt " )
. assert ( )
. success ( )
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: test_BOM.txt \x07 \
2022-09-06 19:08:38 +02:00
─ ─ ─ ─ ─ ┬ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
│ File : test_BOM . txt
─ ─ ─ ─ ─ ┼ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
1 │ hello world
─ ─ ─ ─ ─ ┴ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
" ,
) ;
2019-02-10 09:19:38 +01:00
}
2019-05-10 21:02:08 +02:00
#[ test ]
fn can_print_file_named_cache ( ) {
2020-06-01 23:50:24 +02:00
bat_with_config ( )
2019-05-10 21:02:08 +02:00
. arg ( " cache " )
2020-06-01 23:50:24 +02:00
. assert ( )
2019-05-10 21:02:08 +02:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: cache \x07 test \n " )
2019-05-10 21:02:08 +02:00
. stderr ( " " ) ;
}
2019-09-21 09:10:12 +02:00
#[ test ]
fn can_print_file_named_cache_with_additional_argument ( ) {
2020-06-01 23:50:24 +02:00
bat_with_config ( )
2019-09-21 09:10:12 +02:00
. arg ( " cache " )
. arg ( " test.txt " )
2020-06-01 23:50:24 +02:00
. assert ( )
2019-09-21 09:10:12 +02:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: cache, test.txt \x07 test \n hello world \n " )
2019-09-21 09:10:12 +02:00
. stderr ( " " ) ;
}
2019-08-31 14:13:19 +02:00
#[ test ]
fn can_print_file_starting_with_cache ( ) {
2020-06-01 23:50:24 +02:00
bat_with_config ( )
2019-08-31 14:13:19 +02:00
. arg ( " cache.c " )
2020-06-01 23:50:24 +02:00
. assert ( )
2019-08-31 14:13:19 +02:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: cache.c \x07 test \n " )
2019-08-31 14:13:19 +02:00
. stderr ( " " ) ;
}
2019-05-10 21:02:08 +02:00
#[ test ]
fn does_not_print_unwanted_file_named_cache ( ) {
bat_with_config ( ) . arg ( " cach " ) . assert ( ) . failure ( ) ;
}
2019-08-31 12:46:03 +02:00
2021-07-27 20:11:58 +02:00
#[ test ]
fn accepts_no_custom_assets_arg ( ) {
// Just make sure --no-custom-assets is considered a valid arg
// Don't bother to actually verify that it works
bat ( )
. arg ( " --no-custom-assets " )
. arg ( " test.txt " )
. assert ( )
. success ( ) ;
}
2020-02-01 10:49:29 +01:00
#[ test ]
fn unicode_wrap ( ) {
2020-06-01 23:50:24 +02:00
bat_with_config ( )
2020-02-01 10:49:29 +01:00
. arg ( " unicode-wrap.txt " )
. arg ( " --style=numbers,snip " )
. arg ( " --decorations=always " )
. arg ( " --terminal-width=40 " )
2020-06-01 23:50:24 +02:00
. assert ( )
2020-02-01 10:49:29 +01:00
. success ( )
2020-02-28 10:27:06 +01:00
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: unicode-wrap.txt \x07 1 ビタミンA ビタミンD ビタミンE ビ
2020-02-28 03:42:44 +01:00
タ ミ ン K ビ タ ミ ン B1 ビ タ ミ ン B2 ナ
イ ア シ ン パ ン ト テ ン 酸 ビ タ ミ ン B6
ビ タ ミ ン B12 葉 酸 ビ オ チ ン ビ タ
ミ ン C
2020-02-01 10:49:29 +01:00
2
2020-02-28 03:42:44 +01:00
3 고 양 이 고 양 이 고 양 이 고 양 이 고 양 이
고 양 이 고 양 이 고 양 이 고 양 이 고 양 이
고 양 이 고 양 이 고 양 이 고 양 이 고 양 이
고 양 이 고 양 이 고 양 이 고 양 이 고 양 이
고 양 이 고 양 이 고 양 이 고 양 이 고 양 이
고 양 이 고 양 이 고 양 이 고 양 이 고 양 이
고 양 이 고 양 이 고 양 이 고 양 이 고 양 이
고 양 이 고 양 이 고 양 이 고 양 이 고 양 이
고 양 이
2020-02-01 10:49:29 +01:00
4
2020-02-28 03:42:44 +01:00
5 1 บ ว ก 2 บ ว ก 3 บ ว ก 4 บ ว ก 5 บ ว ก 6 บ ว ก
7 บ ว ก 8 บ ว ก 9 บ ว ก 10 บ ว ก 11 บ ว ก 12
บ ว ก 13 บ ว ก 14 บ ว ก 15 บ ว ก 16 บ ว ก 17
บ ว ก 18 บ ว ก 19 บ ว ก 20
2020-02-01 10:49:29 +01:00
6
2020-02-28 03:42:44 +01:00
7 Б е л ь г и я Б о л г а р и я Ч е х и я Д а н и я Г е р м а н
и я Э с т о н и я И р л а н д и я Г р е ц и я И с п а н и я
Ф р а н ц и я Х о р в а т и я И т а л и я К и п р Л а т в и я
Л и т в а Л ю к с е м б у р г В е н г р и я М а л ь т а Н и
д е р л а н д ы А в с т р и я П о л ь ш а П о р т у г а л и я
Р у м ы н и я С л о в е н и я С л о в а к и я Ф и н л я н д и я
Ш в е ц и я В е л и к о б р и т а н и я
2020-02-28 10:27:06 +01:00
" ,
) ;
2020-02-01 10:49:29 +01:00
}
2019-08-31 12:46:03 +02:00
#[ test ]
fn snip ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2019-08-31 12:46:03 +02:00
. arg ( " multiline.txt " )
. arg ( " --style=numbers,snip " )
. arg ( " --decorations=always " )
. arg ( " --line-range=1:2 " )
. arg ( " --line-range=4: " )
2019-08-31 13:01:36 +02:00
. arg ( " --terminal-width=80 " )
2020-06-01 23:50:24 +02:00
. assert ( )
2019-08-31 12:46:03 +02:00
. success ( )
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: multiline.txt \x07 1 line 1
2019-08-31 12:46:03 +02:00
2 line 2
.. . ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ 8 < ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
4 line 4
" ,
) ;
}
2020-02-28 00:09:01 +01:00
#[ test ]
fn empty_file_leads_to_empty_output_with_grid_enabled ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2020-02-28 00:09:01 +01:00
. arg ( " empty.txt " )
. arg ( " --style=grid " )
. arg ( " --decorations=always " )
. arg ( " --terminal-width=80 " )
2020-06-01 23:50:24 +02:00
. assert ( )
2020-02-28 00:09:01 +01:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: empty.txt \x07 " ) ;
2020-02-28 00:09:01 +01:00
}
2020-03-20 03:46:19 +01:00
2020-10-06 17:57:47 +02:00
#[ test ]
fn empty_file_leads_to_empty_output_with_rule_enabled ( ) {
bat ( )
. arg ( " empty.txt " )
. arg ( " --style=rule " )
. arg ( " --decorations=always " )
. arg ( " --terminal-width=80 " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: empty.txt \x07 " ) ;
2020-10-06 17:57:47 +02:00
}
2020-03-20 03:46:19 +01:00
#[ test ]
2022-02-07 20:48:57 +01:00
fn header_basic ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2020-03-20 03:46:19 +01:00
. arg ( " test.txt " )
. arg ( " --decorations=always " )
. arg ( " --style=header " )
. arg ( " -r=0:0 " )
. arg ( " --file-name=foo " )
2020-06-01 23:50:24 +02:00
. assert ( )
2020-03-20 03:46:19 +01:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: foo \x07 File: foo \n " )
2020-03-20 03:46:19 +01:00
. stderr ( " " ) ;
}
#[ test ]
2022-02-07 20:48:57 +01:00
fn header_full_basic ( ) {
bat ( )
. arg ( " test.txt " )
. arg ( " --decorations=always " )
. arg ( " --style=header-filename,header-filesize " )
. arg ( " -r=0:0 " )
. arg ( " --file-name=foo " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: foo \x07 File: foo \n Size: 12 B \n " )
2022-02-07 20:48:57 +01:00
. stderr ( " " ) ;
}
2022-10-26 04:18:03 +02:00
#[ test ]
fn header_env_basic ( ) {
bat_with_config ( )
. env ( " BAT_STYLE " , " header-filename,header-filesize " )
. arg ( " test.txt " )
. arg ( " --decorations=always " )
. arg ( " -r=0:0 " )
. arg ( " --file-name=foo " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: foo \x07 File: foo \n Size: 12 B \n " )
2022-10-26 04:18:03 +02:00
. stderr ( " " ) ;
}
#[ test ]
fn header_arg_overrides_env ( ) {
bat_with_config ( )
. env ( " BAT_STYLE " , " header-filesize " )
. arg ( " test.txt " )
. arg ( " --decorations=always " )
. arg ( " --style=header-filename " )
. arg ( " -r=0:0 " )
. arg ( " --file-name=foo " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: foo \x07 File: foo \n " )
2022-10-26 04:18:03 +02:00
. stderr ( " " ) ;
}
2022-02-07 20:48:57 +01:00
#[ test ]
fn header_binary ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2020-03-20 03:46:19 +01:00
. arg ( " test.binary " )
. arg ( " --decorations=always " )
. arg ( " --style=header " )
. arg ( " -r=0:0 " )
. arg ( " --file-name=foo " )
2020-06-01 23:50:24 +02:00
. assert ( )
2020-03-20 03:46:19 +01:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: foo \x07 File: foo <BINARY> \n " )
2020-03-20 03:46:19 +01:00
. stderr ( " " ) ;
}
2022-02-07 20:48:57 +01:00
#[ test ]
fn header_full_binary ( ) {
bat ( )
. arg ( " test.binary " )
. arg ( " --decorations=always " )
. arg ( " --style=header-filename,header-filesize " )
. arg ( " -r=0:0 " )
. arg ( " --file-name=foo " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: foo \x07 File: foo <BINARY> \n Size: 4 B \n " )
2022-02-07 20:48:57 +01:00
. stderr ( " " ) ;
}
2022-05-04 21:31:32 +02:00
#[ test ]
2022-08-18 10:20:31 +02:00
#[ cfg(feature = " git " ) ] // Expected output assumes git is enabled
2022-05-04 21:31:32 +02:00
fn header_default ( ) {
bat ( )
. arg ( " --paging=never " )
. arg ( " --color=never " )
. arg ( " --terminal-width=80 " )
. arg ( " --wrap=never " )
. arg ( " --decorations=always " )
. arg ( " --style=default " )
. arg ( " single-line.txt " )
. assert ( )
. success ( )
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: single-line.txt \x07 \
2022-05-04 21:31:32 +02:00
─ ─ ─ ─ ─ ─ ─ ┬ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
│ File : single - line . txt
─ ─ ─ ─ ─ ─ ─ ┼ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
1 │ Single Line
─ ─ ─ ─ ─ ─ ─ ┴ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
" ,
)
. stderr ( " " ) ;
}
#[ test ]
2022-08-18 10:20:31 +02:00
#[ cfg(feature = " git " ) ] // Expected output assumes git is enabled
2022-05-04 21:31:32 +02:00
fn header_default_is_default ( ) {
bat ( )
. arg ( " --paging=never " )
. arg ( " --color=never " )
. arg ( " --terminal-width=80 " )
. arg ( " --wrap=never " )
. arg ( " --decorations=always " )
. arg ( " single-line.txt " )
. assert ( )
. success ( )
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: single-line.txt \x07 \
2022-05-04 21:31:32 +02:00
─ ─ ─ ─ ─ ─ ─ ┬ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
│ File : single - line . txt
─ ─ ─ ─ ─ ─ ─ ┼ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
1 │ Single Line
─ ─ ─ ─ ─ ─ ─ ┴ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
" ,
)
. stderr ( " " ) ;
}
2020-03-20 03:46:19 +01:00
#[ test ]
fn filename_stdin ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2020-03-20 03:46:19 +01:00
. arg ( " --decorations=always " )
. arg ( " --style=header " )
. arg ( " -r=0:0 " )
. arg ( " - " )
. write_stdin ( " stdin \n " )
. arg ( " --file-name=foo " )
2020-06-01 23:50:24 +02:00
. assert ( )
2020-03-20 03:46:19 +01:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: foo \x07 File: foo \n " )
2020-03-20 03:46:19 +01:00
. stderr ( " " ) ;
}
#[ test ]
fn filename_stdin_binary ( ) {
let vec = vec! [ 0 ; 1 ] ;
2020-06-01 23:50:24 +02:00
bat_with_config ( )
2020-03-20 03:46:19 +01:00
. arg ( " --decorations=always " )
. arg ( " --style=header " )
. write_stdin ( vec )
. arg ( " --file-name=foo " )
2020-06-01 23:50:24 +02:00
. assert ( )
2020-03-20 03:46:19 +01:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: foo \x07 File: foo <BINARY> \n " )
2020-03-20 03:46:19 +01:00
. stderr ( " " ) ;
}
2020-03-25 01:26:00 +01:00
#[ test ]
fn filename_multiple_ok ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2020-03-25 01:26:00 +01:00
. arg ( " --decorations=always " )
. arg ( " --style=header " )
. arg ( " -r=0:0 " )
. arg ( " test.txt " )
. arg ( " --file-name=foo " )
. arg ( " single-line.txt " )
. arg ( " --file-name=bar " )
2020-06-01 23:50:24 +02:00
. assert ( )
2020-03-25 01:26:00 +01:00
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: foo, bar \x07 File: foo \n \n File: bar \n " )
2020-03-25 01:26:00 +01:00
. stderr ( " " ) ;
}
#[ test ]
fn filename_multiple_err ( ) {
bat ( )
. arg ( " --decorations=always " )
. arg ( " --style=header " )
. arg ( " -r=0:0 " )
. arg ( " test.txt " )
. arg ( " --file-name=foo " )
. arg ( " single-line.txt " )
. assert ( )
. failure ( ) ;
}
2020-04-21 09:59:17 +02:00
2020-05-12 02:57:51 +02:00
#[ test ]
fn header_padding ( ) {
2020-06-01 23:50:24 +02:00
bat ( )
2020-05-12 02:57:51 +02:00
. arg ( " --decorations=always " )
2020-05-12 16:06:58 +02:00
. arg ( " --style=header " )
2020-05-12 02:57:51 +02:00
. arg ( " test.txt " )
. arg ( " single-line.txt " )
2020-06-01 23:50:24 +02:00
. assert ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: test.txt, single-line.txt \x07 File: test.txt \n hello world \n \n File: single-line.txt \n Single Line \n " )
2020-05-12 02:57:51 +02:00
. stderr ( " " ) ;
}
2022-02-07 20:48:57 +01:00
#[ test ]
fn header_full_padding ( ) {
bat ( )
. arg ( " --decorations=always " )
. arg ( " --style=header-filename,header-filesize " )
. arg ( " test.txt " )
. arg ( " single-line.txt " )
. assert ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: test.txt, single-line.txt \x07 File: test.txt \n Size: 12 B \n hello world \n \n File: single-line.txt \n Size: 11 B \n Single Line \n " )
2022-02-07 20:48:57 +01:00
. stderr ( " " ) ;
}
2020-10-08 10:59:14 +02:00
#[ test ]
fn header_padding_rule ( ) {
bat ( )
. arg ( " --decorations=always " )
. arg ( " --style=header,rule " )
. arg ( " --terminal-width=80 " )
. arg ( " test.txt " )
. arg ( " single-line.txt " )
. assert ( )
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: test.txt, single-line.txt \x07 File: test.txt
2020-10-08 10:59:14 +02:00
hello world
─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
File : single - line . txt
Single Line
" ,
)
. stderr ( " " ) ;
}
2022-02-07 20:48:57 +01:00
#[ test ]
fn header_full_padding_rule ( ) {
bat ( )
. arg ( " --decorations=always " )
. arg ( " --style=header-filename,header-filesize,rule " )
. arg ( " --terminal-width=80 " )
. arg ( " test.txt " )
. arg ( " single-line.txt " )
. assert ( )
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: test.txt, single-line.txt \x07 File: test.txt
2022-02-07 20:48:57 +01:00
Size : 12 B
hello world
─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
File : single - line . txt
Size : 11 B
Single Line
" ,
)
. stderr ( " " ) ;
}
2020-10-12 10:02:08 +02:00
#[ test ]
fn grid_overrides_rule ( ) {
bat ( )
. arg ( " --decorations=always " )
. arg ( " --style=grid,rule " )
. arg ( " --terminal-width=80 " )
. arg ( " test.txt " )
. arg ( " single-line.txt " )
. assert ( )
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: test.txt, single-line.txt \x07 \
2020-10-12 10:02:08 +02:00
─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
hello world
─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
Single Line
─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
" ,
)
2022-02-26 17:01:00 +01:00
. stderr (
" \x1b [33m[bat warning] \x1b [0m: Style 'rule' is a subset of style 'grid', 'rule' will not be visible. \n " ,
) ;
2020-10-12 10:02:08 +02:00
}
2020-04-21 14:09:05 +02:00
#[ cfg(target_os = " linux " ) ]
#[ test ]
fn file_with_invalid_utf8_filename ( ) {
use std ::ffi ::OsStr ;
2020-04-21 16:02:28 +02:00
use std ::fs ::File ;
use std ::io ::Write ;
2020-04-21 14:09:05 +02:00
use std ::os ::unix ::ffi ::OsStrExt ;
2021-02-28 16:56:16 +01:00
let tmp_dir = tempdir ( ) . expect ( " can create temporary directory " ) ;
2020-04-21 16:02:28 +02:00
let file_path = tmp_dir
. path ( )
. join ( OsStr ::from_bytes ( b " test-invalid-utf8- \xC3 (.rs " ) ) ;
{
let mut file = File ::create ( & file_path ) . expect ( " can create temporary file " ) ;
writeln! ( file , " dummy content " ) . expect ( " can write to file " ) ;
}
2020-06-01 23:50:24 +02:00
bat ( )
2020-04-21 16:02:28 +02:00
. arg ( file_path . as_os_str ( ) )
2020-06-01 23:50:24 +02:00
. assert ( )
2020-04-21 16:02:28 +02:00
. success ( )
. stdout ( " dummy content \n " ) ;
2020-04-21 14:09:05 +02:00
}
2020-04-21 09:59:17 +02:00
#[ test ]
fn do_not_panic_regression_tests ( ) {
for filename in & [
" issue_28.md " ,
" issue_190.md " ,
" issue_314.hs " ,
" issue_914.rb " ,
" issue_915.vue " ,
] {
bat ( )
. arg ( " --color=always " )
. arg ( & format! ( " regression_tests/ {} " , filename ) )
. assert ( )
. success ( ) ;
}
}
2020-05-13 11:51:49 +02:00
#[ test ]
fn do_not_detect_different_syntax_for_stdin_and_files ( ) {
let file = " regression_tests/issue_985.js " ;
2020-05-15 21:29:01 +02:00
let cmd_for_file = bat ( )
2020-05-13 11:51:49 +02:00
. arg ( " --color=always " )
. arg ( " --map-syntax=*.js:Markdown " )
. arg ( & format! ( " --file-name= {} " , file ) )
. arg ( " --style=plain " )
. arg ( file )
. assert ( )
2020-05-15 21:29:01 +02:00
. success ( ) ;
2020-05-13 11:51:49 +02:00
2020-05-15 21:29:01 +02:00
let cmd_for_stdin = bat ( )
2020-05-13 11:51:49 +02:00
. arg ( " --color=always " )
. arg ( " --map-syntax=*.js:Markdown " )
. arg ( " --style=plain " )
. arg ( & format! ( " --file-name= {} " , file ) )
. pipe_stdin ( Path ::new ( EXAMPLES_DIR ) . join ( file ) )
. unwrap ( )
. assert ( )
2020-05-15 21:29:01 +02:00
. success ( ) ;
2020-05-13 11:51:49 +02:00
assert_eq! (
2020-05-15 21:29:01 +02:00
from_utf8 ( & cmd_for_file . get_output ( ) . stdout ) . expect ( " output is valid utf-8 " ) ,
from_utf8 ( & cmd_for_stdin . get_output ( ) . stdout ) . expect ( " output is valid utf-8 " )
2020-05-13 11:51:49 +02:00
) ;
}
2020-06-20 17:00:32 +02:00
2021-09-16 17:01:12 +02:00
#[ test ]
fn no_first_line_fallback_when_mapping_to_invalid_syntax ( ) {
let file = " regression_tests/first_line_fallback.invalid-syntax " ;
bat ( )
. arg ( " --color=always " )
. arg ( " --map-syntax=*.invalid-syntax:InvalidSyntax " )
. arg ( & format! ( " --file-name= {} " , file ) )
. arg ( " --style=plain " )
. arg ( file )
. assert ( )
. failure ( )
. stderr ( predicate ::str ::contains ( " unknown syntax: 'InvalidSyntax' " ) ) ;
}
2020-06-20 17:00:32 +02:00
#[ test ]
fn show_all_mode ( ) {
bat ( )
. arg ( " --show-all " )
. arg ( " nonprintable.txt " )
. assert ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: nonprintable.txt \x07 hello·world␊ \n ├──┤␍␀␇␈␛ " )
2020-06-20 17:00:32 +02:00
. stderr ( " " ) ;
}
2020-12-21 08:34:22 +01:00
2022-01-23 12:27:10 +01:00
#[ test ]
2022-03-06 19:44:31 +01:00
fn show_all_extends_tab_markers_to_next_tabstop ( ) {
2022-01-23 12:27:10 +01:00
bat ( )
. arg ( " tabs.txt " )
. arg ( " --show-all " )
. arg ( " --tabs=4 " )
. arg ( " --style=plain " )
. assert ( )
. success ( )
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: tabs.txt \x07 ├──┤1├─┤2├─┤3├─┤4␊
2022-01-23 12:27:10 +01:00
1 ├ ─ ┤ ? ␊
22 ├ ┤ ? ␊
333 ↹ ? ␊
4444 ├ ─ ─ ┤ ? ␊
55555 ├ ─ ┤ ? ␊
666666 ├ ┤ ? ␊
7777777 ↹ ? ␊
88888888 ├ ─ ─ ┤ ? ␊
" ,
) ;
}
2022-01-23 12:35:05 +01:00
#[ test ]
2022-03-06 19:44:31 +01:00
fn show_all_extends_tab_markers_to_next_tabstop_width_8 ( ) {
2022-01-23 12:35:05 +01:00
bat ( )
. arg ( " tabs.txt " )
. arg ( " --show-all " )
. arg ( " --tabs=8 " )
. arg ( " --style=plain " )
. assert ( )
. success ( )
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: tabs.txt \x07 ├──────┤1├─────┤2├─────┤3├─────┤4␊
2022-01-23 12:35:05 +01:00
1 ├ ─ ─ ─ ─ ─ ┤ ? ␊
22 ├ ─ ─ ─ ─ ┤ ? ␊
333 ├ ─ ─ ─ ┤ ? ␊
4444 ├ ─ ─ ┤ ? ␊
55555 ├ ─ ┤ ? ␊
666666 ├ ┤ ? ␊
7777777 ↹ ? ␊
88888888 ├ ─ ─ ─ ─ ─ ─ ┤ ? ␊
" ,
) ;
}
2023-03-14 22:21:30 +01:00
#[ test ]
fn show_all_with_caret_notation ( ) {
bat ( )
. arg ( " --show-all " )
. arg ( " --nonprintable-notation=caret " )
. arg ( " nonprintable.txt " )
. assert ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: nonprintable.txt \x07 hello·world^J \n ├──┤^M^@^G^H^[ " )
2023-03-14 22:21:30 +01:00
. stderr ( " " ) ;
2023-10-20 19:41:48 +02:00
bat ( )
. arg ( " --show-all " )
. arg ( " --nonprintable-notation=caret " )
. arg ( " control_characters.txt " )
. assert ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: control_characters.txt \x07 ^@^A^B^C^D^E^F^G^H├─┤^J \n ^K^L^M^N^O^P^Q^R^S^T^U^V^W^X^Y^Z^[^ \\ ^]^^^_^? " )
2023-10-20 19:41:48 +02:00
. stderr ( " " ) ;
}
#[ test ]
fn show_all_with_unicode ( ) {
bat ( )
. arg ( " --show-all " )
. arg ( " --nonprintable-notation=unicode " )
. arg ( " control_characters.txt " )
. assert ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: control_characters.txt \x07 ␀␁␂␃␄␅␆␇␈├─┤␊ \n ␋␌␍␎␏␐␑␒␓␔␕␖␗␘␙␚␛␜␝␞␟␡ " )
2023-10-20 19:41:48 +02:00
. stderr ( " " ) ;
2023-03-14 22:21:30 +01:00
}
2021-08-09 10:54:32 +02:00
#[ test ]
fn no_paging_arg ( ) {
bat ( )
. arg ( " --no-paging " )
. arg ( " --color=never " )
. arg ( " --decorations=never " )
. arg ( " single-line.txt " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: single-line.txt \x07 Single Line " ) ;
2021-08-09 10:54:32 +02:00
}
#[ test ]
fn no_paging_short_arg ( ) {
bat ( )
. arg ( " -P " )
. arg ( " --color=never " )
. arg ( " --decorations=never " )
. arg ( " single-line.txt " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: single-line.txt \x07 Single Line " ) ;
2021-08-09 10:54:32 +02:00
}
#[ test ]
fn no_pager_arg ( ) {
bat ( )
. arg ( " --no-pager " )
. arg ( " --color=never " )
. arg ( " --decorations=never " )
. arg ( " single-line.txt " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: single-line.txt \x07 Single Line " ) ;
2021-08-09 10:54:32 +02:00
}
2020-12-21 08:34:22 +01:00
#[ test ]
fn plain_mode_does_not_add_nonexisting_newline ( ) {
bat ( )
. arg ( " --paging=never " )
. arg ( " --color=never " )
. arg ( " --decorations=always " )
. arg ( " --style=plain " )
. arg ( " single-line.txt " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: single-line.txt \x07 Single Line " ) ;
2020-12-21 08:34:22 +01:00
}
2020-12-21 17:00:14 +01:00
// Regression test for https://github.com/sharkdp/bat/issues/299
#[ test ]
2022-08-18 10:20:31 +02:00
#[ cfg(feature = " git " ) ] // Expected output assumes git is enabled
2020-12-21 17:00:14 +01:00
fn grid_for_file_without_newline ( ) {
bat ( )
. arg ( " --paging=never " )
. arg ( " --color=never " )
. arg ( " --terminal-width=80 " )
. arg ( " --wrap=never " )
. arg ( " --decorations=always " )
. arg ( " --style=full " )
. arg ( " single-line.txt " )
. assert ( )
. success ( )
. stdout (
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: single-line.txt \x07 \
2020-12-21 17:00:14 +01:00
─ ─ ─ ─ ─ ─ ─ ┬ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
│ File : single - line . txt
2022-02-07 20:48:57 +01:00
│ Size : 11 B
2020-12-21 17:00:14 +01:00
─ ─ ─ ─ ─ ─ ─ ┼ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
1 │ Single Line
─ ─ ─ ─ ─ ─ ─ ┴ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
" ,
)
. stderr ( " " ) ;
}
2021-11-19 17:05:23 +01:00
2022-02-14 19:02:14 +01:00
// For ANSI theme, use underscore as a highlighter
#[ test ]
fn ansi_highlight_underline ( ) {
bat ( )
. arg ( " --paging=never " )
. arg ( " --color=never " )
. arg ( " --terminal-width=80 " )
. arg ( " --wrap=never " )
. arg ( " --decorations=always " )
. arg ( " --theme=ansi " )
. arg ( " --style=plain " )
. arg ( " --highlight-line=1 " )
. write_stdin ( " Ansi Underscore Test \n Another Line " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: STDIN \x07 \x1B [4mAnsi Underscore Test \n \x1B [24mAnother Line " )
2022-02-14 19:02:14 +01:00
. stderr ( " " ) ;
}
2022-09-09 20:21:22 +02:00
// Ensure that ANSI passthrough is emitted properly for both wrapping and non-wrapping printer.
// See https://github.com/sharkdp/bat/issues/2307 for what common use case this test tests.
#[ test ]
fn ansi_passthrough_emit ( ) {
for wrapping in & [ " never " , " character " ] {
bat ( )
. arg ( " --paging=never " )
. arg ( " --color=never " )
. arg ( " --terminal-width=80 " )
. arg ( format! ( " --wrap= {} " , wrapping ) )
. arg ( " --decorations=always " )
. arg ( " --style=plain " )
. write_stdin ( " \x1B [33mColor \n Color \x1B [m \n Plain \n " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: STDIN \x07 \x1B [33m \x1B [33mColor \n \x1B [33mColor \x1B [m \n Plain \n " )
2022-09-09 20:21:22 +02:00
. stderr ( " " ) ;
}
}
2021-11-19 17:05:23 +01:00
#[ test ]
fn ignored_suffix_arg ( ) {
bat ( )
. arg ( " -f " )
2022-05-24 19:29:03 +02:00
. arg ( " --theme " )
. arg ( " Monokai Extended " )
2021-11-19 17:05:23 +01:00
. arg ( " -p " )
. arg ( " test.json~ " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: test.json~ \x07 \u{1b} [38;5;231m{ \u{1b} [0m \u{1b} [38;5;208m \" \u{1b} [0m \u{1b} [38;5;208mtest \u{1b} [0m \u{1b} [38;5;208m \" \u{1b} [0m \u{1b} [38;5;231m: \u{1b} [0m \u{1b} [38;5;231m \u{1b} [0m \u{1b} [38;5;186m \" \u{1b} [0m \u{1b} [38;5;186mvalue \u{1b} [0m \u{1b} [38;5;186m \" \u{1b} [0m \u{1b} [38;5;231m} \u{1b} [0m " )
2021-11-19 17:05:23 +01:00
. stderr ( " " ) ;
bat ( )
. arg ( " -f " )
2022-05-24 19:29:03 +02:00
. arg ( " --theme " )
. arg ( " Monokai Extended " )
2021-11-19 17:05:23 +01:00
. arg ( " -p " )
. arg ( " --ignored-suffix=.suffix " )
. arg ( " test.json.suffix " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: test.json.suffix \x07 \u{1b} [38;5;231m{ \u{1b} [0m \u{1b} [38;5;208m \" \u{1b} [0m \u{1b} [38;5;208mtest \u{1b} [0m \u{1b} [38;5;208m \" \u{1b} [0m \u{1b} [38;5;231m: \u{1b} [0m \u{1b} [38;5;231m \u{1b} [0m \u{1b} [38;5;186m \" \u{1b} [0m \u{1b} [38;5;186mvalue \u{1b} [0m \u{1b} [38;5;186m \" \u{1b} [0m \u{1b} [38;5;231m} \u{1b} [0m " )
2021-11-19 17:05:23 +01:00
. stderr ( " " ) ;
bat ( )
. arg ( " -f " )
2022-05-24 19:29:03 +02:00
. arg ( " --theme " )
. arg ( " Monokai Extended " )
2021-11-19 17:05:23 +01:00
. arg ( " -p " )
. arg ( " test.json.suffix " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: test.json.suffix \x07 \u{1b} [38;5;231m{ \" test \" : \" value \" } \u{1b} [0m " )
2021-11-19 17:05:23 +01:00
. stderr ( " " ) ;
}
2021-12-11 14:00:45 +01:00
2022-10-17 23:43:02 +02:00
fn wrapping_test ( wrap_flag : & str , expect_wrap : bool ) {
let expected = match expect_wrap {
true = >
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: long-single-line.txt \x07 abcdefghigklmnopqrstuvxyzabcdefghigklmnopqrstuvxyzabcdefghigklmnopqrstuvxyzabcde \n fghigklmnopqrstuvxyz \n " ,
2022-10-17 23:43:02 +02:00
false = >
2023-12-11 20:09:48 +01:00
" \u{1b} ]2;bat: long-single-line.txt \x07 abcdefghigklmnopqrstuvxyzabcdefghigklmnopqrstuvxyzabcdefghigklmnopqrstuvxyzabcdefghigklmnopqrstuvxyz \n " ,
2022-10-17 23:43:02 +02:00
} ;
2022-10-10 07:42:11 +02:00
bat ( )
2022-10-17 23:43:02 +02:00
. arg ( wrap_flag )
2022-10-14 08:52:15 +02:00
. arg ( " --style=rule " )
. arg ( " --color=never " )
2022-10-10 07:42:11 +02:00
. arg ( " --decorations=always " )
. arg ( " --terminal-width=80 " )
2022-10-17 23:43:02 +02:00
. arg ( " long-single-line.txt " )
2022-10-10 07:42:11 +02:00
. assert ( )
. success ( )
2022-10-17 23:43:02 +02:00
. stdout ( expected . to_owned ( ) )
2022-10-10 07:42:11 +02:00
. stderr ( " " ) ;
}
#[ test ]
2022-10-17 23:43:02 +02:00
fn no_line_wrapping_when_set_to_never ( ) {
wrapping_test ( " --wrap=never " , false ) ;
}
2022-10-10 07:42:11 +02:00
2022-10-17 23:43:02 +02:00
#[ test ]
fn line_wrapping_when_auto ( ) {
wrapping_test ( " --wrap=auto " , true ) ;
2022-10-10 07:42:11 +02:00
}
#[ test ]
2022-10-14 08:52:15 +02:00
fn no_line_wrapping_with_s_flag ( ) {
2022-10-17 23:43:02 +02:00
wrapping_test ( " -S " , false ) ;
2022-10-10 07:42:11 +02:00
}
#[ test ]
2022-10-14 08:52:15 +02:00
fn no_wrapping_with_chop_long_lines ( ) {
2022-10-17 23:43:02 +02:00
wrapping_test ( " --chop-long-lines " , false ) ;
2022-10-10 07:42:11 +02:00
}
2022-10-28 19:34:55 +02:00
#[ test ]
fn theme_arg_overrides_env ( ) {
bat ( )
. env ( " BAT_THEME " , " TwoDark " )
. arg ( " --paging=never " )
. arg ( " --color=never " )
. arg ( " --terminal-width=80 " )
. arg ( " --wrap=never " )
. arg ( " --decorations=always " )
. arg ( " --theme=ansi " )
. arg ( " --style=plain " )
. arg ( " --highlight-line=1 " )
. write_stdin ( " Ansi Underscore Test \n Another Line " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: STDIN \x07 \x1B [4mAnsi Underscore Test \n \x1B [24mAnother Line " )
2022-10-28 19:34:55 +02:00
. stderr ( " " ) ;
}
#[ test ]
fn theme_arg_overrides_env_withconfig ( ) {
bat_with_config ( )
. env ( " BAT_CONFIG_PATH " , " bat-theme.conf " )
. env ( " BAT_THEME " , " TwoDark " )
. arg ( " --paging=never " )
. arg ( " --color=never " )
. arg ( " --terminal-width=80 " )
. arg ( " --wrap=never " )
. arg ( " --decorations=always " )
. arg ( " --theme=ansi " )
. arg ( " --style=plain " )
. arg ( " --highlight-line=1 " )
. write_stdin ( " Ansi Underscore Test \n Another Line " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: STDIN \x07 \x1B [4mAnsi Underscore Test \n \x1B [24mAnother Line " )
2022-10-28 19:34:55 +02:00
. stderr ( " " ) ;
}
#[ test ]
fn theme_env_overrides_config ( ) {
bat_with_config ( )
. env ( " BAT_CONFIG_PATH " , " bat-theme.conf " )
. env ( " BAT_THEME " , " ansi " )
. arg ( " --paging=never " )
. arg ( " --color=never " )
. arg ( " --terminal-width=80 " )
. arg ( " --wrap=never " )
. arg ( " --decorations=always " )
. arg ( " --style=plain " )
. arg ( " --highlight-line=1 " )
. write_stdin ( " Ansi Underscore Test \n Another Line " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: STDIN \x07 \x1B [4mAnsi Underscore Test \n \x1B [24mAnother Line " )
2022-10-28 19:34:55 +02:00
. stderr ( " " ) ;
}
2022-05-04 07:59:24 +02:00
#[ test ]
fn highlighting_is_skipped_on_long_lines ( ) {
2023-12-11 20:09:48 +01:00
let expected = " \u{1b} ]2;bat: longline.json \x07 \u{1b} [38;5;231m{ \u{1b} [0m \u{1b} [38;5;208m \" \u{1b} [0m \u{1b} [38;5;208mapi \u{1b} [0m \u{1b} [38;5;208m \" \u{1b} [0m \u{1b} [38;5;231m: \u{1b} [0m \n " . to_owned ( ) +
2022-05-04 07:59:24 +02:00
" \u{1b} " +
r #" [38;5;231m { " ANGLE_instanced_arrays " :{ " __compat " :{ " mdn_url " : " https ://developer.mozilla.org/docs/Web/API/ANGLE_instanced_arrays","spec_url":"https://www.khronos.org/registry/webgl/extensions/ANGLE_instanced_arrays/","support":{"chrome":{"version_added":"32"},"chrome_android":{"version_added":"32"},"edge":{"version_added":"12"},"firefox":{"version_added":"47"},"firefox_android":{"version_added":true},"ie":{"version_added":"11"},"opera":{"version_added":"19"},"opera_android":{"version_added":"19"},"safari":{"version_added":"8"},"safari_ios":{"version_added":"8"},"samsunginternet_android":{"version_added":"2.0"},"webview_android":{"version_added":"4.4"}},"status":{"experimental":false,"standard_track":true,"deprecated":false}},"drawArraysInstancedANGLE":{"__compat":{"mdn_url":"https://developer.mozilla.org/docs/Web/API/ANGLE_instanced_arrays/drawArraysInstancedANGLE","spec_url":"https://www.khronos.org/registry/webgl/extensions/ANGLE_instanced_arrays/","support":{"chrome":{"version_added":"32"},"chrome_android":{"version_added":"32"},"edge":{"version_added":"12"},"firefox":{"version_added":"47"},"firefox_android":{"version_added":true},"ie":{"version_added":"11"},"opera":{"version_added":"19"},"opera_android":{"version_added":"19"},"safari":{"version_added":"8"},"safari_ios":{"version_added":"8"},"samsunginternet_android":{"version_added":"2.0"},"webview_android":{"version_added":"4.4"}},"status":{"experimental":false,"standard_track":true,"deprecated":false}}},"drawElementsInstancedANGLE":{"__compat":{"mdn_url":"https://developer.mozilla.org/docs/Web/API/ANGLE_instanced_arrays/drawElementsInstancedANGLE","spec_url":"https://www.khronos.org/registry/webgl/extensions/ANGLE_instanced_arrays/","support":{"chrome":{"version_added":"32"},"chrome_android":{"version_added":"32"},"edge":{"version_added":"12"},"firefox":{"version_added":"47"},"firefox_android":{"version_added":true},"ie":{"version_added":"11"},"opera":{"version_added":"19"},"opera_android":{"version_added":"19"},"safari":{"version_added":"8"},"safari_ios":{"version_added":"8"},"samsunginternet_android":{"version_added":"2.0"},"webview_android":{"version_added":"4.4"}},"status":{"experimental":false,"standard_track":true,"deprecated":false}}},"vertexAttribDivisorANGLE":{"__compat":{"mdn_url":"https://developer.mozilla.org/docs/Web/API/ANGLE_instanced_arrays/vertexAttribDivisorANGLE","spec_url":"https://www.khronos.org/registry/webgl/extensions/ANGLE_instanced_arrays/","support":{"chrome":{"version_added":"32"},"chrome_android":{"version_added":"32"},"edge":{"version_added":"12"},"firefox":{"version_added":"47"},"firefox_android":{"version_added":true},"ie":{"version_added":"11"},"opera":{"version_added":"19"},"opera_android":{"version_added":"19"},"safari":{"version_added":"8"},"safari_ios":{"version_added":"8"},"samsunginternet_android":{"version_added":"2.0"},"webview_android":{"version_added":"4.4"}},"status":{"experimental":false,"standard_track":true,"deprecated":false}}}},"AbortController":{"__compat":{"mdn_url":"https://developer.mozilla.org/docs/Web/API/AbortController","spec_url":"https://dom.spec.whatwg.org/#interface-abortcontroller","support":{"chrome":{"version_added":"66"},"chrome_android":{"version_added":"66"},"edge":{"version_added":"16"},"firefox":{"version_added":"57"},"firefox_android":{"version_added":"57"},"ie":{"version_added":false},"nodejs":{"version_added":"15.0.0"},"opera":{"version_added":"53"},"opera_android":{"version_added":"47"},"safari":[{"version_added":"12.1"},{"version_added":"11.1","partial_implementation":true,"notes":"Even though <code>window.AbortController</code> is defined, it doesn't really abort <code>fetch</code> requests. See <a href='https://webkit.org/b/174980'>bug 174980</a>."}],"safari_ios":[{"version_added":"12.2"},{"version_added":"11.3","partial_implementation":true,"notes":"Even though <code>window.AbortController</code> is defined, it doesn't really abort <code>fetch</code> requests. See <a href='https://webkit.org/b/174980'>bug 174980</a>."}],"samsunginternet_android":{"version_added":"9.0"},"webvi
" \u{1b} [0m \n \u{1b} [38;5;231m \u{1b} [0m \u{1b} [38;5;231m{ \u{1b} [0m \u{1b} [38;5;208m \" \u{1b} [0m \u{1b} [38;5;208mversion_added \u{1b} [0m \u{1b} [38;5;208m \" \u{1b} [0m \u{1b} [38;5;231m: \u{1b} [0m \u{1b} [38;5;141mfalse \u{1b} [0m \u{1b} [38;5;231m} \u{1b} [0m \n " ;
bat ( )
. arg ( " -f " )
2022-05-24 19:29:03 +02:00
. arg ( " --theme " )
. arg ( " Monokai Extended " )
2022-05-04 07:59:24 +02:00
. arg ( " -p " )
. arg ( " longline.json " )
. assert ( )
. success ( )
. stdout ( expected )
. stderr ( " " ) ;
}
2022-02-26 17:01:00 +01:00
#[ test ]
fn all_global_git_config_locations_syntax_mapping_work ( ) {
let fake_home = Path ::new ( EXAMPLES_DIR ) . join ( " git " ) . canonicalize ( ) . unwrap ( ) ;
let expected = " \u{1b} [38;5;231m[ \u{1b} [0m \u{1b} [38;5;149muser \u{1b} [0m \u{1b} [38;5;231m] \u{1b} [0m
\ u { 1 b } [ 38 ; 5 ; 231 m \ u { 1 b } [ 0 m \ u { 1 b } [ 38 ; 5 ; 231 memail \ u { 1 b } [ 0 m \ u { 1 b } [ 38 ; 5 ; 231 m \ u { 1 b } [ 0 m \ u { 1 b } [ 38 ; 5 ; 203 m = \ u { 1 b } [ 0 m \ u { 1 b } [ 38 ; 5 ; 231 m \ u { 1 b } [ 0 m \ u { 1 b } [ 38 ; 5 ; 186 mfoo @ bar . net \ u { 1 b } [ 0 m
\ u { 1 b } [ 38 ; 5 ; 231 m \ u { 1 b } [ 0 m \ u { 1 b } [ 38 ; 5 ; 231 mname \ u { 1 b } [ 0 m \ u { 1 b } [ 38 ; 5 ; 231 m \ u { 1 b } [ 0 m \ u { 1 b } [ 38 ; 5 ; 203 m = \ u { 1 b } [ 0 m \ u { 1 b } [ 38 ; 5 ; 231 m \ u { 1 b } [ 0 m \ u { 1 b } [ 38 ; 5 ; 186 mfoobar \ u { 1 b } [ 0 m
" ;
bat ( )
. env ( " XDG_CONFIG_HOME " , fake_home . join ( " .config " ) . as_os_str ( ) )
. arg ( " -f " )
2022-05-24 19:29:03 +02:00
. arg ( " --theme " )
. arg ( " Monokai Extended " )
2022-02-26 17:01:00 +01:00
. arg ( " -p " )
. arg ( " git/.config/git/config " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: git/.config/git/config \x07 " . to_owned ( ) + expected )
2022-02-26 17:01:00 +01:00
. stderr ( " " ) ;
bat ( )
. env ( " HOME " , fake_home . as_os_str ( ) )
. arg ( " -f " )
2022-05-24 19:29:03 +02:00
. arg ( " --theme " )
. arg ( " Monokai Extended " )
2022-02-26 17:01:00 +01:00
. arg ( " -p " )
. arg ( " git/.config/git/config " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: git/.config/git/config \x07 " . to_owned ( ) + expected )
2022-02-26 17:01:00 +01:00
. stderr ( " " ) ;
bat ( )
. env ( " HOME " , fake_home . as_os_str ( ) )
. arg ( " -f " )
2022-05-24 19:29:03 +02:00
. arg ( " --theme " )
. arg ( " Monokai Extended " )
2022-02-26 17:01:00 +01:00
. arg ( " -p " )
. arg ( " git/.gitconfig " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: git/.gitconfig \x07 " . to_owned ( ) + expected )
2022-02-26 17:01:00 +01:00
. stderr ( " " ) ;
}
2022-08-16 22:42:15 +02:00
#[ test ]
fn map_syntax_and_ignored_suffix_work_together ( ) {
bat ( )
. arg ( " -f " )
. arg ( " --theme " )
. arg ( " Monokai Extended " )
. arg ( " -p " )
. arg ( " --ignored-suffix=.suffix " )
. arg ( " --map-syntax=*.demo:JSON " )
. arg ( " test.demo.suffix " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: test.demo.suffix \x07 \u{1b} [38;5;231m{ \u{1b} [0m \u{1b} [38;5;208m \" \u{1b} [0m \u{1b} [38;5;208mtest \u{1b} [0m \u{1b} [38;5;208m \" \u{1b} [0m \u{1b} [38;5;231m: \u{1b} [0m \u{1b} [38;5;231m \u{1b} [0m \u{1b} [38;5;186m \" \u{1b} [0m \u{1b} [38;5;186mvalue \u{1b} [0m \u{1b} [38;5;186m \" \u{1b} [0m \u{1b} [38;5;231m} \u{1b} [0m " )
2022-08-16 22:42:15 +02:00
. stderr ( " " ) ;
bat ( )
. arg ( " -f " )
. arg ( " --theme " )
. arg ( " Monokai Extended " )
. arg ( " -p " )
. arg ( " --ignored-suffix=.suffix " )
. arg ( " --ignored-suffix=.foo " )
. arg ( " --map-syntax=*.demo:JSON " )
. arg ( " test.demo.foo.suffix " )
. assert ( )
. success ( )
2023-12-11 20:09:48 +01:00
. stdout ( " \u{1b} ]2;bat: test.demo.foo.suffix \x07 \u{1b} [38;5;231m{ \u{1b} [0m \u{1b} [38;5;208m \" \u{1b} [0m \u{1b} [38;5;208mtest \u{1b} [0m \u{1b} [38;5;208m \" \u{1b} [0m \u{1b} [38;5;231m: \u{1b} [0m \u{1b} [38;5;231m \u{1b} [0m \u{1b} [38;5;186m \" \u{1b} [0m \u{1b} [38;5;186mvalue \u{1b} [0m \u{1b} [38;5;186m \" \u{1b} [0m \u{1b} [38;5;231m} \u{1b} [0m " )
2022-08-16 22:42:15 +02:00
. stderr ( " " ) ;
}
2021-12-11 14:00:45 +01:00
#[ test ]
fn acknowledgements ( ) {
bat ( )
. arg ( " --acknowledgements " )
. assert ( )
. success ( )
. stdout (
// Just some sanity checking that avoids names of persons, except our own Keith Hall :)
predicate ::str ::contains (
" Copyright (c) 2018-2021 bat-developers (https://github.com/sharkdp/bat). " ,
)
. and ( predicate ::str ::contains (
" Copyright (c) 2012-2020 The Sublime CMake authors " ,
) )
. and ( predicate ::str ::contains (
" Copyright 2014-2015 SaltStack Team " ,
) )
. and ( predicate ::str ::contains (
" Copyright (c) 2013-present Dracula Theme " ,
) )
. and ( predicate ::str ::contains (
" ## syntaxes/01_Packages/Rust/LICENSE.txt " ,
) )
. and ( predicate ::str ::contains (
" ## syntaxes/02_Extra/http-request-response/LICENSE " ,
) )
. and ( predicate ::str ::contains (
" ## themes/dracula-sublime/LICENSE " ,
) )
. and ( predicate ::str ::contains ( " Copyright (c) 2017 b123400 " ) )
. and ( predicate ::str ::contains ( " Copyright (c) 2021 Keith Hall " ) )
. and ( predicate ::str ::contains ( " Copyright 2014 Clams " ) ) ,
)
. stderr ( " " ) ;
}
2023-09-02 08:48:26 +02:00
#[ cfg(unix) ] // Expected output assumed that tests are run on a Unix-like system
#[ cfg(feature = " lessopen " ) ]
#[ test ]
fn lessopen_file_piped ( ) {
bat ( )
. env ( " LESSOPEN " , " |echo File is %s " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( " File is test.txt \n " ) ;
}
#[ cfg(unix) ] // Expected output assumed that tests are run on a Unix-like system
#[ cfg(feature = " lessopen " ) ]
#[ test ]
fn lessopen_stdin_piped ( ) {
bat ( )
. env ( " LESSOPEN " , " |cat " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. write_stdin ( " hello world \n " )
. assert ( )
. success ( )
. stdout ( " hello world \n " ) ;
}
#[ cfg(unix) ] // Expected output assumed that tests are run on a Unix-like system
#[ cfg(feature = " lessopen " ) ]
#[ test ]
#[ serial ] // Randomly fails otherwise
fn lessopen_and_lessclose_file_temp ( ) {
// This is mainly to test that $LESSCLOSE gets passed the correct file paths
// In this case, the original file and the temporary file returned by $LESSOPEN
bat ( )
2023-09-06 21:28:08 +02:00
// Need a %s for $LESSOPEN to be valid
. env ( " LESSOPEN " , " echo empty.txt && echo %s >/dev/null " )
2023-09-02 08:48:26 +02:00
. env ( " LESSCLOSE " , " echo lessclose: %s %s " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( " lessclose: test.txt empty.txt \n " ) ;
}
#[ cfg(unix) ] // Expected output assumed that tests are run on a Unix-like system
#[ cfg(feature = " lessopen " ) ]
#[ test ]
#[ serial ] // Randomly fails otherwise
fn lessopen_and_lessclose_file_piped ( ) {
// This is mainly to test that $LESSCLOSE gets passed the correct file paths
// In these cases, the original file and a dash
bat ( )
// This test will not work properly if $LESSOPEN does not output anything
2023-09-06 21:28:08 +02:00
. env ( " LESSOPEN " , " |cat %s " )
2023-09-02 08:48:26 +02:00
. env ( " LESSCLOSE " , " echo lessclose: %s %s " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-06 21:28:08 +02:00
. arg ( " test.txt " )
2023-09-02 08:48:26 +02:00
. assert ( )
. success ( )
2023-09-06 21:28:08 +02:00
. stdout ( " hello world \n lessclose: test.txt - \n " ) ;
2023-09-02 08:48:26 +02:00
bat ( )
2023-09-06 21:28:08 +02:00
. env ( " LESSOPEN " , " ||cat %s " )
2023-09-02 08:48:26 +02:00
. env ( " LESSCLOSE " , " echo lessclose: %s %s " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. arg ( " empty.txt " )
. assert ( )
. success ( )
. stdout ( " lessclose: empty.txt - \n " ) ;
}
#[ cfg(unix) ] // Expected output assumed that tests are run on a Unix-like system
#[ cfg(feature = " lessopen " ) ]
#[ test ]
#[ serial ] // Randomly fails otherwise
2023-09-07 02:04:45 +02:00
#[ ignore = " randomly failing on some systems " ]
2023-09-02 08:48:26 +02:00
fn lessopen_and_lessclose_stdin_temp ( ) {
// This is mainly to test that $LESSCLOSE gets passed the correct file paths
// In this case, a dash and the temporary file returned by $LESSOPEN
bat ( )
2023-09-06 21:28:08 +02:00
// Need a %s for $LESSOPEN to be valid
. env ( " LESSOPEN " , " -echo empty.txt && echo %s >/dev/null " )
2023-09-02 08:48:26 +02:00
. env ( " LESSCLOSE " , " echo lessclose: %s %s " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. write_stdin ( " test.txt " )
. assert ( )
. success ( )
. stdout ( " lessclose: - empty.txt \n " ) ;
}
#[ cfg(unix) ] // Expected output assumed that tests are run on a Unix-like system
#[ cfg(feature = " lessopen " ) ]
#[ test ]
#[ serial ] // Randomly fails otherwise
fn lessopen_and_lessclose_stdin_piped ( ) {
// This is mainly to test that $LESSCLOSE gets passed the correct file paths
// In these cases, two dashes
bat ( )
// This test will not work properly if $LESSOPEN does not output anything
2023-09-06 21:28:08 +02:00
// Need a %s for $LESSOPEN to be valid
. env ( " LESSOPEN " , " |-cat test.txt && echo %s >/dev/null " )
2023-09-02 08:48:26 +02:00
. env ( " LESSCLOSE " , " echo lessclose: %s %s " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. write_stdin ( " empty.txt " )
. assert ( )
. success ( )
. stdout ( " hello world \n lessclose: - - \n " ) ;
bat ( )
2023-09-06 21:28:08 +02:00
// Need a %s for $LESSOPEN to be valid
. env ( " LESSOPEN " , " ||-cat empty.txt && echo %s >/dev/null " )
2023-09-02 08:48:26 +02:00
. env ( " LESSCLOSE " , " echo lessclose: %s %s " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. write_stdin ( " empty.txt " )
. assert ( )
. success ( )
. stdout ( " lessclose: - - \n " ) ;
}
#[ cfg(unix) ] // Expected output assumed that tests are run on a Unix-like system
#[ cfg(feature = " lessopen " ) ]
#[ test ]
fn lessopen_handling_empty_output_file ( ) {
bat ( )
2023-09-06 21:28:08 +02:00
// Need a %s for $LESSOPEN to be valid
. env ( " LESSOPEN " , " |cat empty.txt && echo %s >/dev/null " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( " hello world \n " ) ;
bat ( )
2023-09-06 21:28:08 +02:00
// Need a %s for $LESSOPEN to be valid
. env ( " LESSOPEN " , " |cat nonexistent.txt && echo %s >/dev/null " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( " hello world \n " ) ;
bat ( )
2023-09-06 21:28:08 +02:00
// Need a %s for $LESSOPEN to be valid
. env ( " LESSOPEN " , " ||cat empty.txt && echo %s >/dev/null " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( " " ) ;
bat ( )
2023-09-06 21:28:08 +02:00
// Need a %s for $LESSOPEN to be valid
. env ( " LESSOPEN " , " ||cat nonexistent.txt && echo %s >/dev/null " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( " hello world \n " ) ;
}
#[ cfg(unix) ] // Expected output assumed that tests are run on a Unix-like system
#[ cfg(feature = " lessopen " ) ]
#[ test ]
2023-09-06 21:28:08 +02:00
// FIXME
2023-09-02 08:48:26 +02:00
fn lessopen_handling_empty_output_stdin ( ) {
bat ( )
2023-09-06 21:28:08 +02:00
// Need a %s for $LESSOPEN to be valid
. env ( " LESSOPEN " , " |-cat empty.txt && echo %s >/dev/null " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. write_stdin ( " hello world \n " )
. assert ( )
. success ( )
. stdout ( " hello world \n " ) ;
bat ( )
2023-09-06 21:28:08 +02:00
// Need a %s for $LESSOPEN to be valid
. env ( " LESSOPEN " , " |-cat nonexistent.txt && echo %s >/dev/null " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. write_stdin ( " hello world \n " )
. assert ( )
. success ( )
. stdout ( " hello world \n " ) ;
bat ( )
2023-09-06 21:28:08 +02:00
// Need a %s for $LESSOPEN to be valid
. env ( " LESSOPEN " , " ||-cat empty.txt && echo %s >/dev/null " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. write_stdin ( " hello world \n " )
. assert ( )
. success ( )
. stdout ( " " ) ;
bat ( )
2023-09-06 21:28:08 +02:00
// Need a %s for $LESSOPEN to be valid
. env ( " LESSOPEN " , " ||-cat nonexistent.txt && echo %s >/dev/null " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. write_stdin ( " hello world \n " )
. assert ( )
. success ( )
. stdout ( " hello world \n " ) ;
}
#[ cfg(unix) ] // Expected output assumed that tests are run on a Unix-like system
#[ cfg(feature = " lessopen " ) ]
#[ test ]
fn lessopen_uses_shell ( ) {
bat ( )
. env ( " LESSOPEN " , " |cat < %s " )
2023-09-06 04:40:29 +02:00
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( " hello world \n " ) ;
}
#[ cfg(unix) ]
#[ cfg(feature = " lessopen " ) ]
#[ test ]
2023-09-06 04:40:29 +02:00
fn do_not_use_lessopen_by_default ( ) {
2023-09-02 08:48:26 +02:00
bat ( )
. env ( " LESSOPEN " , " |echo File is %s " )
2023-09-06 04:40:29 +02:00
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( " hello world \n " ) ;
}
#[ cfg(unix) ]
#[ cfg(feature = " lessopen " ) ]
#[ test ]
fn do_not_use_lessopen_if_overridden ( ) {
bat ( )
. env ( " LESSOPEN " , " |echo File is %s " )
. arg ( " --lessopen " )
2023-09-02 08:48:26 +02:00
. arg ( " --no-lessopen " )
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( " hello world \n " ) ;
}
2023-09-06 21:28:08 +02:00
#[ cfg(unix) ]
#[ cfg(feature = " lessopen " ) ]
#[ test ]
fn lessopen_validity ( ) {
bat ( )
. env ( " LESSOPEN " , " |echo File is test.txt " )
. arg ( " --lessopen " )
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( " hello world \n " )
. stderr (
" \u{1b} [33m[bat warning] \u{1b} [0m: LESSOPEN ignored: must contain exactly one %s \n " ,
) ;
bat ( )
. env ( " LESSOPEN " , " |echo File is %s " )
. arg ( " --lessopen " )
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( " File is test.txt \n " )
. stderr ( " " ) ;
bat ( )
. env ( " LESSOPEN " , " |echo %s is %s " )
. arg ( " --lessopen " )
. arg ( " test.txt " )
. assert ( )
. success ( )
. stdout ( " hello world \n " )
. stderr (
" \u{1b} [33m[bat warning] \u{1b} [0m: LESSOPEN ignored: must contain exactly one %s \n " ,
) ;
}
2023-09-14 16:04:43 +02:00
// Regression test for issue #2520 and PR #2650
// Syntax highlighting should be the same regardless of
// --map-syntax' case or file extension's case
#[ test ]
fn highlighting_independant_from_map_syntax_case ( ) {
let expected = bat ( )
. arg ( " -f " )
. arg ( " --map-syntax=*.config:JSON " )
. arg ( " map-syntax_case.Config " )
. assert ( )
. get_output ( )
. stdout
. clone ( ) ;
bat ( )
. arg ( " -f " )
. arg ( " --map-syntax=*.Config:JSON " )
. arg ( " map-syntax_case.Config " )
. assert ( )
. success ( )
. stdout ( expected )
. stderr ( " " ) ;
}