Merge "Add deployment_handler printout to prepare env"
[functest.git] / docker / Dockerfile
1 ########################################
2 #   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 ubuntu:14.04
11 MAINTAINER Jose Lausuch <jose.lausuch@ericsson.com>
12 LABEL version="0.1" description="OPNFV Functest Docker container"
13
14 # Environment variables
15 ARG BRANCH=master
16 ARG RALLY_TAG=0.8.1
17 ARG TEMPEST_TAG=14.0.0
18 ARG ODL_TAG=release/beryllium-sr4
19 ARG OPENSTACK_TAG=stable/mitaka
20 ARG KINGBIRD_TAG=0.2.2
21 ARG VIMS_TAG=stable
22 ARG REPOS_DIR=/home/opnfv/repos
23 ARG FUNCTEST_BASE_DIR=/home/opnfv/functest
24 ARG FUNCTEST_CONF_DIR=${FUNCTEST_BASE_DIR}/conf
25 ARG FUNCTEST_DATA_DIR=${FUNCTEST_BASE_DIR}/data
26 ARG FUNCTEST_RESULTS_DIR=${FUNCTEST_BASE_DIR}/results
27 ARG FUNCTEST_REPO_DIR=${REPOS_DIR}/functest
28 ARG FUNCTEST_TEST_DIR=${FUNCTEST_REPO_DIR}/functest/opnfv_tests
29 ARG RELENG_MODULE_DIR=${REPOS_DIR}/releng/modules
30 ARG REPOS_VNFS_DIR=${REPOS_DIR}/vnfs
31
32 # Environment variables
33 ENV HOME /home/opnfv
34 ENV CONFIG_FUNCTEST_YAML ${FUNCTEST_REPO_DIR}/functest/ci/config_functest.yaml
35 ENV REPOS_DIR ${HOME}/repos
36 ENV creds ${FUNCTEST_CONF_DIR}/openstack.creds
37 ENV TERM xterm
38 ENV COLORTERM gnome-terminal
39
40 WORKDIR ${HOME}
41
42 # Packaged dependencies
43 RUN apt-get update && apt-get install -y \
44 build-essential \
45 bundler \
46 crudini \
47 curl \
48 gcc \
49 git \
50 libffi-dev \
51 libgmp3-dev \
52 libpq-dev \
53 libssl-dev \
54 libxml2-dev \
55 libxslt-dev \
56 python-dev \
57 python-mock \
58 python-pip \
59 postgresql \
60 ruby1.9.1-dev \
61 ssh \
62 sshpass \
63 wget \
64 --no-install-recommends
65
66 RUN pip install --upgrade pip
67
68 RUN mkdir -p ${REPOS_DIR} \
69     && mkdir -p ${REPOS_VNFS_DIR} \
70     && mkdir -p ${FUNCTEST_BASE_DIR}/results \
71     && mkdir -p ${FUNCTEST_BASE_DIR}/conf \
72     && mkdir -p /root/.ssh \
73     && chmod 700 /root/.ssh
74
75 RUN git config --global http.sslVerify false
76
77 # OPNFV repositories
78 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/functest ${REPOS_DIR}/functest
79 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/copper ${REPOS_DIR}/copper
80 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/sdnvpn ${REPOS_DIR}/sdnvpn
81 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/domino ${REPOS_DIR}/domino
82 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/parser ${REPOS_DIR}/parser
83 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/doctor ${REPOS_DIR}/doctor
84 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/ovno ${REPOS_DIR}/ovno
85 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/promise ${REPOS_DIR}/promise
86 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/netready ${REPOS_DIR}/netready
87 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/sfc ${REPOS_DIR}/sfc
88 RUN git clone --depth 1 https://gerrit.opnfv.org/gerrit/securityscanning ${REPOS_DIR}/securityscanning
89 RUN git clone --depth 1 https://gerrit.opnfv.org/gerrit/releng ${REPOS_DIR}/releng
90
91 # OpenStack repositories
92 RUN git clone --depth 1 -b $OPENSTACK_TAG https://github.com/openstack/networking-bgpvpn ${REPOS_DIR}/bgpvpn
93 #RUN git clone --depth 1 -b $KINGBIRD_TAG https://github.com/openstack/kingbird.git ${REPOS_DIR}/kingbird
94 RUN git clone --depth 1 -b $RALLY_TAG https://github.com/openstack/rally.git ${REPOS_DIR}/rally
95 RUN git clone --depth 1 -b $TEMPEST_TAG https://github.com/openstack/tempest.git ${REPOS_DIR}/tempest
96
97 # other repositories
98 RUN git clone --depth 1 -b $ODL_TAG https://git.opendaylight.org/gerrit/p/integration/test.git ${REPOS_DIR}/odl_test
99 RUN git clone --depth 1 -b $VIMS_TAG https://github.com/boucherv-orange/clearwater-live-test ${REPOS_VNFS_DIR}/vims-test
100 RUN git clone --depth 1 https://github.com/wuwenbin2/OnosSystemTest.git ${REPOS_DIR}/onos
101
102 RUN pip install -r ${REPOS_DIR}/rally/requirements.txt
103 RUN pip install -r ${REPOS_DIR}/tempest/requirements.txt
104
105 RUN cd ${FUNCTEST_REPO_DIR} \
106     && pip install -r requirements.txt \
107     && pip install .
108
109 RUN cd ${RELENG_MODULE_DIR} \
110     && pip install .
111
112 RUN find ${FUNCTEST_REPO_DIR} -name "*.py" \
113     -not -path "*tests/unit*" |xargs grep __main__ |cut -d\: -f 1 |xargs chmod -c 755 \
114     && find ${FUNCTEST_REPO_DIR} -name "*.sh" |xargs grep \#\! |cut -d\:  -f 1 |xargs chmod -c 755
115
116 RUN /bin/bash ${REPOS_DIR}/parser/tests/parser_install.sh ${REPOS_DIR}
117 RUN ${REPOS_DIR}/rally/install_rally.sh --yes
118
119 ADD http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img ${FUNCTEST_BASE_DIR}/data/
120 ADD http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-lxc.tar.gz ${FUNCTEST_BASE_DIR}/data/
121 ADD http://205.177.226.237:9999/onosfw/firewall_block_image.img ${FUNCTEST_BASE_DIR}/data/
122
123 RUN gpg --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
124 RUN curl -L https://get.rvm.io | bash -s stable
125
126 # SNAPS integration
127 RUN git clone --depth 1 https://gerrit.cablelabs.com/snaps-provisioning ${REPOS_DIR}/snaps
128 RUN pip install -e ${REPOS_DIR}/snaps/
129
130 # SFC integration
131 RUN /bin/bash -c ". ${REPOS_DIR}/sfc/sfc/tests/functest/setup_scripts/tacker_client_install.sh"
132 RUN cd ${REPOS_DIR}/sfc && pip install .
133
134 # SDNVPN integration
135 RUN cd ${REPOS_DIR}/sdnvpn && pip install .
136
137 RUN cd ${REPOS_DIR}/bgpvpn && pip install .
138 #RUN cd ${REPOS_DIR}/kingbird && pip install -e .
139
140 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
141     && cd ${REPOS_VNFS_DIR}/vims-test \
142     && rvm autolibs enable"
143 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
144     && cd ${REPOS_VNFS_DIR}/vims-test \
145     && rvm install 1.9.3"
146 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
147     && cd ${REPOS_VNFS_DIR}/vims-test \
148     && rvm use 1.9.3"
149 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
150     && cd ${REPOS_VNFS_DIR}/vims-test \
151     && bundle install"
152
153 RUN sh -c 'curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -' \
154     && sudo apt-get install -y nodejs \
155     && cd ${REPOS_DIR}/promise && sudo npm -g install npm@latest \
156     && cd ${REPOS_DIR}/promise/source && npm install
157
158 RUN echo "set nocompatible \n\
159 set backspace=2" \
160 >> ${HOME}/.vimrc
161 RUN echo set nocompatible >> ${HOME}/.exrc
162 RUN echo "alias ll='ls -lh' \n\
163 . ${FUNCTEST_REPO_DIR}/functest/cli/functest-complete.sh" \
164 >> ${HOME}/.bashrc