Update cnf_testsuite v0.34.0 46/73546/2
authorCédric Ollivier <cedric.ollivier@orange.com>
Mon, 17 Oct 2022 07:09:54 +0000 (09:09 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Mon, 17 Oct 2022 07:40:50 +0000 (09:40 +0200)
It now runs cert (replacing workload)
It downgrades msg to warning as cnf_testsuite now returns
non 0 values.

Change-Id: I0ce4f201065bf601111d7154cb4afa31e9a4666c
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 4338a2532600e659179335a5f5f71ab15f83f8d7)

docker/cnf/Dockerfile
functest_kubernetes/cnf_conformance/conformance.py

index 7e6c38f..690313d 100644 (file)
@@ -1,6 +1,6 @@
 FROM opnfv/functest-kubernetes-core
 
-ARG CNF_TESTSUITE_TAG=v0.15.0
+ARG CNF_TESTSUITE_TAG=v0.34.0
 ARG HELM_TAG=v3.3.1
 
 RUN apk --no-cache add --update wget curl libc6-compat ncurses && \
@@ -26,6 +26,7 @@ RUN apk --no-cache add --update wget curl libc6-compat ncurses && \
             git checkout FETCH_HEAD) && \
         ln -s /src/cnf-testsuite/example-cnfs/coredns/cnf-testsuite.yml /src/cnf-testsuite/cnf-testsuite.yml && \
         ln -s /src/cnf-testsuite/points-all.yml /src/cnf-testsuite/points.yml && \
+        ln -s /usr/local/bin/cnf-testsuite /src/cnf-testsuite/cnf-testsuite && \
         rm -rf /src/cnf-testsuite-$CNF_TESTSUITE_TAG.tar.gz /src/cnf-testsuite/.git ;; esac
 COPY testcases.yaml /etc/xtesting/testcases.yaml
 CMD ["run_tests", "-t", "all"]
index e3e3fe0..a248928 100644 (file)
@@ -38,7 +38,7 @@ class CNFConformance(testcase.TestCase):
 
     src_dir = '/src/cnf-testsuite'
     bin_dir = '/usr/local/bin'
-    default_tag = 'workload'
+    default_tag = 'cert'
 
     __logger = logging.getLogger(__name__)
 
@@ -110,15 +110,15 @@ class CNFConformance(testcase.TestCase):
             self.setup()
             self.run_conformance(**kwargs)
         except subprocess.CalledProcessError as exc:
-            self.__logger.exception(
+            self.__logger.warning(
                 "Can not run CNT Conformance: \n%s\n%s\n",
                 " ".join(exc.cmd), exc.output.decode("utf-8"))
         except Exception:  # pylint: disable=broad-except
-            self.__logger.exception("Can not run CNF Conformance")
+            self.__logger.warning("CNF Conformance exited with errors")
         self.stop_time = time.time()
 
     def clean(self):
-        for clean_cmd in ['uninstall_cri_tools', 'uninstall_falco',
+        for clean_cmd in ['uninstall_falco',
                           'cnf_cleanup']:
             cmd = ['cnf-testsuite', clean_cmd,
                    'cnf-config=cnf-testsuite.yml']