forked from lsd-rs/lsd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 layout: should use oneline layout when pipeline
Signed-off-by: Wei Zhang <[email protected]>
- Loading branch information
Showing
3 changed files
with
59 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
extern crate assert_cmd; | ||
extern crate predicates; | ||
|
||
use assert_cmd::prelude::*; | ||
use assert_fs::prelude::*; | ||
use std::process::{Command, Stdio}; | ||
|
||
fn cmd() -> Command { | ||
Command::cargo_bin(env!("CARGO_PKG_NAME")).unwrap() | ||
} | ||
|
||
fn tempdir() -> assert_fs::TempDir { | ||
assert_fs::TempDir::new().unwrap() | ||
} | ||
|
||
#[test] | ||
fn test_pipe_should_use_line() { | ||
let dir = tempdir(); | ||
dir.child("one").touch().unwrap(); | ||
dir.child("two").touch().unwrap(); | ||
|
||
let lsd = cmd() | ||
.arg("--ignore-config") | ||
.arg(dir.path()) | ||
.stdout(Stdio::piped()) | ||
.spawn() | ||
.expect("Failed to start lsd process"); | ||
let lsd_out = lsd.stdout.expect("Failed to open ls stdout"); | ||
|
||
let cat_lsd = Command::new("cat") | ||
.stdin(Stdio::from(lsd_out)) | ||
.stdout(Stdio::piped()) | ||
.spawn() | ||
.expect("Failed to start cat process"); | ||
let output_lsd = cat_lsd | ||
.wait_with_output() | ||
.expect("Failed to wait on cat lsd"); | ||
|
||
let ls = Command::new("ls") | ||
.arg(dir.path()) | ||
.stdout(Stdio::piped()) | ||
.spawn() | ||
.expect("Failed to start ls process"); | ||
let ls_out = ls.stdout.expect("Failed to open ls stdout"); | ||
|
||
let cat_ls = Command::new("cat") | ||
.stdin(Stdio::from(ls_out)) | ||
.stdout(Stdio::piped()) | ||
.spawn() | ||
.expect("Failed to start cat process"); | ||
|
||
let output_ls = cat_ls.wait_with_output().expect("Failed to wait on cat ls"); | ||
|
||
assert_eq!(output_ls.stdout, output_lsd.stdout); | ||
} |