Create system test for Zabbix plugin

Implement tests for zabbix monitoring system

Change-Id: I6095b083c67f1649a622f93fc8472e1997a216d1
Implements: implement-tests-for-monitoring-system
This commit is contained in:
azatserkliany 2015-03-27 17:18:38 +02:00
parent f1c16d552f
commit 273e512776
5 changed files with 138 additions and 0 deletions

View File

@ -13,3 +13,5 @@ python-neutronclient>=2.0
Jinja2
AllPairs==2.0.1
launchpadlib
beautifulsoup4>=4.2.0
requests>=2.2.0

View File

@ -40,6 +40,7 @@ def import_tests():
from tests.plugins.plugin_glusterfs import test_plugin_glusterfs # noqa
from tests.plugins.plugin_lbaas import test_plugin_lbaas # noqa
from tests.plugins.plugin_reboot import test_plugin_reboot_task # noqa
from tests.plugins.plugin_zabbix import test_plugin_zabbix # noqa
from tests import test_multiple_networks # noqa
from tests.gd_based_tests import test_neutron # noqa
from tests.gd_based_tests import test_neutron_vlan_ceph_mongo # noqa

View File

@ -349,6 +349,7 @@ GLUSTER_PLUGIN_PATH = os.environ.get('GLUSTER_PLUGIN_PATH')
GLUSTER_CLUSTER_ENDPOINT = os.environ.get('GLUSTER_CLUSTER_ENDPOINT')
EXAMPLE_PLUGIN_PATH = os.environ.get('EXAMPLE_PLUGIN_PATH')
LBAAS_PLUGIN_PATH = os.environ.get('LBAAS_PLUGIN_PATH')
ZABBIX_PLUGIN_PATH = os.environ.get('ZABBIX_PLUGIN_PATH')
FUEL_STATS_CHECK = os.environ.get('FUEL_STATS_CHECK', 'false') == 'true'
FUEL_STATS_ENABLED = os.environ.get('FUEL_STATS_ENABLED', 'true') == 'true'

View File

@ -0,0 +1,134 @@
# Copyright 2015 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 os
import re
import bs4
from proboscis.asserts import assert_equal
from proboscis.asserts import assert_true
from proboscis import test
import requests
from fuelweb_test import logger
from fuelweb_test import settings as conf
from fuelweb_test.helpers import checkers
from fuelweb_test.helpers.decorators import log_snapshot_on_error
from fuelweb_test.tests.base_test_case import SetupEnvironment
from fuelweb_test.tests.base_test_case import TestBasic
@test(groups=["plugins"])
class ZabbixPlugin(TestBasic):
@test(depends_on=[SetupEnvironment.prepare_slaves_5],
groups=["deploy_zabbix_ha"])
@log_snapshot_on_error
def deploy_zabbix_ha(self):
"""Deploy cluster in ha mode with zabbix plugin
Scenario:
1. Upload plugin to the master node
2. Install plugin
3. Create cluster
4. Add 3 nodes with controller role
5. Add 1 node with compute role
6. Add 1 node with cinder role
7. Deploy the cluster
8. Run network verification
9. check plugin health
10. Run OSTF
Duration 70m
Snapshot deploy_zabbix_ha
"""
self.env.revert_snapshot("ready_with_5_slaves")
# copy plugin to the master node
checkers.upload_tarball(
self.env.d_env.get_admin_remote(), conf.ZABBIX_PLUGIN_PATH, "/var")
# install plugin
checkers.install_plugin_check_code(
self.env.d_env.get_admin_remote(),
plugin=os.path.basename(conf.ZABBIX_PLUGIN_PATH))
settings = None
if conf.NEUTRON_ENABLE:
settings = {
"net_provider": "neutron",
"net_segment_type": conf.NEUTRON_SEGMENT_TYPE
}
cluster_id = self.fuel_web.create_cluster(
name=self.__class__.__name__,
mode=conf.DEPLOYMENT_MODE,
settings=settings
)
attr = self.fuel_web.client.get_cluster_attributes(cluster_id)
if "zabbix_monitoring" in attr["editable"]:
plugin_data = attr["editable"]["zabbix_monitoring"]["metadata"]
plugin_data['enabled'] = True
self.fuel_web.client.update_cluster_attributes(cluster_id, attr)
self.fuel_web.update_nodes(
cluster_id,
{
"slave-01": ["controller"],
"slave-02": ["controller"],
"slave-03": ["controller"],
"slave-04": ["compute"],
"slave-05": ["cinder"]
}
)
self.fuel_web.deploy_cluster_wait(cluster_id)
logger.debug("Start checking service on node slave-01")
cmd = "crm resource status p_zabbix-server"
remote = self.fuel_web.get_ssh_for_node("slave-01")
response = remote.execute(cmd)["stdout"][0]
assert_true("p_zabbix-server is running" in response,
"Response: {0}".format(response))
self.fuel_web.verify_network(cluster_id)
self.fuel_web.run_ostf(cluster_id=cluster_id)
logger.debug("Start checking login to zabbix dashboard")
zabbix_ip = self.fuel_web.get_public_vip(cluster_id)
zabbix_url = "http://{0}/zabbix/".format(zabbix_ip)
req = "request=&name=admin&password=zabbix&autologin=1&enter=Sign+in"
session = requests.Session()
res = session.post("{0}?{1}".format(zabbix_url, req))
assert_equal(res.status_code, 200, "HTTP {0}".format(res.status_code))
logger.debug("Zabbix dashboard {0}".format(zabbix_url))
res = session.get("{0}/screens.php".format(zabbix_url))
assert_equal(res.status_code, 200, "HTTP {0}".format(res.status_code))
soup = bs4.BeautifulSoup(res.content)
output = soup.find_all('a')
screen_graphids = []
for s in output:
m = re.match(r".*graphid=(?P<id>\d+).*", "{0}".format(s))
if m:
screen_graphids.append(m.group("id"))
assert_true(screen_graphids, "No Graphs at the screen")
self.env.make_snapshot("deploy_zabbix_ha")