mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 01:38:04 +00:00
569cd162d3
Updates to individual integration tests - use proposed conventional approach to beginning tests - use new convenience functions for using fixtures - use new names for TestScenario Updates to integration test modules - add proposed conventional module-level functions Updates to test/common/util.rs - rename TestSet, and its methods, for semantic clarity - create convenience functions for use of fixtures - delete convenience functions obsoleted by new conventions
46 lines
1.2 KiB
Rust
46 lines
1.2 KiB
Rust
use common::util::*;
|
|
|
|
static UTIL_NAME: &'static str = "cut";
|
|
fn new_ucmd() -> UCommand {
|
|
TestScenario::new(UTIL_NAME).ucmd()
|
|
}
|
|
|
|
static INPUT: &'static str = "lists.txt";
|
|
|
|
|
|
#[test]
|
|
fn test_prefix() {
|
|
new_ucmd().args(&["-c", "-10", INPUT]).run().stdout_is_fixture("lists_prefix.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn test_char_range() {
|
|
new_ucmd().args(&["-c", "4-10", INPUT]).run().stdout_is_fixture("lists_char_range.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn test_column_to_end_of_line() {
|
|
new_ucmd().args(&["-d", ":", "-f", "5-", INPUT]).run().stdout_is_fixture("lists_column_to_end_of_line.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn test_specific_field() {
|
|
new_ucmd().args(&["-d", " ", "-f", "3", INPUT]).run().stdout_is_fixture("lists_specific_field.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn test_multiple_fields() {
|
|
new_ucmd().args(&["-d", ":", "-f", "1,3", INPUT]).run().stdout_is_fixture("lists_multiple_fields.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn test_tail() {
|
|
new_ucmd().args(&["-d", ":", "--complement", "-f", "1", INPUT]).run().stdout_is_fixture("lists_tail.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn test_change_delimiter() {
|
|
new_ucmd()
|
|
.args(&["-d", ":", "--complement", "--output-delimiter=#", "-f", "1", INPUT])
|
|
.run().stdout_is_fixture("lists_change_delimiter.expected");
|
|
}
|