mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
581 lines
19 KiB
Rust
581 lines
19 KiB
Rust
#![deny(warnings)]
|
|
|
|
use std::collections::BTreeMap;
|
|
|
|
use hamcrest::{assert_that, equal_to, contains, not};
|
|
|
|
use cargo::core::source::{SourceId, GitReference};
|
|
use cargo::core::dependency::Kind::{self, Development};
|
|
use cargo::core::{Dependency, PackageId, Summary, Registry};
|
|
use cargo::util::{CargoResult, ToUrl};
|
|
use cargo::core::resolver::{self, Method};
|
|
|
|
fn resolve(pkg: &PackageId, deps: Vec<Dependency>, registry: &[Summary])
|
|
-> CargoResult<Vec<PackageId>>
|
|
{
|
|
struct MyRegistry<'a>(&'a [Summary]);
|
|
impl<'a> Registry for MyRegistry<'a> {
|
|
fn query(&mut self,
|
|
dep: &Dependency,
|
|
f: &mut FnMut(Summary)) -> CargoResult<()> {
|
|
for summary in self.0.iter() {
|
|
if dep.matches(summary) {
|
|
f(summary.clone());
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
fn supports_checksums(&self) -> bool { false }
|
|
fn requires_precise(&self) -> bool { false }
|
|
}
|
|
let mut registry = MyRegistry(registry);
|
|
let summary = Summary::new(pkg.clone(), deps, BTreeMap::new(), None).unwrap();
|
|
let method = Method::Everything;
|
|
let resolve = resolver::resolve(&[(summary, method)], &[], &mut registry, None, false)?;
|
|
let res = resolve.iter().cloned().collect();
|
|
Ok(res)
|
|
}
|
|
|
|
trait ToDep {
|
|
fn to_dep(self) -> Dependency;
|
|
}
|
|
|
|
impl ToDep for &'static str {
|
|
fn to_dep(self) -> Dependency {
|
|
let url = "http://example.com".to_url().unwrap();
|
|
let source_id = SourceId::for_registry(&url).unwrap();
|
|
Dependency::parse_no_deprecated(self, Some("1.0.0"), &source_id).unwrap()
|
|
}
|
|
}
|
|
|
|
impl ToDep for Dependency {
|
|
fn to_dep(self) -> Dependency {
|
|
self
|
|
}
|
|
}
|
|
|
|
trait ToPkgId {
|
|
fn to_pkgid(&self) -> PackageId;
|
|
}
|
|
|
|
impl ToPkgId for &'static str {
|
|
fn to_pkgid(&self) -> PackageId {
|
|
PackageId::new(*self, "1.0.0", ®istry_loc()).unwrap()
|
|
}
|
|
}
|
|
|
|
impl ToPkgId for (&'static str, &'static str) {
|
|
fn to_pkgid(&self) -> PackageId {
|
|
let (name, vers) = *self;
|
|
PackageId::new(name, vers, ®istry_loc()).unwrap()
|
|
}
|
|
}
|
|
|
|
impl ToPkgId for (&'static str, String) {
|
|
fn to_pkgid(&self) -> PackageId {
|
|
let (name, ref vers) = *self;
|
|
PackageId::new(name, vers, ®istry_loc()).unwrap()
|
|
}
|
|
}
|
|
|
|
macro_rules! pkg {
|
|
($pkgid:expr => [$($deps:expr),+]) => ({
|
|
let d: Vec<Dependency> = vec![$($deps.to_dep()),+];
|
|
let pkgid = $pkgid.to_pkgid();
|
|
let link = if pkgid.name().ends_with("-sys") {Some(pkgid.name().to_string())} else {None};
|
|
|
|
Summary::new(pkgid, d, BTreeMap::new(), link).unwrap()
|
|
});
|
|
|
|
($pkgid:expr) => ({
|
|
let pkgid = $pkgid.to_pkgid();
|
|
let link = if pkgid.name().ends_with("-sys") {Some(pkgid.name().to_string())} else {None};
|
|
Summary::new(pkgid, Vec::new(), BTreeMap::new(), link).unwrap()
|
|
})
|
|
}
|
|
|
|
fn registry_loc() -> SourceId {
|
|
let remote = "http://example.com".to_url().unwrap();
|
|
SourceId::for_registry(&remote).unwrap()
|
|
}
|
|
|
|
fn pkg(name: &str) -> Summary {
|
|
let link = if name.ends_with("-sys") {Some(name.to_string())} else {None};
|
|
Summary::new(pkg_id(name), Vec::new(), BTreeMap::new(), link).unwrap()
|
|
}
|
|
|
|
fn pkg_id(name: &str) -> PackageId {
|
|
PackageId::new(name, "1.0.0", ®istry_loc()).unwrap()
|
|
}
|
|
|
|
fn pkg_id_loc(name: &str, loc: &str) -> PackageId {
|
|
let remote = loc.to_url();
|
|
let master = GitReference::Branch("master".to_string());
|
|
let source_id = SourceId::for_git(&remote.unwrap(), master).unwrap();
|
|
|
|
PackageId::new(name, "1.0.0", &source_id).unwrap()
|
|
}
|
|
|
|
fn pkg_loc(name: &str, loc: &str) -> Summary {
|
|
let link = if name.ends_with("-sys") {Some(name.to_string())} else {None};
|
|
Summary::new(pkg_id_loc(name, loc), Vec::new(), BTreeMap::new(), link).unwrap()
|
|
}
|
|
|
|
fn dep(name: &str) -> Dependency { dep_req(name, "1.0.0") }
|
|
fn dep_req(name: &str, req: &str) -> Dependency {
|
|
let url = "http://example.com".to_url().unwrap();
|
|
let source_id = SourceId::for_registry(&url).unwrap();
|
|
Dependency::parse_no_deprecated(name, Some(req), &source_id).unwrap()
|
|
}
|
|
|
|
fn dep_loc(name: &str, location: &str) -> Dependency {
|
|
let url = location.to_url().unwrap();
|
|
let master = GitReference::Branch("master".to_string());
|
|
let source_id = SourceId::for_git(&url, master).unwrap();
|
|
Dependency::parse_no_deprecated(name, Some("1.0.0"), &source_id).unwrap()
|
|
}
|
|
fn dep_kind(name: &str, kind: Kind) -> Dependency {
|
|
dep(name).set_kind(kind).clone()
|
|
}
|
|
|
|
fn registry(pkgs: Vec<Summary>) -> Vec<Summary> {
|
|
pkgs
|
|
}
|
|
|
|
fn names<P: ToPkgId>(names: &[P]) -> Vec<PackageId> {
|
|
names.iter().map(|name| name.to_pkgid()).collect()
|
|
}
|
|
|
|
fn loc_names(names: &[(&'static str, &'static str)]) -> Vec<PackageId> {
|
|
names.iter()
|
|
.map(|&(name, loc)| pkg_id_loc(name, loc)).collect()
|
|
}
|
|
|
|
#[test]
|
|
fn test_resolving_empty_dependency_list() {
|
|
let res = resolve(&pkg_id("root"), Vec::new(),
|
|
®istry(vec![])).unwrap();
|
|
|
|
assert_that(&res, equal_to(&names(&["root"])));
|
|
}
|
|
|
|
#[test]
|
|
fn test_resolving_only_package() {
|
|
let reg = registry(vec![pkg("foo")]);
|
|
let res = resolve(&pkg_id("root"), vec![dep("foo")], ®);
|
|
|
|
assert_that(&res.unwrap(), contains(names(&["root", "foo"])).exactly());
|
|
}
|
|
|
|
#[test]
|
|
fn test_resolving_one_dep() {
|
|
let reg = registry(vec![pkg("foo"), pkg("bar")]);
|
|
let res = resolve(&pkg_id("root"), vec![dep("foo")], ®);
|
|
|
|
assert_that(&res.unwrap(), contains(names(&["root", "foo"])).exactly());
|
|
}
|
|
|
|
#[test]
|
|
fn test_resolving_multiple_deps() {
|
|
let reg = registry(vec![pkg!("foo"), pkg!("bar"), pkg!("baz")]);
|
|
let res = resolve(&pkg_id("root"), vec![dep("foo"), dep("baz")],
|
|
®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&["root", "foo", "baz"])).exactly());
|
|
}
|
|
|
|
#[test]
|
|
fn test_resolving_transitive_deps() {
|
|
let reg = registry(vec![pkg!("foo"), pkg!("bar" => ["foo"])]);
|
|
let res = resolve(&pkg_id("root"), vec![dep("bar")], ®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&["root", "foo", "bar"])));
|
|
}
|
|
|
|
#[test]
|
|
fn test_resolving_common_transitive_deps() {
|
|
let reg = registry(vec![pkg!("foo" => ["bar"]), pkg!("bar")]);
|
|
let res = resolve(&pkg_id("root"), vec![dep("foo"), dep("bar")],
|
|
®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&["root", "foo", "bar"])));
|
|
}
|
|
|
|
#[test]
|
|
fn test_resolving_with_same_name() {
|
|
let list = vec![pkg_loc("foo", "http://first.example.com"),
|
|
pkg_loc("bar", "http://second.example.com")];
|
|
|
|
let reg = registry(list);
|
|
let res = resolve(&pkg_id("root"),
|
|
vec![dep_loc("foo", "http://first.example.com"),
|
|
dep_loc("bar", "http://second.example.com")],
|
|
®);
|
|
|
|
let mut names = loc_names(&[("foo", "http://first.example.com"),
|
|
("bar", "http://second.example.com")]);
|
|
|
|
names.push(pkg_id("root"));
|
|
|
|
assert_that(&res.unwrap(), contains(names).exactly());
|
|
}
|
|
|
|
#[test]
|
|
fn test_resolving_with_dev_deps() {
|
|
let reg = registry(vec![
|
|
pkg!("foo" => ["bar", dep_kind("baz", Development)]),
|
|
pkg!("baz" => ["bat", dep_kind("bam", Development)]),
|
|
pkg!("bar"),
|
|
pkg!("bat")
|
|
]);
|
|
|
|
let res = resolve(&pkg_id("root"),
|
|
vec![dep("foo"), dep_kind("baz", Development)],
|
|
®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&["root", "foo", "bar", "baz"])));
|
|
}
|
|
|
|
#[test]
|
|
fn resolving_with_many_versions() {
|
|
let reg = registry(vec![
|
|
pkg!(("foo", "1.0.1")),
|
|
pkg!(("foo", "1.0.2")),
|
|
]);
|
|
|
|
let res = resolve(&pkg_id("root"), vec![dep("foo")], ®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&[("root", "1.0.0"),
|
|
("foo", "1.0.2")])));
|
|
}
|
|
|
|
#[test]
|
|
fn resolving_with_specific_version() {
|
|
let reg = registry(vec![
|
|
pkg!(("foo", "1.0.1")),
|
|
pkg!(("foo", "1.0.2")),
|
|
]);
|
|
|
|
let res = resolve(&pkg_id("root"), vec![dep_req("foo", "=1.0.1")],
|
|
®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&[("root", "1.0.0"),
|
|
("foo", "1.0.1")])));
|
|
}
|
|
|
|
#[test]
|
|
fn test_resolving_maximum_version_with_transitive_deps() {
|
|
let reg = registry(vec![
|
|
pkg!(("util", "1.2.2")),
|
|
pkg!(("util", "1.0.0")),
|
|
pkg!(("util", "1.1.1")),
|
|
pkg!("foo" => [dep_req("util", "1.0.0")]),
|
|
pkg!("bar" => [dep_req("util", ">=1.0.1")]),
|
|
]);
|
|
|
|
let res = resolve(&pkg_id("root"), vec![dep_req("foo", "1.0.0"), dep_req("bar", "1.0.0")],
|
|
®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&[("root", "1.0.0"),
|
|
("foo", "1.0.0"),
|
|
("bar", "1.0.0"),
|
|
("util", "1.2.2")])));
|
|
assert_that(&res, not(contains(names(&[("util", "1.0.1")]))));
|
|
assert_that(&res, not(contains(names(&[("util", "1.1.1")]))));
|
|
}
|
|
|
|
#[test]
|
|
fn resolving_incompat_versions() {
|
|
let reg = registry(vec![
|
|
pkg!(("foo", "1.0.1")),
|
|
pkg!(("foo", "1.0.2")),
|
|
pkg!("bar" => [dep_req("foo", "=1.0.2")]),
|
|
]);
|
|
|
|
assert!(resolve(&pkg_id("root"), vec![
|
|
dep_req("foo", "=1.0.1"),
|
|
dep("bar"),
|
|
], ®).is_err());
|
|
}
|
|
|
|
#[test]
|
|
fn resolving_backtrack() {
|
|
let reg = registry(vec![
|
|
pkg!(("foo", "1.0.2") => [dep("bar")]),
|
|
pkg!(("foo", "1.0.1") => [dep("baz")]),
|
|
pkg!("bar" => [dep_req("foo", "=2.0.2")]),
|
|
pkg!("baz"),
|
|
]);
|
|
|
|
let res = resolve(&pkg_id("root"), vec![
|
|
dep_req("foo", "^1"),
|
|
], ®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&[("root", "1.0.0"),
|
|
("foo", "1.0.1"),
|
|
("baz", "1.0.0")])));
|
|
}
|
|
|
|
#[test]
|
|
fn resolving_allows_multiple_compatible_versions() {
|
|
let reg = registry(vec![
|
|
pkg!(("foo", "1.0.0")),
|
|
pkg!(("foo", "2.0.0")),
|
|
pkg!(("foo", "0.1.0")),
|
|
pkg!(("foo", "0.2.0")),
|
|
|
|
pkg!("bar" => ["d1", "d2", "d3", "d4"]),
|
|
pkg!("d1" => [dep_req("foo", "1")]),
|
|
pkg!("d2" => [dep_req("foo", "2")]),
|
|
pkg!("d3" => [dep_req("foo", "0.1")]),
|
|
pkg!("d4" => [dep_req("foo", "0.2")]),
|
|
]);
|
|
|
|
let res = resolve(&pkg_id("root"), vec![
|
|
dep("bar"),
|
|
], ®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&[("root", "1.0.0"),
|
|
("foo", "1.0.0"),
|
|
("foo", "2.0.0"),
|
|
("foo", "0.1.0"),
|
|
("foo", "0.2.0"),
|
|
("d1", "1.0.0"),
|
|
("d2", "1.0.0"),
|
|
("d3", "1.0.0"),
|
|
("d4", "1.0.0"),
|
|
("bar", "1.0.0")])));
|
|
}
|
|
|
|
#[test]
|
|
fn resolving_with_deep_backtracking() {
|
|
let reg = registry(vec![
|
|
pkg!(("foo", "1.0.1") => [dep_req("bar", "1")]),
|
|
pkg!(("foo", "1.0.0") => [dep_req("bar", "2")]),
|
|
|
|
pkg!(("bar", "1.0.0") => [dep_req("baz", "=1.0.2"),
|
|
dep_req("other", "1")]),
|
|
pkg!(("bar", "2.0.0") => [dep_req("baz", "=1.0.1")]),
|
|
|
|
pkg!(("baz", "1.0.2") => [dep_req("other", "2")]),
|
|
pkg!(("baz", "1.0.1")),
|
|
|
|
pkg!(("dep_req", "1.0.0")),
|
|
pkg!(("dep_req", "2.0.0")),
|
|
]);
|
|
|
|
let res = resolve(&pkg_id("root"), vec![
|
|
dep_req("foo", "1"),
|
|
], ®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&[("root", "1.0.0"),
|
|
("foo", "1.0.0"),
|
|
("bar", "2.0.0"),
|
|
("baz", "1.0.1")])));
|
|
}
|
|
|
|
#[test]
|
|
fn resolving_with_sys_crates() {
|
|
// This is based on issues/4902
|
|
// With `l` a normal library we get 2copies so everyone gets the newest compatible.
|
|
// But `l-sys` a library with a links attribute we make sure there is only one.
|
|
let reg = registry(vec![
|
|
pkg!(("l-sys", "0.9.1")),
|
|
pkg!(("l-sys", "0.10.0")),
|
|
pkg!(("l", "0.9.1")),
|
|
pkg!(("l", "0.10.0")),
|
|
pkg!(("d", "1.0.0") => [dep_req("l-sys", ">=0.8.0, <=0.10.0"), dep_req("l", ">=0.8.0, <=0.10.0")]),
|
|
pkg!(("r", "1.0.0") => [dep_req("l-sys", "0.9"), dep_req("l", "0.9")]),
|
|
]);
|
|
|
|
let res = resolve(&pkg_id("root"), vec![
|
|
dep_req("d", "1"),
|
|
dep_req("r", "1"),
|
|
], ®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&[("root", "1.0.0"),
|
|
("d", "1.0.0"),
|
|
("r", "1.0.0"),
|
|
("l-sys", "0.9.1"),
|
|
("l", "0.9.1"),
|
|
("l", "0.10.0")])));
|
|
}
|
|
|
|
#[test]
|
|
fn resolving_with_constrained_sibling_backtrack_parent() {
|
|
// There is no point in considering all of the backtrack_trap{1,2}
|
|
// candidates since they can't change the result of failing to
|
|
// resolve 'constrained'. Cargo should (ideally) skip past them and resume
|
|
// resolution once the activation of the parent, 'bar', is rolled back.
|
|
// Note that the traps are slightly more constrained to make sure they
|
|
// get picked first.
|
|
let mut reglist = vec![
|
|
pkg!(("foo", "1.0.0") => [dep_req("bar", "1.0"),
|
|
dep_req("constrained", "=1.0.0")]),
|
|
|
|
pkg!(("bar", "1.0.0") => [dep_req("backtrack_trap1", "1.0.2"),
|
|
dep_req("backtrack_trap2", "1.0.2"),
|
|
dep_req("constrained", "1.0.0")]),
|
|
pkg!(("constrained", "1.0.0")),
|
|
pkg!(("backtrack_trap1", "1.0.0")),
|
|
pkg!(("backtrack_trap2", "1.0.0")),
|
|
];
|
|
// Bump this to make the test harder - it adds more versions of bar that will
|
|
// fail to resolve, and more versions of the traps to consider.
|
|
const NUM_BARS_AND_TRAPS: usize = 50; // minimum 2
|
|
for i in 1..NUM_BARS_AND_TRAPS {
|
|
let vsn = format!("1.0.{}", i);
|
|
reglist.push(pkg!(("bar", vsn.clone()) => [dep_req("backtrack_trap1", "1.0.2"),
|
|
dep_req("backtrack_trap2", "1.0.2"),
|
|
dep_req("constrained", "1.0.1")]));
|
|
reglist.push(pkg!(("backtrack_trap1", vsn.clone())));
|
|
reglist.push(pkg!(("backtrack_trap2", vsn.clone())));
|
|
reglist.push(pkg!(("constrained", vsn.clone())));
|
|
}
|
|
let reg = registry(reglist);
|
|
|
|
let res = resolve(&pkg_id("root"), vec![
|
|
dep_req("foo", "1"),
|
|
], ®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&[("root", "1.0.0"),
|
|
("foo", "1.0.0"),
|
|
("bar", "1.0.0"),
|
|
("constrained", "1.0.0")])));
|
|
}
|
|
|
|
#[test]
|
|
fn resolving_with_constrained_sibling_backtrack_activation() {
|
|
// It makes sense to resolve most-constrained deps first, but
|
|
// with that logic the backtrack traps here come between the two
|
|
// attempted resolutions of 'constrained'. When backtracking,
|
|
// cargo should skip past them and resume resolution once the
|
|
// number of activations for 'constrained' changes.
|
|
let mut reglist = vec![
|
|
pkg!(("foo", "1.0.0") => [dep_req("bar", "=1.0.0"),
|
|
dep_req("backtrack_trap1", "1.0"),
|
|
dep_req("backtrack_trap2", "1.0"),
|
|
dep_req("constrained", "<=1.0.60")]),
|
|
pkg!(("bar", "1.0.0") => [dep_req("constrained", ">=1.0.60")]),
|
|
];
|
|
// Bump these to make the test harder, but you'll also need to
|
|
// change the version constraints on `constrained` above. To correctly
|
|
// exercise Cargo, the relationship between the values is:
|
|
// NUM_CONSTRAINED - vsn < NUM_TRAPS < vsn
|
|
// to make sure the traps are resolved between `constrained`.
|
|
const NUM_TRAPS: usize = 45; // min 1
|
|
const NUM_CONSTRAINED: usize = 100; // min 1
|
|
for i in 0..NUM_TRAPS {
|
|
let vsn = format!("1.0.{}", i);
|
|
reglist.push(pkg!(("backtrack_trap1", vsn.clone())));
|
|
reglist.push(pkg!(("backtrack_trap2", vsn.clone())));
|
|
}
|
|
for i in 0..NUM_CONSTRAINED {
|
|
let vsn = format!("1.0.{}", i);
|
|
reglist.push(pkg!(("constrained", vsn.clone())));
|
|
}
|
|
let reg = registry(reglist);
|
|
|
|
let res = resolve(&pkg_id("root"), vec![
|
|
dep_req("foo", "1"),
|
|
], ®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&[("root", "1.0.0"),
|
|
("foo", "1.0.0"),
|
|
("bar", "1.0.0"),
|
|
("constrained", "1.0.60")])));
|
|
}
|
|
|
|
#[test]
|
|
fn resolving_with_constrained_sibling_transitive_dep_effects() {
|
|
// When backtracking due to a failed dependency, if Cargo is
|
|
// trying to be clever and skip irrelevant dependencies, care must
|
|
// be taken to not miss the transitive effects of alternatives. E.g.
|
|
// in the right-to-left resolution of the graph below, B may
|
|
// affect whether D is successfully resolved.
|
|
//
|
|
// A
|
|
// / | \
|
|
// B C D
|
|
// | |
|
|
// C D
|
|
let reg = registry(vec![
|
|
pkg!(("A", "1.0.0") => [dep_req("B", "1.0"),
|
|
dep_req("C", "1.0"),
|
|
dep_req("D", "1.0.100")]),
|
|
|
|
pkg!(("B", "1.0.0") => [dep_req("C", ">=1.0.0")]),
|
|
pkg!(("B", "1.0.1") => [dep_req("C", ">=1.0.1")]),
|
|
|
|
pkg!(("C", "1.0.0") => [dep_req("D", "1.0.0")]),
|
|
pkg!(("C", "1.0.1") => [dep_req("D", ">=1.0.1,<1.0.100")]),
|
|
pkg!(("C", "1.0.2") => [dep_req("D", ">=1.0.2,<1.0.100")]),
|
|
|
|
pkg!(("D", "1.0.0")),
|
|
pkg!(("D", "1.0.1")),
|
|
pkg!(("D", "1.0.2")),
|
|
pkg!(("D", "1.0.100")),
|
|
pkg!(("D", "1.0.101")),
|
|
pkg!(("D", "1.0.102")),
|
|
pkg!(("D", "1.0.103")),
|
|
pkg!(("D", "1.0.104")),
|
|
pkg!(("D", "1.0.105")),
|
|
]);
|
|
|
|
let res = resolve(&pkg_id("root"), vec![
|
|
dep_req("A", "1"),
|
|
], ®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&[("A", "1.0.0"),
|
|
("B", "1.0.0"),
|
|
("C", "1.0.0"),
|
|
("D", "1.0.105")])));
|
|
}
|
|
|
|
#[test]
|
|
fn resolving_but_no_exists() {
|
|
let reg = registry(vec![
|
|
]);
|
|
|
|
let res = resolve(&pkg_id("root"), vec![
|
|
dep_req("foo", "1"),
|
|
], ®);
|
|
assert!(res.is_err());
|
|
|
|
assert_eq!(res.err().unwrap().to_string(), "\
|
|
no matching package named `foo` found\n\
|
|
location searched: registry `http://example.com/`\n\
|
|
required by package `root v1.0.0 (registry `http://example.com/`)`\
|
|
");
|
|
}
|
|
|
|
#[test]
|
|
fn resolving_cycle() {
|
|
let reg = registry(vec![
|
|
pkg!("foo" => ["foo"]),
|
|
]);
|
|
|
|
let _ = resolve(&pkg_id("root"), vec![
|
|
dep_req("foo", "1"),
|
|
], ®);
|
|
}
|
|
|
|
#[test]
|
|
fn hard_equality() {
|
|
let reg = registry(vec![
|
|
pkg!(("foo", "1.0.1")),
|
|
pkg!(("foo", "1.0.0")),
|
|
|
|
pkg!(("bar", "1.0.0") => [dep_req("foo", "1.0.0")]),
|
|
]);
|
|
|
|
let res = resolve(&pkg_id("root"), vec![
|
|
dep_req("bar", "1"),
|
|
dep_req("foo", "=1.0.0"),
|
|
], ®).unwrap();
|
|
|
|
assert_that(&res, contains(names(&[("root", "1.0.0"),
|
|
("foo", "1.0.0"),
|
|
("bar", "1.0.0")])));
|
|
}
|