test_each_file 0.3.7

Generates a test for each file in a specified directory.
Documentation
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
#![doc = include_str!("../README.md")]
use proc_macro2::{Ident, Span, TokenStream};
use quote::{format_ident, quote};
use std::collections::{BTreeMap, BTreeSet, HashMap, HashSet};
use std::env;
use std::ffi::OsString;
use std::path::{Path, PathBuf};
use syn::parse::{Parse, ParseStream};
use syn::punctuated::Punctuated;
use syn::token::Async;
use syn::{bracketed, parse_macro_input, Expr, LitStr, Meta, Token};
use unicode_ident::{is_xid_continue, is_xid_start};

struct TestEachArgs {
    path: LitStr,
    module: Option<Ident>,
    function: Expr,
    extensions: Vec<String>,
    attributes: Vec<Meta>,
    async_fn: Option<Async>,
    ignore_patterns: IgnorePatterns,
}

macro_rules! abort {
    ($span:expr, $message:expr) => {
        return Err(syn::Error::new($span, $message))
    };
}

macro_rules! abort_token_stream {
    ($span:expr, $message:expr) => {
        return syn::Error::new($span, $message).into_compile_error().into()
    };
}

#[derive(Default)]
struct IgnorePatterns {
    patterns: HashMap<String, String>,
}

impl Parse for IgnorePatterns {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        if !input
            .fork()
            .parse::<Ident>()
            .ok()
            .is_some_and(|id| id == "ignore")
        {
            return Ok(IgnorePatterns::default());
        }
        let _: Ident = input.parse().unwrap();

        // Optional ":" separator
        let _ = input.parse::<Token![:]>();

        let content;
        syn::braced!(content in input);

        let mut patterns = HashMap::new();
        while !content.is_empty() {
            let key: LitStr = match content.parse() {
                Ok(k) => k,
                Err(e) => abort!(
                    e.span(),
                    "Expected a string literal for ignore pattern name."
                ),
            };

            if let Err(e) = content.parse::<Token![=>]>() {
                abort!(e.span(), "Expected `=>` after ignore pattern name.");
            }

            let reason: LitStr = match content.parse() {
                Ok(r) => r,
                Err(e) => abort!(e.span(), "Expected a string literal for ignore reason."),
            };

            patterns.insert(key.value(), reason.value());

            // Optional comma
            let _ = content.parse::<Token![,]>();
        }

        Ok(IgnorePatterns { patterns })
    }
}

impl IgnorePatterns {
    /// Check if a given name should be ignored
    ///
    /// Returns Some(reason) if ignored, or None if not ignored
    fn should_ignore(&self, name: &str) -> Option<String> {
        let lookup_name = name.strip_prefix("r#").unwrap_or(name);
        self.patterns.get(lookup_name).cloned()
    }
}

