2025-06-25 22:37:24 +09:00

283 lines
6.5 KiB
Rust

//! Tests for the `cargo yank` command.
use std::fs;
use crate::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();
}
#[cargo_test]
fn bad_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@bar")
.replace_crates_io(registry.index_url())
.with_status(101)
.with_stderr_data(str![[r#"
[ERROR] invalid version `bar`
Caused by:
unexpected character 'b' while parsing major version number
"#]])
.run();
}
#[cargo_test]
fn prefixed_v_in_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 bar@v0.0.1")
.replace_crates_io(registry.index_url())
.with_status(101)
.with_stderr_data(str![[r#"
[ERROR] the version provided, `v0.0.1` is not a valid SemVer version
[HELP] try changing the version to `0.0.1`
Caused by:
unexpected character 'v' while parsing major version number
"#]])
.run();
}