cargo/tests/testsuite/yank.rs
2020-01-21 09:09:39 +09:00

52 lines
1.2 KiB
Rust

//! Tests for the `cargo yank` command.
use std::fs;
use cargo_test_support::paths::CargoPathExt;
use cargo_test_support::project;
use cargo_test_support::registry::{self, api_path, registry_url};
fn setup(name: &str, version: &str) {
let dir = api_path().join(format!("api/v1/crates/{}/{}", name, version));
dir.mkdir_p();
fs::write(dir.join("yank"), r#"{"ok": true}"#).unwrap();
}
#[cargo_test]
fn simple() {
registry::init();
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();
p.cargo("yank --vers 0.0.1 --index")
.arg(registry_url().to_string())
.run();
p.cargo("yank --undo --vers 0.0.1 --index")
.arg(registry_url().to_string())
.with_status(101)
.with_stderr(
" Updating `[..]` index
Unyank foo:0.0.1
error: failed to undo a yank
Caused by:
ok is false in response body",
)
.run();
}