tryexpand 0.13.0

Test harness for macro expansion
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
use core::panic;
use std::{
    ops::BitAnd,
    path::{Path, PathBuf},
};

use crate::{
    cargo::{self, CargoOutput},
    error::Result,
    options::Options,
    project::Project,
    utils,
};

#[derive(Copy, Clone, Eq, PartialEq, Debug)]
pub(crate) enum Action {
    Expand,
    Check,
    Test,
    Run,
}

#[derive(Copy, Clone, Eq, PartialEq, Debug)]
pub(crate) enum TestBehavior {
    OverwriteFiles,
    ExpectFiles,
}

#[derive(Copy, Clone, Eq, PartialEq, Debug)]
pub(crate) enum TestStatus {
    Success,
    Failure,
}

impl TestStatus {
    pub(crate) fn success(is_success: bool) -> Self {
        match is_success {
            true => Self::Success,
            false => Self::Failure,
        }
    }

    pub(crate) fn failure(is_failure: bool) -> Self {
        Self::success(!is_failure)
    }
}

impl std::ops::BitAnd for TestStatus {
    type Output = Self;

    fn bitand(self, rhs: Self) -> Self::Output {
        match (self, rhs) {
            (TestStatus::Success, TestStatus::Success) => TestStatus::Success,
            _ => TestStatus::Failure,
        }
    }
}

impl std::ops::BitAndAssign for TestStatus {
    fn bitand_assign(&mut self, rhs: Self) {
        *self = self.bitand(rhs);
    }
}

impl std::ops::BitOr for TestStatus {
    type Output = Self;

    fn bitor(self, rhs: Self) -> Self::Output {
        match (self, rhs) {
            (TestStatus::Success, _) | (_, TestStatus::Success) => TestStatus::Success,
            _ => TestStatus::Failure,
        }
    }
}

impl std::ops::BitOrAssign for TestStatus {
    fn bitor_assign(&mut self, rhs: Self) {
        use std::ops::BitOr;

        *self = self.bitor(rhs);
    }
}

#[derive(Clone, Eq, PartialEq, Debug)]
pub(crate) struct TestReport {
    pub action: ActionOutput,
    pub post_action: Option<ActionOutput>,
}

impl TestReport {
    pub fn evaluation(&self) -> TestStatus {
        let mut evaluation: TestStatus = self.action.evaluation();

        if let Some(post_action) = &self.post_action {
            evaluation &= post_action.evaluation();
        }

        evaluation
    }
}

#[derive(Clone, Eq, PartialEq, Debug)]
pub(crate) enum ActionOutput {
    Expand(CargoOutput),
    Check(CargoOutput),
    Test(CargoOutput),
    Run(CargoOutput),
}

impl ActionOutput {
    fn output(&self) -> &CargoOutput {
        match self {
            Self::Expand(output) => output,
            Self::Check(output) => output,
            Self::Test(output) => output,
            Self::Run(output) => output,
        }
    }

    fn evaluation(&self) -> TestStatus {
        match self {
            Self::Expand(output) => output.evaluation,
            Self::Check(output) => output.evaluation,
            Self::Test(output) => output.evaluation,
            Self::Run(output) => output.evaluation,
        }
    }
}

#[derive(Clone, Eq, PartialEq, Debug)]
pub(crate) enum TestOutcome {
    SnapshotMatch {
        path: PathBuf,
    },
    SnapshotMismatch {
        path: PathBuf,
        actual: String,
        expected: String,
    },
    SnapshotCreated {
        path: PathBuf,
        after: String,
    },
    SnapshotUpdated {
        path: PathBuf,
        before: String,
        after: String,
    },
    SnapshotExpected {
        path: PathBuf,
        content: String,
    },
    SnapshotUnexpected {
        path: PathBuf,
        content: String,
    },
    UnexpectedSuccess {
        source: String,
        expanded: Option<String>,
        output: Option<String>,
        error: Option<String>,
    },
    UnexpectedFailure {
        source: String,
        expanded: Option<String>,
        output: Option<String>,
        error: Option<String>,
    },
}

