Patrick Lühne
e85807accb
The code responsible for completing formulas made the assumption that all head variables could be safely removed from the list of free variables of each formula. This is only correct given the current limitation that only rules with singleton heads are supported. Because of this assumption, code with multiple elements in the head were completed to an incorrect result instead of issuing an error that such rules aren’t supported yet. This commit improves the code by excluding only variables that are actually replaced from the list of free variables and not all head variables. Still, other places will need to be adjusted for full support of rules with multiple elements in the head. For this reason, this also adds an error message indicating that only rules with singleton heads are supported as of now. Finally, multiple test cases are added to check that the supported features related to the issues outlined above are translated without exceptions, while errors are returned when attempting to use unsupported features.
74 lines
1.7 KiB
C++
74 lines
1.7 KiB
C++
#include <catch.hpp>
|
|
|
|
#include <sstream>
|
|
|
|
#include <anthem/AST.h>
|
|
#include <anthem/Context.h>
|
|
#include <anthem/Translation.h>
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
TEST_CASE("[unsupported] Errors are correctly issued when using unsupported features", "[unsupported]")
|
|
{
|
|
std::stringstream input;
|
|
std::stringstream output;
|
|
std::stringstream errors;
|
|
|
|
anthem::output::Logger logger(output, errors);
|
|
anthem::Context context(std::move(logger));
|
|
|
|
SECTION("rules with disjunctive head are unsupported")
|
|
{
|
|
context.performCompletion = true;
|
|
|
|
input << "a; b.";
|
|
|
|
CHECK_THROWS(anthem::translate("input", input, context));
|
|
}
|
|
|
|
SECTION("rules with disjunctive head containing elements with arguments are unsupported")
|
|
{
|
|
context.performCompletion = true;
|
|
|
|
input << "p(a); p(b).";
|
|
|
|
CHECK_THROWS(anthem::translate("input", input, context));
|
|
}
|
|
|
|
SECTION("singleton choice rules are supported")
|
|
{
|
|
context.performCompletion = true;
|
|
|
|
input << "{a}.";
|
|
|
|
CHECK_NOTHROW(anthem::translate("input", input, context));
|
|
}
|
|
|
|
SECTION("singleton choice rules containing an element with arguments are supported")
|
|
{
|
|
context.performCompletion = true;
|
|
|
|
input << "{p(a)}.";
|
|
|
|
CHECK_NOTHROW(anthem::translate("input", input, context));
|
|
}
|
|
|
|
SECTION("choice rules with multiple simple elements are supported")
|
|
{
|
|
context.performCompletion = true;
|
|
|
|
input << "{a; b}.";
|
|
|
|
CHECK_NOTHROW(anthem::translate("input", input, context));
|
|
}
|
|
|
|
SECTION("choice rules with multiple elements with arguments are unsupported")
|
|
{
|
|
context.performCompletion = true;
|
|
|
|
input << "{p(a); p(b)}.";
|
|
|
|
CHECK_THROWS(anthem::translate("input", input, context));
|
|
}
|
|
}
|