[MOLECULE] Fix 'application' role run 47/120647/4
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>
Mon, 19 Apr 2021 14:52:02 +0000 (16:52 +0200)
committerBartek Grzybowski <b.grzybowski@partner.samsung.com>
Tue, 20 Apr 2021 10:05:44 +0000 (12:05 +0200)
Add ansible-lint ignore rule to skip warning about unnamed task

Fix verifier test

Change-Id: Ie75c379b1678a594ad9a3e95442d04fc58939e6e
Issue-ID: OOM-2722
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
ansible/roles/application/molecule/default/tests/test_default.py
ansible/roles/application/tasks/main.yml

index f57f5af..116205f 100644 (file)
@@ -7,7 +7,7 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
 
 
 def test_helm_commands(host):
-    fc = host.file('/tmp/helm_simu_output').content_string
+    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
@@ -37,7 +37,7 @@ overrides/onap-all.yaml -f /opt/moleculetestapp/override.yaml \
 
 
 def test_helm_override_file(host):
-    fc = host.file('/opt/moleculetestapp/override.yaml').content_string
+    fc = host.file('/opt/moleculetestapp/override.yaml').content_string.strip()
     expected_content = """global:
     cacert: 'this is dummy server certificate value
 
index 3018e95..aa24374 100644 (file)
@@ -19,6 +19,6 @@
     - include_tasks: post-install.yml
   when: install_needed
 
-- debug:
+- debug:  # noqa unnamed-task
     msg: "NOTE, nothing done as application Helm charts does not exist!"
   when: not install_needed