2018-11-15 15:47:52 +00:00
|
|
|
/*
|
|
|
|
This file is part of solidity.
|
|
|
|
|
|
|
|
solidity is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
solidity is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <test/libsolidity/SyntaxTest.h>
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/JSON.h>
|
2018-11-15 15:47:52 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
namespace solidity::frontend::test
|
2018-11-15 15:47:52 +00:00
|
|
|
{
|
|
|
|
|
2019-12-03 15:50:28 +00:00
|
|
|
class SMTCheckerJSONTest: public SyntaxTest
|
2018-11-15 15:47:52 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-02-06 11:10:05 +00:00
|
|
|
static std::unique_ptr<TestCase> create(Config const& _config)
|
2018-11-15 15:47:52 +00:00
|
|
|
{
|
2019-12-03 15:50:28 +00:00
|
|
|
return std::make_unique<SMTCheckerJSONTest>(_config.filename, _config.evmVersion);
|
2018-11-15 15:47:52 +00:00
|
|
|
}
|
2019-12-03 15:50:28 +00:00
|
|
|
SMTCheckerJSONTest(std::string const& _filename, langutil::EVMVersion _evmVersion);
|
2018-11-15 15:47:52 +00:00
|
|
|
|
2019-05-07 13:33:22 +00:00
|
|
|
TestResult run(std::ostream& _stream, std::string const& _linePrefix = "", bool _formatted = false) override;
|
2018-11-15 15:47:52 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<std::string> hashesFromJson(Json::Value const& _jsonObj, std::string const& _auxInput, std::string const& _smtlib);
|
|
|
|
Json::Value buildJson(std::string const& _extra);
|
|
|
|
|
|
|
|
Json::Value m_smtResponses;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|