#collection #combinator #standard #generate #ext #function #set

arbitrary_ext

Provides combinator functions to generate standard collections with custom arbitrary function

4 releases (2 breaking)

0.3.0 Nov 23, 2022
0.2.1 Oct 19, 2022
0.2.0 Oct 19, 2022
0.1.0 Oct 18, 2022

#439 in Testing

Download history 268/week @ 2024-07-22 204/week @ 2024-07-29 281/week @ 2024-08-05 216/week @ 2024-08-12 168/week @ 2024-08-19 224/week @ 2024-08-26 171/week @ 2024-09-02 320/week @ 2024-09-09 237/week @ 2024-09-16 223/week @ 2024-09-23 353/week @ 2024-09-30 207/week @ 2024-10-07 298/week @ 2024-10-14 348/week @ 2024-10-21 357/week @ 2024-10-28 353/week @ 2024-11-04

1,379 downloads per month
Used in 5 crates

MIT license

11KB
137 lines

Arbitrary Ext

Since 1.2.0 Arbitrary supports custom arbitrary implementation for fields on derive.

But it still remains tricky, if a type that does not implement Arbitrary is wrapped into a generic type.

This crate provides s set of function combinators to support the containers and collections form the standard library.

See the example below.

Usage

use arbitrary_ext::{arbitrary_option, arbitrary_vec, arbitrary_hash_map};
use std::collections::HashMap;

// Imagine this is a foreign type, that by some reason does not implement Arbitrary trait.
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
struct Number(u32);

// Our custom function to generate arbitrary Number out of Unstructured.
fn arbitrary_number(u: &mut Unstructured) -> arbitrary::Result<Number> {
    let value = u.int_in_range(0..=1000)?;
    Ok(Number(value))
}

#[derive(Debug, Arbitrary)]
struct Example {
    #[arbitrary(with = arbitrary_number)]
    number: Number,

    #[arbitrary(with = arbitrary_option(arbitrary_number))]
    option: Option<Number>,

    #[arbitrary(with = arbitrary_vec(arbitrary_number))]
    vec: Vec<Number>,

    #[arbitrary(
        with = arbitrary_hash_map(
            arbitrary_number,
            arbitrary_vec(arbitrary_option(arbitrary_number))
        )
    )]
    hash_map: HashMap<Number, Vec<Option<Number>>>,
}

Without having arbitrary_option, arbitrary_vec, arbitrary_hash_map combinators, would be forced to implement out custom functions to generate arbitrary Option<Number>, Vec<Number> and HashMap<Number, Vec<Option<Number>>>. e.g.:

fn arbitrary_option_number(u: &mut Unstructured) -> arbitrary::Result<Option<Number>>;
fn arbitrary_vec_number(u: &mut Unstructured) -> arbitrary::Result<Vec<Number>>;
fn arbitrary_hash_map_of_numbers(u: &mut Unstructured) -> arbitrary::Result<HashMap<Number, Vec<Option<Number>>>>;

But this becomes tedious very quickly.

History of the crate

Initially the crate was created to workaround this Arbitrary issue but it was later addressed in this PR.

Dependencies

~340–790KB
~18K SLoC