mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-14 17:39:08 +08:00
16faed6785
Signed-off-by: Squareys <squareys@googlemail.com>
116 lines
3.3 KiB
C++
116 lines
3.3 KiB
C++
#include "tests.pch.h"
|
|
|
|
#include <tests.utils.h>
|
|
|
|
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
|
|
|
|
using namespace vcpkg;
|
|
using namespace vcpkg::Paragraphs;
|
|
|
|
namespace UnitTest1
|
|
{
|
|
class StatusParagraphsTests : public TestClass<StatusParagraphsTests>
|
|
{
|
|
TEST_METHOD(find_installed)
|
|
{
|
|
auto pghs = parse_paragraphs(R"(
|
|
Package: ffmpeg
|
|
Version: 3.3.3
|
|
Architecture: x64-windows
|
|
Multi-Arch: same
|
|
Description:
|
|
Status: install ok installed
|
|
)");
|
|
Assert::IsTrue(!!pghs);
|
|
if (!pghs) return;
|
|
|
|
StatusParagraphs status_db(Util::fmap(
|
|
*pghs.get(), [](RawParagraph& rpgh) { return std::make_unique<StatusParagraph>(std::move(rpgh)); }));
|
|
|
|
auto it = status_db.find_installed(unsafe_pspec("ffmpeg", Triplet::X64_WINDOWS));
|
|
Assert::IsTrue(it != status_db.end());
|
|
}
|
|
|
|
TEST_METHOD(find_not_installed)
|
|
{
|
|
auto pghs = parse_paragraphs(R"(
|
|
Package: ffmpeg
|
|
Version: 3.3.3
|
|
Architecture: x64-windows
|
|
Multi-Arch: same
|
|
Description:
|
|
Status: purge ok not-installed
|
|
)");
|
|
Assert::IsTrue(!!pghs);
|
|
if (!pghs) return;
|
|
|
|
StatusParagraphs status_db(Util::fmap(
|
|
*pghs.get(), [](RawParagraph& rpgh) { return std::make_unique<StatusParagraph>(std::move(rpgh)); }));
|
|
|
|
auto it = status_db.find_installed(unsafe_pspec("ffmpeg", Triplet::X64_WINDOWS));
|
|
Assert::IsTrue(it == status_db.end());
|
|
}
|
|
|
|
TEST_METHOD(find_with_feature_packages)
|
|
{
|
|
auto pghs = parse_paragraphs(R"(
|
|
Package: ffmpeg
|
|
Version: 3.3.3
|
|
Architecture: x64-windows
|
|
Multi-Arch: same
|
|
Description:
|
|
Status: install ok installed
|
|
|
|
Package: ffmpeg
|
|
Feature: openssl
|
|
Depends: openssl
|
|
Architecture: x64-windows
|
|
Multi-Arch: same
|
|
Description:
|
|
Status: purge ok not-installed
|
|
)");
|
|
Assert::IsTrue(!!pghs);
|
|
if (!pghs) return;
|
|
|
|
StatusParagraphs status_db(Util::fmap(
|
|
*pghs.get(), [](RawParagraph& rpgh) { return std::make_unique<StatusParagraph>(std::move(rpgh)); }));
|
|
|
|
auto it = status_db.find_installed(unsafe_pspec("ffmpeg", Triplet::X64_WINDOWS));
|
|
Assert::IsTrue(it != status_db.end());
|
|
|
|
// Feature "openssl" is not installed and should not be found
|
|
auto it1 = status_db.find_installed({unsafe_pspec("ffmpeg", Triplet::X64_WINDOWS), "openssl"});
|
|
Assert::IsTrue(it1 == status_db.end());
|
|
}
|
|
|
|
TEST_METHOD(find_for_feature_packages)
|
|
{
|
|
auto pghs = parse_paragraphs(R"(
|
|
Package: ffmpeg
|
|
Version: 3.3.3
|
|
Architecture: x64-windows
|
|
Multi-Arch: same
|
|
Description:
|
|
Status: install ok installed
|
|
|
|
Package: ffmpeg
|
|
Feature: openssl
|
|
Depends: openssl
|
|
Architecture: x64-windows
|
|
Multi-Arch: same
|
|
Description:
|
|
Status: install ok installed
|
|
)");
|
|
Assert::IsTrue(!!pghs);
|
|
if (!pghs) return;
|
|
|
|
StatusParagraphs status_db(Util::fmap(
|
|
*pghs.get(), [](RawParagraph& rpgh) { return std::make_unique<StatusParagraph>(std::move(rpgh)); }));
|
|
|
|
// Feature "openssl" is installed and should therefore be found
|
|
auto it = status_db.find_installed({unsafe_pspec("ffmpeg", Triplet::X64_WINDOWS), "openssl"});
|
|
Assert::IsTrue(it != status_db.end());
|
|
}
|
|
};
|
|
}
|