mirror of
https://github.com/rust-lang/cargo
synced 2024-11-05 18:50:39 +00:00
124 lines
3.1 KiB
Rust
124 lines
3.1 KiB
Rust
//! Tests for publishing using the `--target` flag.
|
|
|
|
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"
|
|
edition = "2015"
|
|
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` profile [unoptimized + debuginfo] target(s) in [..]
|
|
[PACKAGED] 4 files, [..] ([..] compressed)
|
|
",
|
|
)
|
|
.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;
|
|
}
|
|
|
|
// `publish` generally requires a remote registry
|
|
let registry = registry::RegistryBuilder::new().http_api().build();
|
|
|
|
let p = project()
|
|
.file(
|
|
"Cargo.toml",
|
|
r#"
|
|
[package]
|
|
name = "foo"
|
|
version = "0.0.0"
|
|
edition = "2015"
|
|
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")
|
|
.replace_crates_io(registry.index_url())
|
|
.arg("--target")
|
|
.arg(&target)
|
|
.with_stderr(
|
|
"\
|
|
[UPDATING] crates.io 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` profile [unoptimized + debuginfo] target(s) in [..]
|
|
[PACKAGED] [..]
|
|
[UPLOADING] foo v0.0.0 ([CWD])
|
|
[UPLOADED] foo v0.0.0 to registry `crates-io`
|
|
[NOTE] waiting [..]
|
|
You may press ctrl-c [..]
|
|
[PUBLISHED] foo v0.0.0 at registry `crates-io`
|
|
",
|
|
)
|
|
.run();
|
|
}
|