2020-05-25 17:05:26 +00:00
|
|
|
|
use crate::common::util::*;
|
2018-03-20 16:10:05 +00:00
|
|
|
|
|
2018-03-22 16:05:33 +00:00
|
|
|
|
const SUB_DIR: &str = "subdir/deeper";
|
|
|
|
|
const SUB_DIR_LINKS: &str = "subdir/links";
|
|
|
|
|
const SUB_FILE: &str = "subdir/links/subwords.txt";
|
|
|
|
|
const SUB_LINK: &str = "subdir/links/sublink.txt";
|
2018-03-20 16:10:05 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_du_basics() {
|
2021-04-17 09:22:49 +00:00
|
|
|
|
new_ucmd!().succeeds().no_stderr();
|
2018-03-21 14:14:18 +00:00
|
|
|
|
}
|
2021-03-18 01:32:34 +00:00
|
|
|
|
#[cfg(target_vendor = "apple")]
|
2021-04-19 08:45:51 +00:00
|
|
|
|
fn _du_basics(s: &str) {
|
2018-03-20 21:55:31 +00:00
|
|
|
|
let answer = "32\t./subdir
|
|
|
|
|
8\t./subdir/deeper
|
|
|
|
|
24\t./subdir/links
|
|
|
|
|
40\t./
|
|
|
|
|
";
|
2018-03-21 14:14:18 +00:00
|
|
|
|
assert_eq!(s, answer);
|
|
|
|
|
}
|
2021-03-18 01:32:34 +00:00
|
|
|
|
#[cfg(not(target_vendor = "apple"))]
|
2021-04-05 20:03:43 +00:00
|
|
|
|
fn _du_basics(s: &str) {
|
2018-03-21 14:14:18 +00:00
|
|
|
|
let answer = "28\t./subdir
|
|
|
|
|
8\t./subdir/deeper
|
|
|
|
|
16\t./subdir/links
|
|
|
|
|
36\t./
|
|
|
|
|
";
|
|
|
|
|
assert_eq!(s, answer);
|
2018-03-20 16:10:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_du_basics_subdir() {
|
2021-04-19 08:45:51 +00:00
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
|
|
|
|
|
|
let result = scene.ucmd().arg(SUB_DIR).succeeds();
|
2018-03-20 16:10:05 +00:00
|
|
|
|
|
2021-04-19 08:45:51 +00:00
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
{
|
|
|
|
|
let result_reference = scene.cmd("du").arg(SUB_DIR).run();
|
|
|
|
|
if result_reference.succeeded() {
|
|
|
|
|
assert_eq!(result.stdout_str(), result_reference.stdout_str());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-05 20:03:43 +00:00
|
|
|
|
_du_basics_subdir(result.stdout_str());
|
2018-03-21 14:14:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-18 01:32:34 +00:00
|
|
|
|
#[cfg(target_vendor = "apple")]
|
2021-04-05 20:03:43 +00:00
|
|
|
|
fn _du_basics_subdir(s: &str) {
|
2018-03-22 16:05:33 +00:00
|
|
|
|
assert_eq!(s, "4\tsubdir/deeper\n");
|
2018-03-21 14:14:18 +00:00
|
|
|
|
}
|
2021-04-01 21:16:47 +00:00
|
|
|
|
#[cfg(target_os = "windows")]
|
2021-04-05 20:03:43 +00:00
|
|
|
|
fn _du_basics_subdir(s: &str) {
|
2021-04-01 21:16:47 +00:00
|
|
|
|
assert_eq!(s, "0\tsubdir/deeper\n");
|
|
|
|
|
}
|
|
|
|
|
#[cfg(all(not(target_vendor = "apple"), not(target_os = "windows")))]
|
2021-04-05 20:03:43 +00:00
|
|
|
|
fn _du_basics_subdir(s: &str) {
|
2019-12-25 06:42:11 +00:00
|
|
|
|
// MS-WSL linux has altered expected output
|
2021-04-06 08:44:57 +00:00
|
|
|
|
if !uucore::os::is_wsl_1() {
|
2019-12-25 06:42:11 +00:00
|
|
|
|
assert_eq!(s, "8\tsubdir/deeper\n");
|
|
|
|
|
} else {
|
|
|
|
|
assert_eq!(s, "0\tsubdir/deeper\n");
|
|
|
|
|
}
|
2018-03-20 16:10:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_du_basics_bad_name() {
|
2021-04-19 08:45:51 +00:00
|
|
|
|
new_ucmd!()
|
|
|
|
|
.arg("bad_name")
|
|
|
|
|
.succeeds() // TODO: replace with ".fails()" once `du` is fixed
|
|
|
|
|
.stderr_only("du: error: bad_name: No such file or directory\n");
|
2018-03-20 16:10:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_du_soft_link() {
|
2021-04-19 08:45:51 +00:00
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
|
let at = &scene.fixtures;
|
2018-03-20 16:10:05 +00:00
|
|
|
|
|
2021-04-19 08:45:51 +00:00
|
|
|
|
at.symlink_file(SUB_FILE, SUB_LINK);
|
2018-03-20 16:10:05 +00:00
|
|
|
|
|
2021-04-19 08:45:51 +00:00
|
|
|
|
let result = scene.ucmd().arg(SUB_DIR_LINKS).succeeds();
|
2018-03-20 16:10:05 +00:00
|
|
|
|
|
2021-04-19 08:45:51 +00:00
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
{
|
|
|
|
|
let result_reference = scene.cmd("du").arg(SUB_DIR_LINKS).run();
|
|
|
|
|
if result_reference.succeeded() {
|
|
|
|
|
assert_eq!(result.stdout_str(), result_reference.stdout_str());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-05 20:03:43 +00:00
|
|
|
|
_du_soft_link(result.stdout_str());
|
2018-03-21 14:14:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-18 01:32:34 +00:00
|
|
|
|
#[cfg(target_vendor = "apple")]
|
2021-04-05 20:03:43 +00:00
|
|
|
|
fn _du_soft_link(s: &str) {
|
2020-01-01 23:06:56 +00:00
|
|
|
|
// 'macos' host variants may have `du` output variation for soft links
|
|
|
|
|
assert!((s == "12\tsubdir/links\n") || (s == "16\tsubdir/links\n"));
|
2018-03-21 14:14:18 +00:00
|
|
|
|
}
|
2021-04-01 21:16:47 +00:00
|
|
|
|
#[cfg(target_os = "windows")]
|
2021-04-05 20:03:43 +00:00
|
|
|
|
fn _du_soft_link(s: &str) {
|
2021-04-01 21:16:47 +00:00
|
|
|
|
assert_eq!(s, "8\tsubdir/links\n");
|
|
|
|
|
}
|
|
|
|
|
#[cfg(all(not(target_vendor = "apple"), not(target_os = "windows")))]
|
2021-04-05 20:03:43 +00:00
|
|
|
|
fn _du_soft_link(s: &str) {
|
2019-12-25 06:42:11 +00:00
|
|
|
|
// MS-WSL linux has altered expected output
|
2021-04-06 08:44:57 +00:00
|
|
|
|
if !uucore::os::is_wsl_1() {
|
2019-12-25 06:42:11 +00:00
|
|
|
|
assert_eq!(s, "16\tsubdir/links\n");
|
|
|
|
|
} else {
|
|
|
|
|
assert_eq!(s, "8\tsubdir/links\n");
|
|
|
|
|
}
|
2018-03-20 16:10:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-20 20:40:27 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_du_hard_link() {
|
2021-04-19 08:45:51 +00:00
|
|
|
|
let scene = TestScenario::new(util_name!());
|
2018-03-20 20:40:27 +00:00
|
|
|
|
|
2021-04-19 08:45:51 +00:00
|
|
|
|
let result_ln = scene.cmd("ln").arg(SUB_FILE).arg(SUB_LINK).run();
|
|
|
|
|
if !result_ln.succeeded() {
|
|
|
|
|
scene.ccmd("ln").arg(SUB_FILE).arg(SUB_LINK).succeeds();
|
|
|
|
|
}
|
2018-03-20 20:40:27 +00:00
|
|
|
|
|
2021-04-19 08:45:51 +00:00
|
|
|
|
let result = scene.ucmd().arg(SUB_DIR_LINKS).succeeds();
|
2018-03-20 20:40:27 +00:00
|
|
|
|
|
2021-04-19 08:45:51 +00:00
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
{
|
|
|
|
|
let result_reference = scene.cmd("du").arg(SUB_DIR_LINKS).run();
|
|
|
|
|
if result_reference.succeeded() {
|
|
|
|
|
assert_eq!(result.stdout_str(), result_reference.stdout_str());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-03-22 16:05:33 +00:00
|
|
|
|
// We do not double count hard links as the inodes are identical
|
2021-04-05 20:03:43 +00:00
|
|
|
|
_du_hard_link(result.stdout_str());
|
2018-03-21 14:14:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-18 01:32:34 +00:00
|
|
|
|
#[cfg(target_vendor = "apple")]
|
2021-04-05 20:03:43 +00:00
|
|
|
|
fn _du_hard_link(s: &str) {
|
2018-03-22 16:05:33 +00:00
|
|
|
|
assert_eq!(s, "12\tsubdir/links\n")
|
2018-03-21 14:14:18 +00:00
|
|
|
|
}
|
2021-04-01 21:16:47 +00:00
|
|
|
|
#[cfg(target_os = "windows")]
|
2021-04-05 20:03:43 +00:00
|
|
|
|
fn _du_hard_link(s: &str) {
|
2021-04-01 21:16:47 +00:00
|
|
|
|
assert_eq!(s, "8\tsubdir/links\n")
|
|
|
|
|
}
|
|
|
|
|
#[cfg(all(not(target_vendor = "apple"), not(target_os = "windows")))]
|
2021-04-05 20:03:43 +00:00
|
|
|
|
fn _du_hard_link(s: &str) {
|
2019-12-25 06:42:11 +00:00
|
|
|
|
// MS-WSL linux has altered expected output
|
2021-04-06 08:44:57 +00:00
|
|
|
|
if !uucore::os::is_wsl_1() {
|
2019-12-25 06:42:11 +00:00
|
|
|
|
assert_eq!(s, "16\tsubdir/links\n");
|
|
|
|
|
} else {
|
|
|
|
|
assert_eq!(s, "8\tsubdir/links\n");
|
|
|
|
|
}
|
2018-03-20 20:40:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-20 21:55:31 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_du_d_flag() {
|
2021-04-19 08:45:51 +00:00
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
|
|
|
|
|
|
let result = scene.ucmd().arg("-d1").succeeds();
|
2018-03-20 21:55:31 +00:00
|
|
|
|
|
2021-04-19 08:45:51 +00:00
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
{
|
|
|
|
|
let result_reference = scene.cmd("du").arg("-d1").run();
|
|
|
|
|
if result_reference.succeeded() {
|
|
|
|
|
assert_eq!(
|
|
|
|
|
// TODO: gnu `du` doesn't use trailing "/" here
|
|
|
|
|
// result.stdout_str(), result_reference.stdout_str()
|
|
|
|
|
result.stdout_str().trim_end_matches("/\n"),
|
|
|
|
|
result_reference.stdout_str().trim_end_matches("\n")
|
|
|
|
|
);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-05 20:03:43 +00:00
|
|
|
|
_du_d_flag(result.stdout_str());
|
2018-03-21 14:14:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-18 01:32:34 +00:00
|
|
|
|
#[cfg(target_vendor = "apple")]
|
2021-04-05 20:03:43 +00:00
|
|
|
|
fn _du_d_flag(s: &str) {
|
2018-03-22 16:05:33 +00:00
|
|
|
|
assert_eq!(s, "16\t./subdir\n20\t./\n");
|
2018-03-21 14:14:18 +00:00
|
|
|
|
}
|
2021-04-01 21:16:47 +00:00
|
|
|
|
#[cfg(target_os = "windows")]
|
2021-04-05 20:03:43 +00:00
|
|
|
|
fn _du_d_flag(s: &str) {
|
2021-04-01 21:16:47 +00:00
|
|
|
|
assert_eq!(s, "8\t./subdir\n8\t./\n");
|
|
|
|
|
}
|
|
|
|
|
#[cfg(all(not(target_vendor = "apple"), not(target_os = "windows")))]
|
2021-04-05 20:03:43 +00:00
|
|
|
|
fn _du_d_flag(s: &str) {
|
2019-12-25 06:42:11 +00:00
|
|
|
|
// MS-WSL linux has altered expected output
|
2021-04-06 08:44:57 +00:00
|
|
|
|
if !uucore::os::is_wsl_1() {
|
2019-12-25 06:42:11 +00:00
|
|
|
|
assert_eq!(s, "28\t./subdir\n36\t./\n");
|
|
|
|
|
} else {
|
|
|
|
|
assert_eq!(s, "8\t./subdir\n8\t./\n");
|
|
|
|
|
}
|
2018-03-20 21:55:31 +00:00
|
|
|
|
}
|
2021-04-01 23:42:43 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_du_h_flag_empty_file() {
|
2021-04-19 08:45:51 +00:00
|
|
|
|
new_ucmd!()
|
2021-04-05 20:03:43 +00:00
|
|
|
|
.arg("-h")
|
|
|
|
|
.arg("empty.txt")
|
|
|
|
|
.succeeds()
|
|
|
|
|
.stdout_only("0\tempty.txt\n");
|
2021-04-01 23:42:43 +00:00
|
|
|
|
}
|
2021-04-07 06:41:04 +00:00
|
|
|
|
|
|
|
|
|
#[cfg(feature = "touch")]
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_du_time() {
|
2021-04-19 08:45:51 +00:00
|
|
|
|
let scene = TestScenario::new(util_name!());
|
2021-04-07 06:41:04 +00:00
|
|
|
|
|
2021-04-19 08:45:51 +00:00
|
|
|
|
scene
|
2021-04-17 09:22:49 +00:00
|
|
|
|
.ccmd("touch")
|
|
|
|
|
.arg("-a")
|
|
|
|
|
.arg("-m")
|
|
|
|
|
.arg("-t")
|
|
|
|
|
.arg("201505150000")
|
|
|
|
|
.arg("date_test")
|
2021-04-19 08:45:51 +00:00
|
|
|
|
.succeeds();
|
2021-04-07 06:41:04 +00:00
|
|
|
|
|
2021-04-19 08:45:51 +00:00
|
|
|
|
scene
|
|
|
|
|
.ucmd()
|
|
|
|
|
.arg("--time")
|
|
|
|
|
.arg("date_test")
|
|
|
|
|
.succeeds()
|
|
|
|
|
.stdout_only("0\t2015-05-15 00:00\tdate_test\n");
|
2021-04-07 06:41:04 +00:00
|
|
|
|
}
|
2021-04-17 08:26:52 +00:00
|
|
|
|
|
|
|
|
|
#[cfg(not(target_os = "windows"))]
|
|
|
|
|
#[cfg(feature = "chmod")]
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_du_no_permission() {
|
2021-04-22 20:37:44 +00:00
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
|
let at = &scene.fixtures;
|
2021-04-07 06:41:04 +00:00
|
|
|
|
|
2021-04-22 20:37:44 +00:00
|
|
|
|
at.mkdir_all(SUB_DIR_LINKS);
|
2021-04-07 06:41:04 +00:00
|
|
|
|
|
2021-04-22 20:37:44 +00:00
|
|
|
|
scene.ccmd("chmod").arg("-r").arg(SUB_DIR_LINKS).succeeds();
|
2021-04-07 06:41:04 +00:00
|
|
|
|
|
2021-04-22 20:37:44 +00:00
|
|
|
|
let result = scene.ucmd().arg(SUB_DIR_LINKS).run(); // TODO: replace with ".fails()" once `du` is fixed
|
|
|
|
|
result.stderr_contains(
|
|
|
|
|
"du: cannot read directory ‘subdir/links‘: Permission denied (os error 13)",
|
2021-04-17 08:26:52 +00:00
|
|
|
|
);
|
2021-04-07 06:41:04 +00:00
|
|
|
|
|
2021-04-22 20:37:44 +00:00
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
{
|
|
|
|
|
let result_reference = scene.cmd("du").arg(SUB_DIR_LINKS).fails();
|
|
|
|
|
if result_reference
|
|
|
|
|
.stderr_str()
|
|
|
|
|
.contains("du: cannot read directory 'subdir/links': Permission denied")
|
|
|
|
|
{
|
|
|
|
|
assert_eq!(result.stdout_str(), result_reference.stdout_str());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-19 08:45:51 +00:00
|
|
|
|
_du_no_permission(result.stdout_str());
|
2021-04-17 08:26:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(target_vendor = "apple")]
|
2021-04-19 08:45:51 +00:00
|
|
|
|
fn _du_no_permission(s: &str) {
|
2021-04-17 08:26:52 +00:00
|
|
|
|
assert_eq!(s, "0\tsubdir/links\n");
|
|
|
|
|
}
|
|
|
|
|
#[cfg(all(not(target_vendor = "apple"), not(target_os = "windows")))]
|
2021-04-19 08:45:51 +00:00
|
|
|
|
fn _du_no_permission(s: &str) {
|
2021-04-17 08:26:52 +00:00
|
|
|
|
assert_eq!(s, "4\tsubdir/links\n");
|
2021-04-01 23:42:43 +00:00
|
|
|
|
}
|