mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 09:48:03 +00:00
7ef4bb37a8
The main motivation is to move toward running those tests for a specific target, that is, if a test won't run on Windows, then we shouldn't build it. This was previously the default behavior and prevented a successful run on AppVeyor. I borrowed this pattern from the tests in the Cargo project.
50 lines
1.3 KiB
Rust
50 lines
1.3 KiB
Rust
extern crate libc;
|
|
|
|
use common::util::*;
|
|
|
|
static UTIL_NAME: &'static str = "link";
|
|
|
|
#[test]
|
|
fn test_link_existing_file() {
|
|
let (at, mut ucmd) = testing(UTIL_NAME);
|
|
let file = "test_link_existing_file";
|
|
let link = "test_link_existing_file_link";
|
|
|
|
at.touch(file);
|
|
at.write(file, "foobar");
|
|
assert!(at.file_exists(file));
|
|
|
|
let result = ucmd.args(&[file, link]).run();
|
|
|
|
assert_empty_stderr!(result);
|
|
assert!(result.success);
|
|
assert!(at.file_exists(file));
|
|
assert!(at.file_exists(link));
|
|
assert_eq!(at.read(file), at.read(link));
|
|
}
|
|
|
|
#[test]
|
|
fn test_link_no_circular() {
|
|
let (at, mut ucmd) = testing(UTIL_NAME);
|
|
let link = "test_link_no_circular";
|
|
|
|
let result = ucmd.args(&[link, link]).run();
|
|
assert_eq!(result.stderr,
|
|
"link: error: No such file or directory (os error 2)\n");
|
|
assert!(!result.success);
|
|
assert!(!at.file_exists(link));
|
|
}
|
|
|
|
#[test]
|
|
fn test_link_nonexistent_file() {
|
|
let (at, mut ucmd) = testing(UTIL_NAME);
|
|
let file = "test_link_nonexistent_file";
|
|
let link = "test_link_nonexistent_file_link";
|
|
|
|
let result = ucmd.args(&[file, link]).run();
|
|
assert_eq!(result.stderr,
|
|
"link: error: No such file or directory (os error 2)\n");
|
|
assert!(!result.success);
|
|
assert!(!at.file_exists(file));
|
|
assert!(!at.file_exists(link));
|
|
}
|