Skip to content

Commit 383c9c0

Browse files
authored
Merge pull request #99 from schneiderfelipe/support-quickcheck
Support quickcheck
2 parents f53ee9a + d3ea7c7 commit 383c9c0

File tree

5 files changed

+84
-0
lines changed

5 files changed

+84
-0
lines changed

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ categories = ["data-structures"]
1717
rust-version = "1.66.0"
1818

1919
[dependencies]
20+
quickcheck = { version = "1.0.3", optional = true }
2021
serde = { version = "1", optional = true }
2122

2223
[dev-dependencies]
@@ -42,6 +43,7 @@ nightly = []
4243
# Requires a nightly compiler because `const_btree_new` is an unstable feature,
4344
# but is soon to be stabilized: <https://github.com/rust-lang/rust/issues/71835>
4445
const_fn = []
46+
quickcheck = ["dep:quickcheck"]
4547

4648
[[bench]]
4749
name = "benches"

src/inclusive_map.rs

+22
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,21 @@ where
103103
}
104104
}
105105

106+
#[cfg(feature = "quickcheck")]
107+
impl<K, V> quickcheck::Arbitrary for RangeInclusiveMap<K, V>
108+
where
109+
K: quickcheck::Arbitrary + Ord + StepLite,
110+
V: quickcheck::Arbitrary + Eq,
111+
{
112+
fn arbitrary(g: &mut quickcheck::Gen) -> Self {
113+
// REVISIT: allocation could be avoided if Gen::gen_size were public (https://github.com/BurntSushi/quickcheck/issues/326#issue-2653601170)
114+
<alloc::vec::Vec<(RangeInclusive<_>, _)>>::arbitrary(g)
115+
.into_iter()
116+
.filter(|(range, _)| !range.is_empty())
117+
.collect()
118+
}
119+
}
120+
106121
impl<K, V, StepFnsT> RangeInclusiveMap<K, V, StepFnsT> {
107122
/// Gets an iterator over all pairs of key range and value,
108123
/// ordered by key range.
@@ -1920,4 +1935,11 @@ mod tests {
19201935
const _MAP: RangeInclusiveMap<u32, bool> = RangeInclusiveMap::new();
19211936
#[cfg(feature = "const_fn")]
19221937
const _MAP2: RangeInclusiveMap<u32, bool> = RangeInclusiveMap::new_with_step_fns();
1938+
1939+
#[cfg(feature = "quickcheck")]
1940+
quickcheck::quickcheck! {
1941+
fn prop(xs: RangeInclusiveMap<usize, usize>) -> bool {
1942+
xs == xs
1943+
}
1944+
}
19231945
}

src/inclusive_set.rs

+19
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,18 @@ impl<T, StepFnsT> Default for RangeInclusiveSet<T, StepFnsT> {
3939
}
4040
}
4141

42+
#[cfg(feature = "quickcheck")]
43+
impl<K> quickcheck::Arbitrary for RangeInclusiveSet<K>
44+
where
45+
K: quickcheck::Arbitrary + Ord + StepLite,
46+
{
47+
fn arbitrary(g: &mut quickcheck::Gen) -> Self {
48+
Self {
49+
rm: RangeInclusiveMap::arbitrary(g),
50+
}
51+
}
52+
}
53+
4254
impl<T> RangeInclusiveSet<T, T>
4355
where
4456
T: Ord + Clone + StepLite,
@@ -827,4 +839,11 @@ mod tests {
827839
const _SET: RangeInclusiveSet<u32> = RangeInclusiveSet::new();
828840
#[cfg(feature = "const_fn")]
829841
const _SET2: RangeInclusiveSet<u32> = RangeInclusiveSet::new_with_step_fns();
842+
843+
#[cfg(feature = "quickcheck")]
844+
quickcheck::quickcheck! {
845+
fn prop(xs: RangeInclusiveSet<usize, usize>) -> bool {
846+
xs == xs
847+
}
848+
}
830849
}

src/map.rs

+22
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,21 @@ where
8383
}
8484
}
8585

86+
#[cfg(feature = "quickcheck")]
87+
impl<K, V> quickcheck::Arbitrary for RangeMap<K, V>
88+
where
89+
K: quickcheck::Arbitrary + Ord,
90+
V: quickcheck::Arbitrary + Eq,
91+
{
92+
fn arbitrary(g: &mut quickcheck::Gen) -> Self {
93+
// REVISIT: allocation could be avoided if Gen::gen_size were public (https://github.com/BurntSushi/quickcheck/issues/326#issue-2653601170)
94+
<alloc::vec::Vec<(Range<_>, _)>>::arbitrary(g)
95+
.into_iter()
96+
.filter(|(range, _)| !range.is_empty())
97+
.collect()
98+
}
99+
}
100+
86101
impl<K, V> RangeMap<K, V> {
87102
/// Makes a new empty `RangeMap`.
88103
#[cfg(feature = "const_fn")]
@@ -1818,4 +1833,11 @@ mod tests {
18181833

18191834
#[cfg(feature = "const_fn")]
18201835
const _MAP: RangeMap<u32, bool> = RangeMap::new();
1836+
1837+
#[cfg(feature = "quickcheck")]
1838+
quickcheck::quickcheck! {
1839+
fn prop(xs: RangeMap<usize, usize>) -> bool {
1840+
xs == xs
1841+
}
1842+
}
18211843
}

src/set.rs

+19
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,18 @@ impl<T> Default for RangeSet<T> {
3939
}
4040
}
4141

42+
#[cfg(feature = "quickcheck")]
43+
impl<K> quickcheck::Arbitrary for RangeSet<K>
44+
where
45+
K: quickcheck::Arbitrary + Ord,
46+
{
47+
fn arbitrary(g: &mut quickcheck::Gen) -> Self {
48+
Self {
49+
rm: RangeMap::arbitrary(g),
50+
}
51+
}
52+
}
53+
4254
impl<T> RangeSet<T>
4355
where
4456
T: Ord + Clone,
@@ -793,4 +805,11 @@ mod tests {
793805

794806
#[cfg(feature = "const_fn")]
795807
const _SET: RangeSet<u32> = RangeSet::new();
808+
809+
#[cfg(feature = "quickcheck")]
810+
quickcheck::quickcheck! {
811+
fn prop(xs: RangeSet<usize>) -> bool {
812+
xs == xs
813+
}
814+
}
796815
}

0 commit comments

Comments
 (0)