summaryrefslogtreecommitdiffstats
path: root/ansible/roles/application/molecule/default/tests/test_default.py
blob: 116205f054fbb9758dafe5190892e6ee6cb41413 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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.strip()
    helm_release = host.ansible.get_variables()['helm_version']
    if helm_release == 'v2':
        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
deploy moleculetestapp local/moleculetestapp --namespace \
moleculetestapp -f /opt/moleculetestapp/helm_charts/onap/resources/\
overrides/onap-all.yaml -f /opt/moleculetestapp/override.yaml \
--timeout 1800"""
        expected_plugin_path = '/plugins/deploy/deploy.sh'
    elif helm_release == 'v3':
        expected_content = """env
repo list
repo add local http://127.0.0.1:8879
deploy moleculetestapp local/moleculetestapp --namespace \
moleculetestapp -f /opt/moleculetestapp/helm_charts/onap/resources/\
overrides/onap-all.yaml -f /opt/moleculetestapp/override.yaml \
--timeout 1800s"""
        expected_plugin_path = '/root/.local/share/helm/plugins/deploy/' +\
                               'deploy.sh'
    assert fc == expected_content
    assert host.file(expected_plugin_path).exists


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

        '"""
    assert fc == expected_content