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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
use inflections::case::to_lower_case;
use proc_macro2::TokenStream;
use quote::quote;
use regex::Regex;
use synthez::{ParseAttrs, Required, ToTokens};
pub(crate) fn derive(input: TokenStream) -> syn::Result<TokenStream> {
let input = syn::parse2::<syn::DeriveInput>(input)?;
let definition = Definition::try_from(input)?;
Ok(quote! { #definition })
}
#[derive(Debug, Default, ParseAttrs)]
struct Attrs {
#[parse(value)]
regex: Required<syn::LitStr>,
#[parse(value)]
name: Option<syn::LitStr>,
}
#[derive(Debug, ToTokens)]
#[to_tokens(append(impl_parameter))]
struct Definition {
ident: syn::Ident,
generics: syn::Generics,
regex: Regex,
name: String,
}
impl TryFrom<syn::DeriveInput> for Definition {
type Error = syn::Error;
fn try_from(input: syn::DeriveInput) -> syn::Result<Self> {
let attrs: Attrs = Attrs::parse_attrs("param", &input)?;
let regex = Regex::new(&attrs.regex.value()).map_err(|e| {
syn::Error::new(attrs.regex.span(), format!("Invalid regex: {e}"))
})?;
let name = attrs.name.as_ref().map_or_else(
|| to_lower_case(&input.ident.to_string()),
syn::LitStr::value,
);
Ok(Self {
ident: input.ident,
generics: input.generics,
regex,
name,
})
}
}
impl Definition {
#[must_use]
fn impl_parameter(&self) -> TokenStream {
let ty = &self.ident;
let (impl_gens, ty_gens, where_clause) = self.generics.split_for_impl();
let (regex, name) = (self.regex.as_str(), &self.name);
quote! {
#[automatically_derived]
impl #impl_gens ::cucumber::Parameter for #ty #ty_gens
#where_clause
{
const REGEX: &'static str = #regex;
const NAME: &'static str = #name;
}
}
}
}
#[cfg(test)]
mod spec {
use quote::quote;
use syn::parse_quote;
#[test]
fn derives_impl() {
let input = parse_quote! {
#[param(regex = "cat|dog", name = "custom")]
struct Parameter;
};
let output = quote! {
#[automatically_derived]
impl ::cucumber::Parameter for Parameter {
const REGEX: &'static str = "cat|dog";
const NAME: &'static str = "custom";
}
};
assert_eq!(
super::derive(input).unwrap().to_string(),
output.to_string(),
);
}
#[test]
fn derives_impl_with_default_name() {
let input = parse_quote! {
#[param(regex = "cat|dog")]
struct Animal;
};
let output = quote! {
#[automatically_derived]
impl ::cucumber::Parameter for Animal {
const REGEX: &'static str = "cat|dog";
const NAME: &'static str = "animal";
}
};
assert_eq!(
super::derive(input).unwrap().to_string(),
output.to_string(),
);
}
#[test]
fn derives_impl_with_capturing_group() {
let input = parse_quote! {
#[param(regex = "(cat)|(dog)")]
struct Animal;
};
let output = quote! {
#[automatically_derived]
impl ::cucumber::Parameter for Animal {
const REGEX: &'static str = "(cat)|(dog)";
const NAME: &'static str = "animal";
}
};
assert_eq!(
super::derive(input).unwrap().to_string(),
output.to_string(),
);
}
#[test]
fn derives_impl_with_generics() {
let input = parse_quote! {
#[param(regex = "cat|dog", name = "custom")]
struct Parameter<T>(T);
};
let output = quote! {
#[automatically_derived]
impl<T> ::cucumber::Parameter for Parameter<T> {
const REGEX: &'static str = "cat|dog";
const NAME: &'static str = "custom";
}
};
assert_eq!(
super::derive(input).unwrap().to_string(),
output.to_string(),
);
}
#[test]
fn derives_impl_with_non_capturing_regex_groups() {
let input = parse_quote! {
#[param(regex = "cat|dog(?:s)?", name = "custom")]
struct Parameter<T>(T);
};
let output = quote! {
#[automatically_derived]
impl<T> ::cucumber::Parameter for Parameter<T> {
const REGEX: &'static str = "cat|dog(?:s)?";
const NAME: &'static str = "custom";
}
};
assert_eq!(
super::derive(input).unwrap().to_string(),
output.to_string(),
);
}
#[test]
fn regex_arg_is_required() {
let input = parse_quote! {
#[param(name = "custom")]
struct Parameter;
};
let err = super::derive(input).unwrap_err();
assert_eq!(
err.to_string(),
"`regex` argument of `#[param]` attribute is expected to be \
present, but is absent",
);
}
#[test]
fn invalid_regex() {
let input = parse_quote! {
#[param(regex = "(cat|dog")]
struct Parameter;
};
let err = super::derive(input).unwrap_err();
assert_eq!(
err.to_string(),
"\
Invalid regex: regex parse error:
(cat|dog
^
error: unclosed group",
);
}
}