Allows to define a global preference for metric datasources with the ability for strategy specific overrides. In addition, strategies which do not require datasources have the config options removed this is done to prevent confusion. Some documentation that details the inner workings of selecting datasources is updated. Imports for some files in watcher/common have been changed to resolve circular dependencies and now match the overall method to import configuration. Addtional datasources will be retrieved by the manager if the datasource throws an error. Implements: blueprint global-datasource-preference Change-Id: I6fc455b288e338c20d2c4cfec5a0c95350bebc36
60 lines
2.3 KiB
Python
60 lines
2.3 KiB
Python
# -*- encoding: utf-8 -*-
|
|
# Copyright (c) 2017 Servionica
|
|
#
|
|
# 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.
|
|
|
|
import mock
|
|
|
|
from watcher.common import exception
|
|
from watcher.datasources import gnocchi
|
|
from watcher.datasources import manager as ds_manager
|
|
from watcher.tests import base
|
|
|
|
|
|
class TestDataSourceManager(base.BaseTestCase):
|
|
|
|
def test_get_backend(self):
|
|
manager = ds_manager.DataSourceManager(
|
|
config=mock.MagicMock(
|
|
datasources=['gnocchi', 'ceilometer', 'monasca']),
|
|
osc=mock.MagicMock())
|
|
backend = manager.get_backend(['host_cpu_usage', 'instance_cpu_usage'])
|
|
self.assertEqual(backend, manager.gnocchi)
|
|
|
|
def test_get_backend_order(self):
|
|
manager = ds_manager.DataSourceManager(
|
|
config=mock.MagicMock(
|
|
datasources=['monasca', 'ceilometer', 'gnocchi']),
|
|
osc=mock.MagicMock())
|
|
backend = manager.get_backend(['host_cpu_usage', 'instance_cpu_usage'])
|
|
self.assertEqual(backend, manager.monasca)
|
|
|
|
def test_get_backend_wrong_metric(self):
|
|
manager = ds_manager.DataSourceManager(
|
|
config=mock.MagicMock(
|
|
datasources=['gnocchi', 'ceilometer', 'monasca']),
|
|
osc=mock.MagicMock())
|
|
self.assertRaises(exception.NoSuchMetric, manager.get_backend,
|
|
['host_cpu', 'instance_cpu_usage'])
|
|
|
|
@mock.patch.object(gnocchi, 'GnocchiHelper')
|
|
def test_get_backend_error_datasource(self, m_gnocchi):
|
|
m_gnocchi.side_effect = exception.DataSourceNotAvailable
|
|
manager = ds_manager.DataSourceManager(
|
|
config=mock.MagicMock(
|
|
datasources=['gnocchi', 'ceilometer', 'monasca']),
|
|
osc=mock.MagicMock())
|
|
backend = manager.get_backend(['host_cpu_usage', 'instance_cpu_usage'])
|
|
self.assertEqual(backend, manager.ceilometer)
|