From 8c62fa9121eacf5cde1ed59bf0cca896227a44d5 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Wed, 8 Feb 2017 08:48:54 -0800 Subject: tests: Add XPath fuzzing Only fuzz the parser for now. --- tests/data_fuzz_xpath/basic.xpath | 1 + tests/data_fuzz_xpath/functions.xpath | 1 + tests/data_fuzz_xpath/math.xpath | 1 + tests/data_fuzz_xpath/path.xpath | 1 + tests/data_fuzz_xpath/predicate.xpath | 1 + 5 files changed, 5 insertions(+) create mode 100644 tests/data_fuzz_xpath/basic.xpath create mode 100644 tests/data_fuzz_xpath/functions.xpath create mode 100644 tests/data_fuzz_xpath/math.xpath create mode 100644 tests/data_fuzz_xpath/path.xpath create mode 100644 tests/data_fuzz_xpath/predicate.xpath (limited to 'tests/data_fuzz_xpath') diff --git a/tests/data_fuzz_xpath/basic.xpath b/tests/data_fuzz_xpath/basic.xpath new file mode 100644 index 0000000..ccbaf23 --- /dev/null +++ b/tests/data_fuzz_xpath/basic.xpath @@ -0,0 +1 @@ +a/b/c \ No newline at end of file diff --git a/tests/data_fuzz_xpath/functions.xpath b/tests/data_fuzz_xpath/functions.xpath new file mode 100644 index 0000000..ec24b4f --- /dev/null +++ b/tests/data_fuzz_xpath/functions.xpath @@ -0,0 +1 @@ +sum(nodes) + round(concat(//a[translate(@id, 'abc', '012')])) diff --git a/tests/data_fuzz_xpath/math.xpath b/tests/data_fuzz_xpath/math.xpath new file mode 100644 index 0000000..7f6e968 --- /dev/null +++ b/tests/data_fuzz_xpath/math.xpath @@ -0,0 +1 @@ +1+2*3 div 4 mod 5-6 \ No newline at end of file diff --git a/tests/data_fuzz_xpath/path.xpath b/tests/data_fuzz_xpath/path.xpath new file mode 100644 index 0000000..82cace9 --- /dev/null +++ b/tests/data_fuzz_xpath/path.xpath @@ -0,0 +1 @@ +@*/ancestor::*/near-north/*[4]/@*/preceding::text() \ No newline at end of file diff --git a/tests/data_fuzz_xpath/predicate.xpath b/tests/data_fuzz_xpath/predicate.xpath new file mode 100644 index 0000000..7161d55 --- /dev/null +++ b/tests/data_fuzz_xpath/predicate.xpath @@ -0,0 +1 @@ +library/nodes[@id=12]/element[@type='translate'][1] \ No newline at end of file -- cgit v1.2.3