2017-06-27 04:48:04 +08:00
|
|
|
#include "CppUnitTest.h"
|
|
|
|
#include "vcpkg_Dependencies.h"
|
2017-07-13 08:40:41 +08:00
|
|
|
#include "vcpkg_Util.h"
|
2017-06-27 04:48:04 +08:00
|
|
|
|
|
|
|
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
|
|
|
|
|
|
|
|
using namespace vcpkg;
|
|
|
|
|
2017-08-22 11:06:47 +08:00
|
|
|
namespace Microsoft::VisualStudio::CppUnitTestFramework
|
|
|
|
{
|
|
|
|
template<>
|
|
|
|
inline std::wstring ToString<vcpkg::Dependencies::InstallPlanType>(const vcpkg::Dependencies::InstallPlanType& t)
|
|
|
|
{
|
|
|
|
switch (t)
|
|
|
|
{
|
|
|
|
case Dependencies::InstallPlanType::ALREADY_INSTALLED: return L"ALREADY_INSTALLED";
|
|
|
|
case Dependencies::InstallPlanType::BUILD_AND_INSTALL: return L"BUILD_AND_INSTALL";
|
|
|
|
case Dependencies::InstallPlanType::INSTALL: return L"INSTALL";
|
|
|
|
case Dependencies::InstallPlanType::UNKNOWN: return L"UNKNOWN";
|
|
|
|
default: return ToString((int)t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
|
|
|
inline std::wstring ToString<vcpkg::Dependencies::RequestType>(const vcpkg::Dependencies::RequestType& t)
|
|
|
|
{
|
|
|
|
switch (t)
|
|
|
|
{
|
|
|
|
case Dependencies::RequestType::AUTO_SELECTED: return L"AUTO_SELECTED";
|
|
|
|
case Dependencies::RequestType::USER_REQUESTED: return L"USER_REQUESTED";
|
|
|
|
case Dependencies::RequestType::UNKNOWN: return L"UNKNOWN";
|
|
|
|
default: return ToString((int)t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-27 04:48:04 +08:00
|
|
|
namespace UnitTest1
|
|
|
|
{
|
|
|
|
class InstallPlanTests : public TestClass<InstallPlanTests>
|
|
|
|
{
|
2017-06-28 05:52:26 +08:00
|
|
|
struct PackageSpecMap
|
2017-06-27 04:48:04 +08:00
|
|
|
{
|
2017-08-22 08:16:14 +08:00
|
|
|
std::unordered_map<std::string, SourceControlFile> map;
|
2017-07-20 05:29:28 +08:00
|
|
|
Triplet triplet;
|
|
|
|
PackageSpecMap(const Triplet& t) { triplet = t; }
|
|
|
|
|
2017-06-28 05:52:26 +08:00
|
|
|
PackageSpec get_package_spec(std::vector<std::unordered_map<std::string, std::string>>&& fields)
|
|
|
|
{
|
2017-06-27 04:48:04 +08:00
|
|
|
auto m_pgh = vcpkg::SourceControlFile::parse_control_file(std::move(fields));
|
|
|
|
Assert::IsTrue(m_pgh.has_value());
|
|
|
|
auto& scf = *m_pgh.get();
|
|
|
|
|
2017-07-20 05:29:28 +08:00
|
|
|
auto spec = PackageSpec::from_name_and_triplet(scf->core_paragraph->name, triplet);
|
2017-06-27 04:48:04 +08:00
|
|
|
Assert::IsTrue(spec.has_value());
|
2017-08-22 08:16:14 +08:00
|
|
|
map.emplace(scf->core_paragraph->name, std::move(*scf.get()));
|
2017-06-27 04:48:04 +08:00
|
|
|
return PackageSpec{*spec.get()};
|
2017-06-28 05:52:26 +08:00
|
|
|
}
|
2017-07-18 04:36:33 +08:00
|
|
|
PackageSpec set_package_map(std::string source, std::string version, std::string build_depends)
|
|
|
|
{
|
|
|
|
return get_package_spec({{{"Source", source}, {"Version", version}, {"Build-Depends", build_depends}}});
|
|
|
|
}
|
2017-06-28 05:52:26 +08:00
|
|
|
};
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
static void features_check(Dependencies::AnyAction* install_action,
|
|
|
|
std::string pkg_name,
|
2017-07-20 05:29:28 +08:00
|
|
|
std::vector<std::string> vec,
|
|
|
|
const Triplet& triplet = Triplet::X86_WINDOWS)
|
2017-07-13 08:40:41 +08:00
|
|
|
{
|
2017-07-20 05:29:28 +08:00
|
|
|
const auto& plan = install_action->install_plan.value_or_exit(VCPKG_LINE_INFO);
|
2017-07-13 08:40:41 +08:00
|
|
|
const auto& feature_list = plan.feature_list;
|
|
|
|
|
2017-07-20 05:29:28 +08:00
|
|
|
Assert::AreEqual(plan.spec.triplet().to_string().c_str(), triplet.to_string().c_str());
|
|
|
|
|
2017-07-13 08:40:41 +08:00
|
|
|
Assert::AreEqual(pkg_name.c_str(),
|
|
|
|
(*plan.any_paragraph.source_control_file.get())->core_paragraph->name.c_str());
|
|
|
|
Assert::AreEqual(size_t(vec.size()), feature_list.size());
|
|
|
|
|
|
|
|
for (auto&& feature_name : vec)
|
|
|
|
{
|
|
|
|
if (feature_name == "core" || feature_name == "")
|
|
|
|
{
|
|
|
|
Assert::IsTrue(Util::find(feature_list, "core") != feature_list.end() ||
|
|
|
|
Util::find(feature_list, "") != feature_list.end());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Assert::IsTrue(Util::find(feature_list, feature_name) != feature_list.end());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-20 05:29:28 +08:00
|
|
|
static void remove_plan_check(Dependencies::AnyAction* remove_action,
|
|
|
|
std::string pkg_name,
|
|
|
|
const Triplet& triplet = Triplet::X86_WINDOWS)
|
2017-07-13 08:40:41 +08:00
|
|
|
{
|
2017-07-20 05:29:28 +08:00
|
|
|
const auto& plan = remove_action->remove_plan.value_or_exit(VCPKG_LINE_INFO);
|
|
|
|
Assert::AreEqual(plan.spec.triplet().to_string().c_str(), triplet.to_string().c_str());
|
|
|
|
Assert::AreEqual(pkg_name.c_str(), plan.spec.name().c_str());
|
2017-07-13 08:40:41 +08:00
|
|
|
}
|
|
|
|
|
2017-06-28 05:52:26 +08:00
|
|
|
TEST_METHOD(basic_install_scheme)
|
|
|
|
{
|
|
|
|
std::vector<std::unique_ptr<StatusParagraph>> status_paragraphs;
|
|
|
|
|
2017-07-20 05:29:28 +08:00
|
|
|
PackageSpecMap spec_map(Triplet::X86_WINDOWS);
|
2017-07-18 04:36:33 +08:00
|
|
|
auto spec_a = spec_map.set_package_map("a", "1.2.8", "b");
|
|
|
|
auto spec_b = spec_map.set_package_map("b", "1.3", "c");
|
|
|
|
auto spec_c = spec_map.set_package_map("c", "2.5.3", "");
|
2017-06-27 04:48:04 +08:00
|
|
|
|
2017-06-28 05:52:26 +08:00
|
|
|
auto map_port = Dependencies::MapPortFile(spec_map.map);
|
2017-06-27 04:48:04 +08:00
|
|
|
auto install_plan =
|
|
|
|
Dependencies::create_install_plan(map_port, {spec_a}, StatusParagraphs(std::move(status_paragraphs)));
|
|
|
|
|
|
|
|
Assert::AreEqual(size_t(3), install_plan.size());
|
|
|
|
Assert::AreEqual("c", install_plan[0].spec.name().c_str());
|
|
|
|
Assert::AreEqual("b", install_plan[1].spec.name().c_str());
|
|
|
|
Assert::AreEqual("a", install_plan[2].spec.name().c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_METHOD(multiple_install_scheme)
|
|
|
|
{
|
|
|
|
std::vector<std::unique_ptr<StatusParagraph>> status_paragraphs;
|
|
|
|
|
2017-07-20 05:29:28 +08:00
|
|
|
PackageSpecMap spec_map(Triplet::X86_WINDOWS);
|
2017-07-18 04:36:33 +08:00
|
|
|
auto spec_a = spec_map.set_package_map("a", "1.2.8", "d");
|
|
|
|
auto spec_b = spec_map.set_package_map("b", "1.3", "d, e");
|
|
|
|
auto spec_c = spec_map.set_package_map("c", "2.5.3", "e, h");
|
|
|
|
auto spec_d = spec_map.set_package_map("d", "4.0", "f, g, h");
|
|
|
|
auto spec_e = spec_map.set_package_map("e", "1.0", "g");
|
|
|
|
auto spec_f = spec_map.set_package_map("f", "1.0", "");
|
|
|
|
auto spec_g = spec_map.set_package_map("g", "1.0", "");
|
|
|
|
auto spec_h = spec_map.set_package_map("h", "1.0", "");
|
2017-06-27 04:48:04 +08:00
|
|
|
|
2017-06-28 05:52:26 +08:00
|
|
|
auto map_port = Dependencies::MapPortFile(spec_map.map);
|
2017-06-27 04:48:04 +08:00
|
|
|
auto install_plan = Dependencies::create_install_plan(
|
|
|
|
map_port, {spec_a, spec_b, spec_c}, StatusParagraphs(std::move(status_paragraphs)));
|
|
|
|
|
|
|
|
auto iterator_pos = [&](const PackageSpec& spec) -> int {
|
2017-06-28 05:52:26 +08:00
|
|
|
auto it = std::find_if(
|
|
|
|
install_plan.begin(), install_plan.end(), [&](auto& action) { return action.spec == spec; });
|
|
|
|
Assert::IsTrue(it != install_plan.end());
|
|
|
|
return (int)(it - install_plan.begin());
|
2017-06-27 04:48:04 +08:00
|
|
|
};
|
2017-06-28 05:52:26 +08:00
|
|
|
|
2017-06-27 04:48:04 +08:00
|
|
|
int a_pos = iterator_pos(spec_a), b_pos = iterator_pos(spec_b), c_pos = iterator_pos(spec_c),
|
|
|
|
d_pos = iterator_pos(spec_d), e_pos = iterator_pos(spec_e), f_pos = iterator_pos(spec_f),
|
|
|
|
g_pos = iterator_pos(spec_g), h_pos = iterator_pos(spec_h);
|
|
|
|
|
|
|
|
Assert::IsTrue(a_pos > d_pos);
|
|
|
|
Assert::IsTrue(b_pos > e_pos);
|
|
|
|
Assert::IsTrue(b_pos > d_pos);
|
|
|
|
Assert::IsTrue(c_pos > e_pos);
|
|
|
|
Assert::IsTrue(c_pos > h_pos);
|
|
|
|
Assert::IsTrue(d_pos > f_pos);
|
|
|
|
Assert::IsTrue(d_pos > g_pos);
|
|
|
|
Assert::IsTrue(d_pos > h_pos);
|
|
|
|
Assert::IsTrue(e_pos > g_pos);
|
|
|
|
}
|
|
|
|
|
2017-08-22 11:06:47 +08:00
|
|
|
TEST_METHOD(existing_package_scheme)
|
|
|
|
{
|
|
|
|
using Pgh = std::unordered_map<std::string, std::string>;
|
|
|
|
std::vector<std::unique_ptr<StatusParagraph>> status_paragraphs;
|
|
|
|
status_paragraphs.push_back(std::make_unique<StatusParagraph>(Pgh{{"Package", "a"},
|
|
|
|
{"Version", "1"},
|
|
|
|
{"Architecture", "x86-windows"},
|
|
|
|
{"Multi-Arch", "same"},
|
|
|
|
{"Status", "install ok installed"}}));
|
|
|
|
|
|
|
|
PackageSpecMap spec_map(Triplet::X86_WINDOWS);
|
|
|
|
auto spec_a = FullPackageSpec{spec_map.set_package_map("a", "1", ""), {""}};
|
|
|
|
|
|
|
|
auto install_plan =
|
|
|
|
Dependencies::create_feature_install_plan(spec_map.map,
|
|
|
|
FullPackageSpec::to_feature_specs({spec_a}),
|
|
|
|
StatusParagraphs(std::move(status_paragraphs)));
|
|
|
|
|
|
|
|
Assert::AreEqual(size_t(1), install_plan.size());
|
|
|
|
auto p = install_plan[0].install_plan.get();
|
|
|
|
Assert::IsNotNull(p);
|
|
|
|
Assert::AreEqual("a", p->spec.name().c_str());
|
|
|
|
Assert::AreEqual(Dependencies::InstallPlanType::ALREADY_INSTALLED, p->plan_type);
|
|
|
|
Assert::AreEqual(Dependencies::RequestType::USER_REQUESTED, p->request_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_METHOD(user_requested_package_scheme)
|
|
|
|
{
|
|
|
|
using Pgh = std::unordered_map<std::string, std::string>;
|
|
|
|
std::vector<std::unique_ptr<StatusParagraph>> status_paragraphs;
|
|
|
|
|
|
|
|
PackageSpecMap spec_map(Triplet::X86_WINDOWS);
|
|
|
|
auto spec_a = FullPackageSpec{spec_map.set_package_map("a", "1", "b"), {""}};
|
|
|
|
auto spec_b = FullPackageSpec{spec_map.set_package_map("b", "1", ""), {""}};
|
|
|
|
|
|
|
|
auto install_plan =
|
|
|
|
Dependencies::create_feature_install_plan(spec_map.map,
|
|
|
|
FullPackageSpec::to_feature_specs({spec_a}),
|
|
|
|
StatusParagraphs(std::move(status_paragraphs)));
|
|
|
|
|
|
|
|
Assert::AreEqual(size_t(2), install_plan.size());
|
|
|
|
auto p = install_plan[0].install_plan.get();
|
|
|
|
Assert::IsNotNull(p);
|
|
|
|
Assert::AreEqual("b", p->spec.name().c_str());
|
|
|
|
Assert::AreEqual(Dependencies::InstallPlanType::BUILD_AND_INSTALL, p->plan_type);
|
|
|
|
Assert::AreEqual(Dependencies::RequestType::AUTO_SELECTED, p->request_type);
|
|
|
|
|
|
|
|
auto p2 = install_plan[1].install_plan.get();
|
|
|
|
Assert::IsNotNull(p2);
|
|
|
|
Assert::AreEqual("a", p2->spec.name().c_str());
|
|
|
|
Assert::AreEqual(Dependencies::InstallPlanType::BUILD_AND_INSTALL, p2->plan_type);
|
|
|
|
Assert::AreEqual(Dependencies::RequestType::USER_REQUESTED, p2->request_type);
|
|
|
|
}
|
|
|
|
|
2017-06-27 04:48:04 +08:00
|
|
|
TEST_METHOD(long_install_scheme)
|
|
|
|
{
|
|
|
|
using Pgh = std::unordered_map<std::string, std::string>;
|
|
|
|
std::vector<std::unique_ptr<StatusParagraph>> status_paragraphs;
|
|
|
|
status_paragraphs.push_back(std::make_unique<StatusParagraph>(Pgh{{"Package", "j"},
|
|
|
|
{"Version", "1.2.8"},
|
|
|
|
{"Architecture", "x86-windows"},
|
|
|
|
{"Multi-Arch", "same"},
|
2017-06-27 06:45:31 +08:00
|
|
|
{"Depends", "k"},
|
2017-06-27 04:48:04 +08:00
|
|
|
{"Status", "install ok installed"}}));
|
|
|
|
status_paragraphs.push_back(std::make_unique<StatusParagraph>(Pgh{{"Package", "k"},
|
|
|
|
{"Version", "1.2.8"},
|
|
|
|
{"Architecture", "x86-windows"},
|
|
|
|
{"Multi-Arch", "same"},
|
2017-06-27 06:45:31 +08:00
|
|
|
{"Depends", ""},
|
2017-06-27 04:48:04 +08:00
|
|
|
{"Status", "install ok installed"}}));
|
|
|
|
|
2017-07-20 05:29:28 +08:00
|
|
|
PackageSpecMap spec_map(Triplet::X86_WINDOWS);
|
2017-06-28 05:52:26 +08:00
|
|
|
|
2017-07-18 04:36:33 +08:00
|
|
|
auto spec_a = spec_map.set_package_map("a", "1.2.8", "b, c, d, e, f, g, h, j, k");
|
|
|
|
auto spec_b = spec_map.set_package_map("b", "1.2.8", "c, d, e, f, g, h, j, k");
|
|
|
|
auto spec_c = spec_map.set_package_map("c", "1.2.8", "d, e, f, g, h, j, k");
|
|
|
|
auto spec_d = spec_map.set_package_map("d", "1.2.8", "e, f, g, h, j, k");
|
|
|
|
auto spec_e = spec_map.set_package_map("e", "1.2.8", "f, g, h, j, k");
|
|
|
|
auto spec_f = spec_map.set_package_map("f", "1.2.8", "g, h, j, k");
|
|
|
|
auto spec_g = spec_map.set_package_map("g", "1.2.8", "h, j, k");
|
|
|
|
auto spec_h = spec_map.set_package_map("h", "1.2.8", "j, k");
|
|
|
|
auto spec_j = spec_map.set_package_map("j", "1.2.8", "k");
|
|
|
|
auto spec_k = spec_map.set_package_map("k", "1.2.8", "");
|
2017-06-28 05:52:26 +08:00
|
|
|
|
|
|
|
auto map_port = Dependencies::MapPortFile(spec_map.map);
|
2017-06-27 04:48:04 +08:00
|
|
|
auto install_plan =
|
|
|
|
Dependencies::create_install_plan(map_port, {spec_a}, StatusParagraphs(std::move(status_paragraphs)));
|
|
|
|
|
|
|
|
Assert::AreEqual(size_t(8), install_plan.size());
|
|
|
|
Assert::AreEqual("h", install_plan[0].spec.name().c_str());
|
|
|
|
Assert::AreEqual("g", install_plan[1].spec.name().c_str());
|
|
|
|
Assert::AreEqual("f", install_plan[2].spec.name().c_str());
|
|
|
|
Assert::AreEqual("e", install_plan[3].spec.name().c_str());
|
|
|
|
Assert::AreEqual("d", install_plan[4].spec.name().c_str());
|
|
|
|
Assert::AreEqual("c", install_plan[5].spec.name().c_str());
|
|
|
|
Assert::AreEqual("b", install_plan[6].spec.name().c_str());
|
|
|
|
Assert::AreEqual("a", install_plan[7].spec.name().c_str());
|
|
|
|
}
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
TEST_METHOD(basic_feature_test_1)
|
|
|
|
{
|
|
|
|
using Pgh = std::unordered_map<std::string, std::string>;
|
|
|
|
|
|
|
|
std::vector<std::unique_ptr<StatusParagraph>> status_paragraphs;
|
|
|
|
status_paragraphs.push_back(std::make_unique<StatusParagraph>(Pgh{{"Package", "a"},
|
|
|
|
{"Default-Features", ""},
|
|
|
|
{"Version", "1.3.8"},
|
|
|
|
{"Architecture", "x86-windows"},
|
|
|
|
{"Multi-Arch", "same"},
|
|
|
|
{"Depends", "b, b[beefeatureone]"},
|
|
|
|
{"Status", "install ok installed"}}));
|
|
|
|
status_paragraphs.push_back(std::make_unique<StatusParagraph>(Pgh{{"Package", "b"},
|
|
|
|
{"Feature", "beefeatureone"},
|
|
|
|
{"Architecture", "x86-windows"},
|
|
|
|
{"Multi-Arch", "same"},
|
|
|
|
{"Depends", ""},
|
|
|
|
{"Status", "install ok installed"}}));
|
|
|
|
status_paragraphs.push_back(std::make_unique<StatusParagraph>(Pgh{{"Package", "b"},
|
|
|
|
{"Default-Features", "beefeatureone"},
|
|
|
|
{"Version", "1.3"},
|
|
|
|
{"Architecture", "x86-windows"},
|
|
|
|
{"Multi-Arch", "same"},
|
|
|
|
{"Depends", ""},
|
|
|
|
{"Status", "install ok installed"}}));
|
|
|
|
|
2017-07-20 05:29:28 +08:00
|
|
|
PackageSpecMap spec_map(Triplet::X86_WINDOWS);
|
2017-07-13 08:40:41 +08:00
|
|
|
auto spec_a =
|
2017-07-18 04:36:33 +08:00
|
|
|
FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "a"}, {"Version", "1.3.8"}, {"Build-Depends", "b, b[beefeatureone]"}},
|
|
|
|
{{"Feature", "featureone"},
|
|
|
|
{"Description", "the first feature for a"},
|
|
|
|
{"Build-Depends", "b[beefeaturetwo]"}},
|
|
|
|
}),
|
2017-07-13 08:40:41 +08:00
|
|
|
{"featureone"}};
|
2017-07-18 04:36:33 +08:00
|
|
|
auto spec_b = FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "b"}, {"Version", "1.3"}, {"Build-Depends", ""}},
|
|
|
|
{{"Feature", "beefeatureone"}, {"Description", "the first feature for b"}, {"Build-Depends", ""}},
|
|
|
|
{{"Feature", "beefeaturetwo"}, {"Description", "the second feature for b"}, {"Build-Depends", ""}},
|
|
|
|
{{"Feature", "beefeaturethree"}, {"Description", "the third feature for b"}, {"Build-Depends", ""}},
|
|
|
|
})};
|
2017-07-13 08:40:41 +08:00
|
|
|
|
2017-08-21 10:09:39 +08:00
|
|
|
auto install_plan =
|
|
|
|
Dependencies::create_feature_install_plan(spec_map.map,
|
|
|
|
FullPackageSpec::to_feature_specs({spec_a}),
|
|
|
|
StatusParagraphs(std::move(status_paragraphs)));
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
Assert::AreEqual(size_t(4), install_plan.size());
|
|
|
|
remove_plan_check(&install_plan[0], "a");
|
|
|
|
remove_plan_check(&install_plan[1], "b");
|
|
|
|
features_check(&install_plan[2], "b", {"beefeatureone", "core", "beefeatureone"});
|
|
|
|
features_check(&install_plan[3], "a", {"featureone", "core"});
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_METHOD(basic_feature_test_2)
|
|
|
|
{
|
|
|
|
using Pgh = std::unordered_map<std::string, std::string>;
|
|
|
|
|
|
|
|
std::vector<std::unique_ptr<StatusParagraph>> status_paragraphs;
|
|
|
|
|
2017-07-20 05:29:28 +08:00
|
|
|
PackageSpecMap spec_map(Triplet::X86_WINDOWS);
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
auto spec_a =
|
|
|
|
FullPackageSpec{spec_map.get_package_spec(
|
|
|
|
{{{"Source", "a"}, {"Version", "1.3.8"}, {"Build-Depends", "b[beefeatureone]"}},
|
|
|
|
{{"Feature", "featureone"},
|
|
|
|
{"Description", "the first feature for a"},
|
|
|
|
{"Build-Depends", "b[beefeaturetwo]"}}
|
|
|
|
|
|
|
|
}),
|
|
|
|
{"featureone"}};
|
2017-07-18 04:36:33 +08:00
|
|
|
auto spec_b = FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "b"}, {"Version", "1.3"}, {"Build-Depends", ""}},
|
|
|
|
{{"Feature", "beefeatureone"}, {"Description", "the first feature for b"}, {"Build-Depends", ""}},
|
|
|
|
{{"Feature", "beefeaturetwo"}, {"Description", "the second feature for b"}, {"Build-Depends", ""}},
|
|
|
|
{{"Feature", "beefeaturethree"}, {"Description", "the third feature for b"}, {"Build-Depends", ""}},
|
|
|
|
})};
|
2017-07-13 08:40:41 +08:00
|
|
|
|
2017-08-21 10:09:39 +08:00
|
|
|
auto install_plan =
|
|
|
|
Dependencies::create_feature_install_plan(spec_map.map,
|
|
|
|
FullPackageSpec::to_feature_specs({spec_a}),
|
|
|
|
StatusParagraphs(std::move(status_paragraphs)));
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
Assert::AreEqual(size_t(2), install_plan.size());
|
|
|
|
features_check(&install_plan[0], "b", {"beefeatureone", "beefeaturetwo", "core"});
|
|
|
|
features_check(&install_plan[1], "a", {"featureone", "core"});
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_METHOD(basic_feature_test_3)
|
|
|
|
{
|
|
|
|
using Pgh = std::unordered_map<std::string, std::string>;
|
|
|
|
|
|
|
|
std::vector<std::unique_ptr<StatusParagraph>> status_paragraphs;
|
|
|
|
status_paragraphs.push_back(std::make_unique<StatusParagraph>(Pgh{{"Package", "a"},
|
|
|
|
{"Default-Features", ""},
|
|
|
|
{"Version", "1.3"},
|
|
|
|
{"Architecture", "x86-windows"},
|
|
|
|
{"Multi-Arch", "same"},
|
|
|
|
{"Depends", ""},
|
|
|
|
{"Status", "install ok installed"}}));
|
|
|
|
|
2017-07-20 05:29:28 +08:00
|
|
|
PackageSpecMap spec_map(Triplet::X86_WINDOWS);
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
auto spec_a = FullPackageSpec{
|
|
|
|
spec_map.get_package_spec(
|
|
|
|
{{{"Source", "a"}, {"Version", "1.3"}, {"Build-Depends", "b"}},
|
|
|
|
{{"Feature", "one"}, {"Description", "the first feature for a"}, {"Build-Depends", ""}}}),
|
|
|
|
{"core"}};
|
|
|
|
auto spec_b = FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "b"}, {"Version", "1.3"}, {"Build-Depends", ""}},
|
|
|
|
})};
|
|
|
|
auto spec_c = FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "c"}, {"Version", "1.3"}, {"Build-Depends", "a[one]"}},
|
|
|
|
}),
|
|
|
|
{"core"}};
|
|
|
|
|
2017-08-21 10:09:39 +08:00
|
|
|
auto install_plan =
|
|
|
|
Dependencies::create_feature_install_plan(spec_map.map,
|
|
|
|
FullPackageSpec::to_feature_specs({spec_c, spec_a}),
|
|
|
|
StatusParagraphs(std::move(status_paragraphs)));
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
Assert::AreEqual(size_t(4), install_plan.size());
|
|
|
|
remove_plan_check(&install_plan[0], "a");
|
|
|
|
features_check(&install_plan[1], "b", {"core"});
|
|
|
|
features_check(&install_plan[2], "a", {"one", "core"});
|
|
|
|
features_check(&install_plan[3], "c", {"core"});
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_METHOD(basic_feature_test_4)
|
|
|
|
{
|
|
|
|
using Pgh = std::unordered_map<std::string, std::string>;
|
|
|
|
|
|
|
|
std::vector<std::unique_ptr<StatusParagraph>> status_paragraphs;
|
|
|
|
status_paragraphs.push_back(std::make_unique<StatusParagraph>(Pgh{{"Package", "a"},
|
|
|
|
{"Default-Features", ""},
|
|
|
|
{"Version", "1.3"},
|
|
|
|
{"Architecture", "x86-windows"},
|
|
|
|
{"Multi-Arch", "same"},
|
|
|
|
{"Depends", ""},
|
|
|
|
{"Status", "install ok installed"}}));
|
|
|
|
status_paragraphs.push_back(std::make_unique<StatusParagraph>(Pgh{{"Package", "a"},
|
|
|
|
{"Feature", "one"},
|
|
|
|
{"Architecture", "x86-windows"},
|
|
|
|
{"Multi-Arch", "same"},
|
|
|
|
{"Depends", ""},
|
|
|
|
{"Status", "install ok installed"}}));
|
|
|
|
|
2017-07-20 05:29:28 +08:00
|
|
|
PackageSpecMap spec_map(Triplet::X86_WINDOWS);
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
auto spec_a = FullPackageSpec{
|
|
|
|
spec_map.get_package_spec(
|
|
|
|
{{{"Source", "a"}, {"Version", "1.3"}, {"Build-Depends", "b"}},
|
|
|
|
{{"Feature", "one"}, {"Description", "the first feature for a"}, {"Build-Depends", ""}}}),
|
|
|
|
};
|
|
|
|
auto spec_b = FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "b"}, {"Version", "1.3"}, {"Build-Depends", ""}},
|
|
|
|
})};
|
|
|
|
auto spec_c = FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "c"}, {"Version", "1.3"}, {"Build-Depends", "a[one]"}},
|
|
|
|
}),
|
|
|
|
{"core"}};
|
|
|
|
|
2017-08-21 10:09:39 +08:00
|
|
|
auto install_plan =
|
|
|
|
Dependencies::create_feature_install_plan(spec_map.map,
|
|
|
|
FullPackageSpec::to_feature_specs({spec_c}),
|
|
|
|
StatusParagraphs(std::move(status_paragraphs)));
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
Assert::AreEqual(size_t(1), install_plan.size());
|
|
|
|
features_check(&install_plan[0], "c", {"core"});
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_METHOD(basic_feature_test_5)
|
|
|
|
{
|
|
|
|
using Pgh = std::unordered_map<std::string, std::string>;
|
|
|
|
|
|
|
|
std::vector<std::unique_ptr<StatusParagraph>> status_paragraphs;
|
|
|
|
|
2017-07-20 05:29:28 +08:00
|
|
|
PackageSpecMap spec_map(Triplet::X86_WINDOWS);
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
auto spec_a = FullPackageSpec{
|
|
|
|
spec_map.get_package_spec(
|
|
|
|
{{{"Source", "a"}, {"Version", "1.3"}, {"Build-Depends", ""}},
|
|
|
|
{{"Feature", "1"}, {"Description", "the first feature for a"}, {"Build-Depends", "b[1]"}},
|
2017-07-26 12:29:31 +08:00
|
|
|
{{"Feature", "2"}, {"Description", "the second feature for a"}, {"Build-Depends", "b[2]"}},
|
|
|
|
{{"Feature", "3"}, {"Description", "the third feature for a"}, {"Build-Depends", "a[2]"}}}),
|
2017-07-13 08:40:41 +08:00
|
|
|
{"3"}};
|
|
|
|
auto spec_b = FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "b"}, {"Version", "1.3"}, {"Build-Depends", ""}},
|
2017-07-26 12:29:31 +08:00
|
|
|
{{"Feature", "1"}, {"Description", "the first feature for b"}, {"Build-Depends", ""}},
|
|
|
|
{{"Feature", "2"}, {"Description", "the second feature for b"}, {"Build-Depends", ""}},
|
2017-07-13 08:40:41 +08:00
|
|
|
})};
|
|
|
|
|
2017-08-21 10:09:39 +08:00
|
|
|
auto install_plan =
|
|
|
|
Dependencies::create_feature_install_plan(spec_map.map,
|
|
|
|
FullPackageSpec::to_feature_specs({spec_a}),
|
|
|
|
StatusParagraphs(std::move(status_paragraphs)));
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
Assert::AreEqual(size_t(2), install_plan.size());
|
|
|
|
features_check(&install_plan[0], "b", {"core", "2"});
|
|
|
|
features_check(&install_plan[1], "a", {"core", "3", "2"});
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_METHOD(basic_feature_test_6)
|
|
|
|
{
|
|
|
|
using Pgh = std::unordered_map<std::string, std::string>;
|
|
|
|
|
|
|
|
std::vector<std::unique_ptr<StatusParagraph>> status_paragraphs;
|
|
|
|
status_paragraphs.push_back(std::make_unique<StatusParagraph>(Pgh{{"Package", "b"},
|
|
|
|
{"Default-Features", ""},
|
|
|
|
{"Version", "1.3"},
|
|
|
|
{"Architecture", "x86-windows"},
|
|
|
|
{"Multi-Arch", "same"},
|
|
|
|
{"Depends", ""},
|
|
|
|
{"Status", "install ok installed"}}));
|
2017-07-20 05:29:28 +08:00
|
|
|
PackageSpecMap spec_map(Triplet::X86_WINDOWS);
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
auto spec_a = FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "a"}, {"Version", "1.3"}, {"Build-Depends", "b[core]"}},
|
|
|
|
}),
|
|
|
|
{"core"}};
|
|
|
|
auto spec_b = FullPackageSpec{
|
|
|
|
spec_map.get_package_spec({
|
|
|
|
{{"Source", "b"}, {"Version", "1.3"}, {"Build-Depends", ""}},
|
|
|
|
{{"Feature", "1"}, {"Description", "the first feature for a"}, {"Build-Depends", ""}},
|
|
|
|
}),
|
|
|
|
{"1"}};
|
|
|
|
|
2017-08-21 10:09:39 +08:00
|
|
|
auto install_plan =
|
|
|
|
Dependencies::create_feature_install_plan(spec_map.map,
|
|
|
|
FullPackageSpec::to_feature_specs({spec_a, spec_b}),
|
|
|
|
StatusParagraphs(std::move(status_paragraphs)));
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
Assert::AreEqual(size_t(3), install_plan.size());
|
|
|
|
remove_plan_check(&install_plan[0], "b");
|
|
|
|
features_check(&install_plan[1], "b", {"core", "1"});
|
|
|
|
features_check(&install_plan[2], "a", {"core"});
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_METHOD(basic_feature_test_7)
|
|
|
|
{
|
|
|
|
using Pgh = std::unordered_map<std::string, std::string>;
|
|
|
|
|
|
|
|
std::vector<std::unique_ptr<StatusParagraph>> status_paragraphs;
|
|
|
|
status_paragraphs.push_back(std::make_unique<StatusParagraph>(Pgh{{"Package", "x"},
|
|
|
|
{"Default-Features", ""},
|
|
|
|
{"Version", "1.3"},
|
|
|
|
{"Architecture", "x86-windows"},
|
|
|
|
{"Multi-Arch", "same"},
|
|
|
|
{"Depends", "b"},
|
|
|
|
{"Status", "install ok installed"}}));
|
|
|
|
status_paragraphs.push_back(std::make_unique<StatusParagraph>(Pgh{{"Package", "b"},
|
|
|
|
{"Default-Features", ""},
|
|
|
|
{"Version", "1.3"},
|
|
|
|
{"Architecture", "x86-windows"},
|
|
|
|
{"Multi-Arch", "same"},
|
|
|
|
{"Depends", ""},
|
|
|
|
{"Status", "install ok installed"}}));
|
2017-07-20 05:29:28 +08:00
|
|
|
PackageSpecMap spec_map(Triplet::X86_WINDOWS);
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
auto spec_a = FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "a"}, {"Version", "1.3"}, {"Build-Depends", ""}},
|
|
|
|
})};
|
|
|
|
auto spec_x = FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "x"}, {"Version", "1.3"}, {"Build-Depends", "a"}},
|
|
|
|
}),
|
|
|
|
{"core"}};
|
|
|
|
auto spec_b = FullPackageSpec{
|
|
|
|
spec_map.get_package_spec({
|
|
|
|
{{"Source", "b"}, {"Version", "1.3"}, {"Build-Depends", ""}, {"Default-Features", ""}},
|
|
|
|
{{"Feature", "1"}, {"Description", "the first feature for a"}, {"Build-Depends", ""}},
|
|
|
|
}),
|
|
|
|
{"1"}};
|
|
|
|
|
2017-08-21 10:09:39 +08:00
|
|
|
auto install_plan =
|
|
|
|
Dependencies::create_feature_install_plan(spec_map.map,
|
|
|
|
FullPackageSpec::to_feature_specs({spec_b}),
|
|
|
|
StatusParagraphs(std::move(status_paragraphs)));
|
2017-07-13 08:40:41 +08:00
|
|
|
|
|
|
|
Assert::AreEqual(size_t(5), install_plan.size());
|
|
|
|
remove_plan_check(&install_plan[0], "x");
|
|
|
|
remove_plan_check(&install_plan[1], "b");
|
|
|
|
|
2017-07-20 05:19:11 +08:00
|
|
|
// TODO: order here may change but A < X, and B anywhere
|
2017-07-13 08:40:41 +08:00
|
|
|
features_check(&install_plan[2], "a", {"core"});
|
|
|
|
features_check(&install_plan[3], "x", {"core"});
|
|
|
|
features_check(&install_plan[4], "b", {"core", "1"});
|
|
|
|
}
|
2017-07-20 05:29:28 +08:00
|
|
|
|
|
|
|
TEST_METHOD(basic_feature_test_8)
|
|
|
|
{
|
|
|
|
using Pgh = std::unordered_map<std::string, std::string>;
|
|
|
|
|
|
|
|
std::vector<std::unique_ptr<StatusParagraph>> status_paragraphs;
|
|
|
|
status_paragraphs.push_back(std::make_unique<StatusParagraph>(Pgh{{"Package", "a"},
|
|
|
|
{"Default-Features", ""},
|
|
|
|
{"Version", "1.3"},
|
|
|
|
{"Architecture", "x64-windows"},
|
|
|
|
{"Multi-Arch", "same"},
|
|
|
|
{"Depends", ""},
|
|
|
|
{"Status", "install ok installed"}}));
|
|
|
|
status_paragraphs.push_back(std::make_unique<StatusParagraph>(Pgh{{"Package", "a"},
|
|
|
|
{"Default-Features", ""},
|
|
|
|
{"Version", "1.3"},
|
|
|
|
{"Architecture", "x86-windows"},
|
|
|
|
{"Multi-Arch", "same"},
|
|
|
|
{"Depends", ""},
|
|
|
|
{"Status", "install ok installed"}}));
|
|
|
|
|
|
|
|
PackageSpecMap spec_map(Triplet::X64_WINDOWS);
|
|
|
|
|
|
|
|
auto spec_a_64 = FullPackageSpec{
|
|
|
|
spec_map.get_package_spec(
|
|
|
|
{{{"Source", "a"}, {"Version", "1.3"}, {"Build-Depends", "b"}},
|
|
|
|
{{"Feature", "one"}, {"Description", "the first feature for a"}, {"Build-Depends", ""}}}),
|
|
|
|
{"core"}};
|
|
|
|
auto spec_b_64 = FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "b"}, {"Version", "1.3"}, {"Build-Depends", ""}},
|
|
|
|
})};
|
|
|
|
auto spec_c_64 = FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "c"}, {"Version", "1.3"}, {"Build-Depends", "a[one]"}},
|
|
|
|
}),
|
|
|
|
{"core"}};
|
|
|
|
|
|
|
|
spec_map.triplet = Triplet::X86_WINDOWS;
|
|
|
|
auto spec_a_86 = FullPackageSpec{
|
|
|
|
spec_map.get_package_spec(
|
|
|
|
{{{"Source", "a"}, {"Version", "1.3"}, {"Build-Depends", "b"}},
|
|
|
|
{{"Feature", "one"}, {"Description", "the first feature for a"}, {"Build-Depends", ""}}}),
|
|
|
|
{"core"}};
|
|
|
|
auto spec_b_86 = FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "b"}, {"Version", "1.3"}, {"Build-Depends", ""}},
|
|
|
|
})};
|
|
|
|
auto spec_c_86 = FullPackageSpec{spec_map.get_package_spec({
|
|
|
|
{{"Source", "c"}, {"Version", "1.3"}, {"Build-Depends", "a[one]"}},
|
|
|
|
}),
|
|
|
|
{"core"}};
|
|
|
|
|
2017-08-21 10:09:39 +08:00
|
|
|
auto install_plan = Dependencies::create_feature_install_plan(
|
|
|
|
spec_map.map,
|
|
|
|
FullPackageSpec::to_feature_specs({spec_c_64, spec_a_86, spec_a_64, spec_c_86}),
|
|
|
|
StatusParagraphs(std::move(status_paragraphs)));
|
2017-07-20 05:29:28 +08:00
|
|
|
|
|
|
|
/*Assert::AreEqual(size_t(8), install_plan.size());
|
|
|
|
auto iterator_pos = [&](const PackageSpec& spec, size_t start) -> int {
|
|
|
|
auto it = std::find_if(install_plan.begin() + start, install_plan.end(), [&](auto& action) {
|
|
|
|
return action.spec == spec;
|
|
|
|
});
|
|
|
|
Assert::IsTrue(it != install_plan.end());
|
|
|
|
return (int)(it - install_plan.begin());
|
|
|
|
};
|
|
|
|
int a_64_1 = iterator_pos(spec_a_64.package_spec, 0), a_86_1 = iterator_pos(spec_a_86.package_spec, 0),
|
|
|
|
b_64 = iterator_pos(spec_b_64.package_spec, 0), b_86 = iterator_pos(spec_b_86.package_spec, 0),
|
|
|
|
c_64 = iterator_pos(spec_c_64.package_spec, 0), c_86 = iterator_pos(spec_c_86.package_spec, 0),
|
|
|
|
a_64_2 = iterator_pos(spec_a_64.package_spec, a_64_1 + 1),
|
|
|
|
a_86_2 = iterator_pos(spec_a_86.package_spec, a_86_1 + 1);*/
|
|
|
|
|
|
|
|
remove_plan_check(&install_plan[0], "a", Triplet::X64_WINDOWS);
|
|
|
|
remove_plan_check(&install_plan[1], "a");
|
|
|
|
features_check(&install_plan[2], "b", {"core"}, Triplet::X64_WINDOWS);
|
|
|
|
features_check(&install_plan[3], "a", {"one", "core"}, Triplet::X64_WINDOWS);
|
|
|
|
features_check(&install_plan[4], "c", {"core"}, Triplet::X64_WINDOWS);
|
|
|
|
features_check(&install_plan[5], "b", {"core"});
|
|
|
|
features_check(&install_plan[6], "a", {"one", "core"});
|
|
|
|
features_check(&install_plan[7], "c", {"core"});
|
|
|
|
}
|
2017-06-27 04:48:04 +08:00
|
|
|
};
|
|
|
|
}
|