impl Parse for TestEachArgs {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        // Optionally parse attributes if `#` is used. Aborts if none are given.
        let attributes: Vec<Meta> = input
            .parse::<Token![#]>()
            .and_then(|_| {
                let content;
                bracketed!(content in input);

                match Punctuated::<Meta, Token![,]>::parse_separated_nonempty(&content) {
                    Ok(attributes) => Ok(attributes.into_iter().collect()),
                    Err(e) => abort!(e.span(), "Expected at least one attribute to be given."),
                }
            })
            .unwrap_or_default();

        // Optionally mark as async.
        // The async keyword is the error span if we did not specify an attribute.
        let async_span = input.span();
        let async_fn = match input.parse::<Token![async]>() {
            Ok(token) => {
                if attributes.is_empty() {
                    abort!(async_span, "Expected at least one attribute (e.g., `#[tokio::test]`) when `async` is given.");
                }
                Some(token)
            }
            Err(_) => None,
        };

        // Optionally parse extensions if the keyword `for` is used. Aborts if none are given.
        let extensions = input
            .parse::<Token![for]>()
            .and_then(|_| {
                let content;
                bracketed!(content in input);

                match Punctuated::<LitStr, Token![,]>::parse_separated_nonempty(&content) {
                    Ok(extensions) => Ok(extensions
                        .into_iter()
                        .map(|extension| extension.value())
                        .collect()),
                    Err(e) => abort!(e.span(), "Expected at least one extension to be given."),
                }
            })
            .unwrap_or_default();

        // Parse the path to the tests.
        if let Err(e) = input.parse::<Token![in]>() {
            abort!(e.span(), "Expected the keyword `in` before the path.");
        };

        let path = match input.parse::<LitStr>() {
            Ok(path) => path,
            Err(e) => abort!(e.span(), "Expected a path after the keyword 'in'."),
        };

        // Optionally parse module to put the tests in if the keyword `as` is used.
        let module = input
            .parse::<Token![as]>()
            .and_then(|_| match input.parse::<Ident>() {
                Ok(module) => Ok(module),
                Err(e) => abort!(e.span(), "Expected a module to be given."),
            })
            .ok();

        // Parse function to call.
        if let Err(e) = input.parse::<Token![=>]>() {
            abort!(e.span(), "Expected `=>` before the function to call.");
        };

        let function = match input.parse::<Expr>() {
            Ok(function) => function,
            Err(e) => abort!(e.span(), "Expected a function to call after `=>`."),
        };

        // Optionally parse ignore patterns if the keyword `ignore` is used.
        let ignore_patterns = IgnorePatterns::parse(input)?;

        Ok(Self {
            path,
            module,
            function,
            extensions,
            attributes,
            async_fn,
            ignore_patterns,
        })
    }
}

#[derive(Default)]
struct Tree {
    children: BTreeMap<PathBuf, Tree>,
    here: BTreeSet<PathBuf>,
}

impl Tree {
    fn new(base: &Path, extensions: &[String]) -> Result<Self, String> {
        let mut tree = Self::default();
        for entry in base.read_dir().unwrap() {
            let mut entry = entry.unwrap().path();
            if entry.is_file() {
                if !extensions.is_empty() {
                    // Ignore file if it does not have one extension.
                    let Some(extension) = entry.extension() else {
                        continue;
                    };
                    // Ignore the file if the extension is not contained in the provided extensions.
                    if !extensions
                        .iter()
                        .any(|test_extension| test_extension == extension.to_str().unwrap())
                    {
                        continue;
                    }
                    // Trim extension.
                    entry.set_extension("");
                }
                tree.here.insert(entry);
            } else if entry.is_dir() {
                tree.children.insert(
                    entry.as_path().to_path_buf(),
                    Self::new(entry.as_path(), extensions)?,
                );
            } else {
                return Err(format!("Unsupported path: {entry:#?}."));
            }
        }
        Ok(tree)
    }
}

enum Type {
    File,
    Path,
}

/// Sanitize a string so that it can be a valid identifier.
/// Replaces invalid characters with underscores
fn sanitize_ident(input: &str) -> Ident {
    let name: String = input
        .chars()
        .map(|c| if is_xid_continue(c) { c } else { '_' })
        .collect();

    if !is_xid_start(name.chars().next().expect("Name is not empty")) {
        format_ident!("test_{name}")
    } else {
        Ident::new_raw(&name, Span::call_site())
    }
}

/// Given a starting name and a set of taken names, generate a new name that is unique in the `taken_names` set
fn generate_name(starting_name: Ident, taken_names: &mut HashSet<Ident>) -> Ident {
    if taken_names.insert(starting_name.clone()) {
        return starting_name;
    }

    for i in 2.. {
        let new_name = format_ident!("{starting_name}_{i}");
        if taken_names.insert(new_name.clone()) {
            return new_name;
        }
    }

    unreachable!()
}

