| Felipe Vicens | 7334f68 | 2020-06-24 15:59:59 +0200 | [diff] [blame] | 1 | # Copyright 2020 ETSI |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 12 | # implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| David Garcia | a60ec73 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 16 | ######################################################################## |
| 17 | |
| 18 | FROM ubuntu:18.04 as INSTALL |
| 19 | |
| 20 | RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \ |
| 21 | DEBIAN_FRONTEND=noninteractive apt-get --yes install \ |
| 22 | gcc=4:7.4.0-1ubuntu2.3 \ |
| 23 | python3=3.6.7-1~18.04 \ |
| 24 | python3-dev=3.6.7-1~18.04 \ |
| 25 | python3-setuptools=39.0.1-2 \ |
| palsus | b89f26b | 2021-08-04 18:12:21 +0000 | [diff] [blame^] | 26 | curl=7.58.0-2ubuntu3.14 \ |
| beierlm | 023e83c | 2021-04-14 10:12:58 -0400 | [diff] [blame] | 27 | gettext-base \ |
| David Garcia | a60ec73 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 28 | git=1:2.17.1-1ubuntu0.8 \ |
| beierlm | 99faf07 | 2021-04-15 14:52:00 -0400 | [diff] [blame] | 29 | iputils-ping=3:20161105-1ubuntu3 \ |
| beierlm | 14e0ad7 | 2021-04-12 16:05:38 -0400 | [diff] [blame] | 30 | jq=1.5+dfsg-2 \ |
| palsus | b89f26b | 2021-08-04 18:12:21 +0000 | [diff] [blame^] | 31 | libcurl4-openssl-dev=7.58.0-2ubuntu3.14 \ |
| 32 | libssl-dev=1.1.1-1ubuntu2.1~18.04.9 && \ |
| 33 | python3 -m easy_install pip==21.0.1 |
| David Garcia | a60ec73 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 34 | |
| 35 | ARG OSM_TESTS_URL |
| 36 | ARG PYTHON3_OSM_IM_URL |
| 37 | ARG PYTHON3_OSMCLIENT_URL |
| 38 | |
| aktas | 2061122 | 2021-05-27 09:47:19 +0300 | [diff] [blame] | 39 | # Installing Juju |
| 40 | ARG JUJU_VERSION_M=2.8 |
| 41 | ARG JUJU_VERSION_R=11 |
| 42 | ARG JUJU_VERSION=$JUJU_VERSION_M.$JUJU_VERSION_R |
| 43 | |
| 44 | RUN curl --output /tmp/juju-$JUJU_VERSION-linux-amd64.tar.xz -LO \ |
| 45 | https://launchpad.net/juju/$JUJU_VERSION_M/$JUJU_VERSION/+download/juju-$JUJU_VERSION-linux-amd64.tar.xz && \ |
| 46 | tar -xf /tmp/juju-$JUJU_VERSION-linux-amd64.tar.xz -C /tmp && \ |
| 47 | install /tmp/juju /usr/local/bin/juju && \ |
| 48 | rm /tmp/juju /tmp/juju-$JUJU_VERSION-linux-amd64.tar.xz |
| 49 | |
| David Garcia | a60ec73 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 50 | RUN curl $PYTHON3_OSM_IM_URL -o osm_im.deb |
| 51 | RUN dpkg -i ./osm_im.deb |
| 52 | |
| 53 | RUN curl $PYTHON3_OSMCLIENT_URL -o osmclient.deb |
| 54 | RUN dpkg -i ./osmclient.deb |
| 55 | |
| 56 | RUN curl $OSM_TESTS_URL -o osm_tests.deb |
| 57 | RUN dpkg -i ./osm_tests.deb |
| 58 | |
| David Garcia | a60ec73 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 59 | RUN pip3 install \ |
| 60 | -r /usr/lib/python3/dist-packages/osm_im/requirements.txt \ |
| 61 | -r /usr/lib/python3/dist-packages/osmclient/requirements.txt \ |
| 62 | -r /usr/share/osm-tests/requirements.txt |
| 63 | |
| beierlm | 14e0ad7 | 2021-04-12 16:05:38 -0400 | [diff] [blame] | 64 | RUN mv /usr/share/osm-tests/robot-systest /robot-systest |
| 65 | RUN mv /usr/share/osm-tests/charm.sh /usr/sbin/charm |
| 66 | |
| David Garcia | a60ec73 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 67 | RUN git clone \ |
| 68 | https://osm.etsi.org/gitlab/vnf-onboarding/osm-packages.git \ |
| 69 | --recurse-submodules \ |
| 70 | /robot-systest/osm-packages |
| 71 | |
| Felipe Vicens | 7334f68 | 2020-06-24 15:59:59 +0200 | [diff] [blame] | 72 | WORKDIR /robot-systest |
| 73 | |
| Felipe Vicens | 7334f68 | 2020-06-24 15:59:59 +0200 | [diff] [blame] | 74 | # Folder where Robot tests are stored |
| 75 | ENV ROBOT_DEVOPS_FOLDER=/robot-systest |
| 76 | |
| 77 | # Folder to save alternative DUT environments (optional) |
| 78 | ENV ENVIRONMENTS_FOLDER=environments |
| 79 | |
| 80 | # Folder where all required packages are stored |
| 81 | ENV PACKAGES_FOLDER=/robot-systest/osm-packages |
| 82 | |
| 83 | # Folder where test results should be exported |
| 84 | ENV ROBOT_REPORT_FOLDER=/robot-systest/results |
| 85 | |
| 86 | # Kubeconfig file |
| 87 | ENV K8S_CREDENTIALS=/root/.kube/config |
| 88 | |
| aktas | 2061122 | 2021-05-27 09:47:19 +0300 | [diff] [blame] | 89 | # Juju data folder |
| 90 | ENV JUJU_DATA=/root/.local/share/juju |
| 91 | |
| Felipe Vicens | 7334f68 | 2020-06-24 15:59:59 +0200 | [diff] [blame] | 92 | ENV LC_ALL=C.UTF-8 |
| 93 | ENV LANG=C.UTF-8 |
| 94 | |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 95 | ENTRYPOINT [ "/robot-systest/run_test.sh"] |