Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

df: show "total" label in correct column #3579

Merged
merged 1 commit into from
May 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 32 additions & 14 deletions src/uu/df/src/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,12 +204,18 @@ pub(crate) struct RowFormatter<'a> {
// numbers. We could split the options up into those groups to
// reduce the coupling between this `table.rs` module and the main
// `df.rs` module.
/// Whether to use the special rules for displaying the total row.
is_total_row: bool,
}

impl<'a> RowFormatter<'a> {
/// Instantiate this struct.
pub(crate) fn new(row: &'a Row, options: &'a Options) -> Self {
Self { row, options }
pub(crate) fn new(row: &'a Row, options: &'a Options, is_total_row: bool) -> Self {
Self {
row,
options,
is_total_row,
}
}

/// Get a string giving the scaled version of the input number.
Expand Down Expand Up @@ -251,13 +257,25 @@ impl<'a> RowFormatter<'a> {

for column in &self.options.columns {
let string = match column {
Column::Source => self.row.fs_device.to_string(),
Column::Source => {
if self.is_total_row {
"total".to_string()
} else {
self.row.fs_device.to_string()
}
}
Column::Size => self.scaled_bytes(self.row.bytes),
Column::Used => self.scaled_bytes(self.row.bytes_used),
Column::Avail => self.scaled_bytes(self.row.bytes_avail),
Column::Pcent => Self::percentage(self.row.bytes_usage),

Column::Target => self.row.fs_mount.to_string(),
Column::Target => {
if self.is_total_row && !self.options.columns.contains(&Column::Source) {
"total".to_string()
} else {
self.row.fs_mount.to_string()
}
}
Column::Itotal => self.scaled_inodes(self.row.inodes),
Column::Iused => self.scaled_inodes(self.row.inodes_used),
Column::Iavail => self.scaled_inodes(self.row.inodes_free),
Expand Down Expand Up @@ -371,7 +389,7 @@ impl Table {
// the output table.
if options.show_all_fs || filesystem.usage.blocks > 0 {
let row = Row::from(filesystem);
let fmt = RowFormatter::new(&row, options);
let fmt = RowFormatter::new(&row, options, false);
let values = fmt.get_values();
total += row;

Expand All @@ -386,7 +404,7 @@ impl Table {
}

if options.show_total {
let total_row = RowFormatter::new(&total, options);
let total_row = RowFormatter::new(&total, options, true);
rows.push(total_row.get_values());
}

Expand Down Expand Up @@ -625,7 +643,7 @@ mod tests {

..Default::default()
};
let fmt = RowFormatter::new(&row, &options);
let fmt = RowFormatter::new(&row, &options, false);
assert_eq!(
fmt.get_values(),
vec!("my_device", "100", "25", "75", "25%", "my_mount")
Expand All @@ -651,7 +669,7 @@ mod tests {

..Default::default()
};
let fmt = RowFormatter::new(&row, &options);
let fmt = RowFormatter::new(&row, &options, false);
assert_eq!(
fmt.get_values(),
vec!("my_device", "my_type", "100", "25", "75", "25%", "my_mount")
Expand All @@ -676,7 +694,7 @@ mod tests {

..Default::default()
};
let fmt = RowFormatter::new(&row, &options);
let fmt = RowFormatter::new(&row, &options, false);
assert_eq!(
fmt.get_values(),
vec!("my_device", "10", "2", "8", "20%", "my_mount")
Expand All @@ -695,7 +713,7 @@ mod tests {
inodes: 10,
..Default::default()
};
let fmt = RowFormatter::new(&row, &options);
let fmt = RowFormatter::new(&row, &options, false);
assert_eq!(fmt.get_values(), vec!("1", "10"));
}

Expand All @@ -718,7 +736,7 @@ mod tests {

..Default::default()
};
let fmt = RowFormatter::new(&row, &options);
let fmt = RowFormatter::new(&row, &options, false);
assert_eq!(
fmt.get_values(),
vec!("my_device", "my_type", "4k", "1k", "3k", "25%", "my_mount")
Expand All @@ -744,7 +762,7 @@ mod tests {

..Default::default()
};
let fmt = RowFormatter::new(&row, &options);
let fmt = RowFormatter::new(&row, &options, false);
assert_eq!(
fmt.get_values(),
vec!("my_device", "my_type", "4K", "1K", "3K", "25%", "my_mount")
Expand All @@ -761,7 +779,7 @@ mod tests {
bytes_usage: Some(0.251),
..Default::default()
};
let fmt = RowFormatter::new(&row, &options);
let fmt = RowFormatter::new(&row, &options, false);
assert_eq!(fmt.get_values(), vec!("26%"));
}

Expand All @@ -780,7 +798,7 @@ mod tests {
bytes_avail,
..Default::default()
};
RowFormatter::new(&row, &options).get_values()
RowFormatter::new(&row, &options, false).get_values()
}

assert_eq!(get_formatted_values(100, 100, 0), vec!("1", "1", "0"));
Expand Down
41 changes: 41 additions & 0 deletions tests/by-util/test_df.rs
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,47 @@ fn test_total() {
assert_eq!(computed_total_avail, reported_total_avail);
}

/// Test that the "total" label appears in the correct column.
///
/// The "total" label should appear in the "source" column, or in the
/// "target" column if "source" is not visible.
#[test]
fn test_total_label_in_correct_column() {
let output = new_ucmd!()
.args(&["--output=source", "--total", "."])
.succeeds()
.stdout_move_str();
let last_line = output.lines().last().unwrap();
assert_eq!(last_line.trim(), "total");

let output = new_ucmd!()
.args(&["--output=target", "--total", "."])
.succeeds()
.stdout_move_str();
let last_line = output.lines().last().unwrap();
assert_eq!(last_line.trim(), "total");

let output = new_ucmd!()
.args(&["--output=source,target", "--total", "."])
.succeeds()
.stdout_move_str();
let last_line = output.lines().last().unwrap();
assert_eq!(
last_line.split_whitespace().collect::<Vec<&str>>(),
vec!["total", "-"]
);

let output = new_ucmd!()
.args(&["--output=target,source", "--total", "."])
.succeeds()
.stdout_move_str();
let last_line = output.lines().last().unwrap();
assert_eq!(
last_line.split_whitespace().collect::<Vec<&str>>(),
vec!["-", "total"]
);
}

#[test]
fn test_use_percentage() {
let output = new_ucmd!()
Expand Down