blob: ee835ff660053ab7236ef96e8af1cdc4b7092532 [file] [log] [blame]
Tatyana Leontovichc8b8ca22017-05-19 13:37:05 +03001# Copyright 2016 Mirantis, Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
Tatyana Leontovich063d0ff2017-09-05 18:11:55 +030015import os
16
Dennis Dmitriev9d9ba9f2017-09-13 17:34:03 +030017from devops.helpers import decorators
18
Tatyana Leontovichc8b8ca22017-05-19 13:37:05 +030019from tcp_tests.managers.execute_commands import ExecuteCommandsMixin
Tatyana Leontovich09b7b012017-07-10 12:53:45 +030020from tcp_tests.managers.clients.prometheus import prometheus_client
Tatyana Leontovich126b0032017-08-30 20:51:20 +030021from tcp_tests import logger
22
23LOG = logger.logger
Tatyana Leontovichc8b8ca22017-05-19 13:37:05 +030024
25
26class SLManager(ExecuteCommandsMixin):
27 """docstring for OpenstackManager"""
28
29 __config = None
30 __underlay = None
31
32 def __init__(self, config, underlay, salt):
33 self.__config = config
34 self.__underlay = underlay
35 self._salt = salt
Tatyana Leontovich09b7b012017-07-10 12:53:45 +030036 self._p_client = None
Tatyana Leontovichc8b8ca22017-05-19 13:37:05 +030037 super(SLManager, self).__init__(
38 config=config, underlay=underlay)
39
40 def install(self, commands):
41 self.execute_commands(commands,
42 label='Install SL services')
vrovachev700a7b02017-05-23 18:36:48 +040043 self.__config.stack_light.sl_installed = True
Tatyana Leontovich09b7b012017-07-10 12:53:45 +030044 self.__config.stack_light.sl_vip_host = self.get_sl_vip()
45
46 def get_sl_vip(self):
47 sl_vip_address_pillars = self._salt.get_pillar(
48 tgt='I@keepalived:cluster:enabled:true and not ctl*',
49 pillar='keepalived:cluster:instance:prometheus_server_vip:address')
50 sl_vip_ip = set([ip
Dina Belovae6fdffb2017-09-19 13:58:34 -070051 for item in sl_vip_address_pillars
52 for node, ip in item.items() if ip])
Tatyana Leontovich09b7b012017-07-10 12:53:45 +030053 assert len(sl_vip_ip) == 1, (
54 "Found more than one SL VIP in pillars:{0}, "
55 "expected one!").format(sl_vip_ip)
56 sl_vip_ip_host = sl_vip_ip.pop()
57 return sl_vip_ip_host
58
59 @property
60 def api(self):
61 if self._p_client is None:
62 self._p_client = prometheus_client.PrometheusClient(
63 host=self.__config.stack_light.sl_vip_host,
64 port=self.__config.stack_light.sl_prometheus_port,
65 proto=self.__config.stack_light.sl_prometheus_proto)
66 return self._p_client
Tatyana Leontovich126b0032017-08-30 20:51:20 +030067
68 def get_monitoring_nodes(self):
69 return [node_name for node_name
70 in self.__underlay.node_names() if 'mon' in node_name]
71
72 def get_service_info_from_node(self, node_name):
73 service_stat_dict = {}
74 with self.__underlay.remote(node_name=node_name) as node_remote:
75 result = node_remote.execute(
76 "docker service ls --format '{{.Name}}:{{.Replicas}}'")
77 LOG.debug("Service ls result {0} from node {1}".format(
78 result['stdout'], node_name))
79 for line in result['stdout']:
80 tmp = line.split(':')
81 service_stat_dict.update({tmp[0]: tmp[1]})
82 return service_stat_dict
Tatyana Leontovich063d0ff2017-09-05 18:11:55 +030083
84 def run_sl_functional_tests(self, node_to_run, path_tests_to_run):
85 target_node_name = [node_name for node_name
86 in self.__underlay.node_names()
87 if node_to_run in node_name]
Dina Belovae6fdffb2017-09-19 13:58:34 -070088 with self.__underlay.remote(node_name=target_node_name[0]) \
89 as node_remote:
Tatyana Leontovich8cce8b62017-09-13 12:55:44 +030090 cmd = "pytest -k {}".format(path_tests_to_run)
Tatyana Leontovich063d0ff2017-09-05 18:11:55 +030091 result = node_remote.execute(cmd)
92 LOG.debug("Test execution result is {}".format(result))
93 return result
94
95 def download_sl_test_report(self, stored_node, file_path):
96 target_node_name = [node_name for node_name
97 in self.__underlay.node_names()
98 if stored_node in node_name]
99 with self.__underlay.remote(node_name=target_node_name[0]) as r:
100 r.download(
101 destination=file_path,
102 target=os.getcwd())
Dennis Dmitriev9d9ba9f2017-09-13 17:34:03 +0300103
104 def check_docker_services(self, nodes, expected_services):
105 """Check presense of the specified docker services on all the nodes
106 :param nodes: list of strings, names of nodes to check
107 :param expected_services: list of strings, names of services to find
108 """
109 for node in nodes:
110 services_status = self.get_service_info_from_node(node)
111 assert len(services_status) == len(expected_services), \
112 'Some services are missed on node {0}. ' \
113 'Current service list: {1}\nExpected service list: {2}' \
114 .format(node, services_status, expected_services)
115 for service in expected_services:
116 assert service in services_status,\
Dina Belovae6fdffb2017-09-19 13:58:34 -0700117 'Missing service {0} in {1}'.format(service,
118 services_status)
Dennis Dmitriev9d9ba9f2017-09-13 17:34:03 +0300119 assert '0' not in services_status.get(service),\
120 'Service {0} failed to start'.format(service)
121
122 @decorators.retry(AssertionError, count=10, delay=5)
123 def check_prometheus_targets(self, nodes):
124 """Check the status for Prometheus targets
125 :param nodes: list of strings, names of nodes with keepalived VIP
126 """
127 prometheus_client = self.api
128 try:
129 current_targets = prometheus_client.get_targets()
130 except:
131 LOG.info('Restarting keepalived service on mon nodes...')
132 for node in nodes:
133 self._salt.local(tgt=node, fun='cmd.run',
Dina Belovae6fdffb2017-09-19 13:58:34 -0700134 args='systemctl restart keepalived')
Dennis Dmitriev9d9ba9f2017-09-13 17:34:03 +0300135 LOG.warning(
136 'Ip states after force restart {0}'.format(
137 self._salt.local(tgt='mon*',
Dina Belovae6fdffb2017-09-19 13:58:34 -0700138 fun='cmd.run', args='ip a')))
Dennis Dmitriev9d9ba9f2017-09-13 17:34:03 +0300139 current_targets = prometheus_client.get_targets()
140
141 LOG.debug('Current targets after install {0}'
142 .format(current_targets))
143 # Assert that targets are up
144 for entry in current_targets:
145 assert 'up' in entry['health'], \
146 'Next target is down {}'.format(entry)
147
148