Add tmt test plan
Signed-off-by: Andrea Claudi <aclaudi@redhat.com>
This commit is contained in:
parent
2dd2e34c18
commit
e31d652c69
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
||||
1
|
||||
18
plans/tier0.fmf
Normal file
18
plans/tier0.fmf
Normal file
@ -0,0 +1,18 @@
|
||||
summary: CI plan to run all Tier0 tests
|
||||
|
||||
discover:
|
||||
how: fmf
|
||||
filter: 'tier: 0'
|
||||
url: https://gitlab.cee.redhat.com/kernel-qe/networking/iproute.git
|
||||
|
||||
prepare:
|
||||
- how: shell
|
||||
script: |
|
||||
grep enabled /etc/yum.repos.d/*
|
||||
# some beaker library(xx/yy) needs certain repo like beaker-tasks
|
||||
dnf -y config-manager --enable '*'
|
||||
# try installing kernel-modules-extra here in case kernel update in "enable tc features in blacklist" and causes finding no module in `modprobe sch_gred`
|
||||
dnf -y install beakerlib kernel-modules-extra
|
||||
|
||||
execute:
|
||||
how: tmt
|
||||
@ -1,64 +0,0 @@
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# Makefile of /CoreOS/iproute/Sanity/bridge-utility
|
||||
# Description: Test basic bridge funcionality
|
||||
# Author: David Spurek <dspurek@redhat.com>
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# Copyright (c) 2013 Red Hat, Inc. All rights reserved.
|
||||
#
|
||||
# This copyrighted material is made available to anyone wishing
|
||||
# to use, modify, copy, or redistribute it subject to the terms
|
||||
# and conditions of the GNU General Public License version 2.
|
||||
#
|
||||
# This program is distributed in the hope that it will be
|
||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
# PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public
|
||||
# License along with this program; if not, write to the Free
|
||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
# Boston, MA 02110-1301, USA.
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
export TEST=/CoreOS/iproute/Sanity/bridge-utility
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: David Spurek <dspurek@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Test basic bridge funcionality" >> $(METADATA)
|
||||
@echo "Type: Sanity" >> $(METADATA)
|
||||
@echo "TestTime: 15m" >> $(METADATA)
|
||||
@echo "RunFor: iproute" >> $(METADATA)
|
||||
@echo "Requires: iproute" >> $(METADATA)
|
||||
@echo "Requires: bridge-utils" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
@ -1,3 +0,0 @@
|
||||
PURPOSE of /CoreOS/iproute/Sanity/bridge-utility
|
||||
Description: Test basic bridge funcionality
|
||||
Author: David Spurek <dspurek@redhat.com>
|
||||
@ -1,268 +0,0 @@
|
||||
#!/bin/bash
|
||||
# vim: dict=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/bridge-utility
|
||||
# Description: Test basic bridge funcionality
|
||||
# Author: David Spurek <dspurek@redhat.com>
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# Copyright (c) 2013 Red Hat, Inc. All rights reserved.
|
||||
#
|
||||
# This copyrighted material is made available to anyone wishing
|
||||
# to use, modify, copy, or redistribute it subject to the terms
|
||||
# and conditions of the GNU General Public License version 2.
|
||||
#
|
||||
# This program is distributed in the hope that it will be
|
||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
# PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public
|
||||
# License along with this program; if not, write to the Free
|
||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
# Boston, MA 02110-1301, USA.
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/bin/rhts-environment.sh || exit 1
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="iproute"
|
||||
|
||||
PACKAGES="$PACKAGE"
|
||||
rlIsRHEL 6 && PACKAGES=( ${PACKAGES[@]} "bridge-utils" )
|
||||
vxlan_name="testvxlan"
|
||||
bridge_name="testbridge"
|
||||
lsmod | grep dummy
|
||||
dummy_loaded=$?
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
# Check reqiured packages.
|
||||
for P in ${PACKAGES[@]}; do rlCheckRpm $P || rlDie "Package $P is missing"; done
|
||||
|
||||
rlRun "TmpDir=\$(mktemp -d)" 0 "Creating tmp directory"
|
||||
rlRun "pushd $TmpDir"
|
||||
no_dummy=0
|
||||
if [ $dummy_loaded -eq 1 ] ; then
|
||||
# dummy module doesn't loaded before the test
|
||||
modprobe dummy numdummies=2
|
||||
else
|
||||
# dummy module loaded before the test, backup number of loaded dummy devices (nmdumies parameter), it is doesn't show under /sys/module/dummy/parameters
|
||||
dummies_count=`ip a | grep dummy | tail -n 1 | sed -r 's/.*dummy([0-9]+).*/\1/'`
|
||||
if [ -z $dummies_count] ; then
|
||||
# dummy module is loaded but no dummy device exists
|
||||
no_dummy=1
|
||||
else
|
||||
# get correct count, dummy0 is the first
|
||||
let "dummies_count=$dummies_count+1"
|
||||
fi
|
||||
rmmod dummy
|
||||
modprobe dummy numdummies=2
|
||||
fi
|
||||
rlRun "ip addr flush dev dummy0"
|
||||
rlRun "ip link set dummy0 up"
|
||||
rlRun "ip addr flush dev dummy1"
|
||||
rlRun "ip link set dummy1 up"
|
||||
rlRun "ip addr add 127.0.0.13/24 dev dummy0" 0 "Setting IPv4 address to
|
||||
dummy0 interface"
|
||||
rlRun "ip addr add 127.0.0.14/24 dev dummy1" 0 "Setting IPv4 address to
|
||||
dummy1 interface"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest "Test bridge fdb basic funcionality with vxlan device"
|
||||
rlRun "ip link add $vxlan_name type vxlan id 10 group 239.0.0.10 ttl 4 dev dummy0" 0 "add vxlan interface"
|
||||
rlRun "ip addr add 192.168.1.1/24 broadcast 192.168.1.255 dev $vxlan_name" 0 "setting address to vxlan interface"
|
||||
rlRun "ip -d link show $vxlan_name" 0 "show details about vxlan device"
|
||||
|
||||
vxlan_ether_address=`ip -d link show $vxlan_name | grep link/ether | awk '{print $2}'`
|
||||
echo "ethernet address of vxlan device is: $vxlan_ether_address"
|
||||
|
||||
# add new entry to bridge fdb database (device must by type vxlan)
|
||||
rlRun "bridge fdb add $vxlan_ether_address dst 192.19.0.2 dev $vxlan_name"
|
||||
|
||||
# check if entry was successfuly added
|
||||
bridge fdb show dev $vxlan_name &> bridge_show.out
|
||||
cat bridge_show.out
|
||||
rlAssertGrep "$vxlan_ether_address dst 192.19.0.2" bridge_show.out "-i"
|
||||
|
||||
# try replace entry in bridge fdb database
|
||||
rlRun "bridge fdb replace $vxlan_ether_address dst 192.19.0.3 dev $vxlan_name"
|
||||
|
||||
# check if entry was successfuly changed
|
||||
bridge fdb show dev $vxlan_name &> bridge_show.out
|
||||
cat bridge_show.out
|
||||
rlAssertGrep "$vxlan_ether_address dst 192.19.0.3" bridge_show.out "-i"
|
||||
|
||||
rlRun "bridge fdb del $vxlan_ether_address dev $vxlan_name"
|
||||
|
||||
# check if entry was successfuly deleted
|
||||
# 'default' entry added by ip link command should be still listed
|
||||
bridge fdb show dev $vxlan_name &> bridge_show.out
|
||||
cat bridge_show.out
|
||||
rlAssertNotGrep "$vxlan_ether_address dst 192.19.0.2" bridge_show.out "-i"
|
||||
rlAssertGrep "dst 239.0.0.10 via dummy0" bridge_show.out "-i"
|
||||
|
||||
# add new entry to bridge fdb database with port,vni and via options
|
||||
rlRun "bridge fdb add $vxlan_ether_address dst 192.19.0.2 dev $vxlan_name port 10000 vni 100 via dummy0"
|
||||
# check if entry was successfuly added
|
||||
bridge fdb show dev $vxlan_name &> bridge_show.out
|
||||
cat bridge_show.out
|
||||
rlAssertGrep "$vxlan_ether_address dst 192.19.0.2 port 10000 vni 100 via dummy0" bridge_show.out "-i"
|
||||
|
||||
rlRun "bridge fdb del $vxlan_ether_address dev $vxlan_name"
|
||||
|
||||
# add new entry to bridge fdb database with self option
|
||||
rlRun "bridge fdb add $vxlan_ether_address dst 192.19.0.2 dev $vxlan_name self"
|
||||
# check if entry was successfuly added
|
||||
bridge fdb show dev $vxlan_name &> bridge_show.out
|
||||
cat bridge_show.out
|
||||
rlAssertGrep "$vxlan_ether_address dst 192.19.0.2 self" bridge_show.out "-i"
|
||||
|
||||
# replace entry in bridge fdb database with temp option
|
||||
rlRun "bridge fdb replace $vxlan_ether_address dst 192.19.0.2 dev $vxlan_name temp"
|
||||
# check if entry was successfuly changed
|
||||
bridge fdb show dev $vxlan_name &> bridge_show.out
|
||||
cat bridge_show.out
|
||||
rlAssertGrep "$vxlan_ether_address dst 192.19.0.2 self static" bridge_show.out "-i"
|
||||
|
||||
# replace entry in bridge fdb database with local option
|
||||
rlRun "bridge fdb replace $vxlan_ether_address dst 192.19.0.2 dev $vxlan_name local"
|
||||
# check if entry was successfuly changed
|
||||
bridge fdb show dev $vxlan_name &> bridge_show.out
|
||||
cat bridge_show.out
|
||||
rlAssertGrep "$vxlan_ether_address dst 192.19.0.2 self permanent" bridge_show.out "-i"
|
||||
|
||||
# replace entry in bridge fdb database with router option
|
||||
rlRun "bridge fdb replace $vxlan_ether_address dst 192.19.0.2 dev $vxlan_name router"
|
||||
# check if entry was successfuly changed
|
||||
bridge fdb show dev $vxlan_name &> bridge_show.out
|
||||
cat bridge_show.out
|
||||
rlAssertGrep "$vxlan_ether_address dst 192.19.0.2 self router permanent" bridge_show.out "-i"
|
||||
|
||||
rlRun "bridge fdb del $vxlan_ether_address dev $vxlan_name"
|
||||
rlRun "ip link del $vxlan_name" 0
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest "Test bridge fdb basic funcionality with bridge device, test bridge link set command"
|
||||
# on rhels < 7 must be bridge device added with brctl (add type bridge is not supported)
|
||||
rlIsRHEL '>=7' && rlRun "ip link add $bridge_name type bridge" 0 || rlRun "brctl addbr $bridge_name" 0
|
||||
|
||||
if rlIsRHEL '>=7'; then
|
||||
rlRun "ip link set dummy0 master $bridge_name" 0 "Add dummy interface to bridge"
|
||||
rlRun "bridge link show dev dummy0"
|
||||
# test bridge link set, command is not supported on rhel < 7 (->ndo_bridge_setlink() is not in our kernel.)
|
||||
|
||||
rlRun "bridge link set dev dummy0 cost 10"
|
||||
rlRun "bridge link show dev dummy0 &> bridge_show.out" 0
|
||||
cat bridge_show.out
|
||||
rlAssertGrep "dummy0.*cost 10 $" bridge_show.out "-i"
|
||||
|
||||
# add new entry to bridge fdb database with self option
|
||||
rlRun "bridge fdb add 00:1b:21:55:23:61 dev dummy0 self"
|
||||
bridge fdb show dev dummy0 &> bridge_show.out
|
||||
cat bridge_show.out
|
||||
rlAssertGrep "00:1b:21:55:23:61 self" bridge_show.out "-i"
|
||||
# add new entry to bridge fdb database with master option
|
||||
rlRun "bridge fdb add 00:1b:21:55:23:62 dev dummy0 master"
|
||||
bridge fdb show dev dummy0 &> bridge_show.out
|
||||
cat bridge_show.out
|
||||
rlAssertGrep "00:1b:21:55:23:62 vlan 1" bridge_show.out "-i"
|
||||
|
||||
# add new entry to bridge fdb database with master and self options (entries for both should be added)
|
||||
rlRun "bridge fdb add 00:1b:21:55:23:63 dev dummy0 self master"
|
||||
bridge fdb show dev dummy0 &> bridge_show.out
|
||||
cat bridge_show.out
|
||||
rlAssertGrep "00:1b:21:55:23:63 self" bridge_show.out "-i"
|
||||
rlAssertGrep "00:1b:21:55:23:63 vlan 1" bridge_show.out "-i"
|
||||
|
||||
else
|
||||
rlRun "brctl addif $bridge_name dummy0" 0 "Add dummy interface to bridge"
|
||||
rlRun "brctl show $bridge_name"
|
||||
fi
|
||||
|
||||
rlIsRHEL '>=7' && rlRun "ip link set dummy0 nomaster" 0 "Remove dummy vlan interface from bridge" || rlRun "brctl delif $bridge_name dummy0" 0 "Remove dummy interface from bridge"
|
||||
|
||||
rlIsRHEL '>=7' && rlRun "ip link del $bridge_name" 0 || rlRun "brctl delbr $bridge_name" 0
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest "Test bridge vlan basic funcionality"
|
||||
# on rhels < 7 must be bridge device added with brctl (add type bridge is not supported)
|
||||
rlIsRHEL '>=7' && rlRun "ip link add $bridge_name type bridge" 0 || rlRun "brctl addbr $bridge_name" 0
|
||||
|
||||
rlRun "ip link add link dummy0 name dummy0.10 type vlan id 10"
|
||||
if rlIsRHEL '>=7' ; then
|
||||
rlRun "ip link set dummy0.10 master $bridge_name" 0 "Add dummy vlan interface to bridge"
|
||||
rlRun "bridge link show dev dummy0.10"
|
||||
else
|
||||
rlRun "brctl addif $bridge_name dummy0.10" 0 "Add dummy vlan interface to bridge"
|
||||
rlRun "brctl show $bridge_name"
|
||||
fi
|
||||
# bridge vlan is not supported on rhel < 6.8
|
||||
if rlIsRHEL '>=7' || rlIsRHEL '>=6.8' || rlIsFedora; then
|
||||
rlRun "bridge vlan add dev dummy0.10 vid 5" 0
|
||||
else
|
||||
rlRun "bridge vlan add dev dummy0.10 vid 5" 2
|
||||
fi
|
||||
|
||||
# test correct funcionality only on rhel 7
|
||||
if rlIsRHEL '>=7' ; then
|
||||
bridge vlan &> bridge_vlan.out
|
||||
cat bridge_vlan.out
|
||||
#rlAssertGrep "dummy0.10.*5" bridge_vlan.out "-i"
|
||||
#rlAssertGrep "dummy0.10.*10" bridge_vlan.out "-i"
|
||||
rlRun "grep -A 2 'dummy0.10' bridge_vlan.out | grep '5'"
|
||||
|
||||
rlRun "bridge vlan del dev dummy0.10 vid 5"
|
||||
bridge vlan &> bridge_vlan.out
|
||||
cat bridge_vlan.out
|
||||
#rlAssertNotGrep "dummy0.10" bridge_vlan.out "-i"
|
||||
rlRun "grep -A 2 'dummy0.10' bridge_vlan.out | grep '5'" 1
|
||||
fi
|
||||
rlIsRHEL '>=7' && rlRun "ip link set dummy0.10 nomaster" 0 "Remove dummy vlan interface from bridge" || rlRun "brctl delif $bridge_name dummy0.10" 0 "Remove dummy vlan interface from bridge"
|
||||
|
||||
rlRun "ip link del dev dummy0.10"
|
||||
|
||||
rlIsRHEL '>=7' && rlRun "ip link del $bridge_name" 0 || rlRun "brctl delbr $bridge_name" 0
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest "Test bridge mdb basic funcionality"
|
||||
rlRun "bridge mdb show" 0
|
||||
rlPhaseEnd
|
||||
|
||||
if rlIsRHEL '>=7'; then
|
||||
rlPhaseStartTest
|
||||
rlRun "ip link add test_bridge type bridge"
|
||||
rlRun "bridge fdb show | grep 'dev test_bridge' | grep 'master test_bridge'"
|
||||
rlRun "ip link del test_bridge"
|
||||
rlPhaseEnd
|
||||
fi
|
||||
|
||||
rlPhaseStartCleanup
|
||||
rlRun "ip route flush dev dummy0"
|
||||
rlRun "ip link set dummy0 down"
|
||||
rlRun "ip addr flush dev dummy0"
|
||||
rlRun "ip route flush dev dummy1"
|
||||
rlRun "ip link set dummy1 down"
|
||||
rlRun "ip addr flush dev dummy1"
|
||||
if [ $dummy_loaded -eq 1 ] ; then
|
||||
rmmod dummy
|
||||
else
|
||||
rmmod dummy
|
||||
if [ $no_dummy -eq 1 ] ; then
|
||||
# load dummy module and delete dummy0 with ip link
|
||||
modprobe dummy
|
||||
rlIsRHEL '>=7' && rlRun "ip link del dummy0"
|
||||
else
|
||||
modprobe dummy numdummies=$dummies_count
|
||||
fi
|
||||
fi
|
||||
rlRun "service network restart" 0,1 "Restarting network, just for sure"
|
||||
rlRun "popd"
|
||||
rlRun "rm -r $TmpDir" 0 "Removing tmp directory"
|
||||
rlPhaseEnd
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
@ -1,47 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-address-label-sanity-test
|
||||
# Description: Test basic ip address label funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
export TEST=/CoreOS/iproute/Sanity/ip-address-sanity-test
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: Susant Sahani <susant@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Test basic ip address label funcionality" >> $(METADATA)
|
||||
@echo "Type: Sanity" >> $(METADATA)
|
||||
@echo "TestTime: 15m" >> $(METADATA)
|
||||
@echo "RunFor: iproute" >> $(METADATA)
|
||||
@echo "Requires: iproute" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
@ -1,3 +0,0 @@
|
||||
PURPOSE of /CoreOS/iproute/Sanity/ip-address-label-sanity-test
|
||||
Description: Test basic ip address label funcionality
|
||||
Author: Susant Sahani <susant@redhat.com>
|
||||
@ -1,89 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-address-label-sanity-test
|
||||
# Description: Test basic ip addrlabel funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
# ~~~
|
||||
|
||||
import errno
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import unittest
|
||||
import subprocess
|
||||
import signal
|
||||
import shutil
|
||||
|
||||
def setUpModule():
|
||||
|
||||
if shutil.which('ip') is None:
|
||||
raise OSError(errno.ENOENT, 'ip not found')
|
||||
|
||||
class IPLinkUtilities():
|
||||
|
||||
def link_exists(self, link):
|
||||
|
||||
self.assertTrue(os.path.exists(os.path.join('/sys/class/net', link)))
|
||||
|
||||
def add_dummy(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dummy-test', 'type', 'dummy'])
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
def del_dummy(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
class IPAddressLabelTests(unittest.TestCase, IPLinkUtilities):
|
||||
|
||||
def setUp(self):
|
||||
self.add_dummy()
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
def tearDown(self):
|
||||
self.del_dummy()
|
||||
|
||||
def test_add_address_label(self):
|
||||
|
||||
subprocess.call("ip addrlabel add prefix 2001:6f8:12d8:2::/64 label 200", shell=True)
|
||||
subprocess.call("ip addrlabel add prefix 2001:6f8:900:8cbc::/64 label 300", shell=True)
|
||||
subprocess.call("ip addrlabel add prefix 2001:4dd0:ff00:834::/64 label 200", shell=True)
|
||||
subprocess.call("ip addrlabel add prefix 2a01:238:423d:8800::/64 label 300", shell=True)
|
||||
|
||||
output=subprocess.check_output(['ip', 'addrlabel']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "prefix 2001:6f8:12d8:2::/64 label 200")
|
||||
self.assertRegex(output, "prefix 2001:6f8:900:8cbc::/64 label 300")
|
||||
self.assertRegex(output, "prefix 2001:4dd0:ff00:834::/64 label 200")
|
||||
self.assertRegex(output, "prefix 2a01:238:423d:8800::/64 label 300")
|
||||
|
||||
subprocess.call("ip addrlabel del prefix 2001:6f8:12d8:2::/64 label 200", shell=True)
|
||||
subprocess.call("ip addrlabel del prefix 2001:6f8:900:8cbc::/64 label 300", shell=True)
|
||||
subprocess.call("ip addrlabel del prefix 2001:4dd0:ff00:834::/64 label 200", shell=True)
|
||||
subprocess.call("ip addrlabel del prefix 2a01:238:423d:8800::/64 label 300", shell=True)
|
||||
|
||||
def test_add_address_label_dev(self):
|
||||
|
||||
subprocess.call("ip addrlabel add prefix 2001:6f8:12d8:2::/64 label 200 dev dummy-test", shell=True)
|
||||
subprocess.call("ip addrlabel add prefix 2001:6f8:900:8cbc::/64 label 300 dev dummy-test", shell=True)
|
||||
subprocess.call("ip addrlabel add prefix 2001:4dd0:ff00:834::/64 label 200 dev dummy-test", shell=True)
|
||||
subprocess.call("ip addrlabel add prefix 2a01:238:423d:8800::/64 label 300 dev dummy-test", shell=True)
|
||||
|
||||
output=subprocess.check_output(['ip', 'addrlabel']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "prefix 2001:6f8:12d8:2::/64 dev dummy-test label 200")
|
||||
self.assertRegex(output, "prefix 2001:6f8:900:8cbc::/64 dev dummy-test label 300")
|
||||
self.assertRegex(output, "prefix 2001:4dd0:ff00:834::/64 dev dummy-test label 200")
|
||||
self.assertRegex(output, "prefix 2a01:238:423d:8800::/64 dev dummy-test label 300")
|
||||
|
||||
subprocess.call("ip addrlabel del prefix 2001:6f8:12d8:2::/64 label 200 dev dummy-test", shell=True)
|
||||
subprocess.call("ip addrlabel del prefix 2001:6f8:900:8cbc::/64 label 300 dev dummy-test", shell=True)
|
||||
subprocess.call("ip addrlabel del prefix 2001:4dd0:ff00:834::/64 label 200 dev dummy-test", shell=True)
|
||||
subprocess.call("ip addrlabel del prefix 2a01:238:423d:8800::/64 label 300 dev dummy-test", shell=True)
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout,
|
||||
verbosity=2))
|
||||
@ -1,34 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-address-label-sanity-test
|
||||
# Description: Test basic ip address label funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="iproute"
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
rlAssertRpm $PACKAGE
|
||||
rlRun "cp ip-address-label-tests.py /usr/bin"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest
|
||||
rlLog "ip address label tests"
|
||||
rlRun "/usr/bin/python3 /usr/bin/ip-address-label-tests.py"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartCleanup
|
||||
rlRun "rm /usr/bin/ip-address-label-tests.py"
|
||||
rlLog "ip address label tests done"
|
||||
rlPhaseEnd
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
|
||||
rlGetTestState
|
||||
@ -1,47 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-address-sanity-test
|
||||
# Description: Test basic ip address funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
export TEST=/CoreOS/iproute/Sanity/ip-address-sanity-test
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: Susant Sahani <susant@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Test basic ip address funcionality" >> $(METADATA)
|
||||
@echo "Type: Sanity" >> $(METADATA)
|
||||
@echo "TestTime: 15m" >> $(METADATA)
|
||||
@echo "RunFor: iproute" >> $(METADATA)
|
||||
@echo "Requires: iproute" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
@ -1,3 +0,0 @@
|
||||
PURPOSE of /CoreOS/iproute/Sanity/ip-address-sanity-test
|
||||
Description: Test basic ip address funcionality
|
||||
Author: Susant Sahani <susant@redhat.com>
|
||||
@ -1,109 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-address-sanity-test
|
||||
# Description: Test basic ip address funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
# ~~~
|
||||
|
||||
import errno
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import unittest
|
||||
import subprocess
|
||||
import signal
|
||||
import shutil
|
||||
|
||||
def setUpModule():
|
||||
|
||||
if shutil.which('ip') is None:
|
||||
raise OSError(errno.ENOENT, 'ip not found')
|
||||
|
||||
class IPLinkUtilities():
|
||||
|
||||
def link_exists(self, link):
|
||||
|
||||
self.assertTrue(os.path.exists(os.path.join('/sys/class/net', link)))
|
||||
|
||||
def add_dummy(self):
|
||||
""" Setup """
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dummy-test', 'type', 'dummy'])
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
def del_dummy(self):
|
||||
subprocess.check_output(['ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
class IPAddressTests(unittest.TestCase, IPLinkUtilities):
|
||||
|
||||
def setUp(self):
|
||||
self.add_dummy()
|
||||
|
||||
def tearDown(self):
|
||||
self.del_dummy()
|
||||
|
||||
def test_add_address(self):
|
||||
|
||||
r = subprocess.call("ip address add 192.168.1.200/24 dev dummy-test", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'address', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, "192.168.1.200")
|
||||
|
||||
def test_add_broadcast_address_label(self):
|
||||
|
||||
r = subprocess.call("ip addr add 192.168.1.50/24 brd + dev dummy-test label dummy-test-Home", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'address', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, "192.168.1.50")
|
||||
self.assertRegex(output, "192.168.1.255")
|
||||
self.assertRegex(output, "dummy-test-Home")
|
||||
|
||||
def test_del_address(self):
|
||||
|
||||
r = subprocess.call("ip address add 192.168.1.200/24 dev dummy-test", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'address', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, "192.168.1.200")
|
||||
|
||||
r = subprocess.call("ip address del 192.168.1.200/24 dev dummy-test", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'address', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
self.assertNotRegex(output, "192.168.1.200")
|
||||
|
||||
def test_add_address_scope(self):
|
||||
|
||||
r = subprocess.call("ip address add 192.168.1.200/24 dev dummy-test scope host", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'address', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, "192.168.1.200")
|
||||
self.assertRegex(output, "host")
|
||||
|
||||
def test_add_address_lifetime(self):
|
||||
|
||||
r = subprocess.call("ip address add 192.168.1.200/24 dev dummy-test valid_lft 1000 preferred_lft 500", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'address', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, "192.168.1.200")
|
||||
self.assertRegex(output, "1000sec")
|
||||
self.assertRegex(output, "500sec")
|
||||
|
||||
def test_add_ipv6_address(self):
|
||||
|
||||
r = subprocess.call("ip -6 addr add 2001:0db8:0:f101::1/64 dev dummy-test", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'address', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, "2001:db8:0:f101::1")
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout,
|
||||
verbosity=2))
|
||||
@ -1,34 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-address-sanity-test
|
||||
# Description: Test basic ip address funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="iproute"
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
rlAssertRpm $PACKAGE
|
||||
rlRun "cp ip-address-tests.py /usr/bin"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest
|
||||
rlLog "ip address tests"
|
||||
rlRun "/usr/bin/python3 /usr/bin/ip-address-tests.py"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartCleanup
|
||||
rlRun "rm /usr/bin/ip-address-tests.py"
|
||||
rlLog "ip address tests done"
|
||||
rlPhaseEnd
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
|
||||
rlGetTestState
|
||||
@ -1,47 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-fou-sanity-test
|
||||
# Description: Test basic ip fou funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
export TEST=/CoreOS/iproute/Sanity/ip-address-sanity-test
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: Susant Sahani <susant@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Test basic ip fou funcionality" >> $(METADATA)
|
||||
@echo "Type: Sanity" >> $(METADATA)
|
||||
@echo "TestTime: 15m" >> $(METADATA)
|
||||
@echo "RunFor: iproute" >> $(METADATA)
|
||||
@echo "Requires: iproute" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
@ -1,3 +0,0 @@
|
||||
PURPOSE of /CoreOS/iproute/Sanity/ip-fou-sanity-test
|
||||
Description: Test basic ip fou funcionality
|
||||
Author: Susant Sahani <susant@redhat.com>
|
||||
@ -1,74 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-fou-sanity-test
|
||||
# Description: Test basic ip fou funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
# ~~~
|
||||
|
||||
import errno
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import unittest
|
||||
import subprocess
|
||||
import signal
|
||||
import shutil
|
||||
|
||||
def setUpModule():
|
||||
|
||||
if shutil.which('ip') is None:
|
||||
raise OSError(errno.ENOENT, 'ip not found')
|
||||
|
||||
class IPFOUTests(unittest.TestCase):
|
||||
|
||||
def test_configure_fou_receive_port_gre(self):
|
||||
''' Configure a FOU receive port for GRE bound to 7777'''
|
||||
|
||||
subprocess.call(" ip fou add port 7777 ipproto 47", shell=True)
|
||||
output=subprocess.check_output(['ip', 'fou', 'show']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "port 7777 ipproto 47")
|
||||
|
||||
subprocess.call("ip fou del port 7777", shell=True)
|
||||
|
||||
def test_configure_fou_receive_port_ipip(self):
|
||||
''' Configure a FOU receive port for IPIP bound to 8888'''
|
||||
|
||||
subprocess.call("ip fou add port 8888 ipproto 4", shell=True)
|
||||
output=subprocess.check_output(['ip', 'fou', 'show']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "port 8888 ipproto 4")
|
||||
|
||||
subprocess.call("ip fou del port 8888", shell=True)
|
||||
|
||||
def test_configure_fou_receive_port_gue(self):
|
||||
''' Configure a GUE receive port bound to 9999 '''
|
||||
|
||||
subprocess.call("ip fou add port 9999 gue", shell=True)
|
||||
output=subprocess.check_output(['ip', 'fou', 'show']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "port 9999 gue")
|
||||
|
||||
subprocess.call("ip fou del port 9999", shell=True)
|
||||
|
||||
def test_configure_fou_with_ipip(self):
|
||||
''' IP over UDP tunnel '''
|
||||
|
||||
subprocess.call("ip fou add port 9000 ipproto 4", shell=True)
|
||||
output=subprocess.check_output(['ip', 'fou', 'show']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "port 9000 ipproto 4")
|
||||
|
||||
subprocess.call("ip link add name tunudp type ipip remote 192.168.2.2 local 192.168.2.1 ttl 225 encap fou encap-sport auto encap-dport 9000", shell=True)
|
||||
output=subprocess.check_output(['ip', '-d', 'link', 'show', 'tunudp']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, "encap fou")
|
||||
|
||||
subprocess.call("ip link del tunudp", shell=True)
|
||||
subprocess.call("ip fou del port 9000", shell=True)
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout,
|
||||
verbosity=2))
|
||||
@ -1,35 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-fou-sanity-test
|
||||
# Description: Test basic ip address label funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="iproute"
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
rlAssertRpm $PACKAGE
|
||||
rlRun "modprobe fou"
|
||||
rlRun "cp ip-fou-tests.py /usr/bin"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest
|
||||
rlLog "ip fou tests"
|
||||
rlRun "/usr/bin/python3 /usr/bin/ip-fou-tests.py"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartCleanup
|
||||
rlRun "rm /usr/bin/ip-fou-tests.py"
|
||||
rlLog "ip fou tests done"
|
||||
rlPhaseEnd
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
|
||||
rlGetTestState
|
||||
@ -1,47 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-l2tp-sanity-test
|
||||
# Description: Test basic ip l2tp funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
export TEST=/CoreOS/iproute/Sanity/ip-l2tp-sanity-test
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: Susant Sahani <susant@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Test basic ip l2tp funcionality" >> $(METADATA)
|
||||
@echo "Type: Sanity" >> $(METADATA)
|
||||
@echo "TestTime: 15m" >> $(METADATA)
|
||||
@echo "RunFor: iproute" >> $(METADATA)
|
||||
@echo "Requires: iproute" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
@ -1,3 +0,0 @@
|
||||
PURPOSE of /CoreOS/iproute/Sanity/ip-l2tp-sanity-test
|
||||
Description: Test basic ip l2tp funcionality
|
||||
Author: Susant Sahani <susant@redhat.com>
|
||||
@ -1,149 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-l2tp-sanity-test
|
||||
# Description: Test basic ip l2tp funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
# ~~~
|
||||
|
||||
import errno
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import unittest
|
||||
import subprocess
|
||||
import signal
|
||||
import shutil
|
||||
|
||||
def setUpModule():
|
||||
|
||||
if shutil.which('ip') is None:
|
||||
raise OSError(errno.ENOENT, 'ip not found')
|
||||
|
||||
class IPLinkUtilities():
|
||||
|
||||
def link_exists(self, link):
|
||||
self.assertTrue(os.path.exists(os.path.join('/sys/class/net', link)))
|
||||
|
||||
def add_veth(self):
|
||||
subprocess.check_output(['ip', 'link', 'add', 'veth-test', 'type', 'veth', 'peer', 'name', 'test-peer'])
|
||||
|
||||
def del_veth(self):
|
||||
subprocess.check_output(['ip', 'link', 'del', 'veth-test'])
|
||||
|
||||
def add_address(self, address, interface):
|
||||
subprocess.check_output(['ip', 'address', 'add', address, 'dev', interface])
|
||||
|
||||
class IPL2tpTests(unittest.TestCase, IPLinkUtilities):
|
||||
|
||||
def setUp(self):
|
||||
self.add_veth()
|
||||
self.link_exists('veth-test')
|
||||
|
||||
self.add_address('192.168.11.12/24', 'veth-test')
|
||||
self.add_address('192.168.11.13/24', 'test-peer')
|
||||
|
||||
def tearDown(self):
|
||||
self.del_veth()
|
||||
|
||||
def test_add_l2tp_add_tunnel(self):
|
||||
|
||||
r = subprocess.call("ip l2tp add tunnel tunnel_id 3000 peer_tunnel_id 4000 encap udp local 192.168.11.12 remote 192.168.11.13 udp_sport 5000 udp_dport 6000", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'l2tp', 'show', 'tunnel', 'tunnel_id', '3000']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "From 192.168.11.12 to 192.168.11.13")
|
||||
self.assertRegex(output, "Peer tunnel 4000")
|
||||
self.assertRegex(output, "UDP source / dest ports: 5000/6000")
|
||||
|
||||
r = subprocess.call("ip l2tp del tunnel tunnel_id 3000", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
def test_add_l2tp_add_tunnel_session(self):
|
||||
|
||||
r = subprocess.call("ip l2tp add tunnel tunnel_id 3000 peer_tunnel_id 4000 encap udp local 192.168.11.12 remote 192.168.11.13 udp_sport 5000 udp_dport 6000", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'l2tp', 'show', 'tunnel', 'tunnel_id', '3000']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "From 192.168.11.12 to 192.168.11.13")
|
||||
self.assertRegex(output, "Peer tunnel 4000")
|
||||
self.assertRegex(output, "UDP source / dest ports: 5000/6000")
|
||||
|
||||
r = subprocess.call(" ip l2tp add session tunnel_id 3000 session_id 1000 peer_session_id 2000", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'l2tp', 'show', 'session', 'tunnel_id', '3000', 'session_id' ,'1000']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
|
||||
r = subprocess.call("ip l2tp del session tunnel_id 3000 session_id 1000", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
r = subprocess.call("ip l2tp del tunnel tunnel_id 3000", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
def test_setup_l2tp(self):
|
||||
|
||||
r = subprocess.call("ip l2tp add tunnel tunnel_id 3000 peer_tunnel_id 4000 encap udp local 192.168.11.12 remote 192.168.11.13 udp_sport 5000 udp_dport 6000", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'l2tp', 'show', 'tunnel', 'tunnel_id', '3000']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "From 192.168.11.12 to 192.168.11.13")
|
||||
self.assertRegex(output, "Peer tunnel 4000")
|
||||
self.assertRegex(output, "UDP source / dest ports: 5000/6000")
|
||||
|
||||
r = subprocess.call(" ip l2tp add session tunnel_id 3000 session_id 1000 peer_session_id 2000", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'l2tp', 'show', 'session', 'tunnel_id', '3000', 'session_id' ,'1000']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
|
||||
r = subprocess.call("ip l2tp add tunnel tunnel_id 4000 peer_tunnel_id 3000 encap udp local 192.168.11.13 remote 192.168.11.12 udp_sport 6000 udp_dport 5000", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'l2tp', 'show', 'tunnel', 'tunnel_id', '3000']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "From 192.168.11.13 to 192.168.11.12")
|
||||
self.assertRegex(output, "Peer tunnel 4000")
|
||||
self.assertRegex(output, "UDP source / dest ports: 6000/5000")
|
||||
|
||||
r = subprocess.call("ip l2tp add session tunnel_id 4000 session_id 2000 peer_session_id 1000", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'l2tp', 'show', 'session', 'tunnel_id', '4000', 'session_id' ,'2000']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
|
||||
r = subprocess.call("ip link set l2tpeth0 up mtu 1488", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
r = subprocess.call("ip link set l2tpeth0 up mtu 1488", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
r = subprocess.call("ip addr add 10.42.1.1 peer 10.42.1.2 dev l2tpeth0", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
r = subprocess.call("ip addr add 10.42.1.2 peer 10.42.1.1 dev l2tpeth1", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'link', 'show']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
|
||||
output=subprocess.check_output(['ping', '10.42.1.2','-c', '5']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
|
||||
r = subprocess.call("ip l2tp del session tunnel_id 3000 session_id 1000", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
r = subprocess.call("ip l2tp del session tunnel_id 4000 session_id 2000", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
r = subprocess.call("ip l2tp del tunnel tunnel_id 3000", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
r = subprocess.call("ip l2tp del tunnel tunnel_id 4000", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout,
|
||||
verbosity=2))
|
||||
@ -1,34 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-l2tp-sanity-test
|
||||
# Description: Test basic ip l2tp funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="iproute"
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
rlAssertRpm $PACKAGE
|
||||
rlRun "cp ip-l2tp-tests.py /usr/bin"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest
|
||||
rlLog "ip l2tp tests"
|
||||
rlRun "/usr/bin/python3 /usr/bin/ip-l2tp-tests.py"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartCleanup
|
||||
rlRun "rm /usr/bin/ip-l2tp-tests.py"
|
||||
rlLog "ip l2tp tests done"
|
||||
rlPhaseEnd
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
|
||||
rlGetTestState
|
||||
@ -1,47 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-link-sanity-test
|
||||
# Description: Test basic ip link funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
export TEST=/CoreOS/iproute/Sanity/ip-link-sanity-test
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: Susant Sahani <susant@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Test basic ip link funcionality" >> $(METADATA)
|
||||
@echo "Type: Sanity" >> $(METADATA)
|
||||
@echo "TestTime: 15m" >> $(METADATA)
|
||||
@echo "RunFor: iproute" >> $(METADATA)
|
||||
@echo "Requires: iproute" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
@ -1,3 +0,0 @@
|
||||
PURPOSE of /CoreOS/iproute/Sanity/ip-link-sanity-test
|
||||
Description: Test basic ip link funcionality
|
||||
Author: Susant Sahani <susant@redhat.com>
|
||||
@ -1,342 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-link-sanity-test
|
||||
# Description: Test basic ip link funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
# ~~~
|
||||
|
||||
import errno
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import unittest
|
||||
import subprocess
|
||||
import signal
|
||||
import shutil
|
||||
|
||||
def setUpModule():
|
||||
|
||||
if shutil.which('ip') is None:
|
||||
raise OSError(errno.ENOENT, 'ip not found')
|
||||
|
||||
class IPLinkUtilities():
|
||||
|
||||
def read_attr(self, link, attribute):
|
||||
"""Read a link attributed from the sysfs."""
|
||||
|
||||
with open(os.path.join('/sys/class/net', link, attribute)) as f:
|
||||
return f.readline().strip()
|
||||
|
||||
def link_exists(self, link):
|
||||
|
||||
self.assertTrue(os.path.exists(os.path.join('/sys/class/net', link)))
|
||||
|
||||
class IPLinkSetDevTests(unittest.TestCase, IPLinkUtilities):
|
||||
|
||||
def setUp(self):
|
||||
""" Setup """
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dummy-test', 'type', 'dummy'])
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
def tearDown(self):
|
||||
subprocess.check_output(['ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
def test_set_dev_mtu(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'set', 'dev', 'dummy-test', 'mtu', '9000'])
|
||||
self.assertEqual('9000', self.read_attr('dummy-test', 'mtu'))
|
||||
|
||||
def test_set_dev_up_down(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'set', 'dev', 'dummy-test', 'up'])
|
||||
output=subprocess.check_output(['ip', 'link', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, 'UP,LOWER_UP')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'set', 'dev', 'dummy-test', 'down'])
|
||||
output=subprocess.check_output(['ip', 'link', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
self.assertNotRegex(output, 'UP,LOWER_UP')
|
||||
|
||||
def test_set_dev_address(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'set', 'dev', 'dummy-test', 'address', '02:01:02:03:04:08'])
|
||||
output=subprocess.check_output(['ip', 'link', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, 'link/ether 02:01:02:03:04:08')
|
||||
|
||||
def test_set_dev_alias(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'set', 'dev', 'dummy-test', 'alias', 'test-test'])
|
||||
output=subprocess.check_output(['ip', 'link', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, 'test-test')
|
||||
|
||||
def test_set_dev_name(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'set', 'dev', 'dummy-test', 'name', 'test-test'])
|
||||
output=subprocess.check_output(['ip', 'link', 'show', 'dev', 'test-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, 'test-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'set', 'dev', 'test-test', 'name', 'dummy-test'])
|
||||
|
||||
def test_set_dev_multicast(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'set', 'dev', 'dummy-test', 'multicast', 'on'])
|
||||
output=subprocess.check_output(['ip', 'link', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, 'MULTICAST')
|
||||
|
||||
def test_set_dev_all_multicast(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'set', 'dev', 'dummy-test', 'allmulticast', 'on'])
|
||||
output=subprocess.check_output(['ip', 'link', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, 'ALLMULTI')
|
||||
|
||||
|
||||
class IPLinkKindTests(unittest.TestCase, IPLinkUtilities):
|
||||
|
||||
def setUp(self):
|
||||
""" Setup """
|
||||
pass
|
||||
|
||||
def tearDown(self):
|
||||
pass
|
||||
|
||||
def test_add_veth_pair(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'veth-test', 'type', 'veth', 'peer', 'name', 'veth-peer-test'])
|
||||
|
||||
self.link_exists('veth-test')
|
||||
self.link_exists('veth-peer-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'veth-test'])
|
||||
|
||||
def test_add_dummy(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dummy-test', 'type', 'dummy'])
|
||||
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
def test_add_vcan(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'vcan-test', 'type', 'vcan'])
|
||||
|
||||
self.link_exists('vcan-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'vcan-test'])
|
||||
|
||||
def test_add_vxcan(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'vxcan-test', 'type', 'vxcan'])
|
||||
|
||||
self.link_exists('vxcan-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'vxcan-test'])
|
||||
|
||||
def test_add_vlan(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dummy-test', 'type', 'dummy'])
|
||||
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'link', 'dummy-test', 'name', 'vlantest.100', 'type', 'vlan', 'id', '100'])
|
||||
|
||||
self.link_exists('vlantest.100')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'vlantest.100'])
|
||||
subprocess.check_output(['ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
def test_add_macvlan(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dummy-test', 'type', 'dummy'])
|
||||
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'link', 'dummy-test', 'macvlan-test', 'type', 'macvlan', 'mode', 'bridge'])
|
||||
|
||||
self.link_exists('macvlan-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'macvlan-test'])
|
||||
subprocess.check_output(['ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
def test_add_macvtap(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dummy-test', 'type', 'dummy'])
|
||||
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'link', 'dummy-test', 'macvtap-test', 'type', 'macvtap', 'mode', 'bridge'])
|
||||
|
||||
self.link_exists('macvtap-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'macvtap-test'])
|
||||
subprocess.check_output(['ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
def test_add_bridge(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'bridge-test', 'type', 'bridge'])
|
||||
|
||||
self.link_exists('bridge-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'bridge-test'])
|
||||
|
||||
def test_add_bond(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'bond-test', 'type', 'bond'])
|
||||
|
||||
self.link_exists('bond-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'bond-test'])
|
||||
|
||||
def test_add_team(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'team-test', 'type', 'team'])
|
||||
|
||||
self.link_exists('team-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'team-test'])
|
||||
|
||||
def test_add_ipip_tunnel(self):
|
||||
|
||||
subprocess.check_output(['ip', 'tunnel', 'add', 'test-ipiptun', 'mode', 'ipip', 'remote', '10.3.3.3', 'local', '10.4.4.4', 'ttl' ,'64'])
|
||||
|
||||
self.link_exists('test-ipiptun')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-ipiptun'])
|
||||
|
||||
def test_add_gre_tunnel(self):
|
||||
|
||||
subprocess.check_output(['ip', 'tunnel', 'add', 'test-gretun', 'mode', 'gre', 'remote', '10.3.3.3', 'local', '10.4.4.4', 'ttl' ,'64'])
|
||||
|
||||
self.link_exists('test-gretun')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-gretun'])
|
||||
|
||||
def test_add_gretap_tunnel(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'test-gretap', 'type', 'gretap', 'remote', '10.3.3.3', 'local', '10.4.4.4'])
|
||||
|
||||
self.link_exists('test-gretap')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-gretap'])
|
||||
|
||||
def test_add_ip6gre_tunnel(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'test-ip6gre', 'type', 'ip6gre', 'remote', '2a00:ffde:4567:edde::4987', 'local', '2001:473:fece:cafe::5179'])
|
||||
|
||||
self.link_exists('test-ip6gre')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-ip6gre'])
|
||||
|
||||
def test_add_ip6gretap_tunnel(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'test-ip6gretap', 'type', 'ip6gretap', 'remote', '2a00:ffde:4567:edde::4987', 'local', '2001:473:fece:cafe::5179'])
|
||||
|
||||
self.link_exists('test-ip6gretap')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-ip6gretap'])
|
||||
|
||||
def test_add_erspan_tunnel(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dev', 'test-erspan', 'type', 'erspan', 'seq', 'key', '100','erspan', '123', 'remote', '10.3.3.3', 'local', '10.4.4.4'])
|
||||
|
||||
self.link_exists('test-erspan')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-erspan'])
|
||||
|
||||
def test_add_ip6erspan_tunnel(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dev', 'test-ip6erspan', 'type', 'erspan', 'seq', 'key', '101','erspan', '1234', 'remote', '10.3.3.3', 'local', '10.4.4.4'])
|
||||
|
||||
self.link_exists('test-ip6erspan')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-ip6erspan'])
|
||||
|
||||
def test_add_sit_tunnel(self):
|
||||
|
||||
subprocess.check_output(['ip', 'tunnel', 'add', 'test-sittun', 'mode', 'sit', 'remote', '10.3.3.3', 'local', '10.4.4.4', 'ttl' ,'64'])
|
||||
|
||||
self.link_exists('test-sittun')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-sittun'])
|
||||
|
||||
def test_add_vti_tunnel(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dev', 'test-vtitun', 'type', 'vti', 'remote', '10.3.3.3', 'local', '10.4.4.4'])
|
||||
|
||||
self.link_exists('test-vtitun')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-vtitun'])
|
||||
|
||||
def test_add_geneve_tunnel(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dev', 'test-geneve-tun', 'type', 'geneve', 'remote', '10.3.3.3', 'vni', '1234'])
|
||||
|
||||
self.link_exists('test-geneve-tun')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-geneve-tun'])
|
||||
|
||||
def test_add_ipvlan(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dummy-test', 'type', 'dummy'])
|
||||
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'link', 'dummy-test', 'name', 'test-ipvlan', 'type', 'ipvlan'])
|
||||
self.link_exists('test-ipvlan')
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-ipvlan'])
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'link', 'dummy-test', 'name', 'test-ipvlan', 'type', 'ipvlan','mode', 'l2', 'bridge'])
|
||||
self.link_exists('test-ipvlan')
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-ipvlan'])
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'link', 'dummy-test', 'name', 'test-ipvlan', 'type', 'ipvlan','mode', 'l2', 'private'])
|
||||
self.link_exists('test-ipvlan')
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-ipvlan'])
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'link', 'dummy-test', 'name', 'test-ipvlan', 'type', 'ipvlan','mode', 'l2', 'vepa'])
|
||||
self.link_exists('test-ipvlan')
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-ipvlan'])
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
def test_add_vxlan(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dummy-test', 'type', 'dummy'])
|
||||
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'vxlan-test', 'type', 'vxlan', 'id', '42', 'group', '239.1.1.1', 'dev', 'dummy-test' ,'dstport', '4789'])
|
||||
self.link_exists('vxlan-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'vxlan-test'])
|
||||
subprocess.check_output(['ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
def test_add_vrf(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'vrf-test', 'type', 'vrf', 'table', '10'])
|
||||
|
||||
self.link_exists('vrf-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'vrf-test'])
|
||||
|
||||
def test_add_macsec(self):
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dummy-test', 'type', 'dummy'])
|
||||
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'link', 'dummy-test', 'test-macsec', 'type', 'macsec'])
|
||||
|
||||
self.link_exists('test-macsec')
|
||||
|
||||
subprocess.check_output(['ip', 'macsec', 'add', 'test-macsec', 'tx', 'sa', '0', 'pn', '1', 'on', 'key', '02', '09876543210987654321098765432109'])
|
||||
subprocess.check_output(['ip', 'macsec', 'add', 'test-macsec', 'rx', 'address', '56:68:a5:c2:4c:14', 'port', '1'])
|
||||
subprocess.check_output(['ip', 'macsec', 'add', 'test-macsec', 'rx', 'address', '56:68:a5:c2:4c:14', 'port', '1', 'sa', '0', 'pn', '1', 'on', 'key', '01', '12345678901234567890123456789012'])
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'test-macsec'])
|
||||
subprocess.check_output(['ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout,
|
||||
verbosity=2))
|
||||
@ -1,34 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-link-sanity-test
|
||||
# Description: Test basic ip link funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="iproute"
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
rlAssertRpm $PACKAGE
|
||||
rlRun "cp ip-link-tests.py /usr/bin"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest
|
||||
rlLog "ip link tests"
|
||||
rlRun "/usr/bin/python3 /usr/bin/ip-link-tests.py"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartCleanup
|
||||
rlRun "rm /usr/bin/ip-link-tests.py"
|
||||
rlLog "ip link tests done"
|
||||
rlPhaseEnd
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
|
||||
rlGetTestState
|
||||
@ -1,63 +0,0 @@
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# Makefile of /CoreOS/iproute/Sanity/ip-neigh-sanity-test
|
||||
# Description: Test basic ip neigh functionality
|
||||
# Author: Jaroslav Aster <jaster@redhat.com>
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# Copyright (c) 2014 Red Hat, Inc. All rights reserved.
|
||||
#
|
||||
# This copyrighted material is made available to anyone wishing
|
||||
# to use, modify, copy, or redistribute it subject to the terms
|
||||
# and conditions of the GNU General Public License version 2.
|
||||
#
|
||||
# This program is distributed in the hope that it will be
|
||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
# PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public
|
||||
# License along with this program; if not, write to the Free
|
||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
# Boston, MA 02110-1301, USA.
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
export TEST=/CoreOS/iproute/Sanity/ip-neigh-sanity-test
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: Jaroslav Aster <jaster@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Test basic ip neigh funcionality" >> $(METADATA)
|
||||
@echo "Type: Sanity" >> $(METADATA)
|
||||
@echo "TestTime: 15m" >> $(METADATA)
|
||||
@echo "RunFor: iproute" >> $(METADATA)
|
||||
@echo "Requires: iproute" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
@ -1,3 +0,0 @@
|
||||
PURPOSE of /CoreOS/iproute/Sanity/ip-neigh-sanity-test
|
||||
Description: Test basic ip neigh funcionality
|
||||
Author: Jaroslav Aster <jaster@redhat.com>
|
||||
@ -1,234 +0,0 @@
|
||||
#!/bin/bash
|
||||
# vim: dict=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-neigh-sanity-test
|
||||
# Description: Test basic ip neigh funcionality
|
||||
# Author: Jaroslav Aster <jaster@redhat.com>
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# Copyright (c) 2014 Red Hat, Inc. All rights reserved.
|
||||
#
|
||||
# This copyrighted material is made available to anyone wishing
|
||||
# to use, modify, copy, or redistribute it subject to the terms
|
||||
# and conditions of the GNU General Public License version 2.
|
||||
#
|
||||
# This program is distributed in the hope that it will be
|
||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
# PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public
|
||||
# License along with this program; if not, write to the Free
|
||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
# Boston, MA 02110-1301, USA.
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/bin/rhts-environment.sh || exit 1
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="iproute"
|
||||
TEST_IFACE="test-iface"
|
||||
TEST_IP4_PREFIX="192.168.100"
|
||||
TEST_IP6_PREFIX="2000::"
|
||||
TEST_MAC_PREFIX="00:c0:7b:7d:00"
|
||||
rlIsRHEL '>=7' && MAN_PAGE="ip-neighbour" || MAN_PAGE="ip"
|
||||
MESSAGES="/var/log/messages"
|
||||
TMP_MESSAGES="$(mktemp)"
|
||||
|
||||
|
||||
create_dummy_iface()
|
||||
{
|
||||
rlRun "ip link add name ${TEST_IFACE} type dummy" 0 "Creating dummy interface: '${TEST_IFACE}'."
|
||||
}
|
||||
|
||||
delete_dummy_iface()
|
||||
{
|
||||
rlRun "ip link del ${TEST_IFACE}" 0 "Removing dummy interface: '${TEST_IFACE}'."
|
||||
rlRun "rmmod dummy" 0,1 "Removing dummy module."
|
||||
}
|
||||
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
rlCheckRpm "$PACKAGE"
|
||||
create_dummy_iface
|
||||
rlPhaseEnd
|
||||
|
||||
if rlIsRHEL '>=7'; then
|
||||
rlPhaseStartTest
|
||||
for word in add del change replace show flush all proxy to dev nud unused permanent reachable probe failed incomplete stale delay noarp none; do
|
||||
if ! { [ "$word" = "unused" ] || [ "$word" = "all" ]; }; then
|
||||
rlRun "ip n help 2>&1 | grep -e '[^[:alnum:]]${word}[^[:alnum:]]'" 0 "Checking there is '${word}' in ip neighbour help."
|
||||
fi
|
||||
rlRun "man ${MAN_PAGE} | col -b | grep -e '[^[:alnum:]]${word}[^[:alnum:]]'" 0 "Checking there is '${word}' in ${MAN_PAGE} man page."
|
||||
done
|
||||
rlPhaseEnd
|
||||
fi
|
||||
|
||||
rlPhaseStartTest "Functional Test"
|
||||
rlLogInfo "IPv4"
|
||||
rlRun "ip neigh add ${TEST_IP4_PREFIX}.1 lladdr ${TEST_MAC_PREFIX}:c6 dev ${TEST_IFACE} nud permanent"
|
||||
rlRun "ip neigh show ${TEST_IP4_PREFIX}.1 | grep 'PERMANENT'"
|
||||
|
||||
rlRun "ip neigh add ${TEST_IP4_PREFIX}.2 lladdr ${TEST_MAC_PREFIX}:c7 dev ${TEST_IFACE}"
|
||||
rlRun "ip neigh show ${TEST_IP4_PREFIX}.2 | grep 'PERMANENT'"
|
||||
|
||||
rlRun "ip neigh add ${TEST_IP4_PREFIX}.3 lladdr ${TEST_MAC_PREFIX}:c8 dev ${TEST_IFACE} nud noarp"
|
||||
rlRun "ip neigh show nud all ${TEST_IP4_PREFIX}.3 | grep 'NOARP'"
|
||||
|
||||
rlRun "ip neigh add ${TEST_IP4_PREFIX}.4 lladdr ${TEST_MAC_PREFIX}:c9 dev ${TEST_IFACE} nud noarp"
|
||||
rlRun "ip neigh show nud all ${TEST_IP4_PREFIX}.4 | grep 'NOARP'"
|
||||
|
||||
rlRun "ip neigh add lladdr ${TEST_MAC_PREFIX}:ce dev ${TEST_IFACE} proxy ${TEST_IP4_PREFIX}.10"
|
||||
rlIsRHEL ">=7" && rlRun "ip neigh show proxy | grep ${TEST_IP4_PREFIX}.10"
|
||||
|
||||
rlRun "test $(ip neigh show dev ${TEST_IFACE} | wc -l) -eq 2" 0 "There are two items in neighbours."
|
||||
|
||||
rlRun "ip neigh del ${TEST_IP4_PREFIX}.1 dev ${TEST_IFACE}"
|
||||
rlRun "ip neigh show ${TEST_IP4_PREFIX}.1 | grep 'FAILED'"
|
||||
|
||||
rlRun "ip neigh change ${TEST_IP4_PREFIX}.2 lladdr ${TEST_MAC_PREFIX}:ca dev ${TEST_IFACE} nud reachable"
|
||||
rlRun "ip neigh show ${TEST_IP4_PREFIX}.2 | grep 'REACHABLE'"
|
||||
|
||||
rlRun "ip neigh replace ${TEST_IP4_PREFIX}.3 lladdr ${TEST_MAC_PREFIX}:cb dev ${TEST_IFACE} nud permanent"
|
||||
rlRun "ip neigh show nud all ${TEST_IP4_PREFIX}.3 | grep 'PERMANENT'"
|
||||
|
||||
rlRun "test $(ip neigh show dev ${TEST_IFACE} nud permanent | wc -l) -eq 1" 0 "There is one permanent item in neighbours."
|
||||
rlRun "test $(ip neigh show dev ${TEST_IFACE} nud reachable | wc -l) -eq 1" 0 "There is one reachable item in neighbours."
|
||||
rlRun "test $(ip neigh show dev ${TEST_IFACE} nud noarp | wc -l) -eq 1" 0 "There is one noarp item in neighbours."
|
||||
rlRun "test $(ip neigh show dev ${TEST_IFACE} nud failed | wc -l) -eq 1" 0 "There is one failed item in neighbours."
|
||||
rlIsRHEL ">=7" && rlRun "test $(ip neigh show dev ${TEST_IFACE} proxy | wc -l) -eq 1" 0 "There is one proxy item in neighbours."
|
||||
rlRun "test $(ip neigh show dev ${TEST_IFACE} | grep -e PERMANENT -e REACHABLE -e FAILED | wc -l) -eq 3" 0 "There are three permanent or reachable or failed items in neighbours."
|
||||
|
||||
rlRun "ip neigh show dev ${TEST_IFACE} unused"
|
||||
|
||||
rlRun "ip neigh change ${TEST_IP4_PREFIX}.4 dev ${TEST_IFACE} nud delay"
|
||||
rlRun "ip neigh flush ${TEST_IP4_PREFIX}.4 dev ${TEST_IFACE}"
|
||||
rlRun "ip neigh show nud all | grep '${TEST_IP4_PREFIX}.4'"
|
||||
|
||||
rlRun "ip -s neigh flush ${TEST_IP4_PREFIX}.4 dev ${TEST_IFACE}"
|
||||
rlRun "ip -s -s neigh flush ${TEST_IP4_PREFIX}.4 dev ${TEST_IFACE}"
|
||||
|
||||
rlRun "ip neigh add ${TEST_IP4_PREFIX}.11 lladdr ${TEST_MAC_PREFIX}:c8 dev ${TEST_IFACE} nud permanent"
|
||||
rlRun "ip neigh show ${TEST_IP4_PREFIX}.11 | grep 'PERMANENT'"
|
||||
|
||||
rlRun "ip neigh change ${TEST_IP4_PREFIX}.11 dev ${TEST_IFACE} nud reachable"
|
||||
rlRun "ip neigh show ${TEST_IP4_PREFIX}.11 | grep 'REACHABLE'"
|
||||
|
||||
rlRun "ip neigh change ${TEST_IP4_PREFIX}.11 dev ${TEST_IFACE} nud probe"
|
||||
rlRun "ip neigh show ${TEST_IP4_PREFIX}.11 | grep 'PROBE'"
|
||||
|
||||
rlRun "ip neigh change ${TEST_IP4_PREFIX}.11 lladdr ${TEST_MAC_PREFIX}:c9 dev ${TEST_IFACE} nud failed"
|
||||
rlRun "ip neigh show ${TEST_IP4_PREFIX}.11 | grep 'FAILED'"
|
||||
|
||||
rlRun "ip neigh change ${TEST_IP4_PREFIX}.11 dev ${TEST_IFACE} nud incomplete"
|
||||
rlRun "ip neigh show ${TEST_IP4_PREFIX}.11 | grep 'INCOMPLETE'"
|
||||
|
||||
rlRun "ip neigh replace ${TEST_IP4_PREFIX}.11 lladdr ${TEST_MAC_PREFIX}:cb dev ${TEST_IFACE} nud stale"
|
||||
rlRun "ip neigh show ${TEST_IP4_PREFIX}.11 | grep '${TEST_MAC_PREFIX}:cb' | grep 'STALE'"
|
||||
|
||||
rlRun "ip neigh replace ${TEST_IP4_PREFIX}.11 dev ${TEST_IFACE} nud delay"
|
||||
rlRun "ip neigh show ${TEST_IP4_PREFIX}.11 | grep -e 'DELAY' -e 'PROBE'"
|
||||
|
||||
rlRun "ip neigh replace ${TEST_IP4_PREFIX}.11 dev ${TEST_IFACE} nud noarp"
|
||||
rlRun "ip neigh show nud all ${TEST_IP4_PREFIX}.11 | grep 'NOARP'"
|
||||
|
||||
rlRun "ip neigh change ${TEST_IP4_PREFIX}.11 dev ${TEST_IFACE} nud none"
|
||||
rlRun "ip neigh show nud none | grep ${TEST_IP4_PREFIX}.11"
|
||||
|
||||
rlRun "ip neigh show ${TEST_IP4_PREFIX}.0/24"
|
||||
|
||||
rlLogInfo "IPv6"
|
||||
rlRun "ip -6 neigh add ${TEST_IP6_PREFIX}1 lladdr ${TEST_MAC_PREFIX}:c6 dev ${TEST_IFACE} nud permanent"
|
||||
rlRun "ip -6 neigh show ${TEST_IP6_PREFIX}1 | grep 'PERMANENT'"
|
||||
|
||||
rlRun "ip -6 neigh add ${TEST_IP6_PREFIX}2 lladdr ${TEST_MAC_PREFIX}:c7 dev ${TEST_IFACE}"
|
||||
rlRun "ip -6 neigh show ${TEST_IP6_PREFIX}2 | grep 'PERMANENT'"
|
||||
|
||||
rlRun "ip -6 neigh add ${TEST_IP6_PREFIX}3 lladdr ${TEST_MAC_PREFIX}:c8 dev ${TEST_IFACE} nud noarp"
|
||||
rlRun "ip -6 neigh show nud all ${TEST_IP6_PREFIX}3 | grep 'NOARP'"
|
||||
|
||||
rlRun "ip -6 neigh add ${TEST_IP6_PREFIX}4 lladdr ${TEST_MAC_PREFIX}:c9 dev ${TEST_IFACE} nud noarp"
|
||||
rlRun "ip -6 neigh show nud all ${TEST_IP6_PREFIX}4 | grep 'NOARP'"
|
||||
|
||||
rlRun "ip -6 neigh add lladdr ${TEST_MAC_PREFIX}:ce dev ${TEST_IFACE} proxy ${TEST_IP6_PREFIX}10"
|
||||
rlIsRHEL ">=7" && rlRun "ip -6 neigh show proxy | grep ${TEST_IP6_PREFIX}10"
|
||||
|
||||
rlRun "test $(ip -6 neigh show dev ${TEST_IFACE} | wc -l) -eq 2" 0 "There are two items in neighbours."
|
||||
|
||||
rlRun "ip -6 neigh del ${TEST_IP6_PREFIX}1 dev ${TEST_IFACE}"
|
||||
rlRun "ip -6 neigh show ${TEST_IP6_PREFIX}1 | grep 'FAILED'"
|
||||
|
||||
rlRun "ip -6 neigh change ${TEST_IP6_PREFIX}2 lladdr ${TEST_MAC_PREFIX}:ca dev ${TEST_IFACE} nud reachable"
|
||||
rlRun "ip -6 neigh show ${TEST_IP6_PREFIX}2 | grep 'REACHABLE'"
|
||||
|
||||
rlRun "ip -6 neigh replace ${TEST_IP6_PREFIX}3 lladdr ${TEST_MAC_PREFIX}:cb dev ${TEST_IFACE} nud permanent"
|
||||
rlRun "ip -6 neigh show nud all ${TEST_IP6_PREFIX}3 | grep 'PERMANENT'"
|
||||
|
||||
rlRun "test $(ip -6 neigh show dev ${TEST_IFACE} nud permanent | wc -l) -eq 1" 0 "There is one permanent item in neighbours."
|
||||
rlRun "test $(ip -6 neigh show dev ${TEST_IFACE} nud reachable | wc -l) -eq 1" 0 "There is one reachable item in neighbours."
|
||||
rlRun "test $(ip -6 neigh show dev ${TEST_IFACE} nud noarp | wc -l) -eq 1" 0 "There is one noarp item in neighbours."
|
||||
rlRun "test $(ip -6 neigh show dev ${TEST_IFACE} nud failed | wc -l) -eq 1" 0 "There is one failed item in neighbours."
|
||||
rlIsRHEL ">=7" && rlRun "test $(ip -6 neigh show dev ${TEST_IFACE} proxy | wc -l) -eq 1" 0 "There is one proxy item in neighbours."
|
||||
rlRun "test $(ip -6 neigh show dev ${TEST_IFACE} | grep -e PERMANENT -e REACHABLE -e FAILED | wc -l) -eq 3" 0 "There are three permanent or reachable or failed items in neighbours."
|
||||
|
||||
rlRun "ip -6 neigh show dev ${TEST_IFACE} unused"
|
||||
|
||||
rlRun "ip -6 neigh change ${TEST_IP6_PREFIX}4 dev ${TEST_IFACE} nud delay"
|
||||
rlRun "ip -6 neigh flush ${TEST_IP6_PREFIX}4 dev ${TEST_IFACE}"
|
||||
rlRun "ip -6 neigh show nud all | grep '${TEST_IP6_PREFIX}4'"
|
||||
|
||||
rlRun "ip -6 -s neigh flush ${TEST_IP6_PREFIX}4 dev ${TEST_IFACE}"
|
||||
rlRun "ip -6 -s -s neigh flush ${TEST_IP6_PREFIX}4 dev ${TEST_IFACE}"
|
||||
|
||||
rlRun "ip -6 neigh add ${TEST_IP6_PREFIX}11 lladdr ${TEST_MAC_PREFIX}:c8 dev ${TEST_IFACE} nud permanent"
|
||||
rlRun "ip -6 neigh show ${TEST_IP6_PREFIX}11 | grep 'PERMANENT'"
|
||||
|
||||
rlRun "ip -6 neigh change ${TEST_IP6_PREFIX}11 dev ${TEST_IFACE} nud reachable"
|
||||
rlRun "ip -6 neigh show ${TEST_IP6_PREFIX}11 | grep 'REACHABLE'"
|
||||
|
||||
rlRun "ip -6 neigh change ${TEST_IP6_PREFIX}11 dev ${TEST_IFACE} nud probe"
|
||||
rlRun "ip -6 neigh show ${TEST_IP6_PREFIX}11 | grep 'PROBE'"
|
||||
|
||||
rlRun "ip -6 neigh change ${TEST_IP6_PREFIX}11 lladdr ${TEST_MAC_PREFIX}:c9 dev ${TEST_IFACE} nud failed"
|
||||
rlRun "ip -6 neigh show ${TEST_IP6_PREFIX}11 | grep 'FAILED'"
|
||||
|
||||
rlRun "ip -6 neigh change ${TEST_IP6_PREFIX}11 dev ${TEST_IFACE} nud incomplete"
|
||||
rlRun "ip -6 neigh show ${TEST_IP6_PREFIX}11 | grep 'INCOMPLETE'"
|
||||
|
||||
rlRun "ip -6 neigh replace ${TEST_IP6_PREFIX}11 lladdr ${TEST_MAC_PREFIX}:cb dev ${TEST_IFACE} nud stale"
|
||||
rlRun "ip -6 neigh show ${TEST_IP6_PREFIX}11 | grep '${TEST_MAC_PREFIX}:cb' | grep 'STALE'"
|
||||
|
||||
rlRun "ip -6 neigh replace ${TEST_IP6_PREFIX}11 dev ${TEST_IFACE} nud delay"
|
||||
rlRun "ip -6 neigh show ${TEST_IP6_PREFIX}11 | grep -e 'DELAY' -e 'PROBE'"
|
||||
|
||||
rlRun "ip -6 neigh replace ${TEST_IP6_PREFIX}11 dev ${TEST_IFACE} nud noarp"
|
||||
rlRun "ip -6 neigh show nud all ${TEST_IP6_PREFIX}11 | grep 'NOARP'"
|
||||
|
||||
rlRun "ip -6 neigh change ${TEST_IP6_PREFIX}11 dev ${TEST_IFACE} nud none"
|
||||
rlRun "ip -6 neigh show nud none | grep ${TEST_IP6_PREFIX}11"
|
||||
|
||||
rlRun "ip -6 neigh show ${TEST_IP6_PREFIX}0/24"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest
|
||||
pushd /tmp # because of coredump file
|
||||
tail -f -n 0 "$MESSAGES" > "$TMP_MESSAGES" &
|
||||
tail_pid="$!"
|
||||
rlRun "ip neigh add ${TEST_IP4_PREFIX}.11 lladdr ${TEST_MAC_PREFIX}:c16 dev ${TEST_IFACE} nud permanent" 1,255
|
||||
kill "$tail_pid"
|
||||
rlRun "grep -i -e 'segfault' -e 'unhandled signal' -e 'User process fault' ${TMP_MESSAGES}" 1 "Checking there is no segfault in /var/log/messages."
|
||||
popd
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartCleanup
|
||||
delete_dummy_iface
|
||||
rlRun "rm ${TMP_MESSAGES}" 0 "Removing tmp files and dirs."
|
||||
rlPhaseEnd
|
||||
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
@ -1,47 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-neighbor-sanity-test
|
||||
# Description: Test basic ip neighbor funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
export TEST=/CoreOS/iproute/Sanity/ip-neighbor-sanity-test
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: Susant Sahani <susant@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Test basic ip neighbor funcionality" >> $(METADATA)
|
||||
@echo "Type: Sanity" >> $(METADATA)
|
||||
@echo "TestTime: 15m" >> $(METADATA)
|
||||
@echo "RunFor: iproute" >> $(METADATA)
|
||||
@echo "Requires: iproute" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
@ -1,3 +0,0 @@
|
||||
PURPOSE of /CoreOS/iproute/Sanity/ip-neighbor-sanity-test
|
||||
Description: Test basic ip neighbor funcionality
|
||||
Author: Susant Sahani <susant@redhat.com>
|
||||
@ -1,74 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-neighbour-sanity-test
|
||||
# Description: Test basic ip neighbour funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
# ~~~
|
||||
|
||||
import errno
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import unittest
|
||||
import subprocess
|
||||
import signal
|
||||
import shutil
|
||||
|
||||
def setUpModule():
|
||||
|
||||
if shutil.which('ip') is None:
|
||||
raise OSError(errno.ENOENT, 'ip not found')
|
||||
|
||||
class IPLinkUtilities():
|
||||
|
||||
def link_exists(self, link):
|
||||
|
||||
self.assertTrue(os.path.exists(os.path.join('/sys/class/net', link)))
|
||||
|
||||
def add_dummy(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dummy-test', 'type', 'dummy'])
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
def del_dummy(self):
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
class IPNeighborTests(unittest.TestCase, IPLinkUtilities):
|
||||
|
||||
def setUp(self):
|
||||
self.add_dummy()
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
def tearDown(self):
|
||||
self.del_dummy()
|
||||
|
||||
def test_add_neighbor(self):
|
||||
|
||||
subprocess.call("ip neighbor add 192.168.100.1 lladdr 00:c0:7b:7d:00:c8 dev dummy-test nud permanent", shell=True)
|
||||
output=subprocess.check_output(['ip', 'neighbour', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "192.168.100.1 lladdr 00:c0:7b:7d:00:c8 PERMANENT")
|
||||
|
||||
subprocess.call("ip neighbor del 192.168.100.1 dev dummy-test", shell=True)
|
||||
|
||||
def test_replace_neighbor(self):
|
||||
|
||||
subprocess.call("ip neighbor add 192.168.99.254 lladdr 00:80:c8:27:69:2d dev dummy-test", shell=True)
|
||||
output=subprocess.check_output(['ip', 'neighbour', 'show', 'dev', 'dummy-test']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "192.168.99.254 lladdr 00:80:c8:27:69:2d PERMANENT")
|
||||
|
||||
subprocess.call("ip neighbor change 192.168.99.254 lladdr 00:80:c8:27:69:2d dev dummy-test", shell=True)
|
||||
print(output)
|
||||
self.assertRegex(output, "192.168.99.254 lladdr 00:80:c8:27:69:2d PERMANENT")
|
||||
|
||||
subprocess.call("ip neighbor del 192.168.99.254 dev dummy-test", shell=True)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout,
|
||||
verbosity=2))
|
||||
@ -1,34 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-neighbor-sanity-test
|
||||
# Description: Test basic ip neighbor funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="iproute"
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
rlAssertRpm $PACKAGE
|
||||
rlRun "cp ip-neighbor-tests.py /usr/bin"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest
|
||||
rlLog "ip neighbor tests"
|
||||
rlRun "/usr/bin/python3 /usr/bin/ip-neighbor-tests.py"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartCleanup
|
||||
rlRun "rm /usr/bin/ip-neighbor-tests.py"
|
||||
rlLog "ip neighbor tests done"
|
||||
rlPhaseEnd
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
|
||||
rlGetTestState
|
||||
@ -1,47 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-netns-sanity-test
|
||||
# Description: Test basic ip netns funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
export TEST=/CoreOS/iproute/Sanity/ip-ns-sanity-test
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: Susant Sahani <susant@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Test basic ip netns funcionality" >> $(METADATA)
|
||||
@echo "Type: Sanity" >> $(METADATA)
|
||||
@echo "TestTime: 15m" >> $(METADATA)
|
||||
@echo "RunFor: iproute" >> $(METADATA)
|
||||
@echo "Requires: iproute" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
@ -1,3 +0,0 @@
|
||||
PURPOSE of /CoreOS/iproute/Sanity/ip-netns-sanity-test
|
||||
Description: Test basic ip netns funcionality
|
||||
Author: Susant Sahani <susant@redhat.com>
|
||||
@ -1,118 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-netns-sanity-test
|
||||
# Description: Test basic ip netns funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
# ~~~
|
||||
|
||||
import errno
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import unittest
|
||||
import subprocess
|
||||
import signal
|
||||
import shutil
|
||||
|
||||
def setUpModule():
|
||||
|
||||
if shutil.which('ip') is None:
|
||||
raise OSError(errno.ENOENT, 'ip not found')
|
||||
|
||||
class GenericUtilities():
|
||||
|
||||
def path_exists(self, path):
|
||||
self.assertTrue(os.path.exists(os.path.join('/var/run/netns', path)))
|
||||
|
||||
def link_exists(self, link):
|
||||
self.assertTrue(os.path.exists(os.path.join('/sys/class/net', link)))
|
||||
|
||||
def add_veth(self):
|
||||
subprocess.check_output(['ip', 'link', 'add', 'veth-test', 'type', 'veth', 'peer', 'name', 'test-peer'])
|
||||
|
||||
def del_veth(self):
|
||||
subprocess.check_output(['ip', 'link', 'del', 'veth-test'])
|
||||
|
||||
def add_dummy(self):
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dummy-test', 'type', 'dummy'])
|
||||
|
||||
def del_dummy(self):
|
||||
subprocess.check_output(['ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
class IPNsTests(unittest.TestCase, GenericUtilities):
|
||||
|
||||
def test_add_ns(self):
|
||||
|
||||
subprocess.check_output(['ip', 'netns', 'add', 'net-ns-test'])
|
||||
self.path_exists('net-ns-test')
|
||||
|
||||
output=subprocess.check_output(['ip', 'netns', 'list']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, "net-ns-test")
|
||||
|
||||
self.addCleanup(subprocess.call, ['ip', 'netns', 'del', 'net-ns-test'])
|
||||
|
||||
def test_add_dummy_interface_to_ns(self):
|
||||
|
||||
self.add_dummy()
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
subprocess.check_output(['ip', 'netns', 'add', 'net-ns-test'])
|
||||
self.path_exists('net-ns-test')
|
||||
|
||||
output=subprocess.check_output(['ip', 'netns', 'list']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, "net-ns-test")
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'set', 'dev', 'dummy-test', 'netns', 'net-ns-test'])
|
||||
|
||||
output=subprocess.check_output(['ip', 'netns', 'exec', 'net-ns-test', 'ip', 'link', 'show']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "dummy-test")
|
||||
|
||||
self.addCleanup(subprocess.call, ['ip', 'netns', 'del', 'net-ns-test'])
|
||||
self.addCleanup(subprocess.call, ['ip', 'netns', 'exec', 'net-ns-test', 'ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
def test_add_veth_interface_to_ns(self):
|
||||
|
||||
self.add_veth()
|
||||
self.link_exists('veth-test')
|
||||
|
||||
subprocess.check_output(['ip', 'netns', 'add', 'net-ns-test'])
|
||||
self.path_exists('net-ns-test')
|
||||
|
||||
output=subprocess.check_output(['ip', 'netns', 'list']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, "net-ns-test")
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'set', 'dev', 'test-peer', 'netns', 'net-ns-test'])
|
||||
|
||||
output=subprocess.check_output(['ip', 'netns', 'exec', 'net-ns-test', 'ip', 'link', 'show']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "test-peer")
|
||||
|
||||
# Setup IP address of veth-test.
|
||||
subprocess.check_output(['ip', 'addr', 'add', '10.200.1.1/24', 'dev', 'veth-test'])
|
||||
subprocess.check_output(['ip', 'link', 'set', 'veth-test', 'up'])
|
||||
|
||||
# Setup IP address of v-peer1.
|
||||
subprocess.check_output(['ip', 'netns', 'exec', 'net-ns-test', 'ip', 'addr', 'add',' 10.200.1.2/24', 'dev', 'test-peer'])
|
||||
subprocess.check_output(['ip', 'netns', 'exec', 'net-ns-test', 'ip', 'link', 'set', 'test-peer', 'up'])
|
||||
subprocess.check_output(['ip', 'netns', 'exec', 'net-ns-test', 'ip', 'link', 'set', 'lo', 'up'])
|
||||
|
||||
output=subprocess.check_output(['ip', 'netns', 'exec', 'net-ns-test', 'ip', 'addr', 'show']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "test-peer")
|
||||
self.assertRegex(output, "lo: <LOOPBACK,UP,LOWER_UP>")
|
||||
self.assertRegex(output, "inet 10.200.1.2/24")
|
||||
|
||||
output=subprocess.check_output(['ip', 'netns', 'exec', 'net-ns-test', 'ping', '10.200.1.1', '-c', '5']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
|
||||
self.addCleanup(subprocess.call, ['ip', 'netns', 'del', 'net-ns-test'])
|
||||
self.addCleanup(subprocess.call, ['ip', 'netns', 'exec', 'net-ns-test', 'ip', 'link', 'del', 'test-peer'])
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout,
|
||||
verbosity=2))
|
||||
@ -1,34 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-Licenetnse-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-netns-sanity-test
|
||||
# Description: Test basic ip netns funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="iproute"
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
rlAssertRpm $PACKAGE
|
||||
rlRun "cp ip-netns-tests.py /usr/bin"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest
|
||||
rlLog "ip netns tests"
|
||||
rlRun "/usr/bin/python3 /usr/bin/ip-netns-tests.py"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartCleanup
|
||||
rlRun "rm /usr/bin/ip-netns-tests.py"
|
||||
rlLog "ip netns tests done"
|
||||
rlPhaseEnd
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
|
||||
rlGetTestState
|
||||
@ -1,47 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-route-sanity-test
|
||||
# Description: Test basic ip route funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
export TEST=/CoreOS/iproute/Sanity/ip-route-sanity-test
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: Susant Sahani <susant@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Test basic ip route funcionality" >> $(METADATA)
|
||||
@echo "Type: Sanity" >> $(METADATA)
|
||||
@echo "TestTime: 15m" >> $(METADATA)
|
||||
@echo "RunFor: iproute" >> $(METADATA)
|
||||
@echo "Requires: iproute" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
@ -1,3 +0,0 @@
|
||||
PURPOSE of /CoreOS/iproute/Sanity/ip-route-sanity-test
|
||||
Description: Test basic ip route funcionality
|
||||
Author: Susant Sahani <susant@redhat.com>
|
||||
@ -1,110 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-route-sanity-test
|
||||
# Description: Test basic ip route funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
# ~~~
|
||||
|
||||
import errno
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import unittest
|
||||
import subprocess
|
||||
import signal
|
||||
import shutil
|
||||
|
||||
def setUpModule():
|
||||
|
||||
if shutil.which('ip') is None:
|
||||
raise OSError(errno.ENOENT, 'ip not found')
|
||||
|
||||
class IPLinkUtilities():
|
||||
|
||||
def link_exists(self, link):
|
||||
self.assertTrue(os.path.exists(os.path.join('/sys/class/net', link)))
|
||||
|
||||
def add_dummy(self):
|
||||
""" Setup """
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dummy-test', 'type', 'dummy'])
|
||||
self.link_exists('dummy-test')
|
||||
subprocess.check_output(['ip', 'link', 'set', 'dev', 'dummy-test', 'up'])
|
||||
|
||||
def del_dummy(self):
|
||||
subprocess.check_output(['ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
class IPRouteTests(unittest.TestCase, IPLinkUtilities):
|
||||
|
||||
def setUp(self):
|
||||
self.add_dummy()
|
||||
|
||||
def tearDown(self):
|
||||
self.del_dummy()
|
||||
|
||||
def test_add_route(self):
|
||||
|
||||
subprocess.check_output(['ip', 'route', 'add', '192.168.1.0/24', 'dev', 'dummy-test'])
|
||||
|
||||
output=subprocess.check_output(['ip', 'route', 'show']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "192.168.1.0/24 dev dummy-test scope link")
|
||||
|
||||
subprocess.check_output(['ip', 'route', 'delete', '192.168.1.0/24', 'dev', 'dummy-test'])
|
||||
|
||||
def test_add_route_table(self):
|
||||
|
||||
subprocess.check_output(['ip', 'route', 'add', 'table', '555', '192.168.1.0/24', 'dev', 'dummy-test'])
|
||||
|
||||
output=subprocess.check_output(['ip', 'route', 'show', 'table', '555']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "192.168.1.0/24 dev dummy-test scope link")
|
||||
|
||||
subprocess.check_output(['ip', 'route', 'delete', '192.168.1.0/24', 'dev', 'dummy-test', 'table', '555'])
|
||||
|
||||
def test_add_blackhole(self):
|
||||
|
||||
subprocess.check_output(['ip', 'route', 'add', 'blackhole', '192.168.1.0/24'])
|
||||
|
||||
output=subprocess.check_output(['ip', 'route', 'show']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "blackhole 192.168.1.0/24")
|
||||
|
||||
subprocess.check_output(['ip', 'route', 'delete', '192.168.1.0/24'])
|
||||
|
||||
def test_add_unreachable(self):
|
||||
|
||||
subprocess.check_output(['ip', 'route', 'add', 'unreachable', '192.168.1.0/24'])
|
||||
|
||||
output=subprocess.check_output(['ip', 'route', 'show']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "unreachable 192.168.1.0/24")
|
||||
|
||||
subprocess.check_output(['ip', 'route', 'delete', '192.168.1.0/24'])
|
||||
|
||||
def test_add_prohibit(self):
|
||||
|
||||
subprocess.check_output(['ip', 'route', 'add', 'prohibit', '192.168.1.0/24'])
|
||||
|
||||
output=subprocess.check_output(['ip', 'route', 'show']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "prohibit 192.168.1.0/24")
|
||||
|
||||
subprocess.check_output(['ip', 'route', 'delete', '192.168.1.0/24'])
|
||||
|
||||
def test_add_throw(self):
|
||||
|
||||
subprocess.check_output(['ip', 'route', 'add', 'throw', '192.168.1.0/24'])
|
||||
|
||||
output=subprocess.check_output(['ip', 'route', 'show']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "throw 192.168.1.0/24")
|
||||
|
||||
subprocess.check_output(['ip', 'route', 'delete', '192.168.1.0/24'])
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout,
|
||||
verbosity=2))
|
||||
@ -1,34 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-route-sanity-test
|
||||
# Description: Test basic ip route funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="iproute"
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
rlAssertRpm $PACKAGE
|
||||
rlRun "cp ip-route-tests.py /usr/bin"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest
|
||||
rlLog "ip route tests"
|
||||
rlRun "/usr/bin/python3 /usr/bin/ip-route-tests.py"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartCleanup
|
||||
rlRun "rm /usr/bin/ip-route-tests.py"
|
||||
rlLog "ip route tests done"
|
||||
rlPhaseEnd
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
|
||||
rlGetTestState
|
||||
@ -1,63 +0,0 @@
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# Makefile of /CoreOS/iproute/Sanity/ip-rule-sanity-test
|
||||
# Description: Test basic ip rule functionality
|
||||
# Author: Jaroslav Aster <jaster@redhat.com>
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# Copyright (c) 2014 Red Hat, Inc. All rights reserved.
|
||||
#
|
||||
# This copyrighted material is made available to anyone wishing
|
||||
# to use, modify, copy, or redistribute it subject to the terms
|
||||
# and conditions of the GNU General Public License version 2.
|
||||
#
|
||||
# This program is distributed in the hope that it will be
|
||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
# PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public
|
||||
# License along with this program; if not, write to the Free
|
||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
# Boston, MA 02110-1301, USA.
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
export TEST=/CoreOS/iproute/Sanity/ip-rule-sanity-test
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: Jaroslav Aster <jaster@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Test basic ip rule funcionality" >> $(METADATA)
|
||||
@echo "Type: Sanity" >> $(METADATA)
|
||||
@echo "TestTime: 15m" >> $(METADATA)
|
||||
@echo "RunFor: iproute" >> $(METADATA)
|
||||
@echo "Requires: iproute" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
@ -1,3 +0,0 @@
|
||||
PURPOSE of /CoreOS/iproute/Sanity/ip-rule-sanity-test
|
||||
Description: Test basic ip rule funcionality
|
||||
Author: Jaroslav Aster <jaster@redhat.com>
|
||||
@ -1,107 +0,0 @@
|
||||
#!/bin/bash
|
||||
# vim: dict=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-rule-sanity-test
|
||||
# Description: Test basic ip rule funcionality
|
||||
# Author: Jaroslav Aster <jaster@redhat.com>
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# Copyright (c) 2014 Red Hat, Inc. All rights reserved.
|
||||
#
|
||||
# This copyrighted material is made available to anyone wishing
|
||||
# to use, modify, copy, or redistribute it subject to the terms
|
||||
# and conditions of the GNU General Public License version 2.
|
||||
#
|
||||
# This program is distributed in the hope that it will be
|
||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
# PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public
|
||||
# License along with this program; if not, write to the Free
|
||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
# Boston, MA 02110-1301, USA.
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/bin/rhts-environment.sh || exit 1
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="iproute"
|
||||
DEFAULT_IFACE="$(ip route show | grep default | sed 's/.*dev \([^ ]\+\) .*/\1/' | head -n 1)"
|
||||
rlIsRHEL '>=7' && IP_RULE_MANPAGE="ip-rule" || IP_RULE_MANPAGE="ip"
|
||||
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
rlCheckRpm "$PACKAGE"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest "Basic sanity test"
|
||||
rlRun "ip rule list"
|
||||
|
||||
rlRun "ip rule add from 172.29.0.0/24 to 172.29.1.0/24 table 1110"
|
||||
rlRun "ip rule add not from 172.29.0.0/24 to 172.29.1.0/24 table 1111"
|
||||
rlRun "ip -6 rule add from 2404:6800:4003:801::1015/32 to 2404:6800:4003:801::1014/32 table 1111"
|
||||
rlIsRHEL '>=7' && rlRun "ip rule add oif ${DEFAULT_IFACE} table 1111"
|
||||
rlRun "ip rule add iif ${DEFAULT_IFACE} tos 10 table 1112"
|
||||
rlRun "ip rule add fwmark 123 pref 100 table 1112"
|
||||
rlRun "ip rule add not fwmark 124 pref 101 unreachable"
|
||||
rlRun "ip rule add fwmark 125 pref 102 prohibit"
|
||||
rlRun "ip rule add fwmark 126 pref 103 unicast"
|
||||
rlRun "ip rule add from 172.29.2.0/24 tos 10 blackhole"
|
||||
rlRun "ip rule add from 172.29.0.0/24 tos 6 prio 99 goto 103"
|
||||
|
||||
rlRun "ip rule list"
|
||||
|
||||
rlRun "ip rule list | grep 'from 172.29.0.0/24 to 172.29.1.0/24'"
|
||||
rlRun "ip rule list | grep 'not from 172.29.0.0/24 to 172.29.1.0/24'"
|
||||
rlRun "ip -6 rule list | grep 'from 2404:6800:4003:801::1015/32 to 2404:6800:4003:801::1014/32'"
|
||||
rlIsRHEL '>=7' && rlRun "ip rule list | grep 'oif ${DEFAULT_IFACE}'"
|
||||
! rlIsFedora && rlRun "ip rule list | grep 'tos lowdelay iif ${DEFAULT_IFACE}'"
|
||||
rlRun "ip rule list | grep 'from all fwmark 0x7b'"
|
||||
rlRun "ip rule list | grep 'not from all fwmark 0x7c unreachable'"
|
||||
rlRun "ip rule list | grep 'from all fwmark 0x7d prohibit'"
|
||||
rlRun "ip rule list | grep 'from all fwmark 0x7e'"
|
||||
! rlIsFedora && rlRun "ip rule list | grep 'from 172.29.2.0/24 tos lowdelay blackhole'"
|
||||
rlRun "ip rule list | grep 'from 172.29.0.0/24 tos 0x06 goto 103'"
|
||||
|
||||
rlRun "ip rule list"
|
||||
|
||||
rlRun "ip rule del from 172.29.0.0/24 to 172.29.1.0/24"
|
||||
rlRun "ip rule del not from 172.29.0.0/24 to 172.29.1.0/24"
|
||||
rlRun "ip -6 rule del from 2404:6800:4003:801::1015/32 to 2404:6800:4003:801::1014/32"
|
||||
rlIsRHEL '>=7' && rlRun "ip rule del oif ${DEFAULT_IFACE}"
|
||||
! rlIsFedora && rlRun "ip rule del iif ${DEFAULT_IFACE} tos lowdelay"
|
||||
rlRun "ip rule del fwmark 123 pref 100"
|
||||
rlRun "ip rule del not fwmark 124 pref 101 unreachable"
|
||||
rlRun "ip rule del fwmark 125 pref 102 prohibit"
|
||||
rlRun "ip rule del fwmark 126 pref 103 unicast"
|
||||
rlRun "ip rule del from 172.29.2.0/24 tos 10 blackhole"
|
||||
rlRun "ip rule del from 172.29.0.0/24 tos 6 prio 99 goto 103"
|
||||
|
||||
rlRun "ip rule list"
|
||||
rlPhaseEnd
|
||||
|
||||
if rlIsRHEL '>=7'; then
|
||||
rlPhaseStartTest
|
||||
saved_rule=$(ip rule list | grep '^0' | cut -d : -f 2 | head -n 1)
|
||||
rlRun "ip rule del prio 0" 0 "Removing rule with prio 0."
|
||||
rlRun "ip rule add prio 0 ${saved_rule}" 0 "Re-creating rule with prio 0."
|
||||
rlRun "man ${IP_RULE_MANPAGE} | col -b | grep 'Rule 0 is special. It cannot be deleted or overridden.'" 1
|
||||
rlPhaseEnd
|
||||
fi
|
||||
|
||||
rlPhaseStartTest
|
||||
rlRun "man ${IP_RULE_MANPAGE} | col -b | grep 'reject'" 1
|
||||
rlRun "ip rule help 2>&1 | grep 'reject'" 1
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartCleanup
|
||||
rlPhaseEnd
|
||||
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
@ -1,47 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-token-sanity-test
|
||||
# Description: Test basic ip token funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
export TEST=/CoreOS/iproute/Sanity/ip-token-sanity-test
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: Susant Sahani <susant@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Test basic ip token funcionality" >> $(METADATA)
|
||||
@echo "Type: Sanity" >> $(METADATA)
|
||||
@echo "TestTime: 15m" >> $(METADATA)
|
||||
@echo "RunFor: iproute" >> $(METADATA)
|
||||
@echo "Requires: iproute" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
@ -1,3 +0,0 @@
|
||||
PURPOSE of /CoreOS/iproute/Sanity/ip-token-sanity-test
|
||||
Description: Test basic ip token funcionality
|
||||
Author: Susant Sahani <susant@redhat.com>
|
||||
@ -1,59 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-token-sanity-test
|
||||
# Description: Test basic ip token funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
# ~~~
|
||||
|
||||
import errno
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import unittest
|
||||
import subprocess
|
||||
import signal
|
||||
import shutil
|
||||
|
||||
def setUpModule():
|
||||
|
||||
if shutil.which('ip') is None:
|
||||
raise OSError(errno.ENOENT, 'ip not found')
|
||||
|
||||
class IPLinkUtilities():
|
||||
|
||||
def link_exists(self, link):
|
||||
self.assertTrue(os.path.exists(os.path.join('/sys/class/net', link)))
|
||||
|
||||
def add_veth(self):
|
||||
subprocess.check_output(['ip', 'link', 'add', 'veth-test', 'type', 'veth', 'peer', 'name', 'test-peer'])
|
||||
|
||||
def del_veth(self):
|
||||
subprocess.check_output(['ip', 'link', 'del', 'veth-test'])
|
||||
|
||||
class IPTokenTests(unittest.TestCase, IPLinkUtilities):
|
||||
|
||||
def setUp(self):
|
||||
self.add_veth()
|
||||
self.link_exists('veth-test')
|
||||
|
||||
def tearDown(self):
|
||||
self.del_veth()
|
||||
|
||||
def test_add_token(self):
|
||||
|
||||
r = subprocess.call("ip token set ::1a:2b:3c:4d/64 dev veth-test", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
output=subprocess.check_output(['ip', 'token', 'get', 'dev', 'veth-test']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "token ::1a:2b:3c:4d dev veth-test")
|
||||
|
||||
r = subprocess.call("ip token del ::1a:2b:3c:4d/64 dev veth-test", shell=True)
|
||||
self.assertEqual(r, 0)
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout,
|
||||
verbosity=2))
|
||||
@ -1,34 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-token-sanity-test
|
||||
# Description: Test basic ip token funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="iproute"
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
rlAssertRpm $PACKAGE
|
||||
rlRun "cp ip-token-tests.py /usr/bin"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest
|
||||
rlLog "ip token tests"
|
||||
rlRun "/usr/bin/python3 /usr/bin/ip-token-tests.py"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartCleanup
|
||||
rlRun "rm /usr/bin/ip-token-tests.py"
|
||||
rlLog "ip token tests done"
|
||||
rlPhaseEnd
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
|
||||
rlGetTestState
|
||||
@ -1,47 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-tunnel-sanity-test
|
||||
# Description: Test basic ip tunnel funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
export TEST=/CoreOS/iproute/Sanity/ip-tunnel-sanity-test
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: Susant Sahani <susant@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Test basic ip tunnel funcionality" >> $(METADATA)
|
||||
@echo "Type: Sanity" >> $(METADATA)
|
||||
@echo "TestTime: 15m" >> $(METADATA)
|
||||
@echo "RunFor: iproute" >> $(METADATA)
|
||||
@echo "Requires: iproute" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
@ -1,3 +0,0 @@
|
||||
PURPOSE of /CoreOS/iproute/Sanity/ip-tunnel-sanity-test
|
||||
Description: Test basic ip tunnel funcionality
|
||||
Author: Susant Sahani <susant@redhat.com>
|
||||
@ -1,104 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-tunnel-sanity-test
|
||||
# Description: Test basic ip tunnel funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
# ~~~
|
||||
|
||||
import errno
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import unittest
|
||||
import subprocess
|
||||
import signal
|
||||
import shutil
|
||||
|
||||
def setUpModule():
|
||||
|
||||
if shutil.which('ip') is None:
|
||||
raise OSError(errno.ENOENT, 'ip not found')
|
||||
|
||||
class IPLinkUtilities():
|
||||
|
||||
def add_dummy(self):
|
||||
subprocess.check_output(['ip', 'link', 'add', 'dummy-test', 'type', 'dummy'])
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
def del_dummy(self):
|
||||
subprocess.check_output(['ip', 'link', 'del', 'dummy-test'])
|
||||
|
||||
def link_exists(self, link):
|
||||
self.assertTrue(os.path.exists(os.path.join('/sys/class/net', link)))
|
||||
|
||||
class IPTunnelTests(unittest.TestCase, IPLinkUtilities):
|
||||
|
||||
def setUp(self):
|
||||
self.add_dummy()
|
||||
self.link_exists('dummy-test')
|
||||
|
||||
def tearDown(self):
|
||||
self.del_dummy()
|
||||
|
||||
def test_add_ipip(self):
|
||||
|
||||
subprocess.check_output(['ip', 'tunnel', 'add', 'ipiptun-test', 'mode', 'ipip', 'local', '10.3.3.3', 'remote', '10.4.4.4', 'ttl', '64', 'dev', 'dummy-test'])
|
||||
self.link_exists('ipiptun-test')
|
||||
|
||||
output=subprocess.check_output(['ip', 'tunnel']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "ipiptun-test: ip/ip remote 10.4.4.4 local 10.3.3.3 dev dummy-test ttl 64")
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'ipiptun-test'])
|
||||
|
||||
def test_add_gre(self):
|
||||
|
||||
subprocess.check_output(['ip', 'tunnel', 'add', 'gretun-test', 'mode', 'gre', 'local', '10.3.3.3', 'remote', '10.4.4.4', 'ttl', '64', 'dev', 'dummy-test'])
|
||||
self.link_exists('gretun-test')
|
||||
|
||||
output=subprocess.check_output(['ip', 'tunnel']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "gretun-test: gre/ip remote 10.4.4.4 local 10.3.3.3 dev dummy-test ttl 64")
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'gretun-test'])
|
||||
|
||||
def test_add_sit(self):
|
||||
|
||||
subprocess.check_output(['ip', 'tunnel', 'add', 'sittun-test', 'mode', 'sit', 'local', '10.3.3.3', 'remote', '10.4.4.4', 'ttl', '64', 'dev', 'dummy-test'])
|
||||
self.link_exists('sittun-test')
|
||||
|
||||
output=subprocess.check_output(['ip', 'tunnel']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "sittun-test: ipv6/ip remote 10.4.4.4 local 10.3.3.3 dev dummy-test ttl 64")
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'sittun-test'])
|
||||
|
||||
def test_add_isatap(self):
|
||||
|
||||
subprocess.check_output(['ip', 'tunnel', 'add', 'isatap-test', 'mode', 'sit', 'local', '10.3.3.3', 'remote', '10.4.4.4', 'ttl', '64', 'dev', 'dummy-test'])
|
||||
self.link_exists('isatap-test')
|
||||
|
||||
output=subprocess.check_output(['ip', 'tunnel']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "isatap-test: ipv6/ip remote 10.4.4.4 local 10.3.3.3 dev dummy-test ttl 64")
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'isatap-test'])
|
||||
|
||||
def test_add_vti(self):
|
||||
|
||||
subprocess.check_output(['ip', 'tunnel', 'add', 'vti-test', 'mode', 'sit', 'local', '10.3.3.3', 'remote', '10.4.4.4', 'ttl', '64', 'dev', 'dummy-test'])
|
||||
self.link_exists('vti-test')
|
||||
|
||||
output=subprocess.check_output(['ip', 'tunnel']).rstrip().decode('utf-8')
|
||||
print(output)
|
||||
self.assertRegex(output, "vti-test: ipv6/ip remote 10.4.4.4 local 10.3.3.3 dev dummy-test ttl 64")
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'vti-test'])
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout,
|
||||
verbosity=2))
|
||||
@ -1,34 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-tunnel-sanity-test
|
||||
# Description: Test basic ip tunnel funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="iproute"
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
rlAssertRpm $PACKAGE
|
||||
rlRun "cp ip-tunnel-tests.py /usr/bin"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest
|
||||
rlLog "ip tunnel tests"
|
||||
rlRun "/usr/bin/python3 /usr/bin/ip-tunnel-tests.py"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartCleanup
|
||||
rlRun "rm /usr/bin/ip-tunnel-tests.py"
|
||||
rlLog "ip tunnel tests done"
|
||||
rlPhaseEnd
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
|
||||
rlGetTestState
|
||||
@ -1,47 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-tuntap-sanity-test
|
||||
# Description: Test basic ip tuntap funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
export TEST=/CoreOS/iproute/Sanity/ip-tuntap-sanity-test
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: Susant Sahani <susant@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Test basic ip tuntap funcionality" >> $(METADATA)
|
||||
@echo "Type: Sanity" >> $(METADATA)
|
||||
@echo "TestTime: 15m" >> $(METADATA)
|
||||
@echo "RunFor: iproute" >> $(METADATA)
|
||||
@echo "Requires: iproute" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
@ -1,3 +0,0 @@
|
||||
PURPOSE of /CoreOS/iproute/Sanity/ip-tuntap-sanity-test
|
||||
Description: Test basic ip tuntap funcionality
|
||||
Author: Susant Sahani <susant@redhat.com>
|
||||
@ -1,65 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-tuntap-sanity-test
|
||||
# Description: Test basic ip tuntap funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
# ~~~
|
||||
|
||||
import errno
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import unittest
|
||||
import subprocess
|
||||
import signal
|
||||
import shutil
|
||||
|
||||
def setUpModule():
|
||||
|
||||
if shutil.which('ip') is None:
|
||||
raise OSError(errno.ENOENT, 'ip not found')
|
||||
|
||||
class IPLinkUtilities():
|
||||
|
||||
def link_exists(self, link):
|
||||
self.assertTrue(os.path.exists(os.path.join('/sys/class/net', link)))
|
||||
|
||||
class IPTuntapTests(unittest.TestCase, IPLinkUtilities):
|
||||
|
||||
def test_add_tap(self):
|
||||
|
||||
subprocess.check_output(['ip', 'tuntap', 'add', 'name', 'tap-test', 'mode', 'tap'])
|
||||
self.link_exists('tap-test')
|
||||
|
||||
output=subprocess.check_output(['ip', 'tuntap', 'show', 'dev', 'tap-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, "tap-test: tap")
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'tap-test'])
|
||||
|
||||
def test_add_tun(self):
|
||||
|
||||
subprocess.check_output(['ip', 'tuntap', 'add', 'name', 'tun-test', 'mode', 'tun'])
|
||||
self.link_exists('tun-test')
|
||||
|
||||
output=subprocess.check_output(['ip', 'tuntap', 'show', 'dev', 'tun-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, "tun-test: tun")
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'tun-test'])
|
||||
|
||||
def test_add_tun_user_group(self):
|
||||
|
||||
subprocess.check_output(['ip', 'tuntap', 'add', 'name', 'tun-test', 'mode', 'tun', 'user', 'root', 'group', 'root'])
|
||||
self.link_exists('tun-test')
|
||||
|
||||
output=subprocess.check_output(['ip', 'tuntap', 'show', 'dev', 'tun-test']).rstrip().decode('utf-8')
|
||||
self.assertRegex(output, "tun-test: tun")
|
||||
self.assertRegex(output, "user 0 group 0")
|
||||
|
||||
subprocess.check_output(['ip', 'link', 'del', 'tun-test'])
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout,
|
||||
verbosity=2))
|
||||
@ -1,34 +0,0 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: LGPL-2.1+
|
||||
# ~~~
|
||||
# runtest.sh of /CoreOS/iproute/Sanity/ip-tuntap-sanity-test
|
||||
# Description: Test basic ip tuntap funcionality
|
||||
#
|
||||
# Author: Susant Sahani <susant@redhat.com>
|
||||
# Copyright (c) 2018 Red Hat, Inc.
|
||||
#~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="iproute"
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
rlAssertRpm $PACKAGE
|
||||
rlRun "cp ip-tuntap-tests.py /usr/bin"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest
|
||||
rlLog "ip tuntap tests"
|
||||
rlRun "/usr/bin/python3 /usr/bin/ip-tuntap-tests.py"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartCleanup
|
||||
rlRun "rm /usr/bin/ip-tuntap-tests.py"
|
||||
rlLog "ip tuntap tests done"
|
||||
rlPhaseEnd
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
|
||||
rlGetTestState
|
||||
@ -1,27 +0,0 @@
|
||||
---
|
||||
# Tests that run in all contexts
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: standard-test-beakerlib
|
||||
tags:
|
||||
- classic
|
||||
- atomic
|
||||
tests:
|
||||
- ip-neigh-sanity-test
|
||||
- ip-rule-sanity-test
|
||||
- bridge-utility
|
||||
- ip-link-sanity-test
|
||||
- ip-address-sanity-test
|
||||
- ip-address-label-sanity-test
|
||||
- ip-fou-sanity-test
|
||||
- ip-token-sanity-test
|
||||
- ip-tuntap-sanity-test
|
||||
- ip-tunnel-sanity-test
|
||||
- ip-l2tp-sanity-test
|
||||
- ip-netns-sanity-test
|
||||
- ip-route-sanity-test
|
||||
- ip-neighbor-sanity-test
|
||||
required_packages:
|
||||
- iproute
|
||||
- bridge-utils
|
||||
- python3
|
||||
Loading…
Reference in New Issue
Block a user