c41249e488
This is a first change towards implementing bug #1131638. It clears a lot of stuff in the various DB mocking stuff, and I plan to do more after. In the same process, this implements a unit test and a fix for bug #1138137 Change-Id: I36a6741393455c764913e0388d73d834db06da8c Signed-off-by: Julien Danjou <julien@danjou.info>
109 lines
3.4 KiB
Python
109 lines
3.4 KiB
Python
# -*- encoding: utf-8 -*-
|
|
#
|
|
# Copyright © 2012 New Dream Network, LLC (DreamHost)
|
|
#
|
|
# Author: Doug Hellmann <doug.hellmann@dreamhost.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.
|
|
"""In-memory storage driver for use with tests.
|
|
|
|
This driver is based on MIM, an in-memory version of MongoDB.
|
|
"""
|
|
|
|
import os
|
|
from ming import mim
|
|
|
|
from ceilometer.openstack.common import log as logging
|
|
|
|
from ceilometer.storage import base
|
|
from ceilometer.storage import impl_mongodb
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class TestDBStorage(base.StorageEngine):
|
|
"""Put the data into an in-memory database for testing
|
|
|
|
This driver is based on MIM, an in-memory version of MongoDB.
|
|
|
|
Collections::
|
|
|
|
- user
|
|
- { _id: user id
|
|
source: [ array of source ids reporting for the user ]
|
|
}
|
|
- project
|
|
- { _id: project id
|
|
source: [ array of source ids reporting for the project ]
|
|
}
|
|
- meter
|
|
- the raw incoming data
|
|
- resource
|
|
- the metadata for resources
|
|
- { _id: uuid of resource,
|
|
metadata: metadata dictionaries
|
|
timestamp: datetime of last update
|
|
user_id: uuid
|
|
project_id: uuid
|
|
meter: [ array of {counter_name: string, counter_type: string,
|
|
counter_unit: string} ]
|
|
}
|
|
"""
|
|
|
|
OPTIONS = []
|
|
|
|
def register_opts(self, conf):
|
|
"""Register any configuration options used by this engine.
|
|
"""
|
|
conf.register_opts(self.OPTIONS)
|
|
|
|
def get_connection(self, conf):
|
|
"""Return a Connection instance based on the configuration settings.
|
|
"""
|
|
return TestConnection(conf)
|
|
|
|
|
|
class TestConnection(impl_mongodb.Connection):
|
|
|
|
_mim_instance = None
|
|
FORCE_MONGO = bool(int(os.environ.get('CEILOMETER_TEST_LIVE', 0)))
|
|
|
|
def clear(self):
|
|
if TestConnection._mim_instance is not None:
|
|
# Don't want to use drop_database() because
|
|
# may end up running out of spidermonkey instances.
|
|
# http://davisp.lighthouseapp.com/projects/26898/tickets/22
|
|
self.db.clear()
|
|
else:
|
|
super(TestConnection, self).clear()
|
|
|
|
def _get_connection(self, conf):
|
|
# Use a real MongoDB server if we can connect, but fall back
|
|
# to a Mongo-in-memory connection if we cannot.
|
|
if self.FORCE_MONGO:
|
|
try:
|
|
return super(TestConnection, self)._get_connection(conf)
|
|
except:
|
|
LOG.debug('Unable to connect to mongodb')
|
|
raise
|
|
else:
|
|
LOG.debug('Using MIM for test connection')
|
|
|
|
# MIM will die if we have too many connections, so use a
|
|
# Singleton
|
|
if TestConnection._mim_instance is None:
|
|
LOG.debug('Creating a new MIM Connection object')
|
|
TestConnection._mim_instance = mim.Connection()
|
|
return TestConnection._mim_instance
|