mirror of
https://github.com/uutils/coreutils.git
synced 2025-07-07 21:45:01 +00:00
Fixed tests to reflect si's handling of kilos
Signed-off-by: Alex Snaps <alex@wcgw.dev>
This commit is contained in:
parent
1250195bce
commit
448dde7f5c
3 changed files with 48 additions and 48 deletions
|
@ -84,7 +84,7 @@ fn test_to_si() {
|
|||
.args(&["--to=si"])
|
||||
.pipe_in("1000\n1100000\n100000000")
|
||||
.succeeds()
|
||||
.stdout_is("1.0K\n1.1M\n100M\n");
|
||||
.stdout_is("1.0k\n1.1M\n100M\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -243,15 +243,15 @@ fn test_suffixes() {
|
|||
// TODO add support for ronna (R) and quetta (Q)
|
||||
let valid_suffixes = ['K', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y' /*'R' , 'Q'*/];
|
||||
|
||||
// TODO implement special handling of 'K'
|
||||
for c in ('A'..='Z').chain('a'..='z') {
|
||||
let args = ["--from=si", "--to=si", &format!("1{c}")];
|
||||
|
||||
if valid_suffixes.contains(&c) {
|
||||
let s = if c == 'K' { 'k' } else { c };
|
||||
new_ucmd!()
|
||||
.args(&args)
|
||||
.succeeds()
|
||||
.stdout_only(format!("1.0{c}\n"));
|
||||
.stdout_only(format!("1.0{s}\n"));
|
||||
} else {
|
||||
new_ucmd!()
|
||||
.args(&args)
|
||||
|
@ -504,7 +504,7 @@ fn test_delimiter_to_si() {
|
|||
.args(&["-d=,", "--to=si"])
|
||||
.pipe_in("1234,56")
|
||||
.succeeds()
|
||||
.stdout_only("1.3K,56\n");
|
||||
.stdout_only("1.3k,56\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -513,7 +513,7 @@ fn test_delimiter_skips_leading_whitespace() {
|
|||
.args(&["-d=,", "--to=si"])
|
||||
.pipe_in(" \t 1234,56")
|
||||
.succeeds()
|
||||
.stdout_only("1.3K,56\n");
|
||||
.stdout_only("1.3k,56\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -522,7 +522,7 @@ fn test_delimiter_preserves_leading_whitespace_in_unselected_fields() {
|
|||
.args(&["-d=|", "--to=si"])
|
||||
.pipe_in(" 1000| 2000")
|
||||
.succeeds()
|
||||
.stdout_only("1.0K| 2000\n");
|
||||
.stdout_only("1.0k| 2000\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -550,7 +550,7 @@ fn test_delimiter_with_padding() {
|
|||
.args(&["-d=|", "--to=si", "--padding=5"])
|
||||
.pipe_in("1000|2000")
|
||||
.succeeds()
|
||||
.stdout_only(" 1.0K|2000\n");
|
||||
.stdout_only(" 1.0k|2000\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -559,21 +559,21 @@ fn test_delimiter_with_padding_and_fields() {
|
|||
.args(&["-d=|", "--to=si", "--padding=5", "--field=-"])
|
||||
.pipe_in("1000|2000")
|
||||
.succeeds()
|
||||
.stdout_only(" 1.0K| 2.0K\n");
|
||||
.stdout_only(" 1.0k| 2.0k\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_round() {
|
||||
for (method, exp) in [
|
||||
("from-zero", ["9.1K", "-9.1K", "9.1K", "-9.1K"]),
|
||||
("from-zer", ["9.1K", "-9.1K", "9.1K", "-9.1K"]),
|
||||
("f", ["9.1K", "-9.1K", "9.1K", "-9.1K"]),
|
||||
("towards-zero", ["9.0K", "-9.0K", "9.0K", "-9.0K"]),
|
||||
("up", ["9.1K", "-9.0K", "9.1K", "-9.0K"]),
|
||||
("down", ["9.0K", "-9.1K", "9.0K", "-9.1K"]),
|
||||
("nearest", ["9.0K", "-9.0K", "9.1K", "-9.1K"]),
|
||||
("near", ["9.0K", "-9.0K", "9.1K", "-9.1K"]),
|
||||
("n", ["9.0K", "-9.0K", "9.1K", "-9.1K"]),
|
||||
("from-zero", ["9.1k", "-9.1k", "9.1k", "-9.1k"]),
|
||||
("from-zer", ["9.1k", "-9.1k", "9.1k", "-9.1k"]),
|
||||
("f", ["9.1k", "-9.1k", "9.1k", "-9.1k"]),
|
||||
("towards-zero", ["9.0k", "-9.0k", "9.0k", "-9.0k"]),
|
||||
("up", ["9.1k", "-9.0k", "9.1k", "-9.0k"]),
|
||||
("down", ["9.0k", "-9.1k", "9.0k", "-9.1k"]),
|
||||
("nearest", ["9.0k", "-9.0k", "9.1k", "-9.1k"]),
|
||||
("near", ["9.0k", "-9.0k", "9.1k", "-9.1k"]),
|
||||
("n", ["9.0k", "-9.0k", "9.1k", "-9.1k"]),
|
||||
] {
|
||||
new_ucmd!()
|
||||
.args(&[
|
||||
|
@ -649,7 +649,7 @@ fn test_transform_with_suffix_on_input() {
|
|||
.args(&["--suffix=b", "--to=si"])
|
||||
.pipe_in("2000b")
|
||||
.succeeds()
|
||||
.stdout_only("2.0Kb\n");
|
||||
.stdout_only("2.0kb\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -658,7 +658,7 @@ fn test_transform_without_suffix_on_input() {
|
|||
.args(&["--suffix=b", "--to=si"])
|
||||
.pipe_in("2000")
|
||||
.succeeds()
|
||||
.stdout_only("2.0Kb\n");
|
||||
.stdout_only("2.0kb\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -667,7 +667,7 @@ fn test_transform_with_suffix_and_delimiter() {
|
|||
.args(&["--suffix=b", "--to=si", "-d=|"])
|
||||
.pipe_in("1000b|2000|3000")
|
||||
.succeeds()
|
||||
.stdout_only("1.0Kb|2000|3000\n");
|
||||
.stdout_only("1.0kb|2000|3000\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
2
tests/fixtures/numfmt/df_expected.txt
vendored
2
tests/fixtures/numfmt/df_expected.txt
vendored
|
@ -3,6 +3,6 @@ udev 8.2G 0 8.2G 0% /dev
|
|||
tmpfs 1.7G 2.1M 1.7G 1% /run
|
||||
/dev/nvme0n1p2 1.1T 433G 523G 46% /
|
||||
tmpfs 8.3G 145M 8.1G 2% /dev/shm
|
||||
tmpfs 5.3M 4.1K 5.3M 1% /run/lock
|
||||
tmpfs 5.3M 4.1k 5.3M 1% /run/lock
|
||||
tmpfs 8.3G 0 8.3G 0% /sys/fs/cgroup
|
||||
/dev/nvme0n1p1 536M 8.2M 528M 2% /boot/efi
|
||||
|
|
54
tests/fixtures/numfmt/gnutest_si_result.txt
vendored
54
tests/fixtures/numfmt/gnutest_si_result.txt
vendored
|
@ -1,34 +1,34 @@
|
|||
-1.1K
|
||||
-1.0K
|
||||
-1.1k
|
||||
-1.0k
|
||||
-999
|
||||
1
|
||||
500
|
||||
999
|
||||
1.0K
|
||||
1.0K
|
||||
1.1K
|
||||
1.1K
|
||||
9.9K
|
||||
10K
|
||||
10K
|
||||
10K
|
||||
10K
|
||||
10K
|
||||
11K
|
||||
11K
|
||||
11K
|
||||
50K
|
||||
99K
|
||||
100K
|
||||
100K
|
||||
100K
|
||||
100K
|
||||
100K
|
||||
101K
|
||||
101K
|
||||
101K
|
||||
102K
|
||||
999K
|
||||
1.0k
|
||||
1.0k
|
||||
1.1k
|
||||
1.1k
|
||||
9.9k
|
||||
10k
|
||||
10k
|
||||
10k
|
||||
10k
|
||||
10k
|
||||
11k
|
||||
11k
|
||||
11k
|
||||
50k
|
||||
99k
|
||||
100k
|
||||
100k
|
||||
100k
|
||||
100k
|
||||
100k
|
||||
101k
|
||||
101k
|
||||
101k
|
||||
102k
|
||||
999k
|
||||
1.0M
|
||||
1.0M
|
||||
1.0M
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue