-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariable.rs
224 lines (201 loc) · 6.61 KB
/
variable.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
use slang_solidity::cst::{Query, QueryMatch, TextRange};
use crate::{
error::Result,
lint::{Diagnostic, ItemDiagnostics, ItemType},
natspec::{NatSpec, NatSpecKind},
};
use super::{
capture, extract_attributes, extract_comment, extract_parent_name, Attributes, Definition,
Parent, Validate, ValidationOptions, Visibility,
};
/// A state variable declaration
#[derive(Debug, Clone, bon::Builder)]
#[non_exhaustive]
#[builder(on(String, into))]
pub struct VariableDeclaration {
pub parent: Option<Parent>,
pub name: String,
pub span: TextRange,
pub natspec: Option<NatSpec>,
pub attributes: Attributes,
}
impl VariableDeclaration {
/// Check whether this variable requires inheritdoc when we enforce it
///
/// Public state variables must have inheritdoc.
fn requires_inheritdoc(&self) -> bool {
let parent_is_contract = matches!(self.parent, Some(Parent::Contract(_)));
let public = self.attributes.visibility == Visibility::Public;
parent_is_contract && public
}
}
impl Validate for VariableDeclaration {
fn parent(&self) -> Option<Parent> {
self.parent.clone()
}
fn name(&self) -> String {
self.name.clone()
}
fn span(&self) -> TextRange {
self.span.clone()
}
fn query() -> Query {
Query::parse(
"@variable [StateVariableDefinition
@variable_type type_name:[TypeName]
@variable_attr attributes:[StateVariableAttributes]
@variable_name name:[Identifier]
]",
)
.expect("query should compile")
}
fn extract(m: QueryMatch) -> Result<Definition> {
let variable = capture(&m, "variable")?;
let var_type = capture(&m, "variable_type")?;
let attributes = capture(&m, "variable_attr")?;
let name = capture(&m, "variable_name")?;
let span = var_type.text_range().start..variable.text_range().end;
let name = name.node().unparse().trim().to_string();
let natspec = extract_comment(variable.clone(), &[])?;
let parent = extract_parent_name(variable);
Ok(VariableDeclaration {
parent,
name,
span,
natspec,
attributes: extract_attributes(attributes),
}
.into())
}
fn validate(&self, options: &ValidationOptions) -> ItemDiagnostics {
let mut out = ItemDiagnostics {
parent: self.parent(),
item_type: ItemType::Variable,
name: self.name(),
span: self.span(),
diags: vec![],
};
// raise error if no NatSpec is available
let Some(natspec) = &self.natspec else {
if options.inheritdoc && self.requires_inheritdoc() {
out.diags.push(Diagnostic {
span: self.span(),
message: "@inheritdoc is missing".to_string(),
});
} else {
out.diags.push(Diagnostic {
span: self.span(),
message: "missing NatSpec".to_string(),
});
}
return out;
};
// if there is `inheritdoc`, no further validation is required
if natspec
.items
.iter()
.any(|n| matches!(n.kind, NatSpecKind::Inheritdoc { .. }))
{
return out;
} else if options.inheritdoc && self.requires_inheritdoc() {
out.diags.push(Diagnostic {
span: self.span(),
message: "@inheritdoc is missing".to_string(),
});
}
out
}
}
#[cfg(test)]
mod tests {
use semver::Version;
use similar_asserts::assert_eq;
use slang_solidity::{cst::NonterminalKind, parser::Parser};
use super::*;
static OPTIONS: ValidationOptions = ValidationOptions {
inheritdoc: true,
constructor: false,
struct_params: false,
enum_params: false,
};
fn parse_file(contents: &str) -> VariableDeclaration {
let parser = Parser::create(Version::new(0, 8, 0)).unwrap();
let output = parser.parse(NonterminalKind::SourceUnit, contents);
assert!(output.is_valid(), "{:?}", output.errors());
let cursor = output.create_tree_cursor();
let m = cursor
.query(vec![VariableDeclaration::query()])
.next()
.unwrap();
let def = VariableDeclaration::extract(m).unwrap();
def.as_variable().unwrap()
}
#[test]
fn test_variable() {
let contents = "contract Test is ITest {
/// @inheritdoc ITest
uint256 public a;
}";
let res = parse_file(contents).validate(&OPTIONS);
assert!(res.diags.is_empty(), "{:#?}", res.diags);
}
#[test]
fn test_variable_no_natspec_inheritdoc() {
let contents = "contract Test {
uint256 public a;
}";
let res = parse_file(contents).validate(&OPTIONS);
assert_eq!(res.diags.len(), 1);
assert_eq!(res.diags[0].message, "@inheritdoc is missing");
}
#[test]
fn test_variable_only_notice() {
let contents = "contract Test {
/// @notice The variable
uint256 public a;
}";
let res = parse_file(contents).validate(&OPTIONS);
assert_eq!(res.diags.len(), 1);
assert_eq!(res.diags[0].message, "@inheritdoc is missing");
}
#[test]
fn test_variable_multiline() {
let contents = "contract Test is ITest {
/**
* @inheritdoc ITest
*/
uint256 public a;
}";
let res = parse_file(contents).validate(&OPTIONS);
assert!(res.diags.is_empty(), "{:#?}", res.diags);
}
#[test]
fn test_requires_inheritdoc() {
let contents = "contract Test is ITest {
uint256 public a;
}";
let res = parse_file(contents);
assert!(res.requires_inheritdoc());
let contents = "contract Test is ITest {
uint256 internal a;
}";
let res = parse_file(contents);
assert!(!res.requires_inheritdoc());
}
#[test]
fn test_variable_no_inheritdoc() {
let contents = "contract Test {
uint256 internal a;
}";
let res = parse_file(contents).validate(
&ValidationOptions::builder()
.inheritdoc(false)
.constructor(false)
.struct_params(false)
.enum_params(false)
.build(),
);
assert_eq!(res.diags.len(), 1);
assert_eq!(res.diags[0].message, "missing NatSpec");
}
}