| 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 | |
| beierlm | 7278f0a | 2022-01-26 10:18:21 -0500 | [diff] [blame] | 18 | FROM ubuntu:20.04 as FINAL |
| David Garcia | a60ec73 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 19 | |
| 20 | RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \ |
| 21 | DEBIAN_FRONTEND=noninteractive apt-get --yes install \ |
| beierlm | 7278f0a | 2022-01-26 10:18:21 -0500 | [diff] [blame] | 22 | gcc=4:9.3.* \ |
| 23 | python3=3.8.* \ |
| 24 | python3-dev=3.8.* \ |
| 25 | python3-pip=20.0.2* \ |
| 26 | python3-setuptools=45.2.* \ |
| 27 | curl=7.68.* |
| 28 | |
| 29 | RUN DEBIAN_FRONTEND=noninteractive apt-get --yes install \ |
| sousaedu | fd164af | 2021-08-12 15:35:51 +0100 | [diff] [blame] | 30 | gettext-base=0.19.* \ |
| beierlm | 7278f0a | 2022-01-26 10:18:21 -0500 | [diff] [blame] | 31 | git=1:2.25.* \ |
| sousaedu | fd164af | 2021-08-12 15:35:51 +0100 | [diff] [blame] | 32 | iputils-ping=3:* \ |
| beierlm | 7278f0a | 2022-01-26 10:18:21 -0500 | [diff] [blame] | 33 | jq=1.6* \ |
| 34 | libcurl4-openssl-dev=7.68.* \ |
| 35 | libssl-dev=1.1.* |
| David Garcia | a60ec73 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 36 | |
| 37 | ARG OSM_TESTS_URL |
| 38 | ARG PYTHON3_OSM_IM_URL |
| 39 | ARG PYTHON3_OSMCLIENT_URL |
| 40 | |
| 41 | RUN curl $PYTHON3_OSM_IM_URL -o osm_im.deb |
| 42 | RUN dpkg -i ./osm_im.deb |
| 43 | |
| 44 | RUN curl $PYTHON3_OSMCLIENT_URL -o osmclient.deb |
| 45 | RUN dpkg -i ./osmclient.deb |
| 46 | |
| 47 | RUN curl $OSM_TESTS_URL -o osm_tests.deb |
| 48 | RUN dpkg -i ./osm_tests.deb |
| 49 | |
| David Garcia | a60ec73 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 50 | RUN pip3 install \ |
| 51 | -r /usr/lib/python3/dist-packages/osm_im/requirements.txt \ |
| 52 | -r /usr/lib/python3/dist-packages/osmclient/requirements.txt \ |
| 53 | -r /usr/share/osm-tests/requirements.txt |
| 54 | |
| beierlm | 14e0ad7 | 2021-04-12 16:05:38 -0400 | [diff] [blame] | 55 | RUN mv /usr/share/osm-tests/robot-systest /robot-systest |
| veleza | 652d1e3 | 2021-10-19 14:43:44 +0000 | [diff] [blame] | 56 | RUN mv /usr/share/osm-tests/conformance-tests/ /robot-systest/ |
| beierlm | 14e0ad7 | 2021-04-12 16:05:38 -0400 | [diff] [blame] | 57 | RUN mv /usr/share/osm-tests/charm.sh /usr/sbin/charm |
| 58 | |
| garciadeblas | 36c818d | 2021-11-24 18:28:51 +0100 | [diff] [blame] | 59 | ARG CACHE_DATE=not_a_date |
| David Garcia | a60ec73 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 60 | RUN git clone \ |
| 61 | https://osm.etsi.org/gitlab/vnf-onboarding/osm-packages.git \ |
| 62 | --recurse-submodules \ |
| 63 | /robot-systest/osm-packages |
| 64 | |
| Felipe Vicens | 7334f68 | 2020-06-24 15:59:59 +0200 | [diff] [blame] | 65 | WORKDIR /robot-systest |
| 66 | |
| Felipe Vicens | 7334f68 | 2020-06-24 15:59:59 +0200 | [diff] [blame] | 67 | # Folder where Robot tests are stored |
| 68 | ENV ROBOT_DEVOPS_FOLDER=/robot-systest |
| 69 | |
| 70 | # Folder to save alternative DUT environments (optional) |
| 71 | ENV ENVIRONMENTS_FOLDER=environments |
| 72 | |
| 73 | # Folder where all required packages are stored |
| 74 | ENV PACKAGES_FOLDER=/robot-systest/osm-packages |
| 75 | |
| 76 | # Folder where test results should be exported |
| 77 | ENV ROBOT_REPORT_FOLDER=/robot-systest/results |
| 78 | |
| 79 | # Kubeconfig file |
| 80 | ENV K8S_CREDENTIALS=/root/.kube/config |
| 81 | |
| garciadeblas | 2ad6432 | 2021-08-13 16:43:15 +0200 | [diff] [blame] | 82 | # OSM RSA file |
| 83 | ENV OSM_RSA_FILE=/root/osm_id_rsa |
| 84 | |
| Felipe Vicens | 7334f68 | 2020-06-24 15:59:59 +0200 | [diff] [blame] | 85 | ENV LC_ALL=C.UTF-8 |
| 86 | ENV LANG=C.UTF-8 |
| 87 | |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 88 | ENTRYPOINT [ "/robot-systest/run_test.sh"] |