blob: 1a9773710c7e8466c795140cbe71ae9fce65a184 [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.
Tatyana Leontovicha6c64a72017-10-25 22:21:18 +030014import json
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
sgudzbf4de572017-11-23 14:37:01 +020040 def install(self, commands, label='Install SL services'):
41 self.execute_commands(commands, label=label)
vrovachev700a7b02017-05-23 18:36:48 +040042 self.__config.stack_light.sl_installed = True
Tatyana Leontovich09b7b012017-07-10 12:53:45 +030043 self.__config.stack_light.sl_vip_host = self.get_sl_vip()
44
45 def get_sl_vip(self):
sgudzcced67d2017-10-11 15:56:09 +030046 tgt = 'I@prometheus:server:enabled:True'
47 pillar = 'keepalived:cluster:instance:prometheus_server_vip:address'
48 sl_vip_address_pillars = self._salt.get_pillar(tgt=tgt,
49 pillar=pillar)
Tatyana Leontovich09b7b012017-07-10 12:53:45 +030050 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])
sgudzcced67d2017-10-11 15:56:09 +030053 if not sl_vip_ip:
54 pillar = 'keepalived:cluster:instance:VIP:address'
55 sl_vip_address_pillars = self._salt.get_pillar(tgt=tgt,
56 pillar=pillar)
57 sl_vip_ip = set([ip
58 for item in sl_vip_address_pillars
59 for node, ip in item.items() if ip])
Tatyana Leontovich09b7b012017-07-10 12:53:45 +030060 assert len(sl_vip_ip) == 1, (
sgudz4fab65f2017-10-25 16:51:56 +030061 "SL VIP not found or found more than one SL VIP in pillars:{0}, "
Tatyana Leontovich09b7b012017-07-10 12:53:45 +030062 "expected one!").format(sl_vip_ip)
63 sl_vip_ip_host = sl_vip_ip.pop()
64 return sl_vip_ip_host
65
66 @property
67 def api(self):
68 if self._p_client is None:
69 self._p_client = prometheus_client.PrometheusClient(
70 host=self.__config.stack_light.sl_vip_host,
71 port=self.__config.stack_light.sl_prometheus_port,
72 proto=self.__config.stack_light.sl_prometheus_proto)
73 return self._p_client
Tatyana Leontovich126b0032017-08-30 20:51:20 +030074
75 def get_monitoring_nodes(self):
76 return [node_name for node_name
77 in self.__underlay.node_names() if 'mon' in node_name]
78
79 def get_service_info_from_node(self, node_name):
80 service_stat_dict = {}
81 with self.__underlay.remote(node_name=node_name) as node_remote:
82 result = node_remote.execute(
83 "docker service ls --format '{{.Name}}:{{.Replicas}}'")
84 LOG.debug("Service ls result {0} from node {1}".format(
85 result['stdout'], node_name))
86 for line in result['stdout']:
87 tmp = line.split(':')
88 service_stat_dict.update({tmp[0]: tmp[1]})
89 return service_stat_dict
Tatyana Leontovich063d0ff2017-09-05 18:11:55 +030090
Tatyana Leontovich58ae7552017-09-22 11:24:06 +030091 def run_sl_functional_tests(self, node_to_run, tests_path,
92 test_to_run, skip_tests):
Tatyana Leontovich063d0ff2017-09-05 18:11:55 +030093 target_node_name = [node_name for node_name
94 in self.__underlay.node_names()
95 if node_to_run in node_name]
Tatyana Leontovich58ae7552017-09-22 11:24:06 +030096 if skip_tests:
Tatyana Leontovicha6c64a72017-10-25 22:21:18 +030097 cmd = ("cd {0}; "
98 "export VOLUME_STATUS='available'; "
99 "pytest -k 'not {1}' {2}".format(
Dennis Dmitriev9b02c8b2017-11-13 15:31:35 +0200100 tests_path, skip_tests, test_to_run))
Tatyana Leontovich58ae7552017-09-22 11:24:06 +0300101 else:
Tatyana Leontovicha6c64a72017-10-25 22:21:18 +0300102 cmd = ("cd {0}; "
103 "export VOLUME_STATUS='available'; "
104 "pytest -k {1}".format(tests_path, test_to_run))
Dina Belovae6fdffb2017-09-19 13:58:34 -0700105 with self.__underlay.remote(node_name=target_node_name[0]) \
106 as node_remote:
Tatyana Leontovich58ae7552017-09-22 11:24:06 +0300107 LOG.debug("Run {0} on the node {1}".format(
108 cmd, target_node_name[0]))
Tatyana Leontovich063d0ff2017-09-05 18:11:55 +0300109 result = node_remote.execute(cmd)
110 LOG.debug("Test execution result is {}".format(result))
111 return result
112
Tatyana Leontovicha6c64a72017-10-25 22:21:18 +0300113 def run_sl_tests_json(self, node_to_run, tests_path,
114 test_to_run, skip_tests):
115 target_node_name = [node_name for node_name
116 in self.__underlay.node_names()
117 if node_to_run in node_name]
118 if skip_tests:
119 cmd = ("cd {0}; "
120 "export VOLUME_STATUS='available'; "
121 "pytest --json=report.json -k 'not {1}' {2}".format(
Dennis Dmitriev9b02c8b2017-11-13 15:31:35 +0200122 tests_path, skip_tests, test_to_run))
Tatyana Leontovicha6c64a72017-10-25 22:21:18 +0300123 else:
124 cmd = ("cd {0}; "
125 "export VOLUME_STATUS='available'; "
126 "pytest --json=report.json -k {1}".format(
Dennis Dmitriev9b02c8b2017-11-13 15:31:35 +0200127 tests_path, test_to_run))
Tatyana Leontovicha6c64a72017-10-25 22:21:18 +0300128 with self.__underlay.remote(node_name=target_node_name[0]) \
129 as node_remote:
130 LOG.debug("Run {0} on the node {1}".format(
131 cmd, target_node_name[0]))
132 node_remote.execute('pip install pytest-json')
133 node_remote.execute(cmd)
134 res = node_remote.execute('cd {0}; cat report.json'.format(
135 tests_path))
136 LOG.debug("Test execution result is {}".format(res['stdout']))
137 result = json.loads(res['stdout'][0])
138 return result['report']['tests']
139
Tatyana Leontovich063d0ff2017-09-05 18:11:55 +0300140 def download_sl_test_report(self, stored_node, file_path):
141 target_node_name = [node_name for node_name
142 in self.__underlay.node_names()
143 if stored_node in node_name]
144 with self.__underlay.remote(node_name=target_node_name[0]) as r:
145 r.download(
146 destination=file_path,
147 target=os.getcwd())
Dennis Dmitriev9d9ba9f2017-09-13 17:34:03 +0300148
149 def check_docker_services(self, nodes, expected_services):
150 """Check presense of the specified docker services on all the nodes
151 :param nodes: list of strings, names of nodes to check
152 :param expected_services: list of strings, names of services to find
153 """
154 for node in nodes:
155 services_status = self.get_service_info_from_node(node)
156 assert len(services_status) == len(expected_services), \
157 'Some services are missed on node {0}. ' \
158 'Current service list: {1}\nExpected service list: {2}' \
159 .format(node, services_status, expected_services)
160 for service in expected_services:
161 assert service in services_status,\
Dina Belovae6fdffb2017-09-19 13:58:34 -0700162 'Missing service {0} in {1}'.format(service,
163 services_status)
Dennis Dmitriev9d9ba9f2017-09-13 17:34:03 +0300164 assert '0' not in services_status.get(service),\
165 'Service {0} failed to start'.format(service)
166
167 @decorators.retry(AssertionError, count=10, delay=5)
168 def check_prometheus_targets(self, nodes):
169 """Check the status for Prometheus targets
170 :param nodes: list of strings, names of nodes with keepalived VIP
171 """
172 prometheus_client = self.api
173 try:
174 current_targets = prometheus_client.get_targets()
Dennis Dmitriev9b02c8b2017-11-13 15:31:35 +0200175 except Exception:
Dennis Dmitriev9d9ba9f2017-09-13 17:34:03 +0300176 LOG.info('Restarting keepalived service on mon nodes...')
177 for node in nodes:
178 self._salt.local(tgt=node, fun='cmd.run',
Dina Belovae6fdffb2017-09-19 13:58:34 -0700179 args='systemctl restart keepalived')
Dennis Dmitriev9d9ba9f2017-09-13 17:34:03 +0300180 LOG.warning(
181 'Ip states after force restart {0}'.format(
182 self._salt.local(tgt='mon*',
Dina Belovae6fdffb2017-09-19 13:58:34 -0700183 fun='cmd.run', args='ip a')))
Tatyana Leontovicha6c64a72017-10-25 22:21:18 +0300184 self._salt.local(tgt="mon*", fun='cmd.run',
185 args='systemctl restart keepalived')
Dennis Dmitriev9d9ba9f2017-09-13 17:34:03 +0300186 current_targets = prometheus_client.get_targets()
187
188 LOG.debug('Current targets after install {0}'
189 .format(current_targets))
190 # Assert that targets are up
191 for entry in current_targets:
192 assert 'up' in entry['health'], \
193 'Next target is down {}'.format(entry)
Tatyana Leontovicha6c64a72017-10-25 22:21:18 +0300194
195 def kill_sl_service_on_node(self, node_sub_name, service_name):
196 target_node_name = [node_name for node_name
197 in self.__underlay.node_names()
198 if node_sub_name in node_name]
199 cmd = 'kill -9 $(pidof {0})'.format(service_name)
200 with self.__underlay.remote(node_name=target_node_name[0]) \
201 as node_remote:
202 LOG.debug("Run {0} on the node {1}".format(
203 cmd, target_node_name[0]))
204 res = node_remote.execute(cmd)
205 LOG.debug("Test execution result is {}".format(res))
206 assert res['exit_code'] == 0, (
207 'Unexpected exit code for command {0}, '
208 'current result {1}'.format(cmd, res))
209
210 def stop_sl_service_on_node(self, node_sub_name, service_name):
211 target_node_name = [node_name for node_name
212 in self.__underlay.node_names()
213 if node_sub_name in node_name]
214 cmd = 'systemctl stop {}'.format(service_name)
215 with self.__underlay.remote(node_name=target_node_name[0]) \
216 as node_remote:
217 LOG.debug("Run {0} on the node {1}".format(
218 cmd, target_node_name[0]))
219 res = node_remote.execute(cmd)
220 LOG.debug("Test execution result is {}".format(res))
221 assert res['exit_code'] == 0, (
222 'Unexpected exit code for command {0}, '
223 'current result {1}'.format(cmd, res))
224
225 def post_data_into_influx(self, node_sub_name):
226 target_node_name = [node_name for node_name
227 in self.__underlay.node_names()
228 if node_sub_name in node_name]
229 vip = self.get_sl_vip()
230 cmd = ("curl -POST 'http://{0}:8086/write?db=lma' -u "
231 "lma:lmapass --data-binary 'mymeas value=777'".format(vip))
232 with self.__underlay.remote(node_name=target_node_name[0]) \
233 as node_remote:
234 LOG.debug("Run {0} on the node {1}".format(
235 cmd, target_node_name[0]))
236 res = node_remote.execute(cmd)
237 assert res['exit_code'] == 0, (
238 'Unexpected exit code for command {0}, '
239 'current result {1}'.format(cmd, res))
240
241 def check_data_in_influxdb(self, node_sub_name):
242 target_node_name = [node_name for node_name
243 in self.__underlay.node_names()
244 if node_sub_name in node_name]
245 vip = self.get_sl_vip()
246 cmd = ("influx -host {0} -port 8086 -database lma "
247 "-username lma -password lmapass -execute "
248 "'select * from mymeas' -precision rfc3339;".format(vip))
249 with self.__underlay.remote(node_name=target_node_name[0]) \
250 as node_remote:
251 LOG.debug("Run {0} on the node {1}".format(
252 cmd, target_node_name[0]))
253 res = node_remote.execute(cmd)
254 assert res['exit_code'] == 0, (
255 'Unexpected exit code for command {0}, '
256 'current result {1}'.format(cmd, res))
Dennis Dmitriev8ce85152017-11-29 00:05:12 +0200257 if res['stdout']:
258 return res['stdout'][0].rstrip()
259 else:
260 return ''
Tatyana Leontovicha6c64a72017-10-25 22:21:18 +0300261
262 def start_service(self, node_sub_name, service_name):
263 target_node_name = [node_name for node_name
264 in self.__underlay.node_names()
265 if node_sub_name in node_name]
266 cmd = 'systemctl start {0}'.format(service_name)
267 with self.__underlay.remote(node_name=target_node_name[0]) \
268 as node_remote:
269 LOG.debug("Run {0} on the node {1}".format(
270 cmd, target_node_name[0]))
271 res = node_remote.execute(cmd)
272 assert res['exit_code'] == 0, (
273 'Unexpected exit code for command {0}, '
274 'current result {1}'.format(cmd, res))