File: gre_test

package info (click to toggle)
ifupdown-ng 0.12.1-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 964 kB
  • sloc: ansic: 3,572; sh: 980; makefile: 233
file content (45 lines) | stat: -rwxr-xr-x 1,100 bytes parent folder | download | duplicates (4)
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
#!/usr/bin/env atf-sh

. $(atf_get_srcdir)/../test_env.sh
EXECUTOR="$(atf_get_srcdir)/../../executor-scripts/linux/gre"

tests_init \
	basic_bringup \
	basic_teardown \
	flags_bringup

basic_bringup_body() {
	export MOCK=echo IFACE=tun0 PHASE=create \
		IF_GRE_LOCAL=1.2.3.4 IF_GRE_REMOTE=5.6.7.8 \
		IF_GRE_TTL=255
	atf_check -s exit:0 \
		-o match:"ip -4 link add tun0" \
		-o match:"mode gre" \
		-o match:"ttl '255'" \
		-o match:"local '1.2.3.4'" \
		-o match:"remote '5.6.7.8'" \
		${EXECUTOR}
}

basic_teardown_body() {
	export MOCK=echo IFACE=tun0 PHASE=destroy \
		IF_GRE_LOCAL=1.2.3.4 IF_GRE_REMOTE=5.6.7.8 \
		IF_GRE_TTL=255
	atf_check -s exit:0 \
		-o match:"ip -4 link del tun0" \
		${EXECUTOR}
}

flags_bringup_body() {
	export MOCK=echo IFACE=tun0 PHASE=create \
		IF_GRE_LOCAL=1.2.3.4 IF_GRE_REMOTE=5.6.7.8 \
		IF_GRE_TTL=255 IF_GRE_FLAGS="nopmtudisc ignore-df"
	atf_check -s exit:0 \
		-o match:"ip -4 link add tun0" \
		-o match:"mode gre" \
		-o match:"ttl '255'" \
		-o match:"local '1.2.3.4'" \
		-o match:"remote '5.6.7.8'" \
		-o match:"nopmtudisc ignore-df" \
		${EXECUTOR}
}