mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-11 07:10:56 +00:00
130 lines
4.3 KiB
TOML
130 lines
4.3 KiB
TOML
# listing directory tests
|
||
|
||
[[cmd]]
|
||
name = "‘COLUMNS=40 exa -lG’ produces a grid with details of 1 column"
|
||
shell = "exa -lG /testcases/files"
|
||
environment = { COLUMNS = "40" }
|
||
stdout = { file = "outputs/files_long_grid_1col.ansitxt" }
|
||
stderr = { empty = true }
|
||
status = 0
|
||
tags = [ 'env', 'long', 'grid' ]
|
||
|
||
[[cmd]]
|
||
name = "‘COLUMNS=80 exa -lG’ produces a grid with details of 1 column"
|
||
shell = "exa -lG /testcases/files"
|
||
environment = { COLUMNS = "80" }
|
||
stdout = { file = "outputs/files_long_grid_1col.ansitxt" }
|
||
stderr = { empty = true }
|
||
status = 0
|
||
tags = [ 'env', 'long', 'grid' ]
|
||
|
||
[[cmd]]
|
||
name = "‘COLUMNS=120 exa -lG’ produces a grid with details of 2 columns"
|
||
shell = "exa -lG /testcases/files"
|
||
environment = { COLUMNS = "120" }
|
||
stdout = { file = "outputs/files_long_grid_2col.ansitxt" }
|
||
stderr = { empty = true }
|
||
status = 0
|
||
tags = [ 'env', 'long', 'grid' ]
|
||
|
||
[[cmd]]
|
||
name = "‘COLUMNS=160 exa -lG’ produces a grid with details of 3 columns"
|
||
shell = "exa -lG /testcases/files"
|
||
environment = { COLUMNS = "160" }
|
||
stdout = { file = "outputs/files_long_grid_3col.ansitxt" }
|
||
stderr = { empty = true }
|
||
status = 0
|
||
tags = [ 'env', 'long', 'grid' ]
|
||
|
||
[[cmd]]
|
||
name = "‘COLUMNS=200 exa -lG’ produces a grid with details of 4 columns"
|
||
shell = "exa -lG /testcases/files"
|
||
environment = { COLUMNS = "200" }
|
||
stdout = { file = "outputs/files_long_grid_4col.ansitxt" }
|
||
stderr = { empty = true }
|
||
status = 0
|
||
tags = [ 'env', 'long', 'grid' ]
|
||
|
||
|
||
# listing files tests
|
||
# (these rely on bash’s glob sort order)
|
||
# (some of the output files also have trailing whitespace)
|
||
|
||
[[cmd]]
|
||
name = "‘COLUMNS=100 exa -lG’ with file arguments produces a grid with details of 1 column, with full paths"
|
||
shell = "exa -lG /testcases/files/*"
|
||
environment = { COLUMNS = "100" }
|
||
stdout = { file = "outputs/files_paths_long_grid_1col.ansitxt" }
|
||
stderr = { empty = true }
|
||
status = 0
|
||
tags = [ 'env', 'long', 'grid' ]
|
||
|
||
[[cmd]]
|
||
name = "‘COLUMNS=150 exa -lG’ with file arguments produces a grid with details of 2 columns, with full paths"
|
||
shell = "exa -lG /testcases/files/*"
|
||
environment = { COLUMNS = "150" }
|
||
stdout = { file = "outputs/files_paths_long_grid_2col.ansitxt" }
|
||
stderr = { empty = true }
|
||
status = 0
|
||
tags = [ 'env', 'long', 'grid' ]
|
||
|
||
[[cmd]]
|
||
name = "‘COLUMNS=200 exa -lG’ with file arguments produces a grid with details of 3 columns, with full paths"
|
||
shell = "exa -lG /testcases/files/*"
|
||
environment = { COLUMNS = "200" }
|
||
stdout = { file = "outputs/files_paths_long_grid_3col.ansitxt" }
|
||
stderr = { empty = true }
|
||
status = 0
|
||
tags = [ 'env', 'long', 'grid' ]
|
||
|
||
|
||
# check if exa is using the minimum number of columns with headers
|
||
|
||
[[cmd]]
|
||
name = "‘COLUMNS=200 exa -lGh’ with one file don’t produce extra columns even if there place for more"
|
||
shell = "exa -lGh /testcases/files/10_bytes"
|
||
environment = { COLUMNS = "200" }
|
||
stdout = { file = "outputs/files_long_grid_header_1file.ansitxt" }
|
||
stderr = { empty = true }
|
||
status = 0
|
||
tags = [ 'env', 'long', 'grid' ]
|
||
|
||
[[cmd]]
|
||
name = "‘COLUMNS=200 exa -lGh’ with several files don’t produce extra columns even if there place for more"
|
||
shell = "exa -lGh /testcases/files/10_{bytes,KiB}"
|
||
environment = { COLUMNS = "200" }
|
||
stdout = { file = "outputs/files_long_grid_header_2files.ansitxt" }
|
||
stderr = { empty = true }
|
||
status = 0
|
||
tags = [ 'env', 'long', 'grid' ]
|
||
|
||
|
||
# check if EXA_GRID_ROWS is working
|
||
|
||
[[cmd]]
|
||
name = "‘COLUMNS=200 EXA_GRID_ROWS=2 exa -lG’ with three files produces a grid details of 1 column"
|
||
shell = "exa -lG /testcases/files/1_*"
|
||
environment = { COLUMNS = "200", EXA_GRID_ROWS = "2" }
|
||
stdout = { file = "outputs/files_long_grid_exa_grid_rows_2_3files.ansitxt" }
|
||
stderr = { empty = true }
|
||
status = 0
|
||
tags = [ 'env', 'long', 'grid' ]
|
||
|
||
[[cmd]]
|
||
name = "‘COLUMNS=200 EXA_GRID_ROWS=5 exa -lG’ with 15 files produces a grid details of 3 columns"
|
||
shell = "exa -lG /testcases/files/1*"
|
||
environment = { COLUMNS = "200", EXA_GRID_ROWS = "5" }
|
||
stdout = { file = "outputs/files_long_grid_exa_grid_rows_5_15files.ansitxt" }
|
||
stderr = { empty = true }
|
||
status = 0
|
||
tags = [ 'env', 'long', 'grid' ]
|
||
|
||
[[cmd]]
|
||
name = "‘COLUMNS=200 EXA_GRID_ROWS=6 exa -lG’ with 15 files produces a grid details of 1 column"
|
||
shell = "exa -lG /testcases/files/1*"
|
||
environment = { COLUMNS = "200", EXA_GRID_ROWS = "6" }
|
||
stdout = { file = "outputs/files_long_grid_exa_grid_rows_6_15files.ansitxt" }
|
||
stderr = { empty = true }
|
||
status = 0
|
||
tags = [ 'env', 'long', 'grid' ]
|