Open
Description
Currently we only test the SINGLE_NODE_WRITER access mode. I suggest we add positive and negative test cases for every supported access mode:
SINGLE_NODE_WRITER
- should succeed with single readonly publish
- should succeed with single writable publish
- should fail with multiple publishes
SINGLE_NODE_READER_ONLY
- should succeed with single readonly publish
- should fail with single writable publish
- should fail with multiple readonly publishes
MULTI_NODE_READER_ONLY
- should succeed with single readonly publish
- should fail with single writable publish
- should succeed with multiple readonly publishes
MULTI_NODE_SINGLE_WRITER
- should succeed with single writable publish
- should succeed with multiple readonly publishes
- should fail with writable publish plus any other publish
MULTI_NODE_MULTI_WRITER
- should succeed with multiple writable publishes
- no negative tests case possible?