Merge "Concatenate the RUN commands"
[functest.git] / docker / Dockerfile
1 ########################################
2 #   Docker container for FUNCTEST
3 ########################################
4 # Purpose: run all the tests against the POD
5 #          from a pre-installed docker image
6 #
7 # Maintained by Jose Lausuch
8 # Build:
9 #    $ docker build -t opnfv/functest:tag .
10 #
11 # Execution:
12 #    $ docker run -t -i \
13 #      -e "INSTALLER_TYPE=fuel|apex|compass|joid \
14 #      -e "INSTALLER_IP=10.20.0.2" \
15 #      -v $(pwd)/config_functest.yaml:/home/opnfv/repos/functest/functest/ci/config_functest.yaml
16 #      opnfv/functest /bin/bash
17 #
18 # NOTE: providing config_functest.yaml is optional. If not provided, it will
19 #       use the default one located in the repo
20 #
21 # All rights reserved. This program and the accompanying materials
22 # are made available under the terms of the Apache License, Version 2.0
23 # which accompanies this distribution, and is available at
24 # http://www.apache.org/licenses/LICENSE-2.0
25 #
26
27 FROM ubuntu:14.04
28 MAINTAINER Jose Lausuch <jose.lausuch@ericsson.com>
29 LABEL version="0.1" description="OPNFV Functest Docker container"
30
31 # Environment variables
32 ARG BRANCH=master
33 ARG TEMPEST_TAG=12.2.0
34 ARG RALLY_TAG=0.7.0
35 ARG ODL_TAG=release/beryllium-sr3
36 ARG OPENSTACK_TAG=stable/mitaka
37 ARG KINGBIRD_TAG=0.2.2
38 ARG VIMS_TAG=stable
39 ARG REPOS_DIR=/home/opnfv/repos
40 ARG FUNCTEST_BASE_DIR=/home/opnfv/functest
41 ARG FUNCTEST_CONF_DIR=${FUNCTEST_BASE_DIR}/conf
42 ARG FUNCTEST_DATA_DIR=${FUNCTEST_BASE_DIR}/data
43 ARG FUNCTEST_RESULTS_DIR=${FUNCTEST_BASE_DIR}/results
44 ARG FUNCTEST_REPO_DIR=${REPOS_DIR}/functest
45 ARG FUNCTEST_TEST_DIR=${FUNCTEST_REPO_DIR}/functest/opnfv_tests
46
47 # Environment variables
48 ENV HOME /home/opnfv
49 ENV CONFIG_FUNCTEST_YAML ${FUNCTEST_REPO_DIR}/functest/ci/config_functest.yaml
50 ENV REPOS_DIR ${HOME}/repos
51 ENV creds ${FUNCTEST_CONF_DIR}/openstack.creds
52 ENV TERM xterm
53 ENV COLORTERM gnome-terminal
54
55 WORKDIR ${HOME}
56
57 # Packaged dependencies
58 RUN apt-get update && apt-get install -y \
59 build-essential \
60 bundler \
61 crudini \
62 curl \
63 gcc \
64 git \
65 libffi-dev \
66 libgmp3-dev \
67 libpq-dev \
68 libssl-dev \
69 libxml2-dev \
70 libxslt-dev \
71 python-dev \
72 python-mock \
73 python-pip \
74 postgresql \
75 ruby1.9.1-dev \
76 ssh \
77 sshpass \
78 wget \
79 --no-install-recommends
80
81 RUN pip install --upgrade pip
82
83 RUN mkdir -p ${REPOS_DIR} \
84     && mkdir -p ${FUNCTEST_BASE_DIR}/results \
85     && mkdir -p ${FUNCTEST_BASE_DIR}/conf \
86     && mkdir -p /root/.ssh \
87     && chmod 700 /root/.ssh
88
89 RUN git config --global http.sslVerify false
90
91 # OPNFV repositories
92 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/functest ${REPOS_DIR}/functest
93 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/copper ${REPOS_DIR}/copper
94 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/moon ${REPOS_DIR}/moon
95 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/sdnvpn ${REPOS_DIR}/sdnvpn
96 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/domino ${REPOS_DIR}/domino
97 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/parser ${REPOS_DIR}/parser
98 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/doctor ${REPOS_DIR}/doctor
99 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/ovno ${REPOS_DIR}/ovno
100 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/promise ${REPOS_DIR}/promise
101 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/sfc ${REPOS_DIR}/sfc
102 RUN git clone --depth 1 https://gerrit.opnfv.org/gerrit/securityscanning ${REPOS_DIR}/securityscanning
103 RUN git clone --depth 1 https://gerrit.opnfv.org/gerrit/releng ${REPOS_DIR}/releng
104
105 # OpenStack repositories
106 RUN git clone --depth 1 -b $OPENSTACK_TAG https://github.com/openstack/networking-bgpvpn ${REPOS_DIR}/bgpvpn
107 #RUN git clone --depth 1 -b $KINGBIRD_TAG https://github.com/openstack/kingbird.git ${REPOS_DIR}/kingbird
108 RUN git clone --depth 1 -b $RALLY_TAG https://github.com/openstack/rally.git ${REPOS_DIR}/rally
109 RUN git clone --depth 1 -b $TEMPEST_TAG https://github.com/openstack/tempest.git ${REPOS_DIR}/tempest
110
111 # other repositories
112 RUN git clone --depth 1 -b $ODL_TAG https://git.opendaylight.org/gerrit/p/integration/test.git ${REPOS_DIR}/odl_test
113 RUN git clone --depth 1 -b $VIMS_TAG https://github.com/boucherv-orange/clearwater-live-test ${REPOS_DIR}/vims-test
114 RUN git clone --depth 1 https://github.com/wuwenbin2/OnosSystemTest.git ${REPOS_DIR}/onos
115
116 RUN cd ${FUNCTEST_REPO_DIR} \
117     && pip install -r requirements.txt \
118     && pip install .
119
120 RUN pip install -r ${REPOS_DIR}/rally/requirements.txt
121 RUN pip install -r ${REPOS_DIR}/tempest/requirements.txt
122
123 RUN find ${FUNCTEST_REPO_DIR} -name "*.py" \
124     -not -path *unit_tests* |xargs grep __main__ |cut -d\: -f 1 |xargs chmod -c 755 \
125     && find ${FUNCTEST_REPO_DIR} -name "*.sh" |xargs grep \#\! |cut -d\:  -f 1 |xargs chmod -c 755
126
127 RUN /bin/bash ${REPOS_DIR}/parser/tests/parser_install.sh ${REPOS_DIR}
128 RUN ${REPOS_DIR}/rally/install_rally.sh --yes
129
130 ADD http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img ${FUNCTEST_BASE_DIR}/data/
131 ADD http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-lxc.tar.gz ${FUNCTEST_BASE_DIR}/data/
132 ADD http://205.177.226.237:9999/onosfw/firewall_block_image.img ${FUNCTEST_BASE_DIR}/data/
133
134 RUN gpg --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
135 RUN curl -L https://get.rvm.io | bash -s stable
136
137 # SNAPS integration
138 RUN git clone --depth 1 https://gerrit.cablelabs.com/snaps-provisioning ${REPOS_DIR}/snaps
139 RUN pip install -e ${REPOS_DIR}/snaps/
140
141 RUN /bin/bash -c ". ${REPOS_DIR}/sfc/tests/functest/odl-sfc/tacker_client_install.sh"
142 RUN cd ${REPOS_DIR}/bgpvpn && pip install .
143 #RUN cd ${REPOS_DIR}/kingbird && pip install -e .
144 RUN cd ${REPOS_DIR}/moon/moonclient/ && python setup.py install
145
146 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
147     && cd ${REPOS_DIR}/vims-test \
148     && rvm autolibs enable"
149 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
150     && cd ${REPOS_DIR}/vims-test \
151     && rvm install 1.9.3"
152 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
153     && cd ${REPOS_DIR}/vims-test \
154     && rvm use 1.9.3"
155 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
156     && cd ${REPOS_DIR}/vims-test \
157     && bundle install"
158
159 RUN sh -c 'curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -' \
160     && sudo apt-get install -y nodejs \
161     && cd ${REPOS_DIR}/promise && sudo npm -g install npm@latest \
162     && cd ${REPOS_DIR}/promise/source && npm install
163
164 RUN echo "set nocompatible \n\
165 set backspace=2" \
166 >> ${HOME}/.vimrc
167 RUN echo set nocompatible >> ${HOME}/.exrc
168 RUN echo "alias ll='ls -lh' \n\
169 . ${FUNCTEST_REPO_DIR}/functest/cli/functest-complete.sh" \
170 >> ${HOME}/.bashrc