Skip to content

Commit

Permalink
Implement openstack exporter test
Browse files Browse the repository at this point in the history
  • Loading branch information
gboutry committed Oct 26, 2023
1 parent cab219c commit e5707c7
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
15 changes: 15 additions & 0 deletions zaza/openstack/charm_tests/openstack_exporter/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright 2020 Canonical Ltd.
#
# 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.

"""Collection of code for setting up and testing openstack exporter."""
49 changes: 49 additions & 0 deletions zaza/openstack/charm_tests/openstack_exporter/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
#!/usr/bin/env python3

# Copyright 2020 Canonical Ltd.
#
# 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.

"""Encapsulate Openstack Exporter testing."""

import requests
import zaza.charm_lifecycle.utils as lifecycle_utils
import zaza.model
import zaza.openstack.charm_tests.test_utils as test_utils


class OpenstackExporterTest(test_utils.OpenStackBaseTest):
"""Class for Openstack Exporter tests."""

@classmethod
def setUpClass(cls):
"""Run class setup for running hacluster tests."""
cls.model_name = zaza.model.get_juju_model()
cls.test_config = lifecycle_utils.get_charm_config(fatal=False)

@staticmethod
def get_internal_ips(application, model_name):
"""Return the internal ip addresses an application."""
status = zaza.model.get_status(model_name=model_name)
units = status['applications'][application]["units"]
return [v.address for v in units.values()]

def get_openstack_exporter_ips(self):
"""Return the internal ip addresses of the openstack exporter units."""
return self.get_internal_ips("openstack-exporter", self.model_name)

def test_openstack_exporter(self):
"""Test gathering metrics from openstack exporter."""
for ip in self.get_openstack_exporter_ips():
response = requests.get(f"http://{ip}:9180/metrics")
response.raise_for_status()

0 comments on commit e5707c7

Please sign in to comment.