Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: migrate serveral files to snapbox #14180

Merged
merged 4 commits into from
Jul 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
172 changes: 100 additions & 72 deletions tests/testsuite/read_manifest.rs
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Modify to a snapshot-aware assertion that enables auto-updating.

Original file line number Diff line number Diff line change
@@ -1,56 +1,7 @@
//! Tests for the `cargo read-manifest` command.

#![allow(deprecated)]

use cargo_test_support::{basic_bin_manifest, main_file, project};

fn manifest_output(readme_value: &str) -> String {
format!(
r#"
{{
"authors": [
"[email protected]"
],
"categories": [],
"default_run": null,
"name":"foo",
"readme": {},
"homepage": null,
"documentation": null,
"repository": null,
"rust_version": null,
"version":"0.5.0",
"id":"path+file://[..]/foo#0.5.0",
"keywords": [],
"license": null,
"license_file": null,
"links": null,
"description": null,
"edition": "2015",
"source":null,
"dependencies":[],
"targets":[{{
"kind":["bin"],
"crate_types":["bin"],
"doc": true,
"doctest": false,
"test": true,
"edition": "2015",
"name":"foo",
"src_path":"[..]/foo/src/foo.rs"
}}],
"features":{{}},
"manifest_path":"[..]Cargo.toml",
"metadata": null,
"publish": null
}}"#,
readme_value
)
}

fn manifest_output_no_readme() -> String {
manifest_output("null")
}
use cargo_test_support::prelude::*;
use cargo_test_support::{basic_bin_manifest, main_file, project, str};

pub fn basic_bin_manifest_with_readme(name: &str, readme_filename: &str) -> String {
format!(
Expand Down Expand Up @@ -79,7 +30,15 @@ fn cargo_read_manifest_path_to_cargo_toml_relative() {

p.cargo("read-manifest --manifest-path foo/Cargo.toml")
.cwd(p.root().parent().unwrap())
.with_json(&manifest_output_no_readme())
.with_stdout_data(
str![[r#"
{
"readme": null,
"...": "{...}"
}
"#]]
.json(),
)
.run();
}

Expand All @@ -93,7 +52,15 @@ fn cargo_read_manifest_path_to_cargo_toml_absolute() {
p.cargo("read-manifest --manifest-path")
.arg(p.root().join("Cargo.toml"))
.cwd(p.root().parent().unwrap())
.with_json(&manifest_output_no_readme())
.with_stdout_data(
str![[r#"
{
"readme": null,
"...": "{...}"
}
"#]]
.json(),
)
.run();
}

Expand All @@ -107,10 +74,10 @@ fn cargo_read_manifest_path_to_cargo_toml_parent_relative() {
p.cargo("read-manifest --manifest-path foo")
.cwd(p.root().parent().unwrap())
.with_status(101)
.with_stderr(
"[ERROR] the manifest-path must be \
a path to a Cargo.toml file",
)
.with_stderr_data(str![[r#"
[ERROR] the manifest-path must be a path to a Cargo.toml file

"#]])
.run();
}

Expand All @@ -125,10 +92,10 @@ fn cargo_read_manifest_path_to_cargo_toml_parent_absolute() {
.arg(p.root())
.cwd(p.root().parent().unwrap())
.with_status(101)
.with_stderr(
"[ERROR] the manifest-path must be \
a path to a Cargo.toml file",
)
.with_stderr_data(str![[r#"
[ERROR] the manifest-path must be a path to a Cargo.toml file

"#]])
.run();
}

Expand All @@ -140,7 +107,15 @@ fn cargo_read_manifest_cwd() {
.build();

p.cargo("read-manifest")
.with_json(&manifest_output_no_readme())
.with_stdout_data(
str![[r#"
{
"readme": null,
"...": "{...}"
}
"#]]
.json(),
)
.run();
}

Expand All @@ -156,25 +131,62 @@ fn cargo_read_manifest_with_specified_readme() {
.build();

p.cargo("read-manifest")
.with_json(&manifest_output(&format!(r#""{}""#, "SomeReadme.txt")))
.with_stdout_data(
str![[r#"
{
"readme": "SomeReadme.txt",
epage marked this conversation as resolved.
Show resolved Hide resolved
"...": "{...}"
}
"#]]
.json(),
)
.run();
}

#[cargo_test]
fn cargo_read_manifest_default_readme() {
let readme_filenames = ["README.md", "README.txt", "README"];

for readme in readme_filenames.iter() {
let assert_output = |readme, expected| {
let p = project()
.file("Cargo.toml", &basic_bin_manifest("foo"))
.file(readme, "Sample project")
.file("src/foo.rs", &main_file(r#""i am foo""#, &[]))
.build();

p.cargo("read-manifest")
.with_json(&manifest_output(&format!(r#""{}""#, readme)))
.run();
}
p.cargo("read-manifest").with_stdout_data(expected).run();
};

assert_output(
"README.md",
str![[r#"
{
"readme": "README.md",
"...": "{...}"
}
"#]]
.json(),
);

assert_output(
"README.txt",
str![[r#"
{
"readme": "README.txt",
"...": "{...}"
}
"#]]
.json(),
);

assert_output(
"README",
str![[r#"
{
"readme": "README",
"...": "{...}"
}
"#]]
.json(),
);
}

#[cargo_test]
Expand All @@ -189,7 +201,15 @@ fn cargo_read_manifest_suppress_default_readme() {
.build();

p.cargo("read-manifest")
.with_json(&manifest_output_no_readme())
.with_stdout_data(
str![[r#"
{
"readme": null,
"...": "{...}"
}
"#]]
.json(),
)
.run();
}

Expand All @@ -203,6 +223,14 @@ fn cargo_read_manifest_defaults_readme_if_true() {
.build();

p.cargo("read-manifest")
.with_json(&manifest_output(r#""README.md""#))
.with_stdout_data(
str![[r#"
{
"readme": "README.md",
"...": "{...}"
}
"#]]
.json(),
)
.run();
}
Loading