7 releases (4 breaking)

0.11.2 Jun 10, 2024
0.11.1 Jun 8, 2024
0.10.0 Sep 28, 2023
0.9.0 Mar 21, 2023
0.7.0 May 24, 2022

#392 in Testing

Download history 861/week @ 2024-03-14 1077/week @ 2024-03-21 854/week @ 2024-03-28 755/week @ 2024-04-04 661/week @ 2024-04-11 848/week @ 2024-04-18 634/week @ 2024-04-25 1225/week @ 2024-05-02 1239/week @ 2024-05-09 2494/week @ 2024-05-16 3516/week @ 2024-05-23 4059/week @ 2024-05-30 3281/week @ 2024-06-06 3179/week @ 2024-06-13 3873/week @ 2024-06-20 2589/week @ 2024-06-27

13,499 downloads per month
Used in 25 crates (via bolero)

MIT license

21KB
469 lines

bolero

Build Status Latest version Documentation License

fuzz and property testing front-end for Rust

Book

A copy of the Bolero Book can be found here: http://camshaft.github.io/bolero

Quick Start

  1. Install subcommand and add a dependency

    $ cargo add --dev bolero
    $ cargo install -f cargo-bolero
    
  2. Write a test using bolero::check! macro:

    pub fn buggy_add(x: u32, y: u32) -> u32 {
        if x == 12976 && y == 14867 {
            return x.wrapping_sub(y);
        }
        return x.wrapping_add(y);
    }
    
    #[test]
    fn fuzz_add() {
        bolero::check!()
            .with_type()
            .cloned()
            .for_each(|(a, b)| buggy_add(a, b) == a.wrapping_add(b));
    }
    
  3. Run the test with cargo bolero

    $ cargo bolero test fuzz_add
    
    # ... some moments later ...
    
    ======================== Test Failure ========================
    
    Input:
    (
        12976,
        14867,
    )
    
    Error:
    test returned `false`
    
    ==============================================================
    

Linux Installation

cargo-bolero needs a couple of libraries installed to compile. If these libraries aren't available the requirement can be relaxed by executing cargo install cargo-bolero --no-default-features -f

Debian/Ubuntu

$ sudo apt install binutils-dev libunwind-dev

Dependencies

~0–1.1MB
~23K SLoC