cargo/tests/testsuite/yank.rs
Ed Page 5b9799c6f4 refactor: Migrate from extern crate to test-support prelude
We now include the prelude in so many places, this simplifies how we can
present how `cargo-test-support` works.

Yes, this included some `use` clean ups but its already painful enough
walking through every test file, I didn't want to do it twice.
2024-07-12 15:57:00 -05:00

216 lines
5.1 KiB
Rust

//! Tests for the `cargo yank` command.
use std::fs;
use cargo_test_support::paths::CargoPathExt;
use cargo_test_support::prelude::*;
use cargo_test_support::project;
use cargo_test_support::registry;
use cargo_test_support::str;
fn setup(name: &str, version: &str) {
let dir = registry::api_path().join(format!("api/v1/crates/{}/{}", name, version));
dir.mkdir_p();
fs::write(dir.join("yank"), r#"{"ok": true}"#).unwrap();
}
#[cargo_test]
fn explicit_version() {
let registry = registry::init();
setup("foo", "0.0.1");
let p = project()
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.0.1"
authors = []
license = "MIT"
description = "foo"
"#,
)
.file("src/main.rs", "fn main() {}")
.build();
p.cargo("yank --version 0.0.1")
.replace_crates_io(registry.index_url())
.run();
p.cargo("yank --undo --version 0.0.1")
.replace_crates_io(registry.index_url())
.with_status(101)
.with_stderr_data(str![[r#"
[UPDATING] crates.io index
Unyank foo@0.0.1
[ERROR] failed to undo a yank from the registry at [ROOTURL]/api
Caused by:
EOF while parsing a value at line 1 column 0
"#]])
.run();
}
#[cargo_test]
fn explicit_version_with_asymmetric() {
let registry = registry::RegistryBuilder::new()
.http_api()
.token(cargo_test_support::registry::Token::rfc_key())
.build();
setup("foo", "0.0.1");
let p = project()
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []
license = "MIT"
description = "foo"
"#,
)
.file("src/main.rs", "fn main() {}")
.build();
// The http_api server will check that the authorization is correct.
// If the authorization was not sent then we would get an unauthorized error.
p.cargo("yank --version 0.0.1")
.arg("-Zasymmetric-token")
.masquerade_as_nightly_cargo(&["asymmetric-token"])
.replace_crates_io(registry.index_url())
.run();
p.cargo("yank --undo --version 0.0.1")
.arg("-Zasymmetric-token")
.masquerade_as_nightly_cargo(&["asymmetric-token"])
.replace_crates_io(registry.index_url())
.run();
}
#[cargo_test]
fn inline_version() {
let registry = registry::init();
setup("foo", "0.0.1");
let p = project()
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.0.1"
authors = []
license = "MIT"
description = "foo"
"#,
)
.file("src/main.rs", "fn main() {}")
.build();
p.cargo("yank foo@0.0.1")
.replace_crates_io(registry.index_url())
.run();
p.cargo("yank --undo foo@0.0.1")
.replace_crates_io(registry.index_url())
.with_status(101)
.with_stderr_data(str![[r#"
[UPDATING] crates.io index
Unyank foo@0.0.1
[ERROR] failed to undo a yank from the registry at [ROOTURL]/api
Caused by:
EOF while parsing a value at line 1 column 0
"#]])
.run();
}
#[cargo_test]
fn version_required() {
setup("foo", "0.0.1");
let p = project()
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.0.1"
authors = []
license = "MIT"
description = "foo"
"#,
)
.file("src/main.rs", "fn main() {}")
.build();
p.cargo("yank foo")
.with_status(101)
.with_stderr_data(str![[r#"
[ERROR] `--version` is required
"#]])
.run();
}
#[cargo_test]
fn inline_version_without_name() {
setup("foo", "0.0.1");
let p = project()
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.0.1"
authors = []
license = "MIT"
description = "foo"
"#,
)
.file("src/main.rs", "fn main() {}")
.build();
p.cargo("yank @0.0.1")
.with_status(101)
.with_stderr_data(str![[r#"
[ERROR] missing crate name for `@0.0.1`
"#]])
.run();
}
#[cargo_test]
fn inline_and_explicit_version() {
setup("foo", "0.0.1");
let p = project()
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.0.1"
authors = []
license = "MIT"
description = "foo"
"#,
)
.file("src/main.rs", "fn main() {}")
.build();
p.cargo("yank foo@0.0.1 --version 0.0.1")
.with_status(101)
.with_stderr_data(str![[r#"
[ERROR] cannot specify both `@0.0.1` and `--version`
"#]])
.run();
}