mirror of
https://github.com/askama-rs/askama.git
synced 2025-10-02 15:25:19 +00:00
fuzz: Add fuzz for askama_parser
This commit is contained in:
parent
2e8e42af45
commit
8f3140a33f
4
askama_parser/fuzz/.gitignore
vendored
Normal file
4
askama_parser/fuzz/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
target
|
||||
corpus
|
||||
artifacts
|
||||
coverage
|
27
askama_parser/fuzz/Cargo.toml
Normal file
27
askama_parser/fuzz/Cargo.toml
Normal file
@ -0,0 +1,27 @@
|
||||
[package]
|
||||
name = "askama_parser-fuzz"
|
||||
version = "0.0.0"
|
||||
publish = false
|
||||
edition = "2021"
|
||||
|
||||
[package.metadata]
|
||||
cargo-fuzz = true
|
||||
|
||||
[dependencies]
|
||||
libfuzzer-sys = "0.4"
|
||||
|
||||
[dependencies.askama_parser]
|
||||
path = ".."
|
||||
|
||||
# Prevent this from interfering with workspaces
|
||||
[workspace]
|
||||
members = ["."]
|
||||
|
||||
[profile.release]
|
||||
debug = 1
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_parser"
|
||||
path = "fuzz_targets/fuzz_parser.rs"
|
||||
test = false
|
||||
doc = false
|
14
askama_parser/fuzz/README.md
Normal file
14
askama_parser/fuzz/README.md
Normal file
@ -0,0 +1,14 @@
|
||||
# Fuzzing
|
||||
|
||||
Install `cargo-fuzz`:
|
||||
|
||||
```sh
|
||||
cargo install -f cargo-fuzz
|
||||
```
|
||||
|
||||
Run any available target where `$target` is the name of the target.
|
||||
|
||||
```sh
|
||||
cargo fuzz list # get list of targets
|
||||
cargo +nightly fuzz run $target
|
||||
```
|
13
askama_parser/fuzz/fuzz_targets/fuzz_parser.rs
Normal file
13
askama_parser/fuzz/fuzz_targets/fuzz_parser.rs
Normal file
@ -0,0 +1,13 @@
|
||||
#![no_main]
|
||||
use askama_parser::*;
|
||||
use libfuzzer_sys::fuzz_target;
|
||||
use std::str;
|
||||
|
||||
fuzz_target!(|data: &[u8]| {
|
||||
// fuzzed code goes here
|
||||
if data.len() < 500 {
|
||||
if let Ok(data) = str::from_utf8(data) {
|
||||
if let Ok(_) = Ast::from_str(data, &Syntax::default()) {}
|
||||
}
|
||||
}
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user