Merge "Restrict ping only once in ping.sh"
[functest.git] / functest / ci / download_images.sh
1 #!/bin/bash
2
3 CIRROS_REPO_URL=http://download.cirros-cloud.net
4 CIRROS_AARCH64_TAG=161201
5 CIRROS_X86_64_TAG=0.3.5
6
7 RED='\033[1;31m'
8 NC='\033[0m' # No Color
9
10 function usage(){
11     echo -e "${RED}USAGE: $script <destination_folder> <scenario_name> [arch]${NC}"
12     exit 0
13 }
14
15 script=`basename "$0"`
16 IMAGES_FOLDER_DIR=$1
17 SCENARIO=$2
18 ARCH=$3
19
20 if [[ -z $IMAGES_FOLDER_DIR ]]; then usage; fi;
21
22 set -ex
23 mkdir -p ${IMAGES_FOLDER_DIR}
24
25
26 ####################
27 # MANDATORY IMAGES #
28 ####################
29 # These images should be present in Functest for the tests to work
30
31 # Functest:
32 wget -nc ${CIRROS_REPO_URL}/${CIRROS_X86_64_TAG}/cirros-${CIRROS_X86_64_TAG}-x86_64-disk.img -P ${IMAGES_FOLDER_DIR}
33 wget -nc ${CIRROS_REPO_URL}/${CIRROS_X86_64_TAG}/cirros-${CIRROS_X86_64_TAG}-x86_64-lxc.tar.gz -P ${IMAGES_FOLDER_DIR}
34
35 # SNAPS:
36 wget -nc http://uec-images.ubuntu.com/releases/trusty/14.04/ubuntu-14.04-server-cloudimg-amd64-disk1.img -P ${IMAGES_FOLDER_DIR}
37 wget -nc http://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud.qcow2 -P ${IMAGES_FOLDER_DIR}
38
39
40 ###################
41 # OPTIONAL IMAGES #
42 ###################
43 # Optional images can be commented if they are not going to be used by the tests
44
45 # SDNVPN (odl-bgpvpn scenarios):
46 if [[ ${SCENARIO} == *"bgpvpn"* ]]; then
47     wget -nc http://artifacts.opnfv.org/sdnvpn/ubuntu-16.04-server-cloudimg-amd64-disk1.img -P ${IMAGES_FOLDER_DIR}
48 fi
49
50 # ONOS (onos-sfc scenarios):
51 if [[ ${SCENARIO} == *"onos-sfc"* ]]; then
52     wget -nc http://artifacts.opnfv.org/onosfw/images/firewall_block_image.img -P ${IMAGES_FOLDER_DIR}
53 fi
54
55 if [[ ${ARCH} == "arm" ]] || [[ ${ARCH} == "aarch64" ]]; then
56     # ARM (aarch64 cirros images):
57     wget -nc ${CIRROS_REPO_URL}/daily/20${CIRROS_AARCH64_TAG}/cirros-d${CIRROS_AARCH64_TAG}-aarch64-disk.img -P ${IMAGES_FOLDER_DIR}
58     wget -nc ${CIRROS_REPO_URL}/daily/20${CIRROS_AARCH64_TAG}/cirros-d${CIRROS_AARCH64_TAG}-aarch64-initramfs -P ${IMAGES_FOLDER_DIR}
59     wget -nc ${CIRROS_REPO_URL}/daily/20${CIRROS_AARCH64_TAG}/cirros-d${CIRROS_AARCH64_TAG}-aarch64-kernel -P ${IMAGES_FOLDER_DIR}
60 fi
61
62 set +ex