The "keyspace" and "cf" pair of options are now parsed similarly to how recently changed ss::force_keyspace_compaction handler does. The "scrub_mode" query param is saved directly into sstring variable and its presense is checked by .empty() call. If the parameter is missing, the request::get_query_param() would return empty string, so the change is correct. The "skip_corrupted" is boolean option, other options are already parsed by hand, without the help of req_params facilities. There's a test that validates the work of req_params::process() of scrub endpoint -- it passes "invalid" options. This test is temporarily removed according to the PR description. Signed-off-by: Pavel Emelyanov <xemul@scylladb.com>
Scylla in-source tests.
For details on how to run the tests, see docs/dev/testing.md
Shared C++ utils, libraries are in lib/, for Python - pylib/
alternator - Python tests which connect to a single server and use the DynamoDB API unit, boost, raft - unit tests in C++ cqlpy - Python tests which connect to a single server and use CQL topology* - tests that set up clusters and add/remove nodes cql - approval tests that use CQL and pre-recorded output rest_api - tests for Scylla REST API Port 9000 scylla-gdb - tests for scylla-gdb.py helper script nodetool - tests for C++ implementation of nodetool
If you can use an existing folder, consider adding your test to it. New folders should be used for new large categories/subsystems, or when the test environment is significantly different from some existing suite, e.g. you plan to start scylladb with different configuration, and you intend to add many tests and would like them to reuse an existing Scylla cluster (clusters can be reused for tests within the same folder).
To add a new folder, create a new directory, and then
copy & edit its suite.ini.