plutus_ledger_api/generators/correct/
primitive.rsuse num_bigint::{BigInt, BigUint, Sign};
use num_traits::identities::Zero;
use proptest::arbitrary::{any, StrategyFor};
use proptest::char::CharStrategy;
use proptest::collection::vec;
use proptest::collection::{btree_map, btree_set};
use proptest::option;
use proptest::prelude::{prop_oneof, Just};
use proptest::result::maybe_err;
use proptest::strategy::Strategy;
use std::collections::{BTreeMap, BTreeSet};
pub fn arb_bool() -> StrategyFor<bool> {
any::<bool>()
}
fn arb_sign() -> impl Strategy<Value = Sign> {
prop_oneof![Just(Sign::Minus), Just(Sign::Plus)]
}
pub fn arb_integer() -> impl Strategy<Value = BigInt> {
(arb_sign(), arb_biguint(2)).prop_map(|(sign, nat)| {
BigInt::from_biguint(if nat.is_zero() { Sign::NoSign } else { sign }, nat)
})
}
pub fn arb_natural(n: usize) -> impl Strategy<Value = BigInt> {
arb_biguint(n).prop_map(|x| {
BigInt::from_biguint(
if x.is_zero() {
Sign::NoSign
} else {
Sign::Plus
},
x,
)
})
}
fn arb_biguint(n: usize) -> impl Strategy<Value = BigUint> {
vec(any::<u32>(), n).prop_map(BigUint::new)
}
pub fn arb_char<'a>() -> CharStrategy<'a> {
any::<char>()
}
pub fn arb_bytes() -> StrategyFor<Vec<u8>> {
any::<Vec<u8>>()
}
pub fn arb_text() -> StrategyFor<String> {
any::<String>()
}
pub fn arb_complicated(
) -> impl Strategy<Value = BTreeMap<String, Result<BTreeSet<char>, Option<Result<Vec<u8>, bool>>>>>
{
btree_map(
arb_text(),
maybe_err(
btree_set(arb_char(), 20),
option::of(maybe_err(arb_bytes(), arb_bool())),
),
20,
)
}