Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Tpt
bdde46b5c7
|
8 months ago | |
---|---|---|
.. | ||
src | 9 months ago | |
Cargo.toml | 8 months ago | |
README.md | 1 year ago |
README.md
SPARQL smith
sparql-smith is a test case generator for the SPARQL language.
It provides a single struct, Query
that could be serialized to a SPARQL query using to_string()
.
The queries generated are sadly not always valid. Variables scopes are not properly handled yet. All SPARQL features are not supported yet.
The DATA_TRIG
constant is provided as an example dataset on which queries could be evaluated.
Usage example with libfuzzer-sys and spargebra:
#![no_main]
use libfuzzer_sys::fuzz_target;
fuzz_target!(|data: sparql_smith::Query| {
spargebra::Query::parse(&data.to_string(), None).unwrap()
});
License
This project is licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or
<http://www.apache.org/licenses/LICENSE-2.0>
) - MIT license (LICENSE-MIT or
<http://opensource.org/licenses/MIT>
)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Oxigraph by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.