-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
118 additions
and
18 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,113 @@ | ||
// Copyright Kani Contributors | ||
// SPDX-License-Identifier: Apache-2.0 OR MIT | ||
// | ||
// Check that users can generate range structures | ||
|
||
extern crate kani; | ||
|
||
use std::ops::{Bound, Range, RangeFrom, RangeInclusive, RangeTo, RangeToInclusive}; | ||
|
||
#[kani::proof] | ||
fn bound() { | ||
let elem: Wrapper<Bound<u8>> = kani::any(); | ||
assert!(elem < 100); | ||
} | ||
|
||
#[kani::proof] | ||
fn range() { | ||
let elem: Wrapper<Range<u8>> = kani::any(); | ||
match elem.0 { | ||
Bound::Included(elem) => { | ||
assert!(elem < 100); | ||
} | ||
Bound::Excluded(elem) => { | ||
assert!(elem < 100); | ||
} | ||
Bound::Unbounded => {} | ||
} | ||
} | ||
|
||
#[kani::proof] | ||
fn range_from() { | ||
let elem: Wrapper<RangeFrom<u8>> = kani::any(); | ||
assert!(elem.0.start < 100); | ||
} | ||
|
||
#[kani::proof] | ||
fn range_inclusive() { | ||
let elem: Wrapper<RangeInclusive<u8>> = kani::any(); | ||
assert!(*elem.0.start() < 100); | ||
assert!(*elem.0.end() < 100); | ||
} | ||
|
||
#[kani::proof] | ||
fn range_to() { | ||
let elem: Wrapper<RangeTo<u8>> = kani::any(); | ||
assert!(elem.0.end < 100); | ||
} | ||
|
||
#[kani::proof] | ||
fn range_to_inclusive() { | ||
let elem: Wrapper<RangeToInclusive<u8>> = kani::any(); | ||
assert!(elem.0.end < 100); | ||
} | ||
|
||
struct Wrapper<T>(T); | ||
|
||
impl kani::Arbitrary for Wrapper<Bound<u8>> { | ||
fn any() -> Self { | ||
let val = kani::any(); | ||
match val { | ||
Bound::Included(elem) => { | ||
kani::assume(elem < 100); | ||
} | ||
Bound::Excluded(elem) => { | ||
kani::assume(elem < 100); | ||
} | ||
Bound::Unbounded => {} | ||
} | ||
Self(val) | ||
} | ||
} | ||
|
||
impl kani::Arbitrary for Wrapper<Range<u8>> { | ||
fn any() -> Self { | ||
let val = kani::any()..kani::any(); | ||
kani::assume(val.start < 100); | ||
kani::assume(val.end < 100); | ||
Self(val) | ||
} | ||
} | ||
|
||
impl kani::Arbitrary for Wrapper<RangeFrom<u8>> { | ||
fn any() -> Self { | ||
let val = kani::any()..; | ||
kani::assume(val.start < 100); | ||
Self(val) | ||
} | ||
} | ||
|
||
impl kani::Arbitrary for Wrapper<RangeInclusive<u8>> { | ||
fn any() -> Self { | ||
let val = kani::any()..=kany::any(); | ||
kani::assume(*val.start() < 100); | ||
kani::assume(*val.end() < 100); | ||
Self(val) | ||
} | ||
} | ||
|
||
impl kani::Arbitrary for Wrapper<RangeTo<u8>> { | ||
fn any() -> Self { | ||
let val = ..kany::any(); | ||
kani::assume(val.end < 100); | ||
Self(val) | ||
} | ||
} | ||
|
||
impl kani::Arbitrary for Wrapper<RangeToInclusive<u8>> { | ||
fn any() -> Self { | ||
let val = ..=kany::any(); | ||
kani::assume(val.end < 100); | ||
Self(val) | ||
} | ||
} |