mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-25 11:37:59 +00:00
Initial parser backbone
This commit is contained in:
@@ -0,0 +1,228 @@
|
||||
//! This module contains a parser for the Solidity semantic tests allowing them to be parsed into
|
||||
//! regular [`Metadata`] objects that can be executed by the testing framework.
|
||||
//!
|
||||
//! [`Metadata`]: crate::metadata::Metadata
|
||||
|
||||
use std::{
|
||||
collections::{BTreeMap, VecDeque},
|
||||
path::PathBuf,
|
||||
};
|
||||
|
||||
use anyhow::{Context, Result, anyhow};
|
||||
|
||||
/// This enum describes the various sections that a semantic test can contain.
|
||||
#[derive(Clone, Debug)]
|
||||
pub enum SemanticTestSection {
|
||||
/// A source code section that consists of Solidity code.
|
||||
///
|
||||
/// Source code sections might have a file name and they might not. Take the following section
|
||||
/// as an example which doesn't contain a filename
|
||||
///
|
||||
/// ```solidity
|
||||
/// contract C {
|
||||
/// bytes data;
|
||||
/// function () pure returns (bytes memory) f;
|
||||
/// constructor() {
|
||||
/// data = M.longdata();
|
||||
/// f = M.longdata;
|
||||
/// }
|
||||
/// function test() public view returns (bool) {
|
||||
/// return keccak256(data) == keccak256(f());
|
||||
/// }
|
||||
/// }
|
||||
/// ```
|
||||
///
|
||||
/// The above will translate into this enum variant and without a defined filename for the code.
|
||||
/// However, the following will translate into this variant of the enum with a defined file name
|
||||
///
|
||||
/// ```solidity
|
||||
/// ==== Source: main.sol ====
|
||||
/// contract C {
|
||||
/// bytes data;
|
||||
/// function () pure returns (bytes memory) f;
|
||||
/// constructor() {
|
||||
/// data = M.longdata();
|
||||
/// f = M.longdata;
|
||||
/// }
|
||||
/// function test() public view returns (bool) {
|
||||
/// return keccak256(data) == keccak256(f());
|
||||
/// }
|
||||
/// }
|
||||
/// ```
|
||||
///
|
||||
/// This is because of the use of the `Source` directive at the start of the section.
|
||||
///
|
||||
/// Note the following: All tests will be run on the last declared contract in the semantic test
|
||||
/// and therefore the order of the contracts matters.
|
||||
SourceCode {
|
||||
file_name: Option<PathBuf>,
|
||||
content: String,
|
||||
},
|
||||
|
||||
/// An external source section from the solidity semantic tests.
|
||||
///
|
||||
/// External source sections from the solidity semantic tests are the simplest sections out of
|
||||
/// them all. They look like the following:
|
||||
///
|
||||
/// ```solidity
|
||||
/// ==== ExternalSource: _prbmath/PRBMathSD59x18.sol ====
|
||||
/// ```
|
||||
///
|
||||
/// And they can be thought of as a directive to the compiler to include these contracts when
|
||||
/// compiling the test contract.
|
||||
ExternalSource { path: PathBuf },
|
||||
|
||||
/// A test configuration section
|
||||
///
|
||||
/// This section contains various configuration and filters that are used for the tests and its
|
||||
/// always the section that comes right before the actual tests. This section looks like the
|
||||
/// following:
|
||||
///
|
||||
/// ```solidity
|
||||
/// // ====
|
||||
/// // ABIEncoderV1Only: true
|
||||
/// // compileViaYul: false
|
||||
/// // ----
|
||||
/// ```
|
||||
///
|
||||
/// We represent this section as a [`BTreeMap`] mapping [`String`]s to [`String`]s.
|
||||
TestConfiguration {
|
||||
configuration: BTreeMap<String, String>,
|
||||
},
|
||||
|
||||
/// A test inputs section.
|
||||
///
|
||||
/// This section consists of all of the lines that make up the test inputs or the test steps
|
||||
/// which is the final section found in the semantic test files. This section looks like the
|
||||
/// following:
|
||||
///
|
||||
/// ```solidity
|
||||
/// // ----
|
||||
/// // f1() -> 0x20, 0x40, 0x20, 0
|
||||
/// // f2(string): 0x20, 0 -> 0x20, 0x40, 0x20, 0
|
||||
/// // f2(string): 0x20, 0, 0 -> 0x20, 0x40, 0x20, 0
|
||||
/// // g1() -> 32, 0
|
||||
/// // g2(string): 0x20, 0 -> 0x20, 0
|
||||
/// // g2(string): 0x20, 0, 0 -> 0x20, 0
|
||||
/// ```
|
||||
TestInputs { lines: Vec<String> },
|
||||
}
|
||||
|
||||
impl SemanticTestSection {
|
||||
const SOURCE_SECTION_MARKER: &str = "==== Source:";
|
||||
const EXTERNAL_SOURCE_SECTION_MARKER: &str = "==== ExternalSource:";
|
||||
const TEST_CONFIGURATION_SECTION_MARKER: &str = "// ====";
|
||||
const TEST_INPUTS_SECTION_MARKER: &str = "// ----";
|
||||
|
||||
pub fn parse_source_into_sections(source: impl AsRef<str>) -> Result<Vec<Self>> {
|
||||
let mut sections = VecDeque::<Self>::new();
|
||||
sections.push_back(Self::SourceCode {
|
||||
file_name: None,
|
||||
content: Default::default(),
|
||||
});
|
||||
|
||||
for line in source.as_ref().split('\n') {
|
||||
if let Some(new_section) = sections
|
||||
.back_mut()
|
||||
.expect("Impossible case - we have at least one item in the sections")
|
||||
.append_line(line)?
|
||||
{
|
||||
sections.push_back(new_section);
|
||||
}
|
||||
}
|
||||
|
||||
let first_section = sections
|
||||
.front()
|
||||
.expect("Impossible case - there's always at least one section");
|
||||
let remove_first_section = match first_section {
|
||||
SemanticTestSection::SourceCode { file_name, content } => {
|
||||
file_name.is_none() && content.is_empty()
|
||||
}
|
||||
SemanticTestSection::ExternalSource { .. }
|
||||
| SemanticTestSection::TestConfiguration { .. }
|
||||
| SemanticTestSection::TestInputs { .. } => false,
|
||||
};
|
||||
if remove_first_section {
|
||||
sections.pop_front();
|
||||
}
|
||||
|
||||
Ok(sections.into_iter().collect())
|
||||
}
|
||||
|
||||
/// Appends a line to a semantic test section.
|
||||
///
|
||||
/// This method takes in the current section and a new line and attempts to append it to parse
|
||||
/// it and append it to the current section. If the line is found to be the start of a new
|
||||
/// section then no changes will be made to the current section and instead the line will be
|
||||
/// interpreted according to the rules of new sections.
|
||||
pub fn append_line(&mut self, line: impl AsRef<str>) -> Result<Option<Self>> {
|
||||
let line = line.as_ref();
|
||||
if line.is_empty() {
|
||||
Ok(None)
|
||||
} else if let Some(source_path) = line.strip_prefix(Self::SOURCE_SECTION_MARKER) {
|
||||
let source_code_file_path = source_path
|
||||
.trim()
|
||||
.split(' ')
|
||||
.next()
|
||||
.context("Failed to find the source code file path")?;
|
||||
Ok(Some(Self::SourceCode {
|
||||
file_name: Some(PathBuf::from(source_code_file_path)),
|
||||
content: Default::default(),
|
||||
}))
|
||||
} else if let Some(external_source_path) =
|
||||
line.strip_prefix(Self::EXTERNAL_SOURCE_SECTION_MARKER)
|
||||
{
|
||||
let source_code_file_path = external_source_path
|
||||
.trim()
|
||||
.split(' ')
|
||||
.next()
|
||||
.context("Failed to find the source code file path")?;
|
||||
Ok(Some(Self::ExternalSource {
|
||||
path: PathBuf::from(source_code_file_path),
|
||||
}))
|
||||
} else if line == Self::TEST_CONFIGURATION_SECTION_MARKER {
|
||||
Ok(Some(Self::TestConfiguration {
|
||||
configuration: Default::default(),
|
||||
}))
|
||||
} else if line == Self::TEST_INPUTS_SECTION_MARKER {
|
||||
Ok(Some(Self::TestInputs {
|
||||
lines: Default::default(),
|
||||
}))
|
||||
} else {
|
||||
match self {
|
||||
SemanticTestSection::SourceCode { content, .. } => {
|
||||
content.push('\n');
|
||||
content.push_str(line);
|
||||
Ok(None)
|
||||
}
|
||||
SemanticTestSection::ExternalSource { .. } => Ok(Some(Self::SourceCode {
|
||||
file_name: None,
|
||||
content: line.to_owned(),
|
||||
})),
|
||||
SemanticTestSection::TestConfiguration { configuration } => {
|
||||
let line = line
|
||||
.strip_prefix("//")
|
||||
.with_context(|| {
|
||||
format!("Line doesn't contain test configuration prefix: {line}")
|
||||
})?
|
||||
.trim();
|
||||
let mut splitted = line.split(':');
|
||||
let key = splitted.next().context("Failed to find the key")?.trim();
|
||||
let value = splitted.next().context("Failed to find the value")?.trim();
|
||||
configuration.insert(key.to_owned(), value.to_owned());
|
||||
Ok(None)
|
||||
}
|
||||
SemanticTestSection::TestInputs { lines } => {
|
||||
let line = line
|
||||
.strip_prefix("//")
|
||||
.ok_or_else(|| anyhow!("Line doesn't contain test input prefix: {line}"))
|
||||
.map(str::trim)?;
|
||||
if !line.starts_with('#') {
|
||||
lines.push(line.to_owned());
|
||||
}
|
||||
Ok(None)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user