Disable volume in Patrole 0.3 by default
[functest.git] / docker / smoke / Dockerfile
1 FROM opnfv/functest-core
2
3 ARG BRANCH=master
4 ARG OPENSTACK_TAG=stable/queens
5 ARG ODL_TAG=85448c9d97b89989488e675b29b38ac42d8674e4
6 ARG RALLY_TAG=0.11.2
7 ARG OS_FAULTS_TAG=0.1.17
8 ARG REFSTACK_TARGET=2017.09
9 ARG PATROLE_TAG=0.3.0
10
11 COPY thirdparty-requirements.txt thirdparty-requirements.txt
12 RUN apk --no-cache add --virtual .build-deps --update \
13         python-dev build-base linux-headers libffi-dev \
14         openssl-dev libjpeg-turbo-dev && \
15     wget -q -O- https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG | \
16         sed -E s/^tempest==+\(.*\)$/-e\ git+https:\\/\\/github.com\\/openstack\\/tempest@\\1#egg=tempest/ \
17         > upper-constraints.txt && \
18     pip install --no-cache-dir --src /src -cupper-constraints.txt \
19         -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \
20         -e git+https://github.com/openstack/requirements@$OPENSTACK_TAG#egg=openstack_requirements && \
21     git clone --depth 1 https://github.com/openstack/os-faults.git -b $OS_FAULTS_TAG /src/os-faults && \
22     update-requirements -s --source /src/openstack-requirements /src/os-faults/ && \
23     git clone --depth 1 https://github.com/openstack/rally.git -b $RALLY_TAG /src/rally && \
24     update-requirements -s --source /src/openstack-requirements /src/rally/ && \
25     git clone https://github.com/openstack/patrole.git /src/patrole && \
26     (cd /src/patrole && git checkout $PATROLE_TAG) && \
27     update-requirements -s --source /src/openstack-requirements /src/patrole/ && \
28     pip install --no-cache-dir --src /src -cupper-constraints.txt \
29         -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \
30         tempest rally-openstack /src/os-faults && \
31     pip install --no-cache-dir --src /src -cupper-constraints.txt \
32         -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \
33         /src/rally /src/patrole -rthirdparty-requirements.txt && \
34     git clone https://git.opendaylight.org/gerrit/p/integration/test.git /src/odl_test && \
35     (cd /src/odl_test && git checkout $ODL_TAG) && \
36     virtualenv --system-site-packages /src/tempest/.venv && \
37     pip install --no-cache-dir --src /src -cupper-constraints.txt \
38         -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \
39         -e git+https://github.com/openstack/neutron.git@$OPENSTACK_TAG#egg=neutron && \
40     pip install --no-cache-dir --src /src -cupper-constraints.txt \
41         -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \
42         -r /src/neutron/test-requirements.txt && \
43     rm -r upper-constraints.txt thirdparty-requirements.txt /src/odl_test/.git \
44         /src/os-faults /src/rally && \
45     mkdir -p /etc/rally && \
46     printf "[database]\nconnection = 'sqlite:////var/lib/rally/database/rally.sqlite'" > /etc/rally/rally.conf && \
47     mkdir -p /var/lib/rally/database && rally db create && \
48     mkdir -p /home/opnfv/functest/data/refstack && \
49     wget "https://refstack.openstack.org/api/v1/guidelines/${REFSTACK_TARGET}/tests?target=compute&type=required&alias=true&flag=false" \
50         -O /home/opnfv/functest/data/refstack/defcore.txt && \
51     mkdir -p /etc/neutron /etc/glance && \
52     wget -q -O /etc/neutron/policy.json https://raw.githubusercontent.com/openstack/neutron/$OPENSTACK_TAG/etc/policy.json && \
53     wget -q -O /etc/glance/policy.json https://raw.githubusercontent.com/openstack/glance/$OPENSTACK_TAG/etc/policy.json && \
54     apk del .build-deps
55 COPY testcases.yaml /usr/lib/python2.7/site-packages/xtesting/ci/testcases.yaml
56 CMD ["run_tests", "-t", "all"]