From db423dde9cdc20bb31b9f05684a5c3125cb5d7da Mon Sep 17 00:00:00 2001 From: Alexei Kornienko Date: Tue, 23 Jul 2013 15:55:18 +0300 Subject: [PATCH] Refactored API V1 tests to use testscenarios Related to blueprint db-tests-with-scenarios Change-Id: Id44ac158b8ff39c3d414c511f1bb2b3c948db0d2 --- ...compute_duration_by_resource_scenarios.py} | 9 ++ tests/api/v1/test_impl_hbase.py | 102 ------------------ tests/api/v1/test_impl_mongodb.py | 102 ------------------ tests/api/v1/test_impl_sqlalchemy.py | 90 ---------------- ...vents.py => test_list_events_scenarios.py} | 15 +++ ...eters.py => test_list_meters_scenarios.py} | 21 ++++ ...cts.py => test_list_projects_scenarios.py} | 15 +++ ...es.py => test_list_resources_scenarios.py} | 21 ++++ ...rces.py => test_list_sources_scenarios.py} | 9 ++ ..._users.py => test_list_users_scenarios.py} | 15 +++ ...y => test_max_project_volume_scenarios.py} | 9 ++ ... => test_max_resource_volume_scenarios.py} | 9 ++ ...y => test_sum_project_volume_scenarios.py} | 9 ++ ... => test_sum_resource_volume_scenarios.py} | 9 ++ 14 files changed, 141 insertions(+), 294 deletions(-) rename tests/api/v1/{compute_duration_by_resource.py => test_compute_duration_by_resource_scenarios.py} (94%) delete mode 100644 tests/api/v1/test_impl_hbase.py delete mode 100644 tests/api/v1/test_impl_mongodb.py delete mode 100644 tests/api/v1/test_impl_sqlalchemy.py rename tests/api/v1/{list_events.py => test_list_events_scenarios.py} (94%) rename tests/api/v1/{list_meters.py => test_list_meters_scenarios.py} (92%) rename tests/api/v1/{list_projects.py => test_list_projects_scenarios.py} (86%) rename tests/api/v1/{list_resources.py => test_list_resources_scenarios.py} (94%) rename tests/api/v1/{list_sources.py => test_list_sources_scenarios.py} (78%) rename tests/api/v1/{list_users.py => test_list_users_scenarios.py} (86%) rename tests/api/v1/{max_project_volume.py => test_max_project_volume_scenarios.py} (92%) rename tests/api/v1/{max_resource_volume.py => test_max_resource_volume_scenarios.py} (92%) rename tests/api/v1/{sum_project_volume.py => test_sum_project_volume_scenarios.py} (92%) rename tests/api/v1/{sum_resource_volume.py => test_sum_resource_volume_scenarios.py} (92%) diff --git a/tests/api/v1/compute_duration_by_resource.py b/tests/api/v1/test_compute_duration_by_resource_scenarios.py similarity index 94% rename from tests/api/v1/compute_duration_by_resource.py rename to tests/api/v1/test_compute_duration_by_resource_scenarios.py index 99a360adf..f51052d6b 100644 --- a/tests/api/v1/compute_duration_by_resource.py +++ b/tests/api/v1/test_compute_duration_by_resource_scenarios.py @@ -20,16 +20,25 @@ import datetime import logging +import testscenarios from ceilometer.openstack.common import timeutils from ceilometer.storage import models from ceilometer.tests import api as tests_api +load_tests = testscenarios.load_tests_apply_scenarios + LOG = logging.getLogger(__name__) class TestComputeDurationByResource(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def setUp(self): super(TestComputeDurationByResource, self).setUp() diff --git a/tests/api/v1/test_impl_hbase.py b/tests/api/v1/test_impl_hbase.py deleted file mode 100644 index eec44c3a3..000000000 --- a/tests/api/v1/test_impl_hbase.py +++ /dev/null @@ -1,102 +0,0 @@ -# -*- encoding: utf-8 -*- -# -# Copyright © 2013 eNovance -# -# Author: Julien Danjou -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. -"""Test API against MongoDB. -""" -from . import compute_duration_by_resource as cdbr -from . import list_events -from . import list_meters -from . import list_projects -from . import list_resources -from . import list_sources -from . import list_users -from . import max_project_volume -from . import max_resource_volume -from . import sum_project_volume -from . import sum_resource_volume - - -class TestListEvents(list_events.TestListEvents): - database_connection = 'hbase://__test__' - - -class TestListEventsMetaQuery(list_events.TestListEventsMetaquery): - database_connection = 'hbase://__test__' - - -class TestListEmptyMeters(list_meters.TestListEmptyMeters): - database_connection = 'hbase://__test__' - - -class TestListMeters(list_meters.TestListMeters): - database_connection = 'hbase://__test__' - - -class TestListMetersMetaquery(list_meters.TestListMetersMetaquery): - database_connection = 'hbase://__test__' - - -class TestListEmptyUsers(list_users.TestListEmptyUsers): - database_connection = 'hbase://__test__' - - -class TestListUsers(list_users.TestListUsers): - database_connection = 'hbase://__test__' - - -class TestListEmptyProjects(list_projects.TestListEmptyProjects): - database_connection = 'hbase://__test__' - - -class TestListProjects(list_projects.TestListProjects): - database_connection = 'hbase://__test__' - - -class TestComputeDurationByResource(cdbr.TestComputeDurationByResource): - database_connection = 'hbase://__test__' - - -class TestListEmptyResources(list_resources.TestListEmptyResources): - database_connection = 'hbase://__test__' - - -class TestListResources(list_resources.TestListResources): - database_connection = 'hbase://__test__' - - -class TestListResourcesMetaquery(list_resources.TestListResourcesMetaquery): - database_connection = 'hbase://__test__' - - -class TestListSource(list_sources.TestListSource): - database_connection = 'hbase://__test__' - - -class TestMaxProjectVolume(max_project_volume.TestMaxProjectVolume): - database_connection = 'hbase://__test__' - - -class TestMaxResourceVolume(max_resource_volume.TestMaxResourceVolume): - database_connection = 'hbase://__test__' - - -class TestSumProjectVolume(sum_project_volume.TestSumProjectVolume): - database_connection = 'hbase://__test__' - - -class TestSumResourceVolume(sum_resource_volume.TestSumResourceVolume): - database_connection = 'hbase://__test__' diff --git a/tests/api/v1/test_impl_mongodb.py b/tests/api/v1/test_impl_mongodb.py deleted file mode 100644 index af30b9d90..000000000 --- a/tests/api/v1/test_impl_mongodb.py +++ /dev/null @@ -1,102 +0,0 @@ -# -*- encoding: utf-8 -*- -# -# Copyright © 2013 eNovance -# -# Author: Julien Danjou -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. -"""Test API against MongoDB. -""" -from . import compute_duration_by_resource as cdbr -from . import list_events -from . import list_meters -from . import list_projects -from . import list_resources -from . import list_sources -from . import list_users -from . import max_project_volume -from . import max_resource_volume -from . import sum_project_volume -from . import sum_resource_volume - - -class TestListEvents(list_events.TestListEvents): - database_connection = 'mongodb://__test__' - - -class TestListEventsMetaQuery(list_events.TestListEventsMetaquery): - database_connection = 'mongodb://__test__' - - -class TestListEmptyMeters(list_meters.TestListEmptyMeters): - database_connection = 'mongodb://__test__' - - -class TestListMeters(list_meters.TestListMeters): - database_connection = 'mongodb://__test__' - - -class TestListMetersMetaquery(list_meters.TestListMetersMetaquery): - database_connection = 'mongodb://__test__' - - -class TestListEmptyUsers(list_users.TestListEmptyUsers): - database_connection = 'mongodb://__test__' - - -class TestListUsers(list_users.TestListUsers): - database_connection = 'mongodb://__test__' - - -class TestListEmptyProjects(list_projects.TestListEmptyProjects): - database_connection = 'mongodb://__test__' - - -class TestListProjects(list_projects.TestListProjects): - database_connection = 'mongodb://__test__' - - -class TestComputeDurationByResource(cdbr.TestComputeDurationByResource): - database_connection = 'mongodb://__test__' - - -class TestListEmptyResources(list_resources.TestListEmptyResources): - database_connection = 'mongodb://__test__' - - -class TestListResources(list_resources.TestListResources): - database_connection = 'mongodb://__test__' - - -class TestListResourcesMetaquery(list_resources.TestListResourcesMetaquery): - database_connection = 'mongodb://__test__' - - -class TestListSource(list_sources.TestListSource): - database_connection = 'mongodb://__test__' - - -class TestMaxProjectVolume(max_project_volume.TestMaxProjectVolume): - database_connection = 'mongodb://__test__' - - -class TestMaxResourceVolume(max_resource_volume.TestMaxResourceVolume): - database_connection = 'mongodb://__test__' - - -class TestSumProjectVolume(sum_project_volume.TestSumProjectVolume): - database_connection = 'mongodb://__test__' - - -class TestSumResourceVolume(sum_resource_volume.TestSumResourceVolume): - database_connection = 'mongodb://__test__' diff --git a/tests/api/v1/test_impl_sqlalchemy.py b/tests/api/v1/test_impl_sqlalchemy.py deleted file mode 100644 index 5ff9d2708..000000000 --- a/tests/api/v1/test_impl_sqlalchemy.py +++ /dev/null @@ -1,90 +0,0 @@ -# -*- encoding: utf-8 -*- -# -# Copyright © 2013 eNovance -# -# Author: Julien Danjou -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. -"""Test API against SQLAlchemy. -""" -import compute_duration_by_resource as cdbr -import list_events -import list_meters -import list_projects -import list_resources -import list_sources -import list_users -import max_project_volume -import max_resource_volume -import sum_project_volume -import sum_resource_volume - - -class TestListEvents(list_events.TestListEvents): - database_connection = 'sqlite://' - - -class TestListEmptyMeters(list_meters.TestListEmptyMeters): - database_connection = 'sqlite://' - - -class TestListMeters(list_meters.TestListMeters): - database_connection = 'sqlite://' - - -class TestListEmptyUsers(list_users.TestListEmptyUsers): - database_connection = 'sqlite://' - - -class TestListUsers(list_users.TestListUsers): - database_connection = 'sqlite://' - - -class TestListEmptyProjects(list_projects.TestListEmptyProjects): - database_connection = 'sqlite://' - - -class TestListProjects(list_projects.TestListProjects): - database_connection = 'sqlite://' - - -class TestComputeDurationByResource(cdbr.TestComputeDurationByResource): - database_connection = 'sqlite://' - - -class TestListEmptyResources(list_resources.TestListEmptyResources): - database_connection = 'sqlite://' - - -class TestListResources(list_resources.TestListResources): - database_connection = 'sqlite://' - - -class TestListSource(list_sources.TestListSource): - database_connection = 'sqlite://' - - -class TestMaxProjectVolume(max_project_volume.TestMaxProjectVolume): - database_connection = 'sqlite://' - - -class TestMaxResourceVolume(max_resource_volume.TestMaxResourceVolume): - database_connection = 'sqlite://' - - -class TestSumProjectVolume(sum_project_volume.TestSumProjectVolume): - database_connection = 'sqlite://' - - -class TestSumResourceVolume(sum_resource_volume.TestSumResourceVolume): - database_connection = 'sqlite://' diff --git a/tests/api/v1/list_events.py b/tests/api/v1/test_list_events_scenarios.py similarity index 94% rename from tests/api/v1/list_events.py rename to tests/api/v1/test_list_events_scenarios.py index 1d2ffe24e..841e94ed7 100644 --- a/tests/api/v1/list_events.py +++ b/tests/api/v1/test_list_events_scenarios.py @@ -20,6 +20,7 @@ """ import datetime +import testscenarios from oslo.config import cfg @@ -28,9 +29,17 @@ from ceilometer import counter from ceilometer.tests import api as tests_api +load_tests = testscenarios.load_tests_apply_scenarios + class TestListEvents(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def setUp(self): super(TestListEvents, self).setUp() for cnt in [ @@ -176,6 +185,12 @@ class TestListEvents(tests_api.TestBase): class TestListEventsMetaquery(TestListEvents): + scenarios = [ + #('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def test_metaquery1(self): q = '/sources/source1/meters/instance' data = self.get('%s?metadata.tag=self.counter2' % q) diff --git a/tests/api/v1/list_meters.py b/tests/api/v1/test_list_meters_scenarios.py similarity index 92% rename from tests/api/v1/list_meters.py rename to tests/api/v1/test_list_meters_scenarios.py index 65d4b1946..6333a43ea 100644 --- a/tests/api/v1/list_meters.py +++ b/tests/api/v1/test_list_meters_scenarios.py @@ -21,6 +21,7 @@ import datetime import logging +import testscenarios from oslo.config import cfg @@ -29,11 +30,19 @@ from ceilometer import counter from ceilometer.tests import api as tests_api +load_tests = testscenarios.load_tests_apply_scenarios + LOG = logging.getLogger(__name__) class TestListEmptyMeters(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def test_empty(self): data = self.get('/meters') self.assertEquals({'meters': []}, data) @@ -41,6 +50,12 @@ class TestListEmptyMeters(tests_api.TestBase): class TestListMeters(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def setUp(self): super(TestListMeters, self).setUp() @@ -210,6 +225,12 @@ class TestListMeters(tests_api.TestBase): class TestListMetersMetaquery(TestListMeters): + scenarios = [ + #('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def test_metaquery1(self): data = self.get('/meters?metadata.tag=self.counter') self.assertEquals(1, len(data['meters'])) diff --git a/tests/api/v1/list_projects.py b/tests/api/v1/test_list_projects_scenarios.py similarity index 86% rename from tests/api/v1/list_projects.py rename to tests/api/v1/test_list_projects_scenarios.py index ab8960ecd..3c98edf5e 100644 --- a/tests/api/v1/list_projects.py +++ b/tests/api/v1/test_list_projects_scenarios.py @@ -21,6 +21,7 @@ import datetime import logging +import testscenarios from oslo.config import cfg @@ -29,11 +30,19 @@ from ceilometer import counter from ceilometer.tests import api as tests_api +load_tests = testscenarios.load_tests_apply_scenarios + LOG = logging.getLogger(__name__) class TestListEmptyProjects(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def test_empty(self): data = self.get('/projects') self.assertEquals({'projects': []}, data) @@ -41,6 +50,12 @@ class TestListEmptyProjects(tests_api.TestBase): class TestListProjects(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def setUp(self): super(TestListProjects, self).setUp() counter1 = counter.Counter( diff --git a/tests/api/v1/list_resources.py b/tests/api/v1/test_list_resources_scenarios.py similarity index 94% rename from tests/api/v1/list_resources.py rename to tests/api/v1/test_list_resources_scenarios.py index d95c0fc1b..b7283523a 100644 --- a/tests/api/v1/list_resources.py +++ b/tests/api/v1/test_list_resources_scenarios.py @@ -21,6 +21,7 @@ import datetime import logging +import testscenarios from oslo.config import cfg @@ -29,11 +30,19 @@ from ceilometer import counter from ceilometer.tests import api as tests_api +load_tests = testscenarios.load_tests_apply_scenarios + LOG = logging.getLogger(__name__) class TestListEmptyResources(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def test_empty(self): data = self.get('/resources') self.assertEquals({'resources': []}, data) @@ -41,6 +50,12 @@ class TestListEmptyResources(tests_api.TestBase): class TestListResourcesBase(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def setUp(self): super(TestListResourcesBase, self).setUp() @@ -262,6 +277,12 @@ class TestListResources(TestListResourcesBase): class TestListResourcesMetaquery(TestListResourcesBase): + scenarios = [ + #('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def test_metaquery1(self): q = '/sources/test_list_resources/resources' data = self.get('%s?metadata.display_name=test-server' % q) diff --git a/tests/api/v1/list_sources.py b/tests/api/v1/test_list_sources_scenarios.py similarity index 78% rename from tests/api/v1/list_sources.py rename to tests/api/v1/test_list_sources_scenarios.py index 399f7e455..34b9052f7 100644 --- a/tests/api/v1/list_sources.py +++ b/tests/api/v1/test_list_sources_scenarios.py @@ -17,12 +17,21 @@ # under the License. """Test listing users. """ +import testscenarios from ceilometer.tests import api as tests_api +load_tests = testscenarios.load_tests_apply_scenarios + class TestListSource(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def test_source(self): ydata = self.get('/sources/test_source') self.assert_("somekey" in ydata) diff --git a/tests/api/v1/list_users.py b/tests/api/v1/test_list_users_scenarios.py similarity index 86% rename from tests/api/v1/list_users.py rename to tests/api/v1/test_list_users_scenarios.py index 0dcec8d5f..29b2bed1f 100644 --- a/tests/api/v1/list_users.py +++ b/tests/api/v1/test_list_users_scenarios.py @@ -21,6 +21,7 @@ import datetime import logging +import testscenarios from oslo.config import cfg @@ -29,11 +30,19 @@ from ceilometer import counter from ceilometer.tests import api as tests_api +load_tests = testscenarios.load_tests_apply_scenarios + LOG = logging.getLogger(__name__) class TestListEmptyUsers(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def test_empty(self): data = self.get('/users') self.assertEquals({'users': []}, data) @@ -41,6 +50,12 @@ class TestListEmptyUsers(tests_api.TestBase): class TestListUsers(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def setUp(self): super(TestListUsers, self).setUp() diff --git a/tests/api/v1/max_project_volume.py b/tests/api/v1/test_max_project_volume_scenarios.py similarity index 92% rename from tests/api/v1/max_project_volume.py rename to tests/api/v1/test_max_project_volume_scenarios.py index 1ce269992..cb09224f4 100644 --- a/tests/api/v1/max_project_volume.py +++ b/tests/api/v1/test_max_project_volume_scenarios.py @@ -20,6 +20,7 @@ """ import datetime +import testscenarios from oslo.config import cfg @@ -28,9 +29,17 @@ from ceilometer import counter from ceilometer.tests import api as tests_api +load_tests = testscenarios.load_tests_apply_scenarios + class TestMaxProjectVolume(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def setUp(self): super(TestMaxProjectVolume, self).setUp() diff --git a/tests/api/v1/max_resource_volume.py b/tests/api/v1/test_max_resource_volume_scenarios.py similarity index 92% rename from tests/api/v1/max_resource_volume.py rename to tests/api/v1/test_max_resource_volume_scenarios.py index 9b3e27ea5..ef86509fd 100644 --- a/tests/api/v1/max_resource_volume.py +++ b/tests/api/v1/test_max_resource_volume_scenarios.py @@ -19,6 +19,7 @@ """ import datetime +import testscenarios from oslo.config import cfg @@ -27,9 +28,17 @@ from ceilometer import counter from ceilometer.tests import api as tests_api +load_tests = testscenarios.load_tests_apply_scenarios + class TestMaxResourceVolume(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def setUp(self): super(TestMaxResourceVolume, self).setUp() diff --git a/tests/api/v1/sum_project_volume.py b/tests/api/v1/test_sum_project_volume_scenarios.py similarity index 92% rename from tests/api/v1/sum_project_volume.py rename to tests/api/v1/test_sum_project_volume_scenarios.py index 72a0f70c9..21a6db3f7 100644 --- a/tests/api/v1/sum_project_volume.py +++ b/tests/api/v1/test_sum_project_volume_scenarios.py @@ -20,6 +20,7 @@ """ import datetime +import testscenarios from oslo.config import cfg @@ -28,9 +29,17 @@ from ceilometer import counter from ceilometer.tests import api as tests_api +load_tests = testscenarios.load_tests_apply_scenarios + class TestSumProjectVolume(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def setUp(self): super(TestSumProjectVolume, self).setUp() diff --git a/tests/api/v1/sum_resource_volume.py b/tests/api/v1/test_sum_resource_volume_scenarios.py similarity index 92% rename from tests/api/v1/sum_resource_volume.py rename to tests/api/v1/test_sum_resource_volume_scenarios.py index 352e3e2ac..cad49340f 100644 --- a/tests/api/v1/sum_resource_volume.py +++ b/tests/api/v1/test_sum_resource_volume_scenarios.py @@ -20,6 +20,7 @@ """ import datetime +import testscenarios from oslo.config import cfg @@ -28,9 +29,17 @@ from ceilometer import counter from ceilometer.tests import api as tests_api +load_tests = testscenarios.load_tests_apply_scenarios + class TestSumResourceVolume(tests_api.TestBase): + scenarios = [ + ('sqlalchemy', dict(database_connection='sqlite://')), + ('mongodb', dict(database_connection='mongodb://__test__')), + ('hbase', dict(database_connection='hbase://__test__')), + ] + def setUp(self): super(TestSumResourceVolume, self).setUp()