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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2018-08-03 17:30:18 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/AnsiColorized.h>
|
2021-10-27 11:22:02 +00:00
|
|
|
#include <libsolidity/interface/CompilerStack.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>
|
|
|
|
|
2020-08-26 17:01:25 +00:00
|
|
|
namespace solidity::frontend
|
|
|
|
{
|
|
|
|
class CompilerStack;
|
|
|
|
}
|
|
|
|
|
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:
|
2021-10-27 11:22:02 +00:00
|
|
|
struct TestVariant
|
|
|
|
{
|
|
|
|
TestVariant(std::string_view _baseName, CompilerStack::State _stopAfter):
|
|
|
|
baseName(_baseName),
|
|
|
|
stopAfter(_stopAfter)
|
|
|
|
{}
|
|
|
|
|
|
|
|
std::string name() const
|
|
|
|
{
|
|
|
|
return stopAfter == CompilerStack::State::Parsed ? "parseOnly" : "";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string astFilename() const
|
|
|
|
{
|
|
|
|
return std::string(baseName) +
|
|
|
|
(name().empty() ? "" : "_") +
|
|
|
|
name() +
|
|
|
|
".json";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string baseName;
|
|
|
|
CompilerStack::State stopAfter;
|
|
|
|
std::string result;
|
|
|
|
std::string expectation;
|
|
|
|
};
|
|
|
|
|
2019-02-06 11:10:05 +00:00
|
|
|
static std::unique_ptr<TestCase> create(Config const& _config)
|
2020-11-20 15:54:53 +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:
|
2020-08-26 17:01:25 +00:00
|
|
|
bool runTest(
|
2021-10-27 11:22:02 +00:00
|
|
|
TestVariant& _testVariant,
|
2020-07-08 20:08:50 +00:00
|
|
|
std::map<std::string, unsigned> const& _sourceIndices,
|
2020-08-26 17:01:25 +00:00
|
|
|
CompilerStack& _compiler,
|
|
|
|
std::ostream& _stream,
|
|
|
|
std::string const& _linePrefix = "",
|
|
|
|
bool const _formatted = false
|
|
|
|
);
|
|
|
|
void updateExpectation(
|
|
|
|
std::string const& _filename,
|
|
|
|
std::string const& _expectation,
|
2021-10-27 11:22:02 +00:00
|
|
|
std::string const& _variant
|
2020-08-26 17:01:25 +00:00
|
|
|
) const;
|
|
|
|
|
2021-10-27 11:22:02 +00:00
|
|
|
std::vector<TestVariant> m_variants;
|
|
|
|
|
2018-08-03 17:30:18 +00:00
|
|
|
std::vector<std::pair<std::string, std::string>> m_sources;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|