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

fix(add): Update the lock file #10902

Merged
merged 3 commits into from
Jul 27, 2022
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
7 changes: 7 additions & 0 deletions src/bin/cargo/commands/add.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ use cargo::ops::cargo_add::add;
use cargo::ops::cargo_add::AddOptions;
use cargo::ops::cargo_add::DepOp;
use cargo::ops::cargo_add::DepTable;
use cargo::ops::resolve_ws;
use cargo::util::command_prelude::*;
use cargo::util::interning::InternedString;
use cargo::CargoResult;
Expand Down Expand Up @@ -193,6 +194,12 @@ pub fn exec(config: &mut Config, args: &ArgMatches) -> CliResult {
};
add(&ws, &options)?;

if !dry_run {
// Reload the workspace since we've changed dependencies
let ws = args.workspace(config)?;
resolve_ws(&ws)?;
}

Ok(())
}

Expand Down
9 changes: 7 additions & 2 deletions src/cargo/ops/cargo_add/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,7 @@ impl str::FromStr for Manifest {

impl std::fmt::Display for Manifest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let s = self.data.to_string();
s.fmt(f)
self.data.fmt(f)
}
}

Expand Down Expand Up @@ -433,6 +432,12 @@ impl LocalManifest {
}
}

impl std::fmt::Display for LocalManifest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
self.manifest.fmt(f)
}
}

