Changeset View
Changeset View
Standalone View
Standalone View
swh/storage/tests/test_cassandra.py
Show First 20 Lines • Show All 329 Lines • ▼ Show 20 Lines | class TestCassandraStorage(_TestStorage): | ||||
@pytest.mark.skip( | @pytest.mark.skip( | ||||
'The "person" table of the pgsql is a legacy thing, and not ' | 'The "person" table of the pgsql is a legacy thing, and not ' | ||||
"supported by the cassandra backend." | "supported by the cassandra backend." | ||||
) | ) | ||||
def test_person_get(self): | def test_person_get(self): | ||||
pass | pass | ||||
@pytest.mark.skip("Not yet implemented") | |||||
def test_metadata_provider_add(self): | |||||
pass | |||||
@pytest.mark.skip("Not yet implemented") | |||||
def test_metadata_provider_add_idempotent(self): | |||||
pass | |||||
@pytest.mark.skip("Not yet implemented") | |||||
def test_metadata_provider_get(self): | |||||
pass | |||||
@pytest.mark.skip("Not yet implemented") | |||||
def test_metadata_provider_get_by(self): | |||||
pass | |||||
@pytest.mark.skip("Not yet implemented") | |||||
def test_origin_metadata_add(self): | |||||
pass | |||||
@pytest.mark.skip("Not yet implemented") | |||||
def test_origin_metadata_get(self): | |||||
pass | |||||
@pytest.mark.skip("Not yet implemented") | |||||
def test_origin_metadata_get_by_provider_type(self): | |||||
pass | |||||
@pytest.mark.skip("Not supported by Cassandra") | @pytest.mark.skip("Not supported by Cassandra") | ||||
def test_origin_count(self): | def test_origin_count(self): | ||||
pass | pass | ||||
@pytest.mark.cassandra | @pytest.mark.cassandra | ||||
class TestCassandraStorageGeneratedData(_TestStorageGeneratedData): | class TestCassandraStorageGeneratedData(_TestStorageGeneratedData): | ||||
@pytest.mark.skip("Not supported by Cassandra") | @pytest.mark.skip("Not supported by Cassandra") | ||||
▲ Show 20 Lines • Show All 46 Lines • Show Last 20 Lines |