blob: 31ac01ee371c3d22825e5a4ff6f11c9f8d4f241f [file] [log] [blame]
Oleksii Zhurba020fab42017-11-01 20:13:28 +00001import json
2import requests
Oleksii Zhurba84ce7fe2018-01-16 21:34:01 +00003import datetime
Oleksii Zhurba9848e212018-09-05 10:53:51 -05004import pytest
Oleksii Zhurba020fab42017-11-01 20:13:28 +00005
Oleksii Zhurba5b15b9b2019-05-09 18:53:40 -05006@pytest.mark.sl_dup
7#ElasticsearchClusterHealthStatusMajor or stacklight-pytest
8@pytest.mark.full
Oleksii Zhurba8ce9fcf2018-10-05 18:38:22 +03009@pytest.mark.usefixtures('check_kibana')
Oleksii Zhurba020fab42017-11-01 20:13:28 +000010def test_elasticsearch_cluster(local_salt_client):
Oleksii Zhurba4bfd2ee2019-04-10 21:56:58 -050011 salt_output = local_salt_client.pillar_get(
12 tgt='kibana:server',
13 param='_param:haproxy_elasticsearch_bind_host')
Oleksii Zhurba9848e212018-09-05 10:53:51 -050014
Oleksii Zhurbae592ed12018-06-21 18:01:09 -050015 proxies = {"http": None, "https": None}
Oleksii Zhurba4bfd2ee2019-04-10 21:56:58 -050016 IP = salt_output
17 assert requests.get('http://{}:9200/'.format(IP),
18 proxies=proxies).status_code == 200, \
19 'Cannot check elasticsearch url on {}.'.format(IP)
20 resp = requests.get('http://{}:9200/_cat/health'.format(IP),
21 proxies=proxies).content
22 assert resp.split()[3] == 'green', \
23 'elasticsearch status is not good {}'.format(
24 json.dumps(resp, indent=4))
25 assert resp.split()[4] == '3', \
26 'elasticsearch status is not good {}'.format(
27 json.dumps(resp, indent=4))
28 assert resp.split()[5] == '3', \
29 'elasticsearch status is not good {}'.format(
30 json.dumps(resp, indent=4))
31 assert resp.split()[10] == '0', \
32 'elasticsearch status is not good {}'.format(
33 json.dumps(resp, indent=4))
34 assert resp.split()[13] == '100.0%', \
35 'elasticsearch status is not good {}'.format(
36 json.dumps(resp, indent=4))
Oleksii Zhurba020fab42017-11-01 20:13:28 +000037
38
Oleksii Zhurba5b15b9b2019-05-09 18:53:40 -050039@pytest.mark.sl_dup
40#stacklight-pytest
41@pytest.mark.full
Oleksii Zhurba8ce9fcf2018-10-05 18:38:22 +030042@pytest.mark.usefixtures('check_kibana')
Ievgeniia Zadorozhna511f0ce2018-11-08 17:43:10 +030043def test_kibana_status(local_salt_client):
44 proxies = {"http": None, "https": None}
Oleksii Zhurba4bfd2ee2019-04-10 21:56:58 -050045 IP = local_salt_client.pillar_get(param='_param:stacklight_log_address')
Ievgeniia Zadorozhna511f0ce2018-11-08 17:43:10 +030046 resp = requests.get('http://{}:5601/api/status'.format(IP),
47 proxies=proxies).content
48 body = json.loads(resp)
49 assert body['status']['overall']['state'] == "green", \
50 "Kibana status is not expected: {}".format(
51 body['status']['overall'])
52 for i in body['status']['statuses']:
53 assert i['state'] == "green", \
54 "Kibana statuses are unexpected: {}".format(i)
55
56
Oleksii Zhurba5b15b9b2019-05-09 18:53:40 -050057@pytest.mark.smoke
58#TODO: recheck
Ievgeniia Zadorozhna511f0ce2018-11-08 17:43:10 +030059@pytest.mark.usefixtures('check_kibana')
Oleksii Zhurba84ce7fe2018-01-16 21:34:01 +000060def test_elasticsearch_node_count(local_salt_client):
61 now = datetime.datetime.now()
62 today = now.strftime("%Y.%m.%d")
Oleksii Zhurba4bfd2ee2019-04-10 21:56:58 -050063 salt_output = local_salt_client.pillar_get(
64 tgt='kibana:server',
65 param='_param:haproxy_elasticsearch_bind_host')
Oleksii Zhurba9848e212018-09-05 10:53:51 -050066
Oleksii Zhurba4bfd2ee2019-04-10 21:56:58 -050067 IP = salt_output
Tatyana Leontovich30bd90c2019-01-11 16:26:32 +020068 headers = {'Content-type': 'application/json', 'Accept': 'text/plain'}
Oleksii Zhurbae592ed12018-06-21 18:01:09 -050069 proxies = {"http": None, "https": None}
Tatyana Leontovich30bd90c2019-01-11 16:26:32 +020070 data = ('{"size": 0, "aggs": '
71 '{"uniq_hostname": '
Oleksii Zhurba5b15b9b2019-05-09 18:53:40 -050072 '{"terms": {"size": 500, '
Tatyana Leontovich30bd90c2019-01-11 16:26:32 +020073 '"field": "Hostname.keyword"}}}}')
74 response = requests.post(
75 'http://{0}:9200/log-{1}/_search?pretty'.format(IP, today),
76 proxies=proxies,
77 headers=headers,
78 data=data)
79 assert 200 == response.status_code, 'Unexpected code {}'.format(
80 response.text)
81 resp = json.loads(response.text)
Oleksii Zhurba4bfd2ee2019-04-10 21:56:58 -050082 cluster_domain = local_salt_client.pillar_get(param='_param:cluster_domain')
Oleksii Zhurbad2847dc2018-02-16 15:13:09 -060083 monitored_nodes = []
Oleksii Zhurba7f463412018-03-21 16:32:44 -050084 for item_ in resp['aggregations']['uniq_hostname']['buckets']:
Oleksii Zhurbad2847dc2018-02-16 15:13:09 -060085 node_name = item_['key']
86 monitored_nodes.append(node_name + '.' + cluster_domain)
87 missing_nodes = []
Oleksii Zhurba4bfd2ee2019-04-10 21:56:58 -050088 all_nodes = local_salt_client.test_ping(tgt='*').keys()
89 for node in all_nodes:
Oleksii Zhurbad2847dc2018-02-16 15:13:09 -060090 if node not in monitored_nodes:
91 missing_nodes.append(node)
92 assert len(missing_nodes) == 0, \
Oleksii Zhurba84ce7fe2018-01-16 21:34:01 +000093 'Not all nodes are in Elasticsearch. Found {0} keys, ' \
Oleksii Zhurbad2847dc2018-02-16 15:13:09 -060094 'expected {1}. Missing nodes: \n{2}'. \
Oleksii Zhurba4bfd2ee2019-04-10 21:56:58 -050095 format(len(monitored_nodes), len(all_nodes), missing_nodes)
Oleksii Zhurba84ce7fe2018-01-16 21:34:01 +000096
97
Oleksii Zhurba5b15b9b2019-05-09 18:53:40 -050098@pytest.mark.sl_dup
99#DockerServiceMonitoring*
100@pytest.mark.full
Oleksii Zhurba020fab42017-11-01 20:13:28 +0000101def test_stacklight_services_replicas(local_salt_client):
Oleksii Zhurba8ce9fcf2018-10-05 18:38:22 +0300102 # TODO
103 # change to docker:swarm:role:master ?
Oleksii Zhurba020fab42017-11-01 20:13:28 +0000104 salt_output = local_salt_client.cmd(
Oleksii Zhurba4bfd2ee2019-04-10 21:56:58 -0500105 tgt='I@docker:client:stack:monitoring and I@prometheus:server',
106 param='docker service ls',
Oleksii Zhurba8ce9fcf2018-10-05 18:38:22 +0300107 expr_form='compound')
Oleksii Zhurba9848e212018-09-05 10:53:51 -0500108
109 if not salt_output:
Oleksii Zhurba8ce9fcf2018-10-05 18:38:22 +0300110 pytest.skip("docker:client:stack:monitoring or \
111 prometheus:server pillars are not found on this environment.")
Oleksii Zhurba9848e212018-09-05 10:53:51 -0500112
Oleksii Zhurba020fab42017-11-01 20:13:28 +0000113 wrong_items = []
114 for line in salt_output[salt_output.keys()[0]].split('\n'):
115 if line[line.find('/') - 1] != line[line.find('/') + 1] \
116 and 'replicated' in line:
117 wrong_items.append(line)
118 assert len(wrong_items) == 0, \
119 '''Some monitoring services doesn't have expected number of replicas:
120 {}'''.format(json.dumps(wrong_items, indent=4))
121
122
Oleksii Zhurba5b15b9b2019-05-09 18:53:40 -0500123@pytest.mark.smoke
Oleksii Zhurba8ce9fcf2018-10-05 18:38:22 +0300124@pytest.mark.usefixtures('check_prometheus')
Oleksii Zhurba25215d92019-01-31 16:35:57 -0600125def test_prometheus_alert_count(local_salt_client, ctl_nodes_pillar):
Oleksii Zhurba4bfd2ee2019-04-10 21:56:58 -0500126 IP = local_salt_client.pillar_get(param='_param:cluster_public_host')
Oleksii Zhurba468e6c72018-01-16 17:43:15 +0000127 # keystone:server can return 3 nodes instead of 1
128 # this will be fixed later
129 # TODO
Oleksii Zhurba0c039ee2018-01-16 19:44:53 +0000130 nodes_info = local_salt_client.cmd(
Oleksii Zhurba4bfd2ee2019-04-10 21:56:58 -0500131 tgt=ctl_nodes_pillar,
132 param='curl -s http://{}:15010/alerts | grep icon-chevron-down | '
133 'grep -v "0 active"'.format(IP),
Oleksii Zhurba468e6c72018-01-16 17:43:15 +0000134 expr_form='pillar')
Oleksii Zhurba9848e212018-09-05 10:53:51 -0500135
Oleksii Zhurba0c039ee2018-01-16 19:44:53 +0000136 result = nodes_info[nodes_info.keys()[0]].replace('</td>', '').replace(
137 '<td><i class="icon-chevron-down"></i> <b>', '').replace('</b>', '')
138 assert result == '', 'AlertManager page has some alerts! {}'.format(
139 json.dumps(result), indent=4)
Oleksii Zhurba468e6c72018-01-16 17:43:15 +0000140
141
Oleksii Zhurba5b15b9b2019-05-09 18:53:40 -0500142@pytest.mark.sl_dup
143#DockerServiceMonitoring* ??
144@pytest.mark.full
Oleksii Zhurba020fab42017-11-01 20:13:28 +0000145def test_stacklight_containers_status(local_salt_client):
146 salt_output = local_salt_client.cmd(
Oleksii Zhurba4bfd2ee2019-04-10 21:56:58 -0500147 tgt='I@docker:swarm:role:master and I@prometheus:server',
148 param='docker service ps $(docker stack services -q monitoring)',
Oleksii Zhurba8ce9fcf2018-10-05 18:38:22 +0300149 expr_form='compound')
Oleksii Zhurba9848e212018-09-05 10:53:51 -0500150
151 if not salt_output:
Oleksii Zhurba8ce9fcf2018-10-05 18:38:22 +0300152 pytest.skip("docker:swarm:role:master or prometheus:server \
153 pillars are not found on this environment.")
Oleksii Zhurba9848e212018-09-05 10:53:51 -0500154
Oleksii Zhurba020fab42017-11-01 20:13:28 +0000155 result = {}
Oleksii Zhurba468e6c72018-01-16 17:43:15 +0000156 # for old reclass models, docker:swarm:role:master can return
157 # 2 nodes instead of one. Here is temporary fix.
158 # TODO
159 if len(salt_output.keys()) > 1:
160 if 'CURRENT STATE' not in salt_output[salt_output.keys()[0]]:
161 del salt_output[salt_output.keys()[0]]
Oleksii Zhurbaf2af6372017-11-01 22:53:03 +0000162 for line in salt_output[salt_output.keys()[0]].split('\n')[1:]:
Oleksii Zhurba020fab42017-11-01 20:13:28 +0000163 shift = 0
Oleksii Zhurba020fab42017-11-01 20:13:28 +0000164 if line.split()[1] == '\\_':
165 shift = 1
166 if line.split()[1 + shift] not in result.keys():
167 result[line.split()[1]] = 'NOT OK'
168 if line.split()[4 + shift] == 'Running' \
169 or line.split()[4 + shift] == 'Ready':
170 result[line.split()[1 + shift]] = 'OK'
171 assert 'NOT OK' not in result.values(), \
172 '''Some containers are in incorrect state:
173 {}'''.format(json.dumps(result, indent=4))
Oleksii Zhurbae592ed12018-06-21 18:01:09 -0500174
175
Oleksii Zhurba5b15b9b2019-05-09 18:53:40 -0500176@pytest.mark.sl_dup
177#PrometheusTargetDown
178@pytest.mark.full
Oleksii Zhurbae592ed12018-06-21 18:01:09 -0500179def test_running_telegraf_services(local_salt_client):
Oleksii Zhurba4bfd2ee2019-04-10 21:56:58 -0500180 salt_output = local_salt_client.cmd(tgt='telegraf:agent',
181 fun='service.status',
182 param='telegraf',
183 expr_form='pillar',)
Oleksii Zhurba9848e212018-09-05 10:53:51 -0500184
185 if not salt_output:
186 pytest.skip("Telegraf or telegraf:agent \
187 pillar are not found on this environment.")
188
Oleksii Zhurbae592ed12018-06-21 18:01:09 -0500189 result = [{node: status} for node, status
190 in salt_output.items()
191 if status is False]
192 assert result == [], 'Telegraf service is not running ' \
Oleksii Zhurba9848e212018-09-05 10:53:51 -0500193 'on following nodes: {}'.format(result)
Ievgeniia Zadorozhna6775eb72018-11-09 19:50:04 +0300194
195
Oleksii Zhurba5b15b9b2019-05-09 18:53:40 -0500196@pytest.mark.sl_dup
197#PrometheusTargetDown
198@pytest.mark.full
Ievgeniia Zadorozhna6775eb72018-11-09 19:50:04 +0300199def test_running_fluentd_services(local_salt_client):
Oleksii Zhurba4bfd2ee2019-04-10 21:56:58 -0500200 salt_output = local_salt_client.cmd(tgt='fluentd:agent',
201 fun='service.status',
202 param='td-agent',
Ievgeniia Zadorozhna6775eb72018-11-09 19:50:04 +0300203 expr_form='pillar')
204 result = [{node: status} for node, status
205 in salt_output.items()
206 if status is False]
207 assert result == [], 'Fluentd check failed: td-agent service is not ' \
Oleksii Zhurba5b15b9b2019-05-09 18:53:40 -0500208 'running on following nodes:'.format(result)