mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00

Extract out all our test support code to its own standalone crate so it can be shared between multiple test suites if necessary.
114 lines
2.7 KiB
Rust
114 lines
2.7 KiB
Rust
use std::fs::File;
|
|
|
|
use cargo_test_support::{cross_compile, project, publish, registry};
|
|
|
|
#[cargo_test]
|
|
fn simple_cross_package() {
|
|
if cross_compile::disabled() {
|
|
return;
|
|
}
|
|
|
|
let p = project()
|
|
.file(
|
|
"Cargo.toml",
|
|
r#"
|
|
[package]
|
|
name = "foo"
|
|
version = "0.0.0"
|
|
authors = []
|
|
license = "MIT"
|
|
description = "foo"
|
|
repository = "bar"
|
|
"#,
|
|
)
|
|
.file(
|
|
"src/main.rs",
|
|
&format!(
|
|
r#"
|
|
use std::env;
|
|
fn main() {{
|
|
assert_eq!(env::consts::ARCH, "{}");
|
|
}}
|
|
"#,
|
|
cross_compile::alternate_arch()
|
|
),
|
|
)
|
|
.build();
|
|
|
|
let target = cross_compile::alternate();
|
|
|
|
p.cargo("package --target")
|
|
.arg(&target)
|
|
.with_stderr(
|
|
" Packaging foo v0.0.0 ([CWD])
|
|
Verifying foo v0.0.0 ([CWD])
|
|
Compiling foo v0.0.0 ([CWD]/target/package/foo-0.0.0)
|
|
Finished dev [unoptimized + debuginfo] target(s) in [..]
|
|
",
|
|
)
|
|
.run();
|
|
|
|
// Check that the tarball contains the files
|
|
let f = File::open(&p.root().join("target/package/foo-0.0.0.crate")).unwrap();
|
|
publish::validate_crate_contents(
|
|
f,
|
|
"foo-0.0.0.crate",
|
|
&["Cargo.lock", "Cargo.toml", "Cargo.toml.orig", "src/main.rs"],
|
|
&[],
|
|
);
|
|
}
|
|
|
|
#[cargo_test]
|
|
fn publish_with_target() {
|
|
if cross_compile::disabled() {
|
|
return;
|
|
}
|
|
|
|
registry::init();
|
|
|
|
let p = project()
|
|
.file(
|
|
"Cargo.toml",
|
|
r#"
|
|
[package]
|
|
name = "foo"
|
|
version = "0.0.0"
|
|
authors = []
|
|
license = "MIT"
|
|
description = "foo"
|
|
repository = "bar"
|
|
"#,
|
|
)
|
|
.file(
|
|
"src/main.rs",
|
|
&format!(
|
|
r#"
|
|
use std::env;
|
|
fn main() {{
|
|
assert_eq!(env::consts::ARCH, "{}");
|
|
}}
|
|
"#,
|
|
cross_compile::alternate_arch()
|
|
),
|
|
)
|
|
.build();
|
|
|
|
let target = cross_compile::alternate();
|
|
|
|
p.cargo("publish --index")
|
|
.arg(registry::registry_url().to_string())
|
|
.arg("--target")
|
|
.arg(&target)
|
|
.with_stderr(&format!(
|
|
" Updating `{registry}` index
|
|
Packaging foo v0.0.0 ([CWD])
|
|
Verifying foo v0.0.0 ([CWD])
|
|
Compiling foo v0.0.0 ([CWD]/target/package/foo-0.0.0)
|
|
Finished dev [unoptimized + debuginfo] target(s) in [..]
|
|
Uploading foo v0.0.0 ([CWD])
|
|
",
|
|
registry = registry::registry_path().to_str().unwrap()
|
|
))
|
|
.run();
|
|
}
|