fn generate_from_tree(
    tree: &Tree,
    parsed: &TestEachArgs,
    stream: &mut TokenStream,
    invocation_type: &Type,
) -> Result<(), String> {
    let mut taken_names_folders = HashSet::new();
    for (name, directory) in tree.children.iter() {
        let file_name = name.file_name().unwrap().to_str().unwrap();
        let file_name = sanitize_ident(file_name);
        let file_name = generate_name(file_name, &mut taken_names_folders);

        let mut sub_stream = TokenStream::new();
        generate_from_tree(directory, parsed, &mut sub_stream, invocation_type)?;
        stream.extend(quote! {
            mod #file_name {
                use super::*;
                #sub_stream
            }
        });
    }

    let mut taken_names_files = HashSet::new();
    for file in tree.here.iter() {
        let file_name = file.file_stem().unwrap().to_str().unwrap();
        let file_name = sanitize_ident(file_name);
        let file_name = generate_name(file_name, &mut taken_names_files);

        let function = &parsed.function;

        let arguments: TokenStream = if parsed.extensions.is_empty() {
            let input = file.canonicalize().unwrap();
            let input = input.to_str().unwrap();

            match invocation_type {
                Type::File => quote!(include_str!(#input)),
                Type::Path => quote!(std::path::Path::new(#input)),
            }
        } else {
            let mut arguments = TokenStream::new();

            for extension in &parsed.extensions {
                // Add `.extension` to the end of the filename
                let mut file: OsString = file.clone().into();
                file.push(".");
                file.push(extension);
                let file: PathBuf = file.into();

                // Canonicalize the file path
                let input = match file.canonicalize() {
                    Ok(path) => path,
                    Err(e) => {
                        return Err(format!(
                            "Failed to read expected file {}.{extension}: {e}",
                            file.display()
                        ))
                    }
                };
                let input = input.to_str().unwrap();

                arguments.extend(match invocation_type {
                    Type::File => quote!(include_str!(#input),),
                    Type::Path => quote!(std::path::Path::new(#input),),
                });
            }

            quote!([#arguments])
        };

        for attribute in &parsed.attributes {
            stream.extend(quote! {
                #[#attribute]
            });
        }

        if let Some(reason) = parsed.ignore_patterns.should_ignore(&file_name.to_string()) {
            stream.extend(quote! {
                #[ignore = #reason]
            });
        }

        if let Some(async_keyword) = &parsed.async_fn {
            // For async functions, we'd need something like `#[tokio::test]` instead of `#[test]`.
            // Here we assume the user will have already provided that in the list of attributes.
            stream.extend(quote! {
                #async_keyword fn #file_name() {
                    (#function)(#arguments).await
                }
            });
        } else {
            // Default, non-async test.
            stream.extend(quote! {
                #[test]
                fn #file_name() {
                    (#function)(#arguments)
                }
            });
        }
    }

    Ok(())
}

fn test_each(input: proc_macro::TokenStream, invocation_type: &Type) -> proc_macro::TokenStream {
    let parsed = parse_macro_input!(input as TestEachArgs);

    let path = parsed.path.value();
    let path = Path::new(&path);
    if !path.is_dir() {
        let abs_path: PathBuf = env::current_dir()
            .unwrap_or_default()
            .join(path)
            // Use components().collect() to normalize path
            .components()
            .collect();
        abort_token_stream!(
            parsed.path.span(),
            format!("Given directory does not exist: {abs_path:?}")
        );
    }

    let mut tokens = TokenStream::new();

    let files = match Tree::new(parsed.path.value().as_ref(), &parsed.extensions) {
        Ok(files) => files,
        Err(e) => abort_token_stream!(parsed.path.span(), e),
    };

    if let Err(e) = generate_from_tree(&files, &parsed, &mut tokens, invocation_type) {
        abort_token_stream!(parsed.path.span(), e)
    }

    if let Some(module) = parsed.module {
        tokens = quote! {
            #[cfg(test)]
            mod #module {
                use super::*;
                #tokens
            }
        }
    }

    proc_macro::TokenStream::from(tokens)
}

/// Easily generate tests for files in a specified directory for comprehensive testing.
///
/// See crate level documentation for details.
#[proc_macro]
pub fn test_each_file(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
    test_each(input, &Type::File)
}

/// Easily generate tests for paths in a specified directory for comprehensive testing.
///
/// See crate level documentation for details.
#[proc_macro]
pub fn test_each_path(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
    test_each(input, &Type::Path)
}