blob: 2765e81cb3c4d41877493245d5a57f60b4b37aad [file] [log] [blame]
#!/usr/bin/env python3
# Copyright 2021 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.
#
# For those usages not covered by the Apache License, Version 2.0 please
# contact: legal@canonical.com
#
# To get in touch with the maintainers, please contact:
# osm-charmers@lists.launchpad.net
##
import sys
from typing import NoReturn
import unittest
from charm import NgUiCharm
from ops.model import ActiveStatus, BlockedStatus
from ops.testing import Harness
class TestCharm(unittest.TestCase):
"""Prometheus Charm unit tests."""
def setUp(self) -> NoReturn:
"""Test setup"""
self.image_info = sys.modules["oci_image"].OCIImageResource().fetch()
self.harness = Harness(NgUiCharm)
self.harness.set_leader(is_leader=True)
self.harness.begin()
self.config = {
"server_name": "localhost",
"port": 80,
"max_file_size": 0,
"ingress_whitelist_source_range": "",
"tls_secret_name": "",
"site_url": "https://ui.192.168.100.100.nip.io",
"cluster_issuer": "vault-issuer",
}
self.harness.update_config(self.config)
def test_config_changed_no_relations(
self,
) -> NoReturn:
"""Test ingress resources without HTTP."""
self.harness.charm.on.config_changed.emit()
# Assertions
self.assertIsInstance(self.harness.charm.unit.status, BlockedStatus)
self.assertTrue(
all(
relation in self.harness.charm.unit.status.message
for relation in ["nbi"]
)
)
def test_config_changed_non_leader(
self,
) -> NoReturn:
"""Test ingress resources without HTTP."""
self.harness.set_leader(is_leader=False)
self.harness.charm.on.config_changed.emit()
# Assertions
self.assertIsInstance(self.harness.charm.unit.status, ActiveStatus)
def test_with_relations(
self,
) -> NoReturn:
"Test with relations (internal)"
self.initialize_nbi_relation()
# Verifying status
self.assertNotIsInstance(self.harness.charm.unit.status, BlockedStatus)
def initialize_nbi_relation(self):
http_relation_id = self.harness.add_relation("nbi", "nbi")
self.harness.add_relation_unit(http_relation_id, "nbi")
self.harness.update_relation_data(
http_relation_id,
"nbi",
{"host": "nbi", "port": 9999},
)
if __name__ == "__main__":
unittest.main()