examples/ipsec-secgw: add scripts for functional test
[dpdk.git] / examples / ipsec-secgw / test / run_test.sh
1 #! /bin/bash
2
3 # usage: /bin/bash run_test.sh [-46]
4 # Run all defined linux_test[4,6].sh test-cases one by one
5 # user has to setup properly the following environment variables:
6 #  SGW_PATH - path to the ipsec-secgw binary to test
7 #  REMOTE_HOST - ip/hostname of the DUT
8 #  REMOTE_IFACE - iface name for the test-port on DUT
9 #  ETH_DEV - ethernet device to be used on SUT by DPDK ('-w <pci-id>')
10 # Also user can optonally setup:
11 #  SGW_LCORE - lcore to run ipsec-secgw on (default value is 0)
12 #  CRYPTO_DEV - crypto device to be used ('-w <pci-id>')
13 #  if none specified appropriate vdevs will be created by the scrit
14 # refer to linux_test1.sh for more information
15
16 # All supported modes to test.
17 # naming convention:
18 # 'old' means that ipsec-secgw will run in legacy (non-librte_ipsec mode)
19 # 'tun/trs' refer to tunnel/transport mode respectively
20 LINUX_TEST="tun_aescbc_sha1 \
21 tun_aescbc_sha1_esn \
22 tun_aescbc_sha1_esn_atom \
23 tun_aesgcm \
24 tun_aesgcm_esn \
25 tun_aesgcm_esn_atom \
26 trs_aescbc_sha1 \
27 trs_aescbc_sha1_esn \
28 trs_aescbc_sha1_esn_atom \
29 trs_aesgcm \
30 trs_aesgcm_esn \
31 trs_aesgcm_esn_atom \
32 tun_aescbc_sha1_old \
33 tun_aesgcm_old \
34 trs_aescbc_sha1_old \
35 trs_aesgcm_old"
36
37 DIR=`dirname $0`
38
39 # get input options
40 st=0
41 run4=0
42 run6=0
43 while [[ ${st} -eq 0 ]]; do
44         getopts ":46" opt
45         st=$?
46         if [[ "${opt}" == "4" ]]; then
47                 run4=1
48         elif [[ "${opt}" == "6" ]]; then
49                 run6=1
50         fi
51 done
52
53 if [[ ${run4} -eq 0 && {run6} -eq 0 ]]; then
54         exit 127
55 fi
56
57 for i in ${LINUX_TEST}; do
58
59         echo "starting test ${i}"
60
61         st4=0
62         if [[ ${run4} -ne 0 ]]; then
63                 /bin/bash ${DIR}/linux_test4.sh ${i}
64                 st4=$?
65                 echo "test4 ${i} finished with status ${st4}"
66         fi
67
68         st6=0
69         if [[ ${run6} -ne 0 ]]; then
70                 /bin/bash ${DIR}/linux_test6.sh ${i}
71                 st6=$?
72                 echo "test6 ${i} finished with status ${st6}"
73         fi
74
75         let "st = st4 + st6"
76         if [[ $st -ne 0 ]]; then
77                 echo "ERROR test ${i} FAILED"
78                 exit $st
79         fi
80 done