├── .gitignore ├── .gitreview ├── .zuul.yaml ├── LICENSE ├── README ├── api ├── block_storage.yaml ├── dns.yaml ├── image.yaml └── network.yaml ├── demo ├── demo.yaml └── demo_server.py ├── requirements.txt ├── restfuzz ├── __init__.py ├── api.py ├── cmd.py ├── event.py ├── fuzzer.py ├── health.py ├── input_generator.py ├── method.py ├── os_api_ref_importer.py ├── tests │ ├── __init__.py │ ├── test_event.py │ ├── test_fuzzer.py │ ├── test_input_generator.py │ ├── test_method.py │ ├── test_osrefapi.py │ └── utils.py └── utils.py ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tools ├── health_localhost.py ├── packstack_prep.sh ├── purge.sh └── watchdog.sh └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/.gitreview -------------------------------------------------------------------------------- /.zuul.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/.zuul.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/README -------------------------------------------------------------------------------- /api/block_storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/api/block_storage.yaml -------------------------------------------------------------------------------- /api/dns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/api/dns.yaml -------------------------------------------------------------------------------- /api/image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/api/image.yaml -------------------------------------------------------------------------------- /api/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/api/network.yaml -------------------------------------------------------------------------------- /demo/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/demo/demo.yaml -------------------------------------------------------------------------------- /demo/demo_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/demo/demo_server.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | PyYAML 3 | -------------------------------------------------------------------------------- /restfuzz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restfuzz/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/api.py -------------------------------------------------------------------------------- /restfuzz/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/cmd.py -------------------------------------------------------------------------------- /restfuzz/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/event.py -------------------------------------------------------------------------------- /restfuzz/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/fuzzer.py -------------------------------------------------------------------------------- /restfuzz/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/health.py -------------------------------------------------------------------------------- /restfuzz/input_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/input_generator.py -------------------------------------------------------------------------------- /restfuzz/method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/method.py -------------------------------------------------------------------------------- /restfuzz/os_api_ref_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/os_api_ref_importer.py -------------------------------------------------------------------------------- /restfuzz/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restfuzz/tests/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/tests/test_event.py -------------------------------------------------------------------------------- /restfuzz/tests/test_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/tests/test_fuzzer.py -------------------------------------------------------------------------------- /restfuzz/tests/test_input_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/tests/test_input_generator.py -------------------------------------------------------------------------------- /restfuzz/tests/test_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/tests/test_method.py -------------------------------------------------------------------------------- /restfuzz/tests/test_osrefapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/tests/test_osrefapi.py -------------------------------------------------------------------------------- /restfuzz/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/tests/utils.py -------------------------------------------------------------------------------- /restfuzz/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/restfuzz/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | nose 2 | flake8 3 | coverage 4 | -------------------------------------------------------------------------------- /tools/health_localhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/tools/health_localhost.py -------------------------------------------------------------------------------- /tools/packstack_prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/tools/packstack_prep.sh -------------------------------------------------------------------------------- /tools/purge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/tools/purge.sh -------------------------------------------------------------------------------- /tools/watchdog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/tools/watchdog.sh -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cip/restfuzz/HEAD/tox.ini --------------------------------------------------------------------------------