commit | 82e667ef4eaa79c20bbb7a528abda358edfb6a83 | [log] [tgz] |
---|---|---|
author | ekhugen <ekhugen@us.ibm.com> | Thu Jul 31 20:10:32 2014 +0000 |
committer | Matthew Treinish <mtreinish@kortar.org> | Fri Sep 05 19:49:19 2014 +0000 |
tree | 8a2f08757afb3d9355260f795fedcebc373f9720 | |
parent | 9c1ce58a22cfa1143fa8e8b4ddfc6f57d31db27e [diff] |
Move cli tests into service subdirectories This commit takes the cli tests and moves them into service specific directories. This is done in lieu of using a service decorator to properly tag the test as using a particular service. This should be less error prone then adding a decorator to each test case. It also is useful for projects that have more than one cli interface being tested by making the grouping by service more explicit. Partially implements bp add-service-tags Change-Id: I54e01ba29fc03beea83f2377f6b6b98f23361f5f
diff --git a/tempest/cli/simple_read_only/test_nova.py b/tempest/cli/simple_read_only/compute/test_nova.py similarity index 100% rename from tempest/cli/simple_read_only/test_nova.py rename to tempest/cli/simple_read_only/compute/test_nova.py
diff --git a/tempest/cli/simple_read_only/test_nova_manage.py b/tempest/cli/simple_read_only/compute/test_nova_manage.py similarity index 100% rename from tempest/cli/simple_read_only/test_nova_manage.py rename to tempest/cli/simple_read_only/compute/test_nova_manage.py
diff --git a/tempest/cli/simple_read_only/test_sahara.py b/tempest/cli/simple_read_only/data_processing/test_sahara.py similarity index 100% rename from tempest/cli/simple_read_only/test_sahara.py rename to tempest/cli/simple_read_only/data_processing/test_sahara.py
diff --git a/tempest/cli/simple_read_only/test_keystone.py b/tempest/cli/simple_read_only/identity/test_keystone.py similarity index 100% rename from tempest/cli/simple_read_only/test_keystone.py rename to tempest/cli/simple_read_only/identity/test_keystone.py
diff --git a/tempest/cli/simple_read_only/test_glance.py b/tempest/cli/simple_read_only/image/test_glance.py similarity index 100% rename from tempest/cli/simple_read_only/test_glance.py rename to tempest/cli/simple_read_only/image/test_glance.py
diff --git a/tempest/cli/simple_read_only/test_neutron.py b/tempest/cli/simple_read_only/network/test_neutron.py similarity index 100% rename from tempest/cli/simple_read_only/test_neutron.py rename to tempest/cli/simple_read_only/network/test_neutron.py
diff --git a/tempest/cli/simple_read_only/test_swift.py b/tempest/cli/simple_read_only/object_storage/test_swift.py similarity index 100% rename from tempest/cli/simple_read_only/test_swift.py rename to tempest/cli/simple_read_only/object_storage/test_swift.py
diff --git a/tempest/cli/simple_read_only/test_heat.py b/tempest/cli/simple_read_only/orchestration/test_heat.py similarity index 100% rename from tempest/cli/simple_read_only/test_heat.py rename to tempest/cli/simple_read_only/orchestration/test_heat.py
diff --git a/tempest/cli/simple_read_only/test_ceilometer.py b/tempest/cli/simple_read_only/telemetry/test_ceilometer.py similarity index 93% rename from tempest/cli/simple_read_only/test_ceilometer.py rename to tempest/cli/simple_read_only/telemetry/test_ceilometer.py index b622dd4..1d2822d 100644 --- a/tempest/cli/simple_read_only/test_ceilometer.py +++ b/tempest/cli/simple_read_only/telemetry/test_ceilometer.py
@@ -39,19 +39,15 @@ raise cls.skipException(msg) super(SimpleReadOnlyCeilometerClientTest, cls).setUpClass() - @test.services('telemetry') def test_ceilometer_meter_list(self): self.ceilometer('meter-list') @test.attr(type='slow') - @test.services('telemetry') def test_ceilometer_resource_list(self): self.ceilometer('resource-list') - @test.services('telemetry') def test_ceilometermeter_alarm_list(self): self.ceilometer('alarm-list') - @test.services('telemetry') def test_ceilometer_version(self): self.ceilometer('', flags='--version')
diff --git a/tempest/cli/simple_read_only/test_cinder.py b/tempest/cli/simple_read_only/volume/test_cinder.py similarity index 100% rename from tempest/cli/simple_read_only/test_cinder.py rename to tempest/cli/simple_read_only/volume/test_cinder.py