#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
enum DependencyStatus {
None,
Expand Down
11 changes: 11 additions & 0 deletions src/cargo/ops/cargo_add/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ pub fn add(workspace: &Workspace<'_>, options: &AddOptions<'_>) -> CargoResult<(

let manifest_path = options.spec.manifest_path().to_path_buf();
let mut manifest = LocalManifest::try_new(&manifest_path)?;
let original_raw_manifest = manifest.to_string();
let legacy = manifest.get_legacy_sections();
if !legacy.is_empty() {
anyhow::bail!(
Expand Down Expand Up @@ -142,6 +143,16 @@ pub fn add(workspace: &Workspace<'_>, options: &AddOptions<'_>) -> CargoResult<(
}
}

if options.config.locked() {
let new_raw_manifest = manifest.to_string();
if original_raw_manifest != new_raw_manifest {
anyhow::bail!(
"the manifest file {} needs to be updated but --locked was passed to prevent this",
manifest.path.display()
);
}
}

if options.dry_run {
options.config.shell().warn("aborting add due to dry run")?;
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
[package]
name = "cargo-list-test-fixture-dependency"
version = "0.0.0"

[features]
one = []
two = []
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
[package]
name = "cargo-list-test-fixture-dependency"
version = "0.0.0"

[features]
one = []
two = []
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
Adding cargo-list-test-fixture-dependency (local) to build-dependencies.
Features:
- one
- two
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
[package]
name = "cargo-list-test-fixture-dependency"
version = "0.0.0"

[features]
one = []
two = []
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
[package]
name = "cargo-list-test-fixture-dependency"
version = "0.0.0"

[features]
one = []
two = []
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
Adding cargo-list-test-fixture-dependency (local) to dev-dependencies.
Features:
- one
- two
1 change: 1 addition & 0 deletions tests/testsuite/cargo_add/git/stderr.log
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Updating git repository `[ROOTURL]/git-package`
Adding git-package (git) to dependencies.
Updating git repository `[ROOTURL]/git-package`
1 change: 1 addition & 0 deletions tests/testsuite/cargo_add/git_branch/stderr.log
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Updating git repository `[ROOTURL]/git-package`
Adding git-package (git) to dependencies.
Updating git repository `[ROOTURL]/git-package`
1 change: 1 addition & 0 deletions tests/testsuite/cargo_add/git_dev/stderr.log
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Updating git repository `[ROOTURL]/git-package`
Adding git-package (git) to dev-dependencies.
Updating git repository `[ROOTURL]/git-package`
1 change: 1 addition & 0 deletions tests/testsuite/cargo_add/git_inferred_name/stderr.log
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Updating git repository `[ROOTURL]/git-package`
Updating git repository `[ROOTURL]/git-package`
Adding git-package (git) to dependencies.
Updating git repository `[ROOTURL]/git-package`
1 change: 1 addition & 0 deletions tests/testsuite/cargo_add/git_multiple_names/stderr.log
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Updating git repository `[ROOTURL]/git-package`
Adding my-package1 (git) to dependencies.
Adding my-package2 (git) to dependencies.
Updating git repository `[ROOTURL]/git-package`
2 changes: 1 addition & 1 deletion tests/testsuite/cargo_add/git_registry/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ fn git_registry() {
])
.current_dir(cwd)
.assert()
.success()
.failure()
.stdout_matches_path(curr_dir!().join("stdout.log"))
.stderr_matches_path(curr_dir!().join("stderr.log"));

Expand Down
4 changes: 4 additions & 0 deletions tests/testsuite/cargo_add/git_registry/stderr.log
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
Updating git repository `[ROOTURL]/versioned-package`
Adding versioned-package (git) to dependencies.
error: failed to parse manifest at `[ROOT]/case/Cargo.toml`

Caused by:
dependency (versioned-package) specification is ambiguous. Only one of `git` or `registry` is allowed.
1 change: 1 addition & 0 deletions tests/testsuite/cargo_add/git_rev/stderr.log
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Updating git repository `[ROOTURL]/git-package`
Adding git-package (git) to dependencies.
Updating git repository `[ROOTURL]/git-package`
1 change: 1 addition & 0 deletions tests/testsuite/cargo_add/git_tag/stderr.log
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Updating git repository `[ROOTURL]/git-package`
Adding git-package (git) to dependencies.
Updating git repository `[ROOTURL]/git-package`
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ name = "your-face"
version = "0.1.3"

[dependencies]
toml_edit = "0.1.5"
atty = "0.2.13"
my-package = "0.1.1"
optional-dependency = { path = "../optional", optional = true }

[features]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "optional-dep"
name = "optional-dependency"
version = "0.1.3"

[dependencies]
toml_edit = "0.1.5"
atty = "0.2.13"
my-package = "0.1.1"
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ name = "your-face"
version = "0.1.3"

[dependencies]
toml_edit = "0.1.5"
atty = "0.2.13"
my-package = "0.1.1"
optional-dependency = { path = "../optional", optional = true }

[features]
Expand Down
1 change: 1 addition & 0 deletions tests/testsuite/cargo_add/list_features_path/stderr.log
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
+ nose
- eyes
- optional-dependency
Updating `dummy-registry` index
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ name = "your-face"
version = "0.1.3"

[dependencies]
toml_edit = "0.1.5"
atty = "0.2.13"
my-package = "0.1.1"
optional-dependency = { path = "../optional", optional = true }

[features]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "optional-dep"
name = "optional-dependency"
version = "0.1.3"

[dependencies]
toml_edit = "0.1.5"
atty = "0.2.13"
my-package = "0.1.1"
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ name = "your-face"
version = "0.1.3"

[dependencies]
toml_edit = "0.1.5"
atty = "0.2.13"
my-package = "0.1.1"
optional-dependency = { path = "../optional", optional = true }

[features]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
- mouth
- nose
- optional-dependency
Updating `dummy-registry` index
1 change: 1 addition & 0 deletions tests/testsuite/cargo_add/locked_changed/in
25 changes: 25 additions & 0 deletions tests/testsuite/cargo_add/locked_changed/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
use cargo_test_support::compare::assert_ui;
use cargo_test_support::prelude::*;
use cargo_test_support::Project;

use crate::cargo_add::init_registry;
use cargo_test_support::curr_dir;

#[cargo_test]
fn locked_changed() {
init_registry();
let project = Project::from_template(curr_dir!().join("in"));
let project_root = project.root();
let cwd = &project_root;

snapbox::cmd::Command::cargo_ui()
.arg("add")
.arg_line("my-package --locked")
.current_dir(cwd)
.assert()
.failure()
.stdout_matches_path(curr_dir!().join("stdout.log"))
.stderr_matches_path(curr_dir!().join("stderr.log"));

assert_ui().subset_matches(curr_dir!().join("out"), &project_root);
}
5 changes: 5 additions & 0 deletions tests/testsuite/cargo_add/locked_changed/out/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[workspace]

[package]
name = "cargo-list-test-fixture"
version = "0.0.0"
3 changes: 3 additions & 0 deletions tests/testsuite/cargo_add/locked_changed/stderr.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Updating `dummy-registry` index
Adding my-package v99999.0.0 to dependencies.
error: the manifest file [ROOT]/case/Cargo.toml needs to be updated but --locked was passed to prevent this
Empty file.
16 changes: 16 additions & 0 deletions tests/testsuite/cargo_add/locked_unchanged/in/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions tests/testsuite/cargo_add/locked_unchanged/in/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[workspace]

[package]
name = "cargo-list-test-fixture"
version = "0.0.0"

[dependencies]
my-package = "99999.0.0"
Empty file.
25 changes: 25 additions & 0 deletions tests/testsuite/cargo_add/locked_unchanged/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
use cargo_test_support::compare::assert_ui;
use cargo_test_support::prelude::*;
use cargo_test_support::Project;

use crate::cargo_add::init_registry;
use cargo_test_support::curr_dir;

#[cargo_test]
fn locked_unchanged() {
init_registry();
let project = Project::from_template(curr_dir!().join("in"));
let project_root = project.root();
let cwd = &project_root;

snapbox::cmd::Command::cargo_ui()
.arg("add")
.arg_line("my-package --locked")
.current_dir(cwd)
.assert()
.success()
.stdout_matches_path(curr_dir!().join("stdout.log"))
.stderr_matches_path(curr_dir!().join("stderr.log"));

assert_ui().subset_matches(curr_dir!().join("out"), &project_root);
}
8 changes: 8 additions & 0 deletions tests/testsuite/cargo_add/locked_unchanged/out/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[workspace]

[package]
name = "cargo-list-test-fixture"
version = "0.0.0"

[dependencies]
my-package = "99999.0.0"
2 changes: 2 additions & 0 deletions tests/testsuite/cargo_add/locked_unchanged/stderr.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Updating `dummy-registry` index
Adding my-package v99999.0.0 to dependencies.
Empty file.
17 changes: 17 additions & 0 deletions tests/testsuite/cargo_add/lockfile_updated/in/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions tests/testsuite/cargo_add/lockfile_updated/in/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[workspace]

[package]
name = "cargo-list-test-fixture"
version = "0.0.0"

[dependencies]
unrelateed-crate = "0.2.0"
Empty file.
25 changes: 25 additions & 0 deletions tests/testsuite/cargo_add/lockfile_updated/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
use cargo_test_support::compare::assert_ui;
use cargo_test_support::prelude::*;
use cargo_test_support::Project;

use crate::cargo_add::init_registry;
use cargo_test_support::curr_dir;

#[cargo_test]
fn lockfile_updated() {
init_registry();
let project = Project::from_template(curr_dir!().join("in"));
let project_root = project.root();
let cwd = &project_root;

snapbox::cmd::Command::cargo_ui()
.arg("add")
.arg_line("my-package")
.current_dir(cwd)
.assert()
.success()
.stdout_matches_path(curr_dir!().join("stdout.log"))
.stderr_matches_path(curr_dir!().join("stderr.log"));

assert_ui().subset_matches(curr_dir!().join("out"), &project_root);
}
Loading