cargo/tests/testsuite/rustdoc.rs

172 lines
4.3 KiB
Rust
Raw Normal View History

use support::{basic_manifest, project};
#[test]
fn rustdoc_simple() {
let p = project().file("src/lib.rs", "").build();
p.cargo("rustdoc -v")
.with_stderr(format!(
2018-03-14 15:17:44 +00:00
"\
[DOCUMENTING] foo v0.0.1 (CWD)
2018-08-02 09:18:48 +00:00
[RUNNING] `rustdoc --crate-name foo src/lib.rs \
-o CWD/target/doc \
-L dependency=CWD/target/debug/deps`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
",
)).run();
}
#[test]
fn rustdoc_args() {
let p = project().file("src/lib.rs", "").build();
p.cargo("rustdoc -v -- --cfg=foo")
.with_stderr(format!(
2018-03-14 15:17:44 +00:00
"\
[DOCUMENTING] foo v0.0.1 (CWD)
2018-08-02 09:18:48 +00:00
[RUNNING] `rustdoc --crate-name foo src/lib.rs \
-o CWD/target/doc \
--cfg=foo \
-L dependency=CWD/target/debug/deps`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
",
)).run();
}
#[test]
fn rustdoc_foo_with_bar_dependency() {
let foo = project()
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.0.1"
authors = []
[dependencies.bar]
path = "../bar"
2018-03-14 15:17:44 +00:00
"#,
).file("src/lib.rs", "extern crate bar; pub fn foo() {}")
.build();
let _bar = project()
.at("bar")
2018-07-24 22:35:01 +00:00
.file("Cargo.toml", &basic_manifest("bar", "0.0.1"))
.file("src/lib.rs", "pub fn baz() {}")
.build();
foo.cargo("rustdoc -v -- --cfg=foo")
.with_stderr(format!(
2018-03-14 15:17:44 +00:00
"\
2018-04-19 18:19:11 +00:00
[CHECKING] bar v0.0.1 ([..])
2018-08-02 09:18:48 +00:00
[RUNNING] `rustc [..]bar/src/lib.rs [..]`
[DOCUMENTING] foo v0.0.1 (CWD)
2018-08-02 09:18:48 +00:00
[RUNNING] `rustdoc --crate-name foo src/lib.rs \
-o CWD/target/doc \
--cfg=foo \
-L dependency=CWD/target/debug/deps \
--extern [..]`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
",
)).run();
}
#[test]
fn rustdoc_only_bar_dependency() {
let foo = project()
2018-03-14 15:17:44 +00:00
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.0.1"
authors = []
[dependencies.bar]
path = "../bar"
2018-03-14 15:17:44 +00:00
"#,
).file("src/main.rs", "extern crate bar; fn main() { bar::baz() }")
.build();
let _bar = project()
.at("bar")
2018-07-24 22:35:01 +00:00
.file("Cargo.toml", &basic_manifest("bar", "0.0.1"))
.file("src/lib.rs", "pub fn baz() {}")
.build();
foo.cargo("rustdoc -v -p bar -- --cfg=foo")
.with_stderr(format!(
2018-03-14 15:17:44 +00:00
"\
[DOCUMENTING] bar v0.0.1 ([..])
2018-08-02 09:18:48 +00:00
[RUNNING] `rustdoc --crate-name bar [..]bar/src/lib.rs \
-o CWD/target/doc \
--cfg=foo \
-L dependency=CWD/target/debug/deps`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
",
)).run();
}
#[test]
fn rustdoc_same_name_documents_lib() {
let p = project()
.file("src/main.rs", "fn main() {}")
.file("src/lib.rs", r#" "#)
.build();
p.cargo("rustdoc -v -- --cfg=foo")
.with_stderr(format!(
2018-03-14 15:17:44 +00:00
"\
[DOCUMENTING] foo v0.0.1 ([..])
2018-08-02 09:18:48 +00:00
[RUNNING] `rustdoc --crate-name foo src/lib.rs \
-o CWD/target/doc \
--cfg=foo \
-L dependency=CWD/target/debug/deps`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2018-03-14 15:17:44 +00:00
",
)).run();
}
#[test]
fn features() {
let p = project()
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.0.1"
authors = []
[features]
quux = []
"#,
).file("src/lib.rs", "")
.build();
p.cargo("rustdoc --verbose --features quux")
.with_stderr_contains("[..]feature=[..]quux[..]")
.run();
}
#[test]
#[cfg(all(
target_arch = "x86_64",
target_os = "linux",
target_env = "gnu"
))]
fn rustdoc_target() {
let p = project().file("src/lib.rs", "").build();
p.cargo("rustdoc --verbose --target x86_64-unknown-linux-gnu")
.with_stderr(
"\
2018-07-24 13:01:56 +00:00
[DOCUMENTING] foo v0.0.1 ([..])
2018-08-02 09:18:48 +00:00
[RUNNING] `rustdoc --crate-name foo src/lib.rs \
--target x86_64-unknown-linux-gnu \
-o CWD/target/x86_64-unknown-linux-gnu/doc \
-L dependency=CWD/target/x86_64-unknown-linux-gnu/debug/deps \
-L dependency=CWD/target/debug/deps`
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]",
).run();
}