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

Better error messages when a dependency can't be found #109

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
19 changes: 18 additions & 1 deletion src/cps/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "cps/version.hpp"

#include <fmt/core.h>
#include <fmt/ranges.h>
#include <tl/expected.hpp>

#include <algorithm>
Expand All @@ -27,6 +28,8 @@ namespace cps::search {

namespace {

using version::to_string;

/// @brief A CPS file, along with the components in that CPS file to
/// load
class Dependency {
Expand Down Expand Up @@ -222,10 +225,12 @@ namespace cps::search {
tl::expected<std::shared_ptr<Node>, std::string>
build_node(std::string_view name, const loader::Requirement & requirements, NodeFactory factory, Env env) {
const std::vector<fs::path> paths = CPS_TRY(find_paths(name, env));
std::vector<std::string> errors{};
for (auto && path : paths) {

auto maybe_node = factory.get(name, path);
if (!maybe_node) {
errors.emplace_back(fmt::format("No CPS file for {} in path {}", name, path.string()));
continue;
}
auto node = maybe_node.value();
Expand All @@ -242,26 +247,38 @@ namespace cps::search {
// > If not provided, the CPS will not satisfy any request for
// > a specific version of the package.
if (!p.version) {
errors.emplace_back(
fmt::format("Tried {}, which does not specify a version, but the user requires version {}",
path.string(), requirements.version.value()));
continue;
}
if (version::compare(p.version.value(), version::Operator::lt, requirements.version.value(),
p.version_schema)) {
errors.emplace_back(fmt::format(
"{} has a version of {}, which is less than the required {}, using the schema {}",
path.string(), p.version.value(), requirements.version.value(),
to_string(p.version_schema)));
continue;
}
}

if (!std::all_of(requirements.components.begin(), requirements.components.end(),
[p](const std::string & c) { return p.components.find(c) != p.components.end(); })) {
// TODO: more fine grained error message
errors.emplace_back(fmt::format("{} does not implement all of the required components '{}'",
path.string(), fmt::join(requirements.components, ", ")));
continue;
}

std::vector<std::shared_ptr<Node>> found;
found.reserve(p.require.size());
for (auto && [n, r] : p.require) {
auto && child = build_node(n, r, factory, env);

if (child) {
found.emplace_back(child.value());
} else {
errors.emplace_back(child.error());
break;
}
}
Expand All @@ -273,7 +290,7 @@ namespace cps::search {
return node;
}

return tl::unexpected(fmt::format("Could not find a dependency to satisfy {}", name));
return tl::unexpected(fmt::format("{}:\n {}", name, fmt::join(errors, "\n ")));
}

tl::expected<std::shared_ptr<Node>, std::string> build_node(std::string_view name,
Expand Down
18 changes: 16 additions & 2 deletions src/cps/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,27 @@ namespace cps::version {

} // namespace

std::string to_string(const Schema schema) {
switch (schema) {
case Schema::simple:
return "simple";
case Schema::dpkg:
return "dpkg";
case Schema::rpm:
return "rpm";
case Schema::custom:
return "custom";
default:
abort();
};
}

tl::expected<bool, std::string> compare(std::string_view left, Operator op, std::string_view right, Schema schema) {
switch (schema) {
case Schema::simple:
return simple_compare(left, op, right);
default:
fmt::print(stderr, "Only the simple schema is implemented");
return "Only the simple schema is implemented.";
return tl::unexpected{fmt::format("The {} schema is not implemented", to_string(schema))};
}
}

Expand Down
2 changes: 2 additions & 0 deletions src/cps/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ namespace cps::version {
ge,
};

std::string to_string(const Schema);

/// @brief compare two version strings using the given operator and schema
tl::expected<bool, std::string> compare(std::string_view left, Operator op, std::string_view right, Schema schema);
} // namespace cps::version
3 changes: 2 additions & 1 deletion tests/cases/cps-config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ expected = "-I/something -I/opt/include"
name = "Requires version, but version not set"
cps = "needs-version"
args = ["flags", "--modversion", "--print-errors", "--errors-to-stdout"]
expected = "Could not find a dependency to satisfy needs-version"
expected = "Tried /.*/cps/multiple-components.cps, which does not specify a version, but the user requires version 1.0"
re = true
returncode = 1

[[case]]
Expand Down
3 changes: 2 additions & 1 deletion tests/cases/pkg-config-compat.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,6 @@ expected = "-I/usr/local/include -I/opt/include"
name = "Requires version, but version not set"
cps = "needs-version"
args = ["pkg-config", "--modversion", "--print-errors", "--errors-to-stdout"]
expected = "Could not find a dependency to satisfy needs-version"
expected = "Tried /.*/cps/multiple-components.cps, which does not specify a version, but the user requires version 1.0"
returncode = 1
re = true
15 changes: 15 additions & 0 deletions tests/cps-files/lib/cps/has-compat-version.cps
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "has-compat-version",
"cps_version": "0.12.0",
"version": "1.0.700344",
"compat_version": "1.0.0",
"components": {
"default": {
"type": "archive",
"location": "/usr/lib/libfoo.a"
}
},
"default_components": [
"default"
]
}
20 changes: 16 additions & 4 deletions tests/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import dataclasses
import enum
import os
import re
import shutil
import sys
import tempfile
Expand All @@ -33,6 +34,7 @@ class TestCase(typing.TypedDict):
expected: str
mode: typing.NotRequired[typing.Literal['pkgconf']]
returncode: typing.NotRequired[int]
re: typing.NotRequired[bool]

class TestDescription(typing.TypedDict):

Expand Down Expand Up @@ -64,14 +66,24 @@ class Result:


def unordered_compare(out: str, expected: str) -> bool:
if out == expected:
return True

out_parts = out.split()
expected_parts = expected.split()
return sorted(out_parts) == sorted(expected_parts)


def is_success(rt: int, case_: TestCase, out: str, expected: str) -> bool:
if rt != case_.get('returncode', 0):
return False

if case_.get('re', False):
return re.search(expected, out) is not None

if out == expected:
return True

return unordered_compare(out, expected)


async def test(args: Arguments, case_: TestCase) -> Result:
prefix = args.prefix or SOURCE_DIR

Expand All @@ -93,7 +105,7 @@ async def test(args: Arguments, case_: TestCase) -> Result:
out = bout.decode().strip()
err = berr.decode().strip()

success = proc.returncode == case_.get('returncode', 0) and unordered_compare(out, expected)
success = is_success(proc.returncode, case_, out, expected)
result = Status.PASS if success else Status.FAIL
returncode = proc.returncode
except asyncio.TimeoutError:
Expand Down
Loading