foundry_config/inline/conf_parser.rs
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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
use super::{remove_whitespaces, InlineConfigParserError};
use crate::{inline::INLINE_CONFIG_PREFIX, InlineConfigError, NatSpec};
use regex::Regex;
/// This trait is intended to parse configurations from
/// structured text. Foundry users can annotate Solidity test functions,
/// providing special configs just for the execution of a specific test.
///
/// An example:
///
/// ```solidity
/// contract MyTest is Test {
/// /// forge-config: default.fuzz.runs = 100
/// /// forge-config: ci.fuzz.runs = 500
/// function test_SimpleFuzzTest(uint256 x) public {...}
///
/// /// forge-config: default.fuzz.runs = 500
/// /// forge-config: ci.fuzz.runs = 10000
/// function test_ImportantFuzzTest(uint256 x) public {...}
/// }
/// ```
pub trait InlineConfigParser
where
Self: Clone + Default + Sized + 'static,
{
/// Returns a config key that is common to all valid configuration lines
/// for the current impl. This helps to extract correct values out of a text.
///
/// An example key would be `fuzz` of `invariant`.
fn config_key() -> String;
/// Tries to override `self` properties with values specified in the `configs` parameter.
///
/// Returns
/// - `Some(Self)` in case some configurations are merged into self.
/// - `None` in case there are no configurations that can be applied to self.
/// - `Err(InlineConfigParserError)` in case of wrong configuration.
fn try_merge(&self, configs: &[String]) -> Result<Option<Self>, InlineConfigParserError>;
/// Validates and merges the natspec configs for current profile into the current config.
fn merge(&self, natspec: &NatSpec) -> Result<Option<Self>, InlineConfigError> {
let config_key = Self::config_key();
let configs = natspec
.current_profile_configs()
.filter(|l| l.contains(&config_key))
.collect::<Vec<String>>();
self.try_merge(&configs).map_err(|e| {
let line = natspec.debug_context();
InlineConfigError { line, source: e }
})
}
/// Given a list of config lines, returns all available pairs (key, value) matching the current
/// config key.
///
/// # Examples
///
/// ```ignore
/// assert_eq!(
/// get_config_overrides(&[
/// "forge-config: default.invariant.runs = 500",
/// "forge-config: default.invariant.depth = 500",
/// "forge-config: ci.invariant.depth = 500",
/// "forge-config: ci.fuzz.runs = 10",
/// ]),
/// [("runs", "500"), ("depth", "500"), ("depth", "500")]
/// );
/// ```
fn get_config_overrides(config_lines: &[String]) -> Vec<(String, String)> {
let mut result: Vec<(String, String)> = vec![];
let config_key = Self::config_key();
let profile = ".*";
let prefix = format!("^{INLINE_CONFIG_PREFIX}:{profile}{config_key}\\.");
let re = Regex::new(&prefix).unwrap();
config_lines
.iter()
.map(|l| remove_whitespaces(l))
.filter(|l| re.is_match(l))
.map(|l| re.replace(&l, "").to_string())
.for_each(|line| {
let key_value = line.split('=').collect::<Vec<&str>>(); // i.e. "['runs', '500']"
if let Some(key) = key_value.first() {
if let Some(value) = key_value.last() {
result.push((key.to_string(), value.to_string()));
}
}
});
result
}
}
/// Checks if all configuration lines specified in `natspec` use a valid profile.
///
/// i.e. Given available profiles
/// ```rust
/// let _profiles = vec!["ci", "default"];
/// ```
/// A configuration like `forge-config: ciii.invariant.depth = 1` would result
/// in an error.
pub fn validate_profiles(natspec: &NatSpec, profiles: &[String]) -> Result<(), InlineConfigError> {
for config in natspec.config_lines() {
if !profiles.iter().any(|p| config.starts_with(&format!("{INLINE_CONFIG_PREFIX}:{p}."))) {
let err_line: String = natspec.debug_context();
let profiles = format!("{profiles:?}");
Err(InlineConfigError {
source: InlineConfigParserError::InvalidProfile(config, profiles),
line: err_line,
})?
}
}
Ok(())
}
/// Tries to parse a `u32` from `value`. The `key` argument is used to give details
/// in the case of an error.
pub fn parse_config_u32(key: String, value: String) -> Result<u32, InlineConfigParserError> {
value.parse().map_err(|_| InlineConfigParserError::ParseInt(key, value))
}
/// Tries to parse a `bool` from `value`. The `key` argument is used to give details
/// in the case of an error.
pub fn parse_config_bool(key: String, value: String) -> Result<bool, InlineConfigParserError> {
value.parse().map_err(|_| InlineConfigParserError::ParseBool(key, value))
}
#[cfg(test)]
mod tests {
use crate::{inline::conf_parser::validate_profiles, NatSpec};
#[test]
fn can_reject_invalid_profiles() {
let profiles = ["ci".to_string(), "default".to_string()];
let natspec = NatSpec {
contract: Default::default(),
function: Default::default(),
line: Default::default(),
docs: r"
forge-config: ciii.invariant.depth = 1
forge-config: default.invariant.depth = 1
"
.into(),
};
let result = validate_profiles(&natspec, &profiles);
assert!(result.is_err());
}
#[test]
fn can_accept_valid_profiles() {
let profiles = ["ci".to_string(), "default".to_string()];
let natspec = NatSpec {
contract: Default::default(),
function: Default::default(),
line: Default::default(),
docs: r"
forge-config: ci.invariant.depth = 1
forge-config: default.invariant.depth = 1
"
.into(),
};
let result = validate_profiles(&natspec, &profiles);
assert!(result.is_ok());
}
}