mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 09:48:03 +00:00
51 lines
1.3 KiB
Rust
51 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));
|
||
|
}
|