Publish a container for Parser 13/41113/5
authorCédric Ollivier <cedric.ollivier@orange.com>
Tue, 5 Sep 2017 22:19:26 +0000 (00:19 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Thu, 7 Sep 2017 08:53:08 +0000 (10:53 +0200)
As Parser is based on OpenStack pike release, it's hosted by a
dedicated Alpine container.

Change-Id: I1957ff100108d2ca58f939ddf4feda28a2954ced
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
build.sh
docker/parser/Dockerfile [new file with mode: 0644]
docker/parser/testcases.yaml [new file with mode: 0644]

index 95bea6f..36f1d55 100644 (file)
--- a/build.sh
+++ b/build.sh
@@ -9,7 +9,8 @@ docker/healthcheck \
 docker/smoke \
 docker/features \
 docker/components \
-docker/vnf"
+docker/vnf \
+docker/parser"
 
 (cd docker && docker build -t "${repo}/functest" .)
 docker push "${repo}/functest"
diff --git a/docker/parser/Dockerfile b/docker/parser/Dockerfile
new file mode 100644 (file)
index 0000000..e0dc0d5
--- /dev/null
@@ -0,0 +1,38 @@
+FROM alpine:3.6
+
+ARG BRANCH=master
+ARG OPENSTACK_TAG=stable/pike
+ARG RALLY_TAG=stable/0.9
+
+RUN apk --no-cache add --update \
+        python libffi libssl1.0 libjpeg-turbo py-pip bash \
+        grep sed wget ca-certificates git openssh-client && \
+    apk --no-cache add --virtual .build-deps --update \
+        python-dev build-base linux-headers libffi-dev \
+        openssl-dev libjpeg-turbo-dev && \
+    wget -q -O- https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG | \
+        sed /^heat-translator=/d | sed /^tosca-parser=/d \
+        > upper-constraints.txt && \
+    pip install --src /src -cupper-constraints.txt \
+        -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \
+        -e git+https://github.com/openstack/requirements@stable/ocata#egg=openstack_requirements && \
+    git clone --depth 1 https://github.com/openstack/rally.git -b $RALLY_TAG /src/rally && \
+    update-requirements -s --source /src/openstack-requirements /src/rally && \
+    pip install --src /src -cupper-constraints.txt \
+        -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \
+        /src/rally && \
+    pip install --no-cache-dir --src /src \
+        -cupper-constraints.txt \
+        -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \
+        git+https://gerrit.opnfv.org/gerrit/functest@$BRANCH#egg=functest \
+        git+https://gerrit.opnfv.org/gerrit/parser#egg=heat-translator\&subdirectory=tosca2heat/heat-translator \
+        git+https://gerrit.opnfv.org/gerrit/parser#egg=nfv-toscaparser\&subdirectory=tosca2heat/tosca-parser \
+        -e git+https://gerrit.opnfv.org/gerrit/parser#egg=nfv-parser && \
+    rm -r upper-constraints.txt /src/rally/.git && \
+    mkdir -p /etc/rally && \
+    printf "[database]\nconnection = 'sqlite:////var/lib/rally/database/rally.sqlite'" > /etc/rally/rally.conf && \
+    mkdir -p /var/lib/rally/database && rally-manage db create && \
+    bash -c "mkdir -p /home/opnfv/functest{/conf,/data,/images,/results} /home/opnfv/repos/vnfs" && \
+    apk del .build-deps
+COPY testcases.yaml /usr/lib/python2.7/site-packages/functest/ci/testcases.yaml
+CMD ["bash","-c","prepare_env start && run_tests -t all"]
diff --git a/docker/parser/testcases.yaml b/docker/parser/testcases.yaml
new file mode 100644 (file)
index 0000000..4ab3fae
--- /dev/null
@@ -0,0 +1,25 @@
+tiers:
+    -
+        name: features
+        order: 2
+        ci_loop: '(daily)|(weekly)'
+        description : >-
+            Test suites from feature projects
+            integrated in functest
+        testcases:
+            -
+                case_name: parser-basics
+                enabled: false
+                project_name: parser
+                criteria: 100
+                blocking: false
+                description: >-
+                    Test suite from Parser project.
+                dependencies:
+                    installer: 'fuel'
+                    scenario: '^((?!bgpvpn|noha).)*$'
+                run:
+                    module: 'functest.core.feature'
+                    class: 'BashFeature'
+                    args:
+                        cmd: 'cd /src/nfv-parser/tests && ./functest_run.sh'