mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-10-30 23:46:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			361 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			361 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![no_main]
 | |
| use arbitrary_json::ArbitraryObject;
 | |
| use flatten_serde_json::flatten;
 | |
| use json_depth_checker::should_flatten_from_value;
 | |
| use libfuzzer_sys::fuzz_target;
 | |
| 
 | |
| fuzz_target!(|object: ArbitraryObject| {
 | |
|     let object = flatten(&object);
 | |
|     if !object.is_empty() {
 | |
|         assert!(object.values().any(|value| !should_flatten_from_value(value)));
 | |
|     }
 | |
| });
 |