mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 14:52:41 +00:00
54 lines
1.2 KiB
Rust
54 lines
1.2 KiB
Rust
use crate::common::util::*;
|
|
extern crate tempfile;
|
|
use std::fs;
|
|
use tempfile::tempdir;
|
|
|
|
#[test]
|
|
fn test_invalid_arg() {
|
|
new_ucmd!().arg("--definitely-invalid").fails().code_is(1);
|
|
}
|
|
|
|
#[test]
|
|
fn test_sync_default() {
|
|
new_ucmd!().succeeds();
|
|
}
|
|
|
|
#[test]
|
|
fn test_sync_incorrect_arg() {
|
|
new_ucmd!().arg("--foo").fails();
|
|
}
|
|
|
|
#[test]
|
|
fn test_sync_fs() {
|
|
let temporary_directory = tempdir().unwrap();
|
|
let temporary_path = fs::canonicalize(temporary_directory.path()).unwrap();
|
|
new_ucmd!()
|
|
.arg("--file-system")
|
|
.arg(&temporary_path)
|
|
.succeeds();
|
|
}
|
|
|
|
#[test]
|
|
fn test_sync_data() {
|
|
// Todo add a second arg
|
|
let temporary_directory = tempdir().unwrap();
|
|
let temporary_path = fs::canonicalize(temporary_directory.path()).unwrap();
|
|
new_ucmd!().arg("--data").arg(&temporary_path).succeeds();
|
|
}
|
|
|
|
#[test]
|
|
fn test_sync_no_existing_files() {
|
|
new_ucmd!()
|
|
.arg("--data")
|
|
.arg("do-no-exist")
|
|
.fails()
|
|
.stderr_contains("cannot stat");
|
|
}
|
|
|
|
#[test]
|
|
fn test_sync_data_but_not_file() {
|
|
new_ucmd!()
|
|
.arg("--data")
|
|
.fails()
|
|
.stderr_contains("sync: --data needs at least one argument");
|
|
}
|