commit | 18af3d1611979c5e3f5431ea58696e4f6f61b992 | [log] [tgz] |
---|---|---|
author | Bob Badour <[email protected]> | Tue Feb 16 22:30:06 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Feb 16 22:30:06 2021 +0000 |
tree | d31bda0402651d782a457726bed3b9088cf824f5 | |
parent | ed99b4675814450c9f712f471bb93c7d7b629cfa [diff] | |
parent | ee3cf3bc27149805c46fdb0cae7056350c7c6523 [diff] |
[LSC] Add LOCAL_LICENSE_KINDS to external/rust/crates/arbitrary am: 70c40b60a8 am: bfe902e917 am: 635a2b21aa am: ee3cf3bc27 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/arbitrary/+/1588736 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I47e5b704d7fcd696ffa413b22e9906beeb1b8fe8
The Arbitrary
crate lets you construct arbitrary instance of a type.
This crate is primarily intended to be combined with a fuzzer like libFuzzer and cargo-fuzz
or AFL, and to help you turn the raw, untyped byte buffers that they produce into well-typed, valid, structured values. This allows you to combine structure-aware test case generation with coverage-guided, mutation-based fuzzers.
Read the API documentation on docs.rs
!
Say you're writing a color conversion library, and you have an Rgb
struct to represent RGB colors. You might want to implement Arbitrary
for Rgb
so that you could take arbitrary Rgb
instances in a test function that asserts some property (for example, asserting that RGB converted to HSL and converted back to RGB always ends up exactly where we started).
Arbitrary
Automatically deriving the Arbitrary
trait is the recommended way to implement Arbitrary
for your types.
Automatically deriving Arbitrary
requires you to enable the "derive"
cargo feature:
# Cargo.toml [dependencies] arbitrary = { version = "0.4", features = ["derive"] }
And then you can simply add #[derive(Arbitrary)]
annotations to your types:
// rgb.rs use arbitrary::Arbitrary; #[derive(Arbitrary)] pub struct Rgb { pub r: u8, pub g: u8, pub b: u8, }
Arbitrary
By HandAlternatively, you can write an Arbitrary
implementation by hand:
// rgb.rs use arbitrary::{Arbitrary, Result, Unstructured}; #[derive(Copy, Clone, Debug)] pub struct Rgb { pub r: u8, pub g: u8, pub b: u8, } impl<'a> Arbitrary<'a> for Rgb { fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { let r = u8::arbitrary(u)?; let g = u8::arbitrary(u)?; let b = u8::arbitrary(u)?; Ok(Rgb { r, g, b }) } }
Licensed under dual MIT or Apache-2.0 at your choice.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.