-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Derive
Arbitrary
for enums with a single variant (#3692)
Current implementation of deriving macro for arbitrary trait produces code that fails with a compilation error when invoked on a enum with a single variant due to type ambiguity in `match` expression scrutinee. This patch adds special handling of such enums, eliminating the redundant match and fixing the error. Resolves #3691 By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
- Loading branch information
1 parent
2565ef6
commit 4781b95
Showing
3 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Checking harness check_with_discriminant... | ||
SUCCESS\ | ||
"assertion failed: disc == 42" | ||
|
||
Checking harness check_with_named_args... | ||
SUCCESS\ | ||
"assertion failed: flag as u8 == 0 || flag as u8 == 1" | ||
2 of 2 cover properties satisfied | ||
|
||
Checking harness check_with_args... | ||
SUCCESS\ | ||
"assertion failed: c <= char::MAX" | ||
2 of 2 cover properties satisfied | ||
|
||
Checking harness check_simple... | ||
1 of 1 cover properties satisfied |
65 changes: 65 additions & 0 deletions
65
tests/ui/derive-arbitrary/single_variant_enum/single_variant_enum.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
// Copyright Kani Contributors | ||
// SPDX-License-Identifier: Apache-2.0 OR MIT | ||
//! Check that Kani can automatically derive Arbitrary enums. | ||
//! An arbitrary enum should always generate a valid arbitrary variant. | ||
|
||
extern crate kani; | ||
use kani::cover; | ||
|
||
#[derive(kani::Arbitrary)] | ||
enum Simple { | ||
Empty, | ||
} | ||
|
||
#[kani::proof] | ||
fn check_simple() { | ||
match kani::any::<Simple>() { | ||
Simple::Empty => cover!(), | ||
} | ||
} | ||
|
||
#[derive(kani::Arbitrary)] | ||
enum WithArgs { | ||
Args(char), | ||
} | ||
|
||
#[kani::proof] | ||
fn check_with_args() { | ||
match kani::any::<WithArgs>() { | ||
WithArgs::Args(c) => { | ||
assert!(c <= char::MAX); | ||
cover!(c == 'a'); | ||
cover!(c == '1'); | ||
} | ||
} | ||
} | ||
|
||
#[derive(kani::Arbitrary)] | ||
enum WithNamedArgs { | ||
Args { flag: bool }, | ||
} | ||
|
||
#[kani::proof] | ||
fn check_with_named_args() { | ||
match kani::any::<WithNamedArgs>() { | ||
WithNamedArgs::Args { flag } => { | ||
cover!(flag as u8 == 0); | ||
cover!(flag as u8 == 1); | ||
assert!(flag as u8 == 0 || flag as u8 == 1); | ||
} | ||
} | ||
} | ||
|
||
#[derive(kani::Arbitrary)] | ||
enum WithDiscriminant { | ||
Disc = 42, | ||
} | ||
|
||
#[kani::proof] | ||
fn check_with_discriminant() { | ||
let v = kani::any::<WithDiscriminant>(); | ||
let disc = v as i8; | ||
match v { | ||
WithDiscriminant::Disc => assert!(disc == 42), | ||
} | ||
} |