Merge "Add functional tests for Redis plugin"
This commit is contained in:
commit
37333a7473
@ -12,11 +12,33 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
|
import ceilometerclient.v2.client
|
||||||
|
|
||||||
from stacklight_tests import base_test
|
from stacklight_tests import base_test
|
||||||
from stacklight_tests.ceilometer_redis import plugin_settings
|
from stacklight_tests.ceilometer_redis import plugin_settings
|
||||||
|
from stacklight_tests.helpers import helpers
|
||||||
|
|
||||||
|
|
||||||
class CeilometerRedisPluginApi(base_test.PluginApi):
|
class CeilometerRedisPluginApi(base_test.PluginApi):
|
||||||
|
def __init__(self):
|
||||||
|
super(CeilometerRedisPluginApi, self).__init__()
|
||||||
|
self._ceilometer = None
|
||||||
|
|
||||||
|
@property
|
||||||
|
def ceilometer(self):
|
||||||
|
if self._ceilometer is None:
|
||||||
|
keystone = self.helpers.os_conn.keystone
|
||||||
|
try:
|
||||||
|
endpoint = keystone.service_catalog.url_for(
|
||||||
|
service_type='metering',
|
||||||
|
endpoint_type='internalURL')
|
||||||
|
except helpers.NotFound("Cannot initialize ceilometer client"):
|
||||||
|
return None
|
||||||
|
|
||||||
|
self._ceilometer = ceilometerclient.v2.Client(
|
||||||
|
endpoint=endpoint, token=lambda: keystone.auth_token)
|
||||||
|
return self._ceilometer
|
||||||
|
|
||||||
def get_plugin_vip(self):
|
def get_plugin_vip(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@ -27,8 +49,30 @@ class CeilometerRedisPluginApi(base_test.PluginApi):
|
|||||||
self.helpers.prepare_plugin(self.settings.plugin_path)
|
self.helpers.prepare_plugin(self.settings.plugin_path)
|
||||||
|
|
||||||
def run_ostf(self):
|
def run_ostf(self):
|
||||||
self.helpers.run_ostf(test_sets=['sanity', 'smoke', 'ha',
|
self.fuel_web.run_ostf(
|
||||||
'tests_platform'])
|
cluster_id=self.helpers.cluster_id,
|
||||||
|
test_sets=['smoke', 'sanity'],
|
||||||
|
timeout=60 * 15
|
||||||
|
)
|
||||||
|
|
||||||
|
test_class_main = ('fuel_health.tests.tests_platform.'
|
||||||
|
'test_ceilometer.'
|
||||||
|
'CeilometerApiPlatformTests')
|
||||||
|
|
||||||
|
tests_names = ['test_check_alarm_state',
|
||||||
|
'test_create_sample',
|
||||||
|
'test_check_volume_events',
|
||||||
|
'test_check_glance_notifications',
|
||||||
|
'test_check_keystone_notifications',
|
||||||
|
'test_check_neutron_notifications',
|
||||||
|
'test_check_events_and_traits']
|
||||||
|
|
||||||
|
test_classes = ['{0}.{1}'.format(test_class_main, test_name)
|
||||||
|
for test_name in tests_names]
|
||||||
|
|
||||||
|
for test_name in test_classes:
|
||||||
|
self.helpers.run_single_ostf(
|
||||||
|
test_sets=['tests_platform'], test_name=test_name)
|
||||||
|
|
||||||
def activate_plugin(self, options=None):
|
def activate_plugin(self, options=None):
|
||||||
if options is None:
|
if options is None:
|
||||||
|
@ -26,3 +26,4 @@ base_nodes = {
|
|||||||
'slave-04': ['compute', 'cinder'],
|
'slave-04': ['compute', 'cinder'],
|
||||||
'slave-05': ['compute', 'cinder']
|
'slave-05': ['compute', 'cinder']
|
||||||
}
|
}
|
||||||
|
polling_interval = 600
|
||||||
|
114
stacklight_tests/ceilometer_redis/test_functional.py
Normal file
114
stacklight_tests/ceilometer_redis/test_functional.py
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
# Copyright 2016 Mirantis, Inc.
|
||||||
|
#
|
||||||
|
# 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 datetime
|
||||||
|
import tempfile
|
||||||
|
import time
|
||||||
|
|
||||||
|
from proboscis import asserts
|
||||||
|
from proboscis import test
|
||||||
|
|
||||||
|
from fuelweb_test.helpers.decorators import log_snapshot_after_test
|
||||||
|
from stacklight_tests.ceilometer_redis import api
|
||||||
|
|
||||||
|
|
||||||
|
@test(groups=["plugins"])
|
||||||
|
class TestFunctionalCeilometerRedisPlugin(api.CeilometerRedisPluginApi):
|
||||||
|
"""Class for functional testing of Ceilometer-Redis plugin."""
|
||||||
|
|
||||||
|
@test(depends_on_groups=["deploy_ceilometer_redis"],
|
||||||
|
groups=["central_agents_restart", "ceilometer_redis",
|
||||||
|
"functional"])
|
||||||
|
@log_snapshot_after_test
|
||||||
|
def central_agents_restart_ceilometer_redis(self):
|
||||||
|
"""Verify that all measurements are collected
|
||||||
|
after stopping one of central agents.
|
||||||
|
"""
|
||||||
|
|
||||||
|
controller = self.fuel_web.get_nailgun_cluster_nodes_by_roles(
|
||||||
|
self.helpers.cluster_id, ['controller'])[0]
|
||||||
|
with self.fuel_web.get_ssh_for_nailgun_node(controller) as remote:
|
||||||
|
remote.execute('pcs resource ban p_ceilometer-agent-central '
|
||||||
|
'$(hostname) --wait=100')
|
||||||
|
result = remote.execute(' ps aux | grep -v grep | grep'
|
||||||
|
' -c ceilometer-polling')['stdout'][0]
|
||||||
|
msg = "Agent central wasn't stopped"
|
||||||
|
asserts.assert_true(int(result) == 0, msg)
|
||||||
|
self.run_ostf()
|
||||||
|
|
||||||
|
@test(depends_on_groups=["deploy_ceilometer_redis"],
|
||||||
|
groups=["check_polling_logs", "ceilometer_redis",
|
||||||
|
"functional"])
|
||||||
|
@log_snapshot_after_test
|
||||||
|
def check_polling_logs_ceilometer_redis(self):
|
||||||
|
"""Check 'Joined partitioning group agent-central'
|
||||||
|
in the aodh-evaluator logs.
|
||||||
|
"""
|
||||||
|
|
||||||
|
controllers = self.fuel_web.get_nailgun_cluster_nodes_by_roles(
|
||||||
|
self.helpers.cluster_id, ['controller'])
|
||||||
|
for controller in controllers:
|
||||||
|
with self.fuel_web.get_ssh_for_nailgun_node(controller) as remote:
|
||||||
|
result = remote.execute("cat /var/log/ceilometer/"
|
||||||
|
"ceilometer-polling.log | "
|
||||||
|
"grep 'Joined partitioning "
|
||||||
|
"group central-global' ")['stdout']
|
||||||
|
msg = ("'Joined partitioning group agent-central' "
|
||||||
|
"not found in ceilometer-polling.log")
|
||||||
|
asserts.assert_true(len(result) > 0, msg)
|
||||||
|
|
||||||
|
@test(depends_on_groups=["deploy_ceilometer_redis"],
|
||||||
|
groups=["check_alarm_evaluator_logs", "ceilometer_redis",
|
||||||
|
"functional"])
|
||||||
|
@log_snapshot_after_test
|
||||||
|
def check_alarm_evaluator_logs_ceilometer_redis(self):
|
||||||
|
"""Check 'Joined partitioning group alarm_evaluator'
|
||||||
|
in the ceilometer-polling logs.
|
||||||
|
"""
|
||||||
|
|
||||||
|
controllers = self.fuel_web.get_nailgun_cluster_nodes_by_roles(
|
||||||
|
self.helpers.cluster_id, ['controller'])
|
||||||
|
for controller in controllers:
|
||||||
|
with self.fuel_web.get_ssh_for_nailgun_node(controller) as remote:
|
||||||
|
result = remote.execute("cat /var/log/aodh/aodh-evaluator.log "
|
||||||
|
"| grep 'Joined partitioning group"
|
||||||
|
" alarm_evaluator' ")['stdout']
|
||||||
|
msg = ("'Joined partitioning group alarm_evaluator' not found in "
|
||||||
|
"aodh-evaluator.log")
|
||||||
|
asserts.assert_true(len(result) > 0, msg)
|
||||||
|
|
||||||
|
@test(depends_on_groups=["deploy_ceilometer_redis"],
|
||||||
|
groups=["check_samples_ceilometer_redis", "ceilometer_redis",
|
||||||
|
"functional"])
|
||||||
|
@log_snapshot_after_test
|
||||||
|
def check_samples_ceilometer_redis(self):
|
||||||
|
"""Check that for one polling interval only one 'image' sample exists.
|
||||||
|
"""
|
||||||
|
|
||||||
|
with tempfile.TemporaryFile() as fp:
|
||||||
|
fp.write('Test')
|
||||||
|
fp.seek(0)
|
||||||
|
image = self.helpers.os_conn.create_image(name='Redis',
|
||||||
|
container_format='bare',
|
||||||
|
disk_format='qcow2',
|
||||||
|
data=fp)
|
||||||
|
time.sleep(2 * self.settings.polling_interval)
|
||||||
|
f = datetime.datetime.now() - datetime.timedelta(seconds=600)
|
||||||
|
query = [{'field': 'timestamp', 'op': 'ge', 'value': f.isoformat()},
|
||||||
|
{'field': 'resource_id', 'op': 'eq', 'value': image.id}]
|
||||||
|
sample_count = self.ceilometer.statistics.list(
|
||||||
|
q=query, meter_name='image')[0].count
|
||||||
|
msg = ("Expected 1 image sample for one "
|
||||||
|
"polling period , got : {0} .").format(sample_count)
|
||||||
|
asserts.assert_true(sample_count == 1, msg)
|
@ -39,6 +39,7 @@ class CloseSSHConnectionsPlugin(plugins.Plugin):
|
|||||||
|
|
||||||
|
|
||||||
def import_tests():
|
def import_tests():
|
||||||
|
from stacklight_tests.ceilometer_redis import test_functional # noqa
|
||||||
from stacklight_tests.ceilometer_redis import test_smoke_bvt # noqa
|
from stacklight_tests.ceilometer_redis import test_smoke_bvt # noqa
|
||||||
from stacklight_tests.ceilometer_redis import test_system # noqa
|
from stacklight_tests.ceilometer_redis import test_system # noqa
|
||||||
from stacklight_tests.elasticsearch_kibana import test_smoke_bvt # noqa
|
from stacklight_tests.elasticsearch_kibana import test_smoke_bvt # noqa
|
||||||
|
Loading…
x
Reference in New Issue
Block a user