cargo/tests/testsuite/run.rs

1147 lines
26 KiB
Rust
Raw Normal View History

use cargo::util::paths::dylib_path_envvar;
2018-03-14 15:17:44 +00:00
use cargotest::support::{execs, project, path2url};
use hamcrest::{assert_that, existing_file};
#[test]
fn simple() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/main.rs",
r#"
fn main() { println!("hello"); }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run"),
execs()
.with_status(0)
.with_stderr(&format!(
"\
[COMPILING] foo v0.0.1 ({dir})
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
[RUNNING] `target[/]debug[/]foo[EXE]`",
dir = path2url(p.root())
))
.with_stdout(
"\
hello
2018-03-14 15:17:44 +00:00
",
),
);
assert_that(&p.bin("foo"), existing_file());
}
#[test]
fn simple_quiet() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/main.rs",
r#"
fn main() { println!("hello"); }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("-q"),
execs().with_status(0).with_stdout("hello"),
2018-03-12 20:08:49 +00:00
);
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("--quiet"),
execs().with_status(0).with_stdout("hello"),
);
}
#[test]
fn simple_quiet_and_verbose() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/main.rs",
r#"
fn main() { println!("hello"); }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("-q").arg("-v"),
execs().with_status(101).with_stderr(
"\
[ERROR] cannot set both --verbose and --quiet
2018-03-14 15:17:44 +00:00
",
),
);
}
#[test]
fn quiet_and_verbose_config() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file(
".cargo/config",
r#"
[term]
verbose = true
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/main.rs",
r#"
fn main() { println!("hello"); }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(p.cargo("run").arg("-q"), execs().with_status(0));
}
#[test]
fn simple_with_args() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/main.rs",
r#"
fn main() {
2015-03-26 18:17:44 +00:00
assert_eq!(std::env::args().nth(1).unwrap(), "hello");
assert_eq!(std::env::args().nth(2).unwrap(), "world");
}
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("hello").arg("world"),
execs().with_status(0),
);
}
#[test]
fn exit_code() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/main.rs",
r#"
fn main() { std::process::exit(2); }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
let mut output = String::from(
"\
2016-05-15 22:03:35 +00:00
[COMPILING] foo v0.0.1 (file[..])
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2016-05-15 22:03:35 +00:00
[RUNNING] `target[..]`
2018-03-14 15:17:44 +00:00
",
);
if !cfg!(unix) {
2018-03-14 15:17:44 +00:00
output.push_str(
"\
2016-09-14 18:10:30 +00:00
[ERROR] process didn't exit successfully: `target[..]foo[..]` (exit code: 2)
2018-03-14 15:17:44 +00:00
",
);
}
2018-03-14 15:17:44 +00:00
assert_that(p.cargo("run"), execs().with_status(2).with_stderr(output));
}
#[test]
fn exit_code_verbose() {
2015-10-13 00:30:44 +00:00
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
2015-10-13 00:30:44 +00:00
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/main.rs",
r#"
2015-10-13 00:30:44 +00:00
fn main() { std::process::exit(2); }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2015-10-13 00:30:44 +00:00
2018-03-14 15:17:44 +00:00
let mut output = String::from(
"\
2016-05-15 22:03:35 +00:00
[COMPILING] foo v0.0.1 (file[..])
[RUNNING] `rustc [..]`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2016-05-15 22:03:35 +00:00
[RUNNING] `target[..]`
2018-03-14 15:17:44 +00:00
",
);
if !cfg!(unix) {
2018-03-14 15:17:44 +00:00
output.push_str(
"\
2016-09-14 18:10:30 +00:00
[ERROR] process didn't exit successfully: `target[..]foo[..]` (exit code: 2)
2018-03-14 15:17:44 +00:00
",
);
}
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("-v"),
execs().with_status(2).with_stderr(output),
);
}
2015-10-13 00:30:44 +00:00
#[test]
fn no_main_file() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file("src/lib.rs", "")
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run"),
execs().with_status(101).with_stderr(
"[ERROR] a bin target must be available \
for `cargo run`\n",
),
);
}
#[test]
fn too_many_bins() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file("src/lib.rs", "")
.file("src/bin/a.rs", "")
.file("src/bin/b.rs", "")
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run"),
execs().with_status(101).with_stderr(
"[ERROR] `cargo run` requires that a project only \
have one executable; use the `--bin` option \
to specify which one to run\navailable binaries: [..]\n",
),
);
}
#[test]
fn specify_name() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file("src/lib.rs", "")
2018-03-14 15:17:44 +00:00
.file(
"src/bin/a.rs",
r#"
2017-08-27 07:31:16 +00:00
#[allow(unused_extern_crates)]
extern crate foo;
fn main() { println!("hello a.rs"); }
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/bin/b.rs",
r#"
2017-08-27 07:31:16 +00:00
#[allow(unused_extern_crates)]
extern crate foo;
fn main() { println!("hello b.rs"); }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("--bin").arg("a").arg("-v"),
execs()
.with_status(0)
.with_stderr(&format!(
"\
[COMPILING] foo v0.0.1 ({dir})
[RUNNING] `rustc [..] src[/]lib.rs [..]`
[RUNNING] `rustc [..] src[/]bin[/]a.rs [..]`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
[RUNNING] `target[/]debug[/]a[EXE]`",
dir = path2url(p.root())
))
.with_stdout(
"\
hello a.rs
2018-03-14 15:17:44 +00:00
",
),
);
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("--bin").arg("b").arg("-v"),
execs()
.with_status(0)
.with_stderr(
"\
[COMPILING] foo v0.0.1 ([..])
[RUNNING] `rustc [..] src[/]bin[/]b.rs [..]`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
[RUNNING] `target[/]debug[/]b[EXE]`",
)
.with_stdout(
"\
hello b.rs
2018-03-14 15:17:44 +00:00
",
),
);
}
#[test]
fn run_example() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file("src/lib.rs", "")
2018-03-14 15:17:44 +00:00
.file(
"examples/a.rs",
r#"
fn main() { println!("example"); }
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/bin/a.rs",
r#"
fn main() { println!("bin"); }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("--example").arg("a"),
execs()
.with_status(0)
.with_stderr(&format!(
"\
[COMPILING] foo v0.0.1 ({dir})
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
[RUNNING] `target[/]debug[/]examples[/]a[EXE]`",
dir = path2url(p.root())
))
.with_stdout(
"\
2017-03-24 20:20:38 +00:00
example
2018-03-14 15:17:44 +00:00
",
),
);
2017-03-24 20:20:38 +00:00
}
#[test]
2018-03-06 20:28:52 +00:00
fn run_bins() {
2017-03-24 20:20:38 +00:00
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
2017-03-24 20:20:38 +00:00
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
2017-03-24 20:20:38 +00:00
.file("src/lib.rs", "")
2018-03-14 15:17:44 +00:00
.file(
"examples/a.rs",
r#"
2017-03-24 20:20:38 +00:00
fn main() { println!("example"); }
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/bin/a.rs",
r#"
2017-03-24 20:20:38 +00:00
fn main() { println!("bin"); }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2017-03-24 20:20:38 +00:00
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("--bins"),
execs().with_status(1).with_stderr_contains(
"\
error: Found argument '--bins' which wasn't expected, or isn't valid in this context",
),
);
}
#[test]
fn run_with_filename() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file("src/lib.rs", "")
2018-03-14 15:17:44 +00:00
.file(
"src/bin/a.rs",
r#"
extern crate foo;
fn main() { println!("hello a.rs"); }
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"examples/a.rs",
r#"
fn main() { println!("example"); }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("--bin").arg("bin.rs"),
execs().with_status(101).with_stderr(
"\
[ERROR] no bin target named `bin.rs`",
),
);
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("--bin").arg("a.rs"),
execs().with_status(101).with_stderr(
"\
[ERROR] no bin target named `a.rs`
2018-03-14 15:17:44 +00:00
Did you mean `a`?",
),
);
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("--example").arg("example.rs"),
execs().with_status(101).with_stderr(
"\
[ERROR] no example target named `example.rs`",
),
);
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("--example").arg("a.rs"),
execs().with_status(101).with_stderr(
"\
[ERROR] no example target named `a.rs`
2018-03-14 15:17:44 +00:00
Did you mean `a`?",
),
);
}
#[test]
fn either_name_or_example() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/bin/a.rs",
r#"
fn main() { println!("hello a.rs"); }
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"examples/b.rs",
r#"
fn main() { println!("hello b.rs"); }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run")
.arg("--bin")
.arg("a")
.arg("--example")
.arg("b"),
execs().with_status(101).with_stderr(
"[ERROR] `cargo run` can run at most one \
executable, but multiple were \
specified",
),
);
}
#[test]
fn one_bin_multiple_examples() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file("src/lib.rs", "")
2018-03-14 15:17:44 +00:00
.file(
"src/bin/main.rs",
r#"
fn main() { println!("hello main.rs"); }
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"examples/a.rs",
r#"
fn main() { println!("hello a.rs"); }
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"examples/b.rs",
r#"
fn main() { println!("hello b.rs"); }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run"),
execs()
.with_status(0)
.with_stderr(&format!(
"\
[COMPILING] foo v0.0.1 ({dir})
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
[RUNNING] `target[/]debug[/]main[EXE]`",
dir = path2url(p.root())
))
.with_stdout(
"\
hello main.rs
2018-03-14 15:17:44 +00:00
",
),
);
}
#[test]
fn example_with_release_flag() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
[dependencies.bar]
version = "*"
path = "bar"
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"examples/a.rs",
r#"
extern crate bar;
fn main() {
if cfg!(debug_assertions) {
println!("slow1")
} else {
println!("fast1")
}
bar::baz();
}
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"bar/Cargo.toml",
r#"
[project]
name = "bar"
version = "0.0.1"
authors = []
[lib]
name = "bar"
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"bar/src/bar.rs",
r#"
pub fn baz() {
if cfg!(debug_assertions) {
println!("slow2")
} else {
println!("fast2")
}
}
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run")
.arg("-v")
.arg("--release")
.arg("--example")
.arg("a"),
execs()
.with_status(0)
.with_stderr(&format!(
"\
[COMPILING] bar v0.0.1 ({url}/bar)
[RUNNING] `rustc --crate-name bar bar[/]src[/]bar.rs --crate-type lib \
2017-01-03 21:22:58 +00:00
--emit=dep-info,link \
-C opt-level=3 \
-C metadata=[..] \
2016-11-06 04:53:21 +00:00
--out-dir {dir}[/]target[/]release[/]deps \
-L dependency={dir}[/]target[/]release[/]deps`
[COMPILING] foo v0.0.1 ({url})
2016-11-30 19:42:44 +00:00
[RUNNING] `rustc --crate-name a examples[/]a.rs --crate-type bin \
2017-01-03 21:22:58 +00:00
--emit=dep-info,link \
-C opt-level=3 \
-C metadata=[..] \
2016-11-06 04:53:21 +00:00
--out-dir {dir}[/]target[/]release[/]examples \
-L dependency={dir}[/]target[/]release[/]deps \
--extern bar={dir}[/]target[/]release[/]deps[/]libbar-[..].rlib`
[FINISHED] release [optimized] target(s) in [..]
2016-11-06 04:53:21 +00:00
[RUNNING] `target[/]release[/]examples[/]a[EXE]`
",
2018-03-14 15:17:44 +00:00
dir = p.root().display(),
url = path2url(p.root()),
))
.with_stdout(
"\
2016-05-15 21:48:11 +00:00
fast1
2018-03-14 15:17:44 +00:00
fast2",
),
);
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("-v").arg("--example").arg("a"),
execs()
.with_status(0)
.with_stderr(&format!(
"\
[COMPILING] bar v0.0.1 ({url}/bar)
[RUNNING] `rustc --crate-name bar bar[/]src[/]bar.rs --crate-type lib \
2017-01-03 21:22:58 +00:00
--emit=dep-info,link \
-C debuginfo=2 \
-C metadata=[..] \
2016-11-06 04:53:21 +00:00
--out-dir {dir}[/]target[/]debug[/]deps \
-L dependency={dir}[/]target[/]debug[/]deps`
[COMPILING] foo v0.0.1 ({url})
[RUNNING] `rustc --crate-name a examples[/]a.rs --crate-type bin \
2017-01-03 21:22:58 +00:00
--emit=dep-info,link \
-C debuginfo=2 \
-C metadata=[..] \
2016-11-06 04:53:21 +00:00
--out-dir {dir}[/]target[/]debug[/]examples \
-L dependency={dir}[/]target[/]debug[/]deps \
--extern bar={dir}[/]target[/]debug[/]deps[/]libbar-[..].rlib`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2016-11-06 04:53:21 +00:00
[RUNNING] `target[/]debug[/]examples[/]a[EXE]`
",
2018-03-14 15:17:44 +00:00
dir = p.root().display(),
url = path2url(p.root()),
))
.with_stdout(
"\
2016-05-15 21:48:11 +00:00
slow1
2018-03-14 15:17:44 +00:00
slow2",
),
);
}
#[test]
fn run_dylib_dep() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
[dependencies.bar]
path = "bar"
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/main.rs",
r#"
extern crate bar;
fn main() { bar::bar(); }
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"bar/Cargo.toml",
r#"
[package]
name = "bar"
version = "0.0.1"
authors = []
2014-08-14 06:08:02 +00:00
[lib]
name = "bar"
crate-type = ["dylib"]
2018-03-14 15:17:44 +00:00
"#,
)
.file("bar/src/lib.rs", "pub fn bar() {}")
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("hello").arg("world"),
execs().with_status(0),
);
}
#[test]
fn release_works() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/main.rs",
r#"
fn main() { if cfg!(debug_assertions) { panic!() } }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("--release"),
execs().with_status(0).with_stderr(&format!(
"\
[COMPILING] foo v0.0.1 ({dir})
[FINISHED] release [optimized] target(s) in [..]
2016-11-06 04:53:21 +00:00
[RUNNING] `target[/]release[/]foo[EXE]`
",
2018-03-14 15:17:44 +00:00
dir = path2url(p.root()),
)),
);
assert_that(&p.release_bin("foo"), existing_file());
}
#[test]
fn run_bin_different_name() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
[[bin]]
name = "bar"
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/bar.rs",
r#"
fn main() { }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
assert_that(p.cargo("run"), execs().with_status(0));
}
#[test]
fn dashes_are_forwarded() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
[[bin]]
name = "bar"
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/main.rs",
r#"
fn main() {
let s: Vec<String> = std::env::args().collect();
assert_eq!(s[1], "a");
assert_eq!(s[2], "--");
assert_eq!(s[3], "b");
}
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("--").arg("a").arg("--").arg("b"),
execs().with_status(0),
);
}
2015-08-29 11:03:14 +00:00
#[test]
fn run_from_executable_folder() {
2015-08-29 11:03:14 +00:00
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
2015-08-29 11:03:14 +00:00
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/main.rs",
r#"
2015-08-29 11:03:14 +00:00
fn main() { println!("hello"); }
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2015-08-29 11:03:14 +00:00
let cwd = p.root().join("target").join("debug");
p.cargo("build").exec_with_output().unwrap();
2015-08-29 11:03:14 +00:00
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").cwd(cwd),
execs()
.with_status(0)
.with_stderr(
"\
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]\n\
[RUNNING] `.[/]foo[EXE]`",
)
.with_stdout(
"\
2015-08-29 11:03:14 +00:00
hello
2018-03-14 15:17:44 +00:00
",
),
);
}
#[test]
fn run_with_library_paths() {
let p = project("foo");
// Only link search directories within the target output directory are
// propagated through to dylib_path_envvar() (see #3366).
let mut dir1 = p.target_debug_dir();
dir1.push("foo\\backslash");
let mut dir2 = p.target_debug_dir();
dir2.push("dir=containing=equal=signs");
2018-03-14 15:17:44 +00:00
let p = p.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
build = "build.rs"
2018-03-14 15:17:44 +00:00
"#,
).file(
"build.rs",
&format!(
r##"
fn main() {{
println!(r#"cargo:rustc-link-search=native={}"#);
println!(r#"cargo:rustc-link-search={}"#);
}}
2018-03-14 15:17:44 +00:00
"##,
dir1.display(),
dir2.display()
),
)
.file(
"src/main.rs",
&format!(
r##"
fn main() {{
let search_path = std::env::var_os("{}").unwrap();
let paths = std::env::split_paths(&search_path).collect::<Vec<_>>();
assert!(paths.contains(&r#"{}"#.into()));
assert!(paths.contains(&r#"{}"#.into()));
}}
2018-03-14 15:17:44 +00:00
"##,
dylib_path_envvar(),
dir1.display(),
dir2.display()
),
)
.build();
assert_that(p.cargo("run"), execs().with_status(0));
}
2018-01-20 17:57:17 +00:00
#[test]
fn library_paths_sorted_alphabetically() {
let p = project("foo");
let mut dir1 = p.target_debug_dir();
dir1.push("zzzzzzz");
let mut dir2 = p.target_debug_dir();
dir2.push("BBBBBBB");
let mut dir3 = p.target_debug_dir();
dir3.push("aaaaaaa");
2018-03-14 15:17:44 +00:00
let p = p.file(
"Cargo.toml",
r#"
2018-01-20 17:57:17 +00:00
[project]
name = "foo"
version = "0.0.1"
authors = []
build = "build.rs"
2018-03-14 15:17:44 +00:00
"#,
).file(
"build.rs",
&format!(
r##"
2018-01-20 17:57:17 +00:00
fn main() {{
println!(r#"cargo:rustc-link-search=native={}"#);
println!(r#"cargo:rustc-link-search=native={}"#);
println!(r#"cargo:rustc-link-search=native={}"#);
}}
2018-03-14 15:17:44 +00:00
"##,
dir1.display(),
dir2.display(),
dir3.display()
),
)
.file(
"src/main.rs",
&format!(
r##"
2018-01-20 17:57:17 +00:00
fn main() {{
let search_path = std::env::var_os("{}").unwrap();
let paths = std::env::split_paths(&search_path).collect::<Vec<_>>();
// ASCII case-sensitive sort
assert_eq!("BBBBBBB", paths[0].file_name().unwrap().to_string_lossy());
assert_eq!("aaaaaaa", paths[1].file_name().unwrap().to_string_lossy());
assert_eq!("zzzzzzz", paths[2].file_name().unwrap().to_string_lossy());
}}
2018-03-14 15:17:44 +00:00
"##,
dylib_path_envvar()
),
)
2018-01-20 17:57:17 +00:00
.build();
assert_that(p.cargo("run"), execs().with_status(0));
}
#[test]
fn fail_no_extra_verbose() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file(
"src/main.rs",
r#"
fn main() {
std::process::exit(1);
}
2018-03-14 15:17:44 +00:00
"#,
)
.build();
2018-03-14 15:17:44 +00:00
assert_that(
p.cargo("run").arg("-q"),
execs().with_status(1).with_stdout("").with_stderr(""),
);
}
#[test]
fn run_multiple_packages() {
let p = project("foo")
2018-03-14 15:17:44 +00:00
.file(
"foo/Cargo.toml",
r#"
[package]
name = "foo"
version = "0.0.1"
authors = []
[workspace]
[dependencies]
d1 = { path = "d1" }
d2 = { path = "d2" }
d3 = { path = "../d3" } # outside of the workspace
[[bin]]
name = "foo"
2018-03-14 15:17:44 +00:00
"#,
)
.file("foo/src/foo.rs", "fn main() { println!(\"foo\"); }")
2018-03-14 15:17:44 +00:00
.file(
"foo/d1/Cargo.toml",
r#"
[package]
name = "d1"
version = "0.0.1"
authors = []
[[bin]]
name = "d1"
2018-03-14 15:17:44 +00:00
"#,
)
.file("foo/d1/src/lib.rs", "")
.file("foo/d1/src/main.rs", "fn main() { println!(\"d1\"); }")
2018-03-14 15:17:44 +00:00
.file(
"foo/d2/Cargo.toml",
r#"
[package]
name = "d2"
version = "0.0.1"
authors = []
[[bin]]
name = "d2"
2018-03-14 15:17:44 +00:00
"#,
)
.file("foo/d2/src/main.rs", "fn main() { println!(\"d2\"); }")
2018-03-14 15:17:44 +00:00
.file(
"d3/Cargo.toml",
r#"
[package]
name = "d3"
version = "0.0.1"
authors = []
2018-03-14 15:17:44 +00:00
"#,
)
.file("d3/src/main.rs", "fn main() { println!(\"d2\"); }")
.build();
let cargo = || {
let mut process_builder = p.cargo("run");
process_builder.cwd(p.root().join("foo"));
process_builder
};
2018-03-14 15:17:44 +00:00
assert_that(
cargo().arg("-p").arg("d1"),
execs().with_status(0).with_stdout("d1"),
);
2018-03-14 15:17:44 +00:00
assert_that(
cargo().arg("-p").arg("d2").arg("--bin").arg("d2"),
execs().with_status(0).with_stdout("d2"),
);
2018-03-14 15:17:44 +00:00
assert_that(cargo(), execs().with_status(0).with_stdout("foo"));
assert_that(cargo().arg("-p").arg("d1").arg("-p").arg("d2"),
execs()
.with_status(1)
.with_stderr_contains("\
error: The argument '--package <SPEC>' was provided more than once, but cannot be used multiple times
"));
2018-03-14 15:17:44 +00:00
assert_that(
cargo().arg("-p").arg("d3"),
execs()
.with_status(101)
.with_stderr_contains("[ERROR] package `d3` is not a member of the workspace"),
);
}