2018-08-03 17:30:18 +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
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/AnsiColorized.h>
|
2018-11-25 00:02:32 +00:00
|
|
|
#include <test/TestCase.h>
|
2018-08-03 17:30:18 +00:00
|
|
|
|
|
|
|
#include <iosfwd>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <utility>
|
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
namespace solidity::frontend::test
|
2018-08-03 17:30:18 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
class ASTJSONTest: public TestCase
|
|
|
|
{
|
|
|
|
public:
|
2019-02-06 11:10:05 +00:00
|
|
|
static std::unique_ptr<TestCase> create(Config const& _config)
|
2019-11-27 16:24:21 +00:00
|
|
|
{ return std::make_unique<ASTJSONTest>(_config.filename); }
|
2018-08-03 17:30:18 +00:00
|
|
|
ASTJSONTest(std::string const& _filename);
|
|
|
|
|
2019-05-07 13:33:22 +00:00
|
|
|
TestResult run(std::ostream& _stream, std::string const& _linePrefix = "", bool const _formatted = false) override;
|
2018-08-03 17:30:18 +00:00
|
|
|
|
2018-11-16 01:09:04 +00:00
|
|
|
void printSource(std::ostream& _stream, std::string const& _linePrefix = "", bool const _formatted = false) const override;
|
|
|
|
void printUpdatedExpectations(std::ostream& _stream, std::string const& _linePrefix) const override;
|
2018-08-03 17:30:18 +00:00
|
|
|
private:
|
|
|
|
std::vector<std::pair<std::string, std::string>> m_sources;
|
|
|
|
std::string m_expectation;
|
|
|
|
std::string m_expectationLegacy;
|
|
|
|
std::string m_astFilename;
|
|
|
|
std::string m_legacyAstFilename;
|
|
|
|
std::string m_result;
|
|
|
|
std::string m_resultLegacy;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|