2020-05-25 17:05:26 +00:00
|
|
|
use crate::common::util::*;
|
2020-04-28 07:34:55 +00:00
|
|
|
|
2020-04-29 17:03:22 +00:00
|
|
|
#[test]
|
|
|
|
fn test_df_compatible_no_size_arg() {
|
2021-04-22 20:37:44 +00:00
|
|
|
new_ucmd!().arg("-a").succeeds();
|
2020-04-29 17:03:22 +00:00
|
|
|
}
|
|
|
|
|
2022-01-29 00:03:28 +00:00
|
|
|
#[test]
|
|
|
|
fn test_df_shortened_long_argument() {
|
|
|
|
new_ucmd!().arg("--a").succeeds();
|
|
|
|
}
|
|
|
|
|
2020-04-28 07:34:55 +00:00
|
|
|
#[test]
|
|
|
|
fn test_df_compatible() {
|
2021-04-22 20:37:44 +00:00
|
|
|
new_ucmd!().arg("-ah").succeeds();
|
2020-04-28 07:34:55 +00:00
|
|
|
}
|
2020-04-30 21:02:22 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_df_compatible_type() {
|
2021-04-22 20:37:44 +00:00
|
|
|
new_ucmd!().arg("-aT").succeeds();
|
2020-04-30 21:02:22 +00:00
|
|
|
}
|
2020-04-29 17:03:22 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_df_compatible_si() {
|
2021-04-22 20:37:44 +00:00
|
|
|
new_ucmd!().arg("-aH").succeeds();
|
2020-04-29 17:03:22 +00:00
|
|
|
}
|
|
|
|
|
2021-05-03 08:55:17 +00:00
|
|
|
#[test]
|
|
|
|
fn test_df_output() {
|
|
|
|
if cfg!(target_os = "macos") {
|
|
|
|
new_ucmd!().arg("-H").arg("-total").succeeds().
|
|
|
|
stdout_only("Filesystem Size Used Available Capacity Use% Mounted on \n");
|
|
|
|
} else {
|
|
|
|
new_ucmd!().arg("-H").arg("-total").succeeds().stdout_only(
|
2021-05-08 11:13:52 +00:00
|
|
|
"Filesystem Size Used Available Use% Mounted on \n",
|
2021-05-03 08:55:17 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-13 02:02:09 +00:00
|
|
|
/// Test that the order of rows in the table does not change across executions.
|
|
|
|
#[test]
|
|
|
|
fn test_order_same() {
|
|
|
|
// TODO When #3057 is resolved, we should just use
|
|
|
|
//
|
|
|
|
// new_ucmd!().arg("--output=source").succeeds().stdout_move_str();
|
|
|
|
//
|
|
|
|
// instead of parsing the entire `df` table as a string.
|
|
|
|
let output1 = new_ucmd!().succeeds().stdout_move_str();
|
|
|
|
let output2 = new_ucmd!().succeeds().stdout_move_str();
|
|
|
|
let output1: Vec<String> = output1
|
|
|
|
.lines()
|
|
|
|
.map(|l| String::from(l.split_once(' ').unwrap().0))
|
|
|
|
.collect();
|
|
|
|
let output2: Vec<String> = output2
|
|
|
|
.lines()
|
|
|
|
.map(|l| String::from(l.split_once(' ').unwrap().0))
|
|
|
|
.collect();
|
|
|
|
assert_eq!(output1, output2);
|
|
|
|
}
|
|
|
|
|
2022-02-17 05:43:59 +00:00
|
|
|
#[test]
|
|
|
|
fn test_output_conflict_options() {
|
|
|
|
for option in ["-i", "-T", "-P"] {
|
|
|
|
new_ucmd!().arg("--output=source").arg(option).fails();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_output_option() {
|
|
|
|
new_ucmd!().arg("--output").succeeds();
|
|
|
|
new_ucmd!().arg("--output=source,target").succeeds();
|
|
|
|
new_ucmd!().arg("--output=invalid_option").fails();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_type_option() {
|
|
|
|
new_ucmd!().args(&["-t", "ext4", "-t", "ext3"]).succeeds();
|
|
|
|
}
|
|
|
|
|
2020-04-29 17:03:22 +00:00
|
|
|
// ToDO: more tests...
|