impl TestOutcome {
    pub(crate) fn as_status(&self) -> TestStatus {
        match self {
            Self::SnapshotMatch { .. } => TestStatus::Success,
            Self::SnapshotMismatch { .. } => TestStatus::Failure,
            Self::SnapshotCreated { .. } => TestStatus::Success,
            Self::SnapshotUpdated { .. } => TestStatus::Success,
            Self::SnapshotExpected { .. } => TestStatus::Failure,
            Self::SnapshotUnexpected { .. } => TestStatus::Failure,
            Self::UnexpectedSuccess { .. } => TestStatus::Failure,
            Self::UnexpectedFailure { .. } => TestStatus::Failure,
        }
    }
}

#[derive(Copy, Clone, Eq, PartialEq, Debug)]
enum Comparison {
    Match,
    Mismatch,
}

#[derive(Debug)]
pub(crate) struct TestPlan {
    pub action: Action,
    pub post_action: Option<Action>,
    pub behavior: TestBehavior,
    pub expectation: TestStatus,
}

#[derive(Debug)]
pub(crate) struct Test {
    pub bin: String,
    pub path: PathBuf,
}

impl Test {
    pub fn run(
        &mut self,
        plan: &TestPlan,
        project: &Project,
        options: &Options,
        observe: &mut dyn FnMut(TestOutcome),
    ) -> Result<TestStatus> {
        let TestPlan {
            action,
            post_action,
            behavior,
            expectation,
        } = plan;

        if let Some(post_action) = post_action {
            assert!(
                post_action != &Action::Expand,
                "the `expand` action is not allowed as a post-action"
            );

            assert!(
                plan.action == Action::Expand,
                "only the `expand` action can have a post-action"
            );
        }

        let behavior = if options.skip_overwrite {
            // If the `skip_overwrite` flag is set we just check files,
            // instead of overwriting. The main purpose of this behavior
            // is to allow for our own unit tests to run with `#[should_panic]`
            // on the same directory (just flipping `pass/` with `fail/` directories)
            // without it emitting snapshots that would then make the non-inverted
            // tests fail and vice versa:
            TestBehavior::ExpectFiles
        } else {
            *behavior
        };

        let action_output = match action {
            Action::Expand => ActionOutput::Expand(cargo::expand(project, self, options)?),
            Action::Check => ActionOutput::Check(cargo::check(project, self, options)?),
            Action::Test => ActionOutput::Test(cargo::test(project, self, options)?),
            Action::Run => ActionOutput::Run(cargo::run(project, self, options)?),
        };

        let post_action_output = if action_output.evaluation() == TestStatus::Success {
            if let Some(post_action) = post_action {
                let post_action = match post_action {
                    Action::Expand => panic!("unexpected `expand` as post-action"),
                    Action::Check => ActionOutput::Check(cargo::check(project, self, options)?),
                    Action::Test => ActionOutput::Test(cargo::test(project, self, options)?),
                    Action::Run => ActionOutput::Run(cargo::run(project, self, options)?),
                };
                Some(post_action)
            } else {
                None
            }
        } else {
            None
        };

        let report = TestReport {
            action: action_output,
            post_action: post_action_output,
        };

        let source = String::from_utf8_lossy(&utils::read(&self.path)?).into_owned();

        let evaluation = match (report.evaluation(), expectation) {
            (TestStatus::Success, TestStatus::Failure) => {
                self.report_unexpected_success(&source, &report, observe);
                TestStatus::Failure
            }
            (TestStatus::Failure, TestStatus::Success) => {
                self.report_unexpected_failure(&source, &report, observe);
                TestStatus::Failure
            }
            (TestStatus::Success, TestStatus::Success)
            | (TestStatus::Failure, TestStatus::Failure) => {
                self.process_snapshots(&report, behavior, observe)?
            }
        };

        Ok(evaluation)
    }

    fn process_snapshots(
        &mut self,
        report: &TestReport,
        behavior: TestBehavior,
        observe: &mut dyn FnMut(TestOutcome),
    ) -> Result<TestStatus> {
        let expanded_snapshot_path = self.path.with_extension(crate::OUT_RS_FILE_SUFFIX);
        let output_snapshot_path = self.path.with_extension(crate::OUT_TXT_FILE_SUFFIX);
        let error_snapshot_path = self.path.with_extension(crate::ERR_TXT_FILE_SUFFIX);

        if let Some(post_action) = &report.post_action {
            assert!(
                !matches!(post_action, ActionOutput::Expand(_)),
                "the `expand` action is not allowed as a post-action"
            );
            assert!(
                matches!(report.action, ActionOutput::Expand(_)),
                "only the `expand` action can have a post-action"
            );
        }

        let mut snapshots = vec![];

        // We always want the action's expansion outputs:
        match &report.action {
            ActionOutput::Expand(output) => {
                snapshots.push((&expanded_snapshot_path, output.stdout.clone()));
            }
            ActionOutput::Check(output) => {
                snapshots.push((&error_snapshot_path, output.stderr.clone()));
            }
            ActionOutput::Test(output) => {
                snapshots.push((&output_snapshot_path, output.stdout.clone()));
                snapshots.push((&error_snapshot_path, output.stderr.clone()));
            }
            ActionOutput::Run(output) => {
                snapshots.push((&output_snapshot_path, output.stdout.clone()));
                snapshots.push((&error_snapshot_path, output.stderr.clone()));
            }
        }

        match report.action.evaluation() {
            TestStatus::Failure => {
                snapshots.push((&error_snapshot_path, report.action.output().stderr.clone()));
            }
            TestStatus::Success => {
                if let Some(post_action) = &report.post_action {
                    match &post_action {
                        ActionOutput::Expand(_output) => {
                            unreachable!("`expand` should not be accessible as a post-action")
                        }
                        ActionOutput::Check(output) => {
                            snapshots.push((&error_snapshot_path, output.stderr.clone()));
                        }
                        ActionOutput::Test(output) => {
                            snapshots.push((&output_snapshot_path, output.stdout.clone()));
                            snapshots.push((&error_snapshot_path, output.stderr.clone()));
                        }
                        ActionOutput::Run(output) => {
                            snapshots.push((&output_snapshot_path, output.stdout.clone()));
                            snapshots.push((&error_snapshot_path, output.stderr.clone()));
                        }
                    }
                }
            }
        }

        self.evaluate_snapshots(snapshots, behavior, observe)?;

        Ok(report.evaluation())
    }

    fn report_unexpected_success(
        &mut self,
        source: &str,
        report: &TestReport,
        observe: &mut dyn FnMut(TestOutcome),
    ) {
        let source = source.to_owned();

        let action_output = report.action.output();
        let post_action_output = report
            .post_action
            .as_ref()
            .map(|post_action| post_action.output());

        let expanded = match &report.action {
            ActionOutput::Expand(output) => output.stdout.clone(),
            _ => None,
        };

        let (output, error) = match &post_action_output {
            Some(post_action) => (post_action.stdout.clone(), post_action.stderr.clone()),
            None => (None, action_output.stderr.clone()),
        };
        observe(TestOutcome::UnexpectedSuccess {
            source,
            expanded,
            output,
            error,
        });
    }

    fn report_unexpected_failure(
        &mut self,
        source: &str,
        report: &TestReport,
        observe: &mut dyn FnMut(TestOutcome),
    ) {
        let source = source.to_owned();

        let action_output = report.action.output();
        let post_action_output = report
            .post_action
            .as_ref()
            .map(|post_action| post_action.output());

        let expanded = match &report.action {
            ActionOutput::Expand(output) => output.stdout.clone(),
            _ => None,
        };

        let (output, error) = match post_action_output {
            Some(post_action) => (post_action.stdout.clone(), post_action.stderr.clone()),
            None => (None, action_output.stderr.clone()),
        };
        observe(TestOutcome::UnexpectedFailure {
            source,
            expanded,
            output,
            error,
        });
    }

    fn evaluate_snapshots(
        &mut self,
        snapshots: Vec<(&PathBuf, Option<String>)>,
        behavior: TestBehavior,
        observe: &mut dyn FnMut(TestOutcome),
    ) -> Result<TestStatus> {
        let mut outcomes = vec![];

        for (snapshot_path, actual) in snapshots {
            let expected = if snapshot_path.exists() {
                Some(String::from_utf8_lossy(&utils::read(snapshot_path)?).into_owned())
            } else {
                None
            };

            let outcome = match behavior {
                // We either create snapshots if the user requested so:
                TestBehavior::OverwriteFiles => {
                    self.evaluate_snapshot_overwriting_files(expected, actual, snapshot_path)?
                }
                // Or otherwise check for existing snapshots:
                TestBehavior::ExpectFiles => {
                    self.evaluate_snapshot_expecting_files(expected, actual, snapshot_path)?
                }
            };

            if let Some(outcome) = outcome {
                outcomes.push(outcome);
            }
        }

        let (successes, failures): (Vec<_>, Vec<_>) = outcomes
            .into_iter()
            .partition(|outcome| outcome.as_status() == TestStatus::Success);

        if !failures.is_empty() {
            for outcome in failures {
                observe(outcome);
            }
            return Ok(TestStatus::Failure);
        }

        for outcome in successes {
            observe(outcome);
        }

        Ok(TestStatus::Success)
    }

    fn evaluate_snapshot_overwriting_files(
        &mut self,
        expected: Option<String>,
        actual: Option<String>,
        snapshot_path: &Path,
    ) -> Result<Option<TestOutcome>> {
        let Some(actual) = actual else {
            return Ok(None);
        };

        if let Some(expected) = expected {
            if actual == expected {
                return Ok(None);
            }

            utils::write(snapshot_path, &actual)?;

            Ok(Some(TestOutcome::SnapshotUpdated {
                before: expected.clone(),
                after: actual.clone(),
                path: snapshot_path.to_owned(),
            }))
        } else {
            utils::write(snapshot_path, &actual)?;

            Ok(Some(TestOutcome::SnapshotCreated {
                after: actual.clone(),
                path: snapshot_path.to_owned(),
            }))
        }
    }

    fn evaluate_snapshot_expecting_files(
        &mut self,
        expected: Option<String>,
        actual: Option<String>,
        snapshot_path: &Path,
    ) -> Result<Option<TestOutcome>> {
        match (actual, expected) {
            (None, None) => Ok(Some(TestOutcome::SnapshotMatch {
                path: snapshot_path.to_owned(),
            })),
            (None, Some(expected)) => Ok(Some(TestOutcome::SnapshotUnexpected {
                content: expected,
                path: snapshot_path.to_owned(),
            })),
            (Some(actual), None) => Ok(Some(TestOutcome::SnapshotExpected {
                content: actual,
                path: snapshot_path.to_owned(),
            })),
            (Some(actual), Some(expected)) => {
                let comparison = Self::compare(&actual, &expected);
                match comparison {
                    Comparison::Match => Ok(Some(TestOutcome::SnapshotMatch {
                        path: snapshot_path.to_owned(),
                    })),
                    Comparison::Mismatch => Ok(Some(TestOutcome::SnapshotMismatch {
                        expected,
                        actual: actual.clone(),
                        path: snapshot_path.to_owned(),
                    })),
                }
            }
        }
    }

    fn compare(actual: &str, expected: &str) -> Comparison {
        if actual.lines().eq(expected.lines()) {
            Comparison::Match
        } else {
            Comparison::Mismatch
        }
    }
}