mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +00:00
71 lines
1.7 KiB
Rust
71 lines
1.7 KiB
Rust
use crate::common::util::*;
|
|
use std::io::{Seek, SeekFrom, Write};
|
|
|
|
static TFILE1: &'static str = "truncate_test_1";
|
|
static TFILE2: &'static str = "truncate_test_2";
|
|
|
|
#[test]
|
|
fn test_increase_file_size() {
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
let mut file = at.make_file(TFILE1);
|
|
ucmd.args(&["-s", "+5K", TFILE1]).succeeds();
|
|
|
|
file.seek(SeekFrom::End(0)).unwrap();
|
|
assert!(file.seek(SeekFrom::Current(0)).unwrap() == 5 * 1024);
|
|
}
|
|
|
|
#[test]
|
|
fn test_increase_file_size_kb() {
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
let mut file = at.make_file(TFILE1);
|
|
ucmd.args(&["-s", "+5KB", TFILE1]).succeeds();
|
|
|
|
file.seek(SeekFrom::End(0)).unwrap();
|
|
assert!(file.seek(SeekFrom::Current(0)).unwrap() == 5 * 1000);
|
|
}
|
|
|
|
#[test]
|
|
fn test_reference() {
|
|
let scene = TestScenario::new(util_name!());
|
|
let at = &scene.fixtures;
|
|
let mut file = at.make_file(TFILE2);
|
|
|
|
scene.ucmd().arg("-s").arg("+5KB").arg(TFILE1).run();
|
|
|
|
scene
|
|
.ucmd()
|
|
.arg("--reference")
|
|
.arg(TFILE1)
|
|
.arg(TFILE2)
|
|
.run();
|
|
|
|
file.seek(SeekFrom::End(0)).unwrap();
|
|
assert!(file.seek(SeekFrom::Current(0)).unwrap() == 5 * 1000);
|
|
}
|
|
|
|
#[test]
|
|
fn test_decrease_file_size() {
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
let mut file = at.make_file(TFILE2);
|
|
file.write_all(b"1234567890").unwrap();
|
|
ucmd.args(&["--size=-4", TFILE2]).succeeds();
|
|
file.seek(SeekFrom::End(0)).unwrap();
|
|
assert!(file.seek(SeekFrom::Current(0)).unwrap() == 6);
|
|
}
|
|
|
|
#[test]
|
|
fn test_failed() {
|
|
new_ucmd!().fails();
|
|
}
|
|
|
|
#[test]
|
|
fn test_failed_2() {
|
|
let (_at, mut ucmd) = at_and_ucmd!();
|
|
ucmd.args(&[TFILE1]).fails();
|
|
}
|
|
|
|
#[test]
|
|
fn test_failed_incorrect_arg() {
|
|
let (_at, mut ucmd) = at_and_ucmd!();
|
|
ucmd.args(&["-s", "+5A", TFILE1]).fails();
|
|
}
|