This patch makes three small mostly-cosmetic improvements to a test in test/alternator/test_streams.py: 1. The test is renamed "test_streams_deleteitem_old_image_no_ck" to emphasize its focus on the combination of deleteitem, old image, and no ck. The "putitem" we had in the name was not relevant, and the "old_image" was missing and important. 2. Moreover, using PutItem in this test just to set up the test scenario mixed the bug which the test tries to reproduced with a different only-recently-fixed bug (that PutItem also generated a spurious "REMOVE" event). So I changed the use of PutItem by using UpdateItem, to make this test indepedent of the other bug. Test independence is important because it allows us - if we want - to backport a fix for just one bug independently of the fix to the other bug. 3. Also improved the comment in front of the test to mention where we already tested the with-ck case, and also to mention issue 26382 which this test reproduces (the xfail line also mentions it, but the xfail line will be removed when the bug is fixed - but the mention in the comment will remain - and should remain. Signed-off-by: Nadav Har'El <nyh@scylladb.com> Closes scylladb/scylladb#26526
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.