summaryrefslogtreecommitdiffstats
path: root/ansible/roles/application/molecule/default/tests/test_default.py
blob: 22298e3a724eb9f343e086d6e111506508943894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import os

import testinfra.utils.ansible_runner

testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
    os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')


def test_helm_commands(host):
    fc = host.file('/tmp/helm_simu_output').content_string
    expected_content = """home
init --upgrade --skip-refresh
version --tiller-connection-timeout 10
repo list
serve
repo list
repo add local http://127.0.0.1:8879
install --name moleculetestapp local/moleculetestapp --namespace \
moleculetestapp -f /opt/moleculetestapp/helm_charts/onap/resources/\
overrides/onap-all.yaml -f /opt/moleculetestapp/override.yaml \
--timeout 1800"""
    assert fc == expected_content


def test_helm_override_file(host):
    fc = host.file('/opt/moleculetestapp/override.yaml').content_string
    expected_content = """global:
    cacert: 'this is dummy server certificate value

        '"""
    assert fc == expected_content