tree: b5d650717c83fa5862afc66c5ce1044ab639df5d [path history] [tgz]
  1. templates/
  2. .gitignore
  3. constraints.py
  4. fuzz_integration_test.py
  5. fuzz_main_run.py
  6. fuzzer_helpers.py
  7. gatt_aliases.py
  8. parameter_fuzzer.py
  9. PRESUBMIT.py
  10. README.md
  11. setup.py
  12. test_case_fuzzer.py
  13. wbt_fakes.py
third_party/blink/renderer/modules/bluetooth/testing/clusterfuzz/README.md

Web Bluetooth Fuzzer

The Web Bluetooth Fuzzer generates test pages that can be run as web tests. These pages consist of a sequence of calls to the Web Bluetooth API whose purpose is to stress test the API's implementation and catch any bugs or regressions.

This document describes the overall design of the fuzzer.

Overview

To generate test pages the fuzzer performs the following steps:

  1. Generate a test page that consists of a series of random calls to the API with template parameters, calls to reload the page and calls to run garbage collection.
  2. Replace the template parameters with random values.

These generated test pages can then be run as web tests in content_shell.

ClusterFuzz

This fuzzer is designed to be run by ClusterFuzz and therefore takes three arguments, --no_of_files, --input_dir, and --output_dir.

Setup

This fuzzer depends on files in:

  • //src/third_party/blink/web_tests/resources
  • //src/testing/clusterfuzz/common

To ease development a setup.py script is included to copy over the necessary files to run the fuzzer locally. Additionally the script can be used to generate a .tar.bz2 file that can be uploaded to ClusterFuzz. To see the available options, run:

python setup.py -h