1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
/******************************************************************************
* Top contributors (to current version):
* Andrew Reynolds, Aina Niemetz, Mudathir Mohamed
*
* This file is part of the cvc5 project.
*
* Copyright (c) 2009-2025 by the authors listed in the file AUTHORS
* in the top-level source directory and their institutional affiliations.
* All rights reserved. See the file COPYING in the top-level source
* directory for licensing information.
* ****************************************************************************
*
* Black box testing of cvc5::parser::Command.
*/
#include <cvc5/cvc5.h>
#include <cvc5/cvc5_parser.h>
#include <sstream>
#include "base/output.h"
#include "options/base_options.h"
#include "options/language.h"
#include "options/options.h"
#include "test_parser.h"
using namespace cvc5::parser;
namespace cvc5::internal {
namespace test {
class TestApiBlackCommand : public TestParser
{
protected:
TestApiBlackCommand() {}
virtual ~TestApiBlackCommand() {}
Command parseCommand(const std::string& cmdStr)
{
std::stringstream ss;
ss << cmdStr << std::endl;
InputParser parser(d_solver.get(), d_symman.get());
parser.setStreamInput(
modes::InputLanguage::SMT_LIB_2_6, ss, "command_black");
return parser.nextCommand();
}
};
TEST_F(TestApiBlackCommand, invoke)
{
std::stringstream out;
Command cmd;
// set logic command can be executed
cmd = parseCommand("(set-logic QF_LIA)");
ASSERT_FALSE(cmd.isNull());
cmd.invoke(d_solver.get(), d_symman.get(), out);
// get model not available
cmd = parseCommand("(get-model)");
ASSERT_FALSE(cmd.isNull());
cmd.invoke(d_solver.get(), d_symman.get(), out);
std::string result = out.str();
ASSERT_EQ(
"(error \"cannot get model unless model generation is enabled (try "
"--produce-models)\")\n",
result);
// logic already set
ASSERT_THROW(parseCommand("(set-logic QF_LRA)"), ParserException);
}
TEST_F(TestApiBlackCommand, toString)
{
Command cmd;
cmd = parseCommand("(set-logic QF_LIA )");
ASSERT_FALSE(cmd.isNull());
// note normalizes wrt whitespace
ASSERT_EQ(cmd.toString(), "(set-logic QF_LIA)");
std::stringstream ss;
ss << cmd;
ASSERT_EQ(cmd.toString(), ss.str());
}
TEST_F(TestApiBlackCommand, getCommandName)
{
Command cmd;
cmd = parseCommand("(get-model)");
ASSERT_FALSE(cmd.isNull());
ASSERT_EQ(cmd.getCommandName(), "get-model");
}
} // namespace test
} // namespace cvc5::internal
|