Merge "Revert rally version to 0.8.1"
[functest.git] / docker / Dockerfile.aarch64
1 ########################################
2 #  Aarch64 Docker container for FUNCTEST
3 ########################################
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9
10 FROM aarch64/ubuntu:14.04
11 MAINTAINER Armband team <armband@enea.com>
12 LABEL version="0.1" description="OPNFV Functest Aarch64 Docker container"
13
14 # Environment variables
15 ARG BRANCH=master
16 ARG RALLY_TAG=0.8.1
17 ARG TEMPEST_TAG=15.0.0
18 ARG REFSTACK_TAG=15.0.0
19 ARG ODL_TAG=release/beryllium-sr4
20 ARG OPENSTACK_TAG=stable/mitaka
21 ARG KINGBIRD_TAG=0.2.2
22 ARG VIMS_TAG=stable
23 ARG REPOS_DIR=/home/opnfv/repos
24 ARG FUNCTEST_BASE_DIR=/home/opnfv/functest
25 ARG FUNCTEST_CONF_DIR=${FUNCTEST_BASE_DIR}/conf
26 ARG FUNCTEST_DATA_DIR=${FUNCTEST_BASE_DIR}/data
27 ARG FUNCTEST_IMAGES_DIR=${FUNCTEST_BASE_DIR}/images
28 ARG FUNCTEST_RESULTS_DIR=${FUNCTEST_BASE_DIR}/results
29 ARG FUNCTEST_REPO_DIR=${REPOS_DIR}/functest
30 ARG FUNCTEST_TEST_DIR=${FUNCTEST_REPO_DIR}/functest/opnfv_tests
31 ARG REPOS_VNFS_DIR=${REPOS_DIR}/vnfs
32
33 # Environment variables
34 ENV HOME /home/opnfv
35 ENV CONFIG_FUNCTEST_YAML ${FUNCTEST_REPO_DIR}/functest/ci/config_functest.yaml
36 ENV REPOS_DIR ${HOME}/repos
37 ENV creds ${FUNCTEST_CONF_DIR}/openstack.creds
38 ENV TERM xterm
39 ENV COLORTERM gnome-terminal
40
41 WORKDIR ${HOME}
42
43 # Packaged dependencies
44 RUN apt-get update && apt-get install -y \
45 build-essential \
46 bundler \
47 crudini \
48 curl \
49 gcc \
50 git \
51 libffi-dev \
52 libgmp3-dev \
53 libjpeg-dev \
54 libpq-dev \
55 libssl-dev \
56 libxml2-dev \
57 libxslt-dev \
58 python-dev \
59 python-mock \
60 python-pip \
61 postgresql \
62 ruby1.9.1-dev \
63 ssh \
64 sshpass \
65 wget \
66 --no-install-recommends
67
68 RUN pip install --upgrade pip && easy_install -U setuptools==30.0.0
69
70 RUN mkdir -p ${FUNCTEST_REPO_DIR} \
71     && mkdir -p ${REPOS_VNFS_DIR} \
72     && mkdir -p ${FUNCTEST_BASE_DIR}/results \
73     && mkdir -p ${FUNCTEST_BASE_DIR}/conf \
74     && mkdir -p ${FUNCTEST_DATA_DIR} \
75     && mkdir -p ${FUNCTEST_IMAGES_DIR} \
76     && mkdir -p /root/.ssh \
77     && chmod 700 /root/.ssh
78
79 RUN git config --global http.sslVerify false
80
81 COPY thirdparty-requirements.txt thirdparty-requirements.txt
82 RUN pip install \
83     git+https://gerrit.opnfv.org/gerrit/functest@$BRANCH#egg=functest \
84     git+https://gerrit.opnfv.org/gerrit/releng@$BRANCH#egg=opnfv\&subdirectory=modules \
85     git+https://gerrit.opnfv.org/gerrit/snaps@$BRANCH#egg=snaps \
86     -r thirdparty-requirements.txt && rm thirdparty-requirements.txt
87
88 # OPNFV repositories
89 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/copper ${REPOS_DIR}/copper
90 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/sdnvpn ${REPOS_DIR}/sdnvpn
91 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/domino ${REPOS_DIR}/domino
92 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/parser ${REPOS_DIR}/parser
93 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/doctor ${REPOS_DIR}/doctor
94 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/promise ${REPOS_DIR}/promise
95 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/sfc ${REPOS_DIR}/sfc
96 RUN git clone --depth 1 https://gerrit.opnfv.org/gerrit/securityscanning ${REPOS_DIR}/securityscanning
97 RUN git clone --depth 1 https://gerrit.opnfv.org/gerrit/opera ${REPOS_DIR}/opera
98
99 # other repositories
100 RUN git clone --depth 1 -b $TEMPEST_TAG https://github.com/openstack/tempest.git ${REPOS_DIR}/tempest
101 RUN git clone --depth 1 -b $ODL_TAG https://git.opendaylight.org/gerrit/p/integration/test.git ${REPOS_DIR}/odl_test
102 RUN git clone --depth 1 -b $VIMS_TAG https://github.com/boucherv-orange/clearwater-live-test ${REPOS_VNFS_DIR}/vims-test
103 RUN git clone --depth 1 https://github.com/wuwenbin2/OnosSystemTest.git ${REPOS_DIR}/onos
104
105 RUN find -L ${FUNCTEST_REPO_DIR} -name "*.py" \
106     -not -path "*tests/unit*" \
107     -not -path "*functest_venv*" \
108     |xargs grep -L __main__ |cut -d\: -f 1 |xargs chmod -c 644 \
109     && find -L ${FUNCTEST_REPO_DIR} -name "*.sh" \
110     -not -path "*functest_venv*" \
111     |xargs grep -L \#\! |cut -d\:  -f 1 |xargs chmod -c 644
112
113 RUN find -L ${FUNCTEST_REPO_DIR} -name "*.py" \
114     -not -path "*tests/unit*" \
115     -not -path "*functest_venv*" \
116     |xargs grep __main__ |cut -d\: -f 1 |xargs chmod -c 755 \
117     && find -L ${FUNCTEST_REPO_DIR} -name "*.sh" \
118     -not -path "*functest_venv*" \
119     |xargs grep \#\! |cut -d\:  -f 1 |xargs chmod -c 755
120
121 RUN /bin/bash ${REPOS_DIR}/parser/tests/parser_install.sh ${REPOS_DIR}
122 RUN wget -q https://raw.githubusercontent.com/openstack/rally/${RALLY_TAG}/install_rally.sh \
123     && bash install_rally.sh --branch ${RALLY_TAG} --yes && rm install_rally.sh
124
125 RUN add_images.sh
126
127 RUN gpg --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
128 RUN curl -L https://get.rvm.io | bash -s stable
129
130 RUN pip install ${REPOS_DIR}/opera
131
132 # SFC integration
133 RUN /bin/bash -c ". ${REPOS_DIR}/sfc/sfc/tests/functest/setup_scripts/tacker_client_install.sh"
134 RUN cd ${REPOS_DIR}/sfc && pip install -e .
135
136 # SDNVPN integration
137 RUN cd ${REPOS_DIR}/sdnvpn && pip install -e .
138
139 # refstack-client integration
140 RUN wget -q https://raw.githubusercontent.com/openstack/refstack-client/master/setup_env \
141     && bash setup_env -t ${REFSTACK_TAG} && rm setup_env
142
143 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
144     && cd ${REPOS_VNFS_DIR}/vims-test \
145     && rvm autolibs enable"
146 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
147     && cd ${REPOS_VNFS_DIR}/vims-test \
148     && rvm install 1.9.3"
149 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
150     && cd ${REPOS_VNFS_DIR}/vims-test \
151     && rvm use 1.9.3"
152 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
153     && gem install bundler \
154     && cd ${REPOS_VNFS_DIR}/vims-test \
155     && bundle config build.nokogiri --use-system-libraries \
156     && bundle install"
157
158 RUN sh -c 'wget -qO- https://nodejs.org/dist/v4.7.2/node-v4.7.2-linux-arm64.tar.gz | \
159     tar -xz -C /usr/local --exclude=CHANGELOG.md --exclude=LICENSE --exclude=README.md --strip-components 1 '\
160     && cd ${REPOS_DIR}/promise && sudo npm -g install npm@latest \
161     && cd ${REPOS_DIR}/promise/source && npm install
162
163 RUN echo "set nocompatible \n\
164 set backspace=2" \
165 >> ${HOME}/.vimrc
166 RUN echo set nocompatible >> ${HOME}/.exrc
167 RUN echo "alias ll='ls -lh' \n\
168 . ${FUNCTEST_REPO_DIR}/functest/cli/functest-complete.sh" \
169 >> ${HOME}/.bashrc