forked from free5gc/free5gc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_ulcl.sh
executable file
·135 lines (111 loc) · 3.44 KB
/
test_ulcl.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#!/usr/bin/env bash
# Check OS
if [ -f /etc/os-release ]; then
# freedesktop.org and systemd
. /etc/os-release
OS=$NAME
VER=$VERSION_ID
else
# Fall back to uname, e.g. "Linux <version>", also works for BSD, etc.
OS=$(uname -s)
VER=$(uname -r)
echo "This Linux version is too old: $OS:$VER, we don't support!"
exit 1
fi
sudo -v
if [ $? == 1 ]
then
echo "Without root permission, you cannot run the test due to our test is using namespace"
exit 1
fi
UPF_NUM=3
while getopts 'om:' OPT;
do
case $OPT in
o) DUMP_NS=True;;
m)
SCALE=$OPTARG
if ! [[ $SCALE =~ ^[0-9]+$ ]]; then
echo "-m should be number"
exit 1
fi
if [[ $(( $SCALE )) -ge ${UPF_NUM} && $(( $SCALE )) -le 99 ]]; then
UPF_NUM=$(( $SCALE ))
else
echo "UL-CL UPF must larger then ${UPF_NUM} and less then 100"
exit 1
fi
;;
esac
done
shift $(($OPTIND - 1))
TEST_POOL="TestRegistration"
if [[ ! "$1" =~ $TEST_POOL ]]
then
echo "Usage: $0 [ ${TEST_POOL//|/ | } ]"
exit 1
fi
GOPATH=$HOME/go
if [ $OS == "Ubuntu" ]; then
GOROOT=/usr/local/go
elif [ $OS == "Fedora" ]; then
GOROOT=/usr/lib/golang
fi
PATH=$PATH:$GOPATH/bin:$GOROOT/bin
cp config/test/smfcfg.ulcl.test.conf config/test/smfcfg.test.conf
UPFNS="UPFns"
export GIN_MODE=release
# Setup bridge
sudo ip link add veth0 type veth peer name br-veth0
sudo ip link set veth0 up
sudo ip addr add 60.60.0.1 dev lo
sudo ip addr add 10.200.200.1/24 dev veth0
sudo ip addr add 10.200.200.2/24 dev veth0
sudo ip link add free5gc-br type bridge
sudo ip link set free5gc-br up
sudo ip link set br-veth0 up
sudo ip link set br-veth0 master free5gc-br
# Setup network namespace
for i in $(seq -f "%02g" 1 $UPF_NUM); do
sudo ip netns add "${UPFNS}${i}"
sudo ip link add "veth${i}" type veth peer name "br-veth${i}"
sudo ip link set "br-veth${i}" up
sudo ip link set "veth${i}" netns "${UPFNS}${i}"
sudo ip netns exec "${UPFNS}${i}" ip link set lo up
sudo ip netns exec "${UPFNS}${i}" ip link set "veth${i}" up
sudo ip netns exec "${UPFNS}${i}" ip addr add "60.60.0.1${i}" dev lo
sudo ip netns exec "${UPFNS}${i}" ip addr add "10.200.200.1${i}/24" dev "veth${i}"
sudo ip link set "br-veth${i}" master free5gc-br
if [ ${DUMP_NS} ]; then
sudo ip netns exec "${UPFNS}${i}" tcpdump -i any -w "${UPFNS}${i}.pcap" &
TCPDUMP_PID_[${i}]=$(sudo ip netns pids "${UPFNS}${i}")
fi
sed -i -e "s/10.200.200.10./10.200.200.1${i}/g" ./src/upf/build/config/upfcfg.ulcl.yaml
if [ ${i} -eq 02 ]; then
sed -i -e "s/internet/intranet/g" ./src/upf/build/config/upfcfg.ulcl.yaml
else
sed -i -e "s/intranet/internet/g" ./src/upf/build/config/upfcfg.ulcl.yaml
fi
cd src/upf/build && sudo -E ip netns exec "${UPFNS}${i}" ./bin/free5gc-upfd -f config/upfcfg.ulcl.yaml &
sleep 1
done
cd src/test
$GOROOT/bin/go test -v -vet=off -run $1
sleep 3
sudo killall -15 free5gc-upfd
sleep 1
cd ../..
mkdir -p testkeylog
for KEYLOG in $(ls *sslkey.log); do
mv $KEYLOG testkeylog
done
sudo ip addr del 60.60.0.1/32 dev lo
sudo ip link del veth0
sudo ip link del free5gc-br
for i in $(seq -f "%02g" 1 $UPF_NUM); do
if [ ${DUMP_NS} ]; then
sudo ip netns exec "${UPFNS}${i}" kill -SIGINT ${TCPDUMP_PID_[$i]}
fi
sudo ip netns del "${UPFNS}${i}"
sudo ip link del "br-veth${i}"
done