
The cfg API is now available via the oslo-config library, so switch to it and remove the copied-and-pasted version. Add the 2013.1b3 tarball to tools/pip-requires - this will be changed to 'oslo-config>=2013.1' when oslo-config is published to pypi. This will happen in time for grizzly final. For each testenv in tox.ini which overrides the base testenv deps list, explicitly include {pip,test}-requires in the list so that oslo-config doesn't fail to install later when easy_install attempts to install the tarball when doing 'python setup.py install'. Retain dummy cfg.py file until keystoneclient middleware has been updated (I18c450174277c8e2d15ed93879da6cd92074c27a). Change-Id: I4815aeb8a9341a31a250e920157f15ee15cfc5bc
141 lines
4.1 KiB
Python
141 lines
4.1 KiB
Python
# -*- encoding: utf-8 -*-
|
|
#
|
|
# Author: John Tran <jhtran@att.com>
|
|
#
|
|
# 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.
|
|
"""Tests for ceilometer/storage/impl_sqlalchemy.py
|
|
"""
|
|
|
|
import logging
|
|
import os
|
|
import sqlalchemy
|
|
|
|
from oslo.config import cfg
|
|
|
|
from tests.storage import base
|
|
from ceilometer.storage import impl_sqlalchemy
|
|
from ceilometer.storage.sqlalchemy.models import Project, User
|
|
from ceilometer.storage.sqlalchemy.models import table_args
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
CEILOMETER_TEST_LIVE = bool(int(os.environ.get('CEILOMETER_TEST_LIVE', 0)))
|
|
if CEILOMETER_TEST_LIVE:
|
|
MYSQL_DBNAME = 'ceilometer_test'
|
|
MYSQL_BASE_URL = 'mysql://ceilometer:somepass@localhost/'
|
|
MYSQL_URL = MYSQL_BASE_URL + MYSQL_DBNAME
|
|
|
|
|
|
class Connection(impl_sqlalchemy.Connection):
|
|
|
|
def _get_connection(self, conf):
|
|
try:
|
|
return super(Connection, self)._get_connection(conf)
|
|
except:
|
|
LOG.debug('Unable to connect to %s' % conf.database_connection)
|
|
raise
|
|
|
|
|
|
class SQLAlchemyEngine(base.DBEngineBase):
|
|
|
|
def clean_up(self):
|
|
engine_conn = self.session.bind.connect()
|
|
if CEILOMETER_TEST_LIVE:
|
|
engine_conn.execute('drop database %s' % MYSQL_DBNAME)
|
|
engine_conn.execute('create database %s' % MYSQL_DBNAME)
|
|
# needed for sqlite in-memory db to destroy
|
|
self.session.close_all()
|
|
self.session.bind.dispose()
|
|
|
|
def get_connection(self):
|
|
self.conf = cfg.CONF
|
|
self.conf.database_connection = 'sqlite://'
|
|
# Use a real MySQL server if we can connect, but fall back
|
|
# to a Sqlite in-memory connection if we cannot.
|
|
if CEILOMETER_TEST_LIVE:
|
|
# should pull from conf file but for now manually specified
|
|
# just make sure ceilometer_test db exists in mysql
|
|
self.conf.database_connection = MYSQL_URL
|
|
engine = sqlalchemy.create_engine(MYSQL_BASE_URL)
|
|
engine_conn = engine.connect()
|
|
try:
|
|
engine_conn.execute('drop database %s' % MYSQL_DBNAME)
|
|
except sqlalchemy.exc.OperationalError:
|
|
pass
|
|
engine_conn.execute('create database %s' % MYSQL_DBNAME)
|
|
|
|
self.conn = Connection(self.conf)
|
|
self.session = self.conn.session
|
|
self.conn.upgrade()
|
|
return self.conn
|
|
|
|
def get_sources_by_project_id(self, id):
|
|
project = self.session.query(Project).get('project-id')
|
|
return map(lambda x: x.id, project.sources)
|
|
|
|
def get_sources_by_user_id(self, id):
|
|
user = self.session.query(User).get('user-id')
|
|
return map(lambda x: x.id, user.sources)
|
|
|
|
|
|
class SQLAlchemyEngineTestBase(base.DBTestBase):
|
|
|
|
def get_engine(cls):
|
|
return SQLAlchemyEngine()
|
|
|
|
|
|
class UserTest(base.UserTest, SQLAlchemyEngineTestBase):
|
|
pass
|
|
|
|
|
|
class ProjectTest(base.ProjectTest, SQLAlchemyEngineTestBase):
|
|
pass
|
|
|
|
|
|
class ResourceTest(base.ResourceTest, SQLAlchemyEngineTestBase):
|
|
pass
|
|
|
|
|
|
class MeterTest(base.MeterTest, SQLAlchemyEngineTestBase):
|
|
pass
|
|
|
|
|
|
class RawEventTest(base.RawEventTest, SQLAlchemyEngineTestBase):
|
|
pass
|
|
|
|
|
|
class TestGetEventInterval(base.TestGetEventInterval,
|
|
SQLAlchemyEngineTestBase):
|
|
pass
|
|
|
|
|
|
class SumTest(base.SumTest, SQLAlchemyEngineTestBase):
|
|
pass
|
|
|
|
|
|
class MaxProjectTest(base.MaxProjectTest, SQLAlchemyEngineTestBase):
|
|
pass
|
|
|
|
|
|
class MaxResourceTest(base.MaxResourceTest, SQLAlchemyEngineTestBase):
|
|
pass
|
|
|
|
|
|
class StatisticsTest(base.StatisticsTest, SQLAlchemyEngineTestBase):
|
|
pass
|
|
|
|
|
|
def test_model_table_args():
|
|
cfg.CONF.database_connection = 'mysql://localhost'
|
|
assert table_args()
|