64 lines
2.5 KiB
Python
64 lines
2.5 KiB
Python
# 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.
|
|
|
|
from fuelweb_test.helpers.decorators import log_snapshot_after_test
|
|
from proboscis import test
|
|
|
|
from stacklight_tests.toolchain import api
|
|
|
|
|
|
@test(groups=["openstack_telemetry"])
|
|
class TestOpenstackTelemetry(api.ToolchainApi):
|
|
"""Class for testing the Openstack Telemetry Plugin."""
|
|
|
|
@test(depends_on_groups=['prepare_slaves_5'],
|
|
groups=["deploy_openstack_telemetry", "deploy",
|
|
"openstack_telemetry", "smoke"])
|
|
@log_snapshot_after_test
|
|
def deploy_openstack_telemetry(self):
|
|
"""Deploy an environment with Openstack-Telemetry plugin
|
|
with Elasticsearch and InfluxDB backends.
|
|
|
|
1. Upload the Openstack-Telemetry, Elasticsearch-Kibana and
|
|
InfluxDB-Grafana plugins to the master node
|
|
2. Install the plugins
|
|
3. Create the cluster
|
|
4. Add 3 nodes with controller roles
|
|
5. Add 1 node with compute and cinder roles
|
|
6. Add 1 node with elasticsearch_kibana and influxdb_grafana roles
|
|
7. Deploy the cluster
|
|
8. Check that plugins are running
|
|
9. Run OSTF
|
|
|
|
Duration 90m
|
|
"""
|
|
self.check_run("deploy_openstack_telemetry")
|
|
self.env.revert_snapshot("ready_with_5_slaves")
|
|
self.add_plugin(self.OPENSTACK_TELEMETRY)
|
|
self.disable_plugin(self.LMA_COLLECTOR)
|
|
self.disable_plugin(self.LMA_INFRASTRUCTURE_ALERTING)
|
|
self.prepare_plugins()
|
|
self.helpers.create_cluster(name=self.__class__.__name__)
|
|
self.activate_plugins()
|
|
roles = ["elasticsearch_kibana", "influxdb_grafana"]
|
|
self.helpers.deploy_cluster(
|
|
{'slave-01': ['controller'],
|
|
'slave-02': ['controller'],
|
|
'slave-03': ['controller'],
|
|
'slave-04': ['compute', 'cinder'],
|
|
'slave-05': roles})
|
|
self.check_plugins_online()
|
|
self.helpers.run_ostf()
|
|
self.env.make_snapshot("deploy_openstack_telemetry", is_make=True)
|