Update cnf-conformance to cnf-testsuite 64/72464/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Mon, 3 May 2021 07:32:59 +0000 (09:32 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Mon, 3 May 2021 08:37:35 +0000 (10:37 +0200)
https://github.com/cncf/cnf-conformance
https://github.com/cncf/cnf-testsuite

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

ansible/site.gate.yml
ansible/site.yml
docker/cnf/Dockerfile
docker/cnf/testcases.yaml
functest_kubernetes/cnf_conformance/conformance.py
setup.cfg

index 58bdd31..4b29e3e 100644 (file)
@@ -63,4 +63,4 @@
           tests:
             - k8s_vims
             - helm_vims
-            - cnf_conformance
+            - cnf_testsuite
index 0233548..cce8b09 100644 (file)
@@ -48,4 +48,4 @@
           tests:
             - k8s_vims
             - helm_vims
-            - cnf_conformance
+            - cnf_testsuite
index a1fb5c0..1b22276 100644 (file)
@@ -1,7 +1,7 @@
 FROM opnfv/functest-kubernetes-core:leguer
 
 ARG K8S_TAG=1.20
-ARG CNF_CONFORMANCE_TAG=v0.9.19
+ARG CNF_TESTSUITE_TAG=v0.11.0
 ARG HELM_TAG=v3.3.1
 
 RUN apk --no-cache add --update wget curl libc6-compat && \
@@ -16,20 +16,20 @@ RUN apk --no-cache add --update wget curl libc6-compat && \
     chmod +x /usr/local/bin/kubectl /usr/local/bin/helm && \
     rm -r /src/helm-$HELM_TAG-linux-$arch.tar.gz /src/linux-$arch && \
     case $(uname -m) in x86_64) \
-        curl https://github.com/cncf/cnf-conformance/releases/download/$CNF_CONFORMANCE_TAG/cnf-conformance-$CNF_CONFORMANCE_TAG.tar.gz \
-            -L --output /src/cnf-conformance-$CNF_CONFORMANCE_TAG.tar.gz && \
-        tar zxf /src/cnf-conformance-$CNF_CONFORMANCE_TAG.tar.gz ./cnf-conformance -C /usr/local/bin && \
-        chmod +x /usr/local/bin/cnf-conformance && \
-        mkdir /src/cnf-conformance && \
-        curl -L https://raw.githubusercontent.com/cncf/cnf-conformance/$CNF_CONFORMANCE_TAG/example-cnfs/coredns/cnf-conformance.yml \
-            --output /src/cnf-conformance/cnf-conformance.yml && \
-        curl -L https://raw.githubusercontent.com/cncf/cnf-conformance/$CNF_CONFORMANCE_TAG/points.yml \
-            --output /src/cnf-conformance/points.yml && \
-        mkdir -p /src/cnf-conformance/spec/fixtures && \
+        curl https://github.com/cncf/cnf-testsuite/releases/download/$CNF_TESTSUITE_TAG/cnf-testsuite-$CNF_TESTSUITE_TAG.tar.gz \
+            -L --output /src/cnf-testsuite-$CNF_TESTSUITE_TAG.tar.gz && \
+        tar zxf /src/cnf-testsuite-$CNF_TESTSUITE_TAG.tar.gz ./cnf-testsuite -C /usr/local/bin && \
+        chmod +x /usr/local/bin/cnf-testsuite && \
+        mkdir /src/cnf-testsuite && \
+        curl -L https://raw.githubusercontent.com/cncf/cnf-testsuite/$CNF_TESTSUITE_TAG/example-cnfs/coredns/cnf-conformance.yml \
+            --output /src/cnf-testsuite/cnf-conformance.yml && \
+        curl -L https://raw.githubusercontent.com/cncf/cnf-testsuite/$CNF_TESTSUITE_TAG/points.yml \
+            --output /src/cnf-testsuite/points.yml && \
+        mkdir -p /src/cnf-testsuite/spec/fixtures && \
         for yml in chaos_network_loss.yml chaos_cpu_hog.yml chaos_container_kill.yml; do \
-            curl -L https://raw.githubusercontent.com/cncf/cnf-conformance/$CNF_CONFORMANCE_TAG/spec/fixtures/$yml \
-                --output /src/cnf-conformance/spec/fixtures/$yml; done && \
+            curl -L https://raw.githubusercontent.com/cncf/cnf-testsuite/$CNF_TESTSUITE_TAG/spec/fixtures/$yml \
+                --output /src/cnf-testsuite/spec/fixtures/$yml; done && \
         helm repo add stable https://cncf.gitlab.io/stable && \
-        rm /src/cnf-conformance-$CNF_CONFORMANCE_TAG.tar.gz ;; esac
+        rm /src/cnf-testsuite-$CNF_TESTSUITE_TAG.tar.gz ;; esac
 COPY testcases.yaml /usr/lib/python3.8/site-packages/xtesting/ci/testcases.yaml
 CMD ["run_tests", "-t", "all"]
index 287747d..98e9a19 100644 (file)
@@ -28,15 +28,15 @@ tiers:
         run:
           name: helm_vims
 
-      - case_name: cnf_conformance
+      - case_name: cnf_testsuite
         project_name: functest
         criteria: 90
         blocking: false
         description: >-
           Enable interoperability of Cloud native Network
           Functions (CNFs) as proposed by
-          https://github.com/cncf/cnf-conformance
+          https://github.com/cncf/cnf-testsuite
         dependencies:
           - DEPLOY_SCENARIO: "k8-*"
         run:
-          name: cnf_conformance
+          name: cnf_testsuite
index 3bb3170..1ef42ad 100644 (file)
@@ -11,7 +11,7 @@
 The CNF Conformance program enables interoperability of Cloud native Network
 Functions (CNFs) from multiple vendors running on top of Kubernetes supplied by
 different vendors [1].
-[1] https://github.com/cncf/cnf-conformance
+[1] https://github.com/cncf/cnf-testsuite
 """
 
 from __future__ import division
@@ -36,7 +36,7 @@ class CNFConformance(testcase.TestCase):
     https://hackmd.io/@vulk/SkY54QnsU
     """
 
-    src_dir = '/src/cnf-conformance'
+    src_dir = '/src/cnf-testsuite'
     bin_dir = '/usr/local/bin'
     default_tag = 'workload'
 
@@ -48,10 +48,10 @@ class CNFConformance(testcase.TestCase):
         self.output_debug_log_name = 'functest-kubernetes.debug.log'
 
     def check_requirements(self):
-        """Check if cnf-conformance is in $PATH"""
-        if not os.path.exists(os.path.join(self.bin_dir, 'cnf-conformance')):
+        """Check if cnf-testsuite is in $PATH"""
+        if not os.path.exists(os.path.join(self.bin_dir, 'cnf-testsuite')):
             self.__logger.warning(
-                "cnf-conformance is not compiled for arm and arm64 for the "
+                "cnf-testsuite is not compiled for arm and arm64 for the "
                 "time being")
             self.is_skipped = True
 
@@ -70,21 +70,21 @@ class CNFConformance(testcase.TestCase):
                 os.path.join(self.src_dir, 'spec/fixtures', cfile),
                 os.path.join(self.res_dir, 'spec/fixtures', cfile))
         os.chdir(self.res_dir)
-        cmd = ['cnf-conformance', 'setup']
+        cmd = ['cnf-testsuite', 'setup']
         output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
         self.__logger.info("%s\n%s", " ".join(cmd), output.decode("utf-8"))
-        cmd = ['cnf-conformance', 'cnf_setup',
+        cmd = ['cnf-testsuite', 'cnf_setup',
                'cnf-config=cnf-conformance.yml']
         output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
         self.__logger.info("%s\n%s", " ".join(cmd), output.decode("utf-8"))
 
     def run_conformance(self, **kwargs):
         """Run CNF Conformance"""
-        cmd = ['cnf-conformance', kwargs.get("tag", self.default_tag)]
+        cmd = ['cnf-testsuite', kwargs.get("tag", self.default_tag)]
         output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
         self.__logger.info("%s\n%s", " ".join(cmd), output.decode("utf-8"))
         lfiles = glob.glob(os.path.join(
-            self.res_dir, 'results', 'cnf-conformance-results-*.yml'))
+            self.res_dir, 'results', 'cnf-testsuite-results-*.yml'))
         results = max(lfiles, key=os.path.getmtime)
         with open(os.path.join(self.res_dir, 'results', results)) as yfile:
             self.details = yaml.safe_load(yfile)
@@ -112,7 +112,7 @@ class CNFConformance(testcase.TestCase):
         self.stop_time = time.time()
 
     def clean(self):
-        cmd = ['cnf-conformance', 'cnf_cleanup',
+        cmd = ['cnf-testsuite', 'cnf_cleanup',
                'cnf-config=cnf-conformance.yml']
         output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
         self.__logger.info("%s\n%s", " ".join(cmd), output.decode("utf-8"))
index c010f33..52e1975 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -16,4 +16,4 @@ xtesting.testcase =
     helm_vims = functest_kubernetes.ims.ims:HelmVims
     kube_hunter = functest_kubernetes.security.security:KubeHunter
     kube_bench = functest_kubernetes.security.security:KubeBench
-    cnf_conformance = functest_kubernetes.cnf_conformance.conformance:CNFConformance
+    cnf_testsuite = functest_kubernetes.cnf_conformance.conformance:CNFConformance