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
// Copyright (c) The partial-io Contributors
// SPDX-License-Identifier: MIT
//! `QuickCheck` support for partial IO operations.
//!
//! This module allows sequences of [`PartialOp`]s to be randomly generated. These
//! sequences can then be fed into a [`PartialRead`], [`PartialWrite`],
//! [`PartialAsyncRead`] or [`PartialAsyncWrite`].
//!
//! Once `quickcheck` has identified a failing test case, it will shrink the
//! sequence of `PartialOp`s and find a minimal test case. This minimal case can
//! then be used to reproduce the issue.
//!
//! To generate random sequences of operations, write a `quickcheck` test with a
//! `PartialWithErrors<GE>` input, where `GE` implements [`GenError`]. Then pass
//! the sequence in as the second argument to the partial wrapper.
//!
//! Several implementations of `GenError` are provided. These can be used to
//! customize the sorts of errors generated. For even more customization, you
//! can write your own `GenError` implementation.
//!
//! # Examples
//!
//! ```rust
//! use partial_io::quickcheck_types::{GenInterrupted, PartialWithErrors};
//! use quickcheck::quickcheck;
//!
//! quickcheck! {
//! fn test_something(seq: PartialWithErrors<GenInterrupted>) -> bool {
//! // Example buffer to read from, substitute with your own.
//! let reader = std::io::repeat(42);
//! let partial_reader = PartialRead::new(reader, seq);
//! // ...
//!
//! true
//! }
//! }
//! ```
//!
//! For a detailed example, see `examples/buggy_write.rs` in this repository.
//!
//! For a real-world example, see the [tests in `bzip2-rs`].
//!
//! [`PartialOp`]: ../struct.PartialOp.html
//! [`PartialRead`]: ../struct.PartialRead.html
//! [`PartialWrite`]: ../struct.PartialWrite.html
//! [`PartialAsyncRead`]: ../struct.PartialAsyncRead.html
//! [`PartialAsyncWrite`]: ../struct.PartialAsyncWrite.html
//! [`GenError`]: trait.GenError.html
//! [tests in `bzip2-rs`]: https://github.com/alexcrichton/bzip2-rs/blob/master/src/write.rs
use crate::PartialOp;
use quickcheck::{empty_shrinker, Arbitrary, Gen};
use rand::{rngs::SmallRng, Rng, SeedableRng};
use std::{io, marker::PhantomData, ops::Deref};
/// Given a custom error generator, randomly generate a list of `PartialOp`s.
#[derive(Clone, Debug)]
pub struct PartialWithErrors<GE> {
items: Vec<PartialOp>,
_marker: PhantomData<GE>,
}
impl<GE> IntoIterator for PartialWithErrors<GE> {
type Item = PartialOp;
type IntoIter = ::std::vec::IntoIter<PartialOp>;
fn into_iter(self) -> Self::IntoIter {
self.items.into_iter()
}
}
impl<GE> Deref for PartialWithErrors<GE> {
type Target = [PartialOp];
fn deref(&self) -> &Self::Target {
self.items.deref()
}
}
/// Represents a way to generate `io::ErrorKind` instances.
///
/// See [the module level documentation](index.html) for more.
pub trait GenError: Clone + Default + Send {
/// Optionally generate an `io::ErrorKind` instance.
fn gen_error(&mut self, g: &mut Gen) -> Option<io::ErrorKind>;
}
/// Generate an `ErrorKind::Interrupted` error 20% of the time.
///
/// See [the module level documentation](index.html) for more.
#[derive(Clone, Debug, Default)]
pub struct GenInterrupted;
/// Generate an `ErrorKind::WouldBlock` error 20% of the time.
///
/// See [the module level documentation](index.html) for more.
#[derive(Clone, Debug, Default)]
pub struct GenWouldBlock;
/// Generate `Interrupted` and `WouldBlock` errors 10% of the time each.
///
/// See [the module level documentation](index.html) for more.
#[derive(Clone, Debug, Default)]
pub struct GenInterruptedWouldBlock;
macro_rules! impl_gen_error {
($id: ident, [$($errors:expr),+]) => {
impl GenError for $id {
fn gen_error(&mut self, g: &mut Gen) -> Option<io::ErrorKind> {
// 20% chance to generate an error.
let mut rng = SmallRng::from_entropy();
if rng.gen_ratio(1, 5) {
Some(g.choose(&[$($errors,)*]).unwrap().clone())
} else {
None
}
}
}
}
}
impl_gen_error!(GenInterrupted, [io::ErrorKind::Interrupted]);
impl_gen_error!(GenWouldBlock, [io::ErrorKind::WouldBlock]);
impl_gen_error!(
GenInterruptedWouldBlock,
[io::ErrorKind::Interrupted, io::ErrorKind::WouldBlock]
);
/// Do not generate any errors. The only operations generated will be
/// `PartialOp::Limited` instances.
///
/// See [the module level documentation](index.html) for more.
#[derive(Clone, Debug, Default)]
pub struct GenNoErrors;
impl GenError for GenNoErrors {
fn gen_error(&mut self, _g: &mut Gen) -> Option<io::ErrorKind> {
None
}
}
impl<GE> Arbitrary for PartialWithErrors<GE>
where
GE: GenError + 'static,
{
fn arbitrary(g: &mut Gen) -> Self {
let size = g.size();
// Generate a sequence of operations. A uniform distribution for this is
// fine because the goal is to shake bugs out relatively effectively.
let mut gen_error = GE::default();
let items: Vec<_> = (0..size)
.map(|_| {
match gen_error.gen_error(g) {
Some(err) => PartialOp::Err(err),
// Don't generate 0 because for writers it can mean that
// writes are no longer accepted.
None => {
let mut rng = SmallRng::from_entropy();
PartialOp::Limited(rng.gen_range(1..size))
}
}
})
.collect();
PartialWithErrors {
items,
_marker: PhantomData,
}
}
fn shrink(&self) -> Box<dyn Iterator<Item = Self>> {
Box::new(self.items.clone().shrink().map(|items| PartialWithErrors {
items,
_marker: PhantomData,
}))
}
}
impl Arbitrary for PartialOp {
fn arbitrary(_g: &mut Gen) -> Self {
// We only use this for shrink, so we don't need to implement this.
unimplemented!();
}
fn shrink(&self) -> Box<dyn Iterator<Item = Self>> {
match *self {
// Skip 0 because for writers it can mean that writes are no longer
// accepted.
PartialOp::Limited(n) => {
Box::new(n.shrink().filter(|k| k != &0).map(PartialOp::Limited))
}
_ => empty_shrinker(),
}
}
}