mirror of
https://github.com/rust-lang/cargo.git
synced 2025-10-01 11:30:39 +00:00
174 lines
4.7 KiB
Rust
174 lines
4.7 KiB
Rust
use cargotest::support::{execs, project};
|
|
use hamcrest::{assert_that};
|
|
|
|
#[test]
|
|
fn rustdoc_simple() {
|
|
let p = project("foo")
|
|
.file("Cargo.toml", r#"
|
|
[package]
|
|
name = "foo"
|
|
version = "0.0.1"
|
|
authors = []
|
|
"#)
|
|
.file("src/lib.rs", r#" "#)
|
|
.build();
|
|
|
|
assert_that(p.cargo("rustdoc").arg("-v"),
|
|
execs()
|
|
.with_status(0)
|
|
.with_stderr(format!("\
|
|
[DOCUMENTING] foo v0.0.1 ({url})
|
|
[RUNNING] `rustdoc --crate-name foo src[/]lib.rs \
|
|
-o {dir}[/]target[/]doc \
|
|
-L dependency={dir}[/]target[/]debug[/]deps`
|
|
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
|
", dir = p.root().display(), url = p.url())));
|
|
}
|
|
|
|
#[test]
|
|
fn rustdoc_args() {
|
|
let p = project("foo")
|
|
.file("Cargo.toml", r#"
|
|
[package]
|
|
name = "foo"
|
|
version = "0.0.1"
|
|
authors = []
|
|
"#)
|
|
.file("src/lib.rs", r#" "#)
|
|
.build();
|
|
|
|
assert_that(p.cargo("rustdoc").arg("-v").arg("--").arg("--cfg=foo"),
|
|
execs()
|
|
.with_status(0)
|
|
.with_stderr(format!("\
|
|
[DOCUMENTING] foo v0.0.1 ({url})
|
|
[RUNNING] `rustdoc --crate-name foo src[/]lib.rs \
|
|
-o {dir}[/]target[/]doc \
|
|
--cfg=foo \
|
|
-L dependency={dir}[/]target[/]debug[/]deps`
|
|
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
|
", dir = p.root().display(), url = p.url())));
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
fn rustdoc_foo_with_bar_dependency() {
|
|
let foo = project("foo")
|
|
.file("Cargo.toml", r#"
|
|
[package]
|
|
name = "foo"
|
|
version = "0.0.1"
|
|
authors = []
|
|
|
|
[dependencies.bar]
|
|
path = "../bar"
|
|
"#)
|
|
.file("src/lib.rs", r#"
|
|
extern crate bar;
|
|
pub fn foo() {}
|
|
"#)
|
|
.build();
|
|
let _bar = project("bar")
|
|
.file("Cargo.toml", r#"
|
|
[package]
|
|
name = "bar"
|
|
version = "0.0.1"
|
|
authors = []
|
|
"#)
|
|
.file("src/lib.rs", r#"
|
|
pub fn baz() {}
|
|
"#)
|
|
.build();
|
|
|
|
assert_that(foo.cargo("rustdoc").arg("-v").arg("--").arg("--cfg=foo"),
|
|
execs()
|
|
.with_status(0)
|
|
.with_stderr(format!("\
|
|
[COMPILING] bar v0.0.1 ([..])
|
|
[RUNNING] `rustc [..]bar[/]src[/]lib.rs [..]`
|
|
[DOCUMENTING] foo v0.0.1 ({url})
|
|
[RUNNING] `rustdoc --crate-name foo src[/]lib.rs \
|
|
-o {dir}[/]target[/]doc \
|
|
--cfg=foo \
|
|
-L dependency={dir}[/]target[/]debug[/]deps \
|
|
--extern [..]`
|
|
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
|
", dir = foo.root().display(), url = foo.url())));
|
|
}
|
|
|
|
#[test]
|
|
fn rustdoc_only_bar_dependency() {
|
|
let foo = project("foo")
|
|
.file("Cargo.toml", r#"
|
|
[package]
|
|
name = "foo"
|
|
version = "0.0.1"
|
|
authors = []
|
|
|
|
[dependencies.bar]
|
|
path = "../bar"
|
|
"#)
|
|
.file("src/main.rs", r#"
|
|
extern crate bar;
|
|
fn main() {
|
|
bar::baz()
|
|
}
|
|
"#)
|
|
.build();
|
|
let _bar = project("bar")
|
|
.file("Cargo.toml", r#"
|
|
[package]
|
|
name = "bar"
|
|
version = "0.0.1"
|
|
authors = []
|
|
"#)
|
|
.file("src/lib.rs", r#"
|
|
pub fn baz() {}
|
|
"#)
|
|
.build();
|
|
|
|
assert_that(foo.cargo("rustdoc").arg("-v").arg("-p").arg("bar")
|
|
.arg("--").arg("--cfg=foo"),
|
|
execs()
|
|
.with_status(0)
|
|
.with_stderr(format!("\
|
|
[DOCUMENTING] bar v0.0.1 ([..])
|
|
[RUNNING] `rustdoc --crate-name bar [..]bar[/]src[/]lib.rs \
|
|
-o {dir}[/]target[/]doc \
|
|
--cfg=foo \
|
|
-L dependency={dir}[/]target[/]debug[/]deps`
|
|
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
|
", dir = foo.root().display())));
|
|
}
|
|
|
|
|
|
#[test]
|
|
fn rustdoc_same_name_documents_lib() {
|
|
let p = project("foo")
|
|
.file("Cargo.toml", r#"
|
|
[package]
|
|
name = "foo"
|
|
version = "0.0.1"
|
|
authors = []
|
|
"#)
|
|
.file("src/main.rs", r#"
|
|
fn main() {}
|
|
"#)
|
|
.file("src/lib.rs", r#" "#)
|
|
.build();
|
|
|
|
assert_that(p.cargo("rustdoc").arg("-v")
|
|
.arg("--").arg("--cfg=foo"),
|
|
execs()
|
|
.with_status(0)
|
|
.with_stderr(format!("\
|
|
[DOCUMENTING] foo v0.0.1 ([..])
|
|
[RUNNING] `rustdoc --crate-name foo src[/]lib.rs \
|
|
-o {dir}[/]target[/]doc \
|
|
--cfg=foo \
|
|
-L dependency={dir}[/]target[/]debug[/]deps`
|
|
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
|
", dir = p.root().display())));
|
|
}
|