class UP4: | |
def __init__(self): | |
self.default = '' | |
def CASE1(self, main): | |
main.case("Fabric UPF traffic terminated in the fabric") | |
""" | |
Program PDRs and FARs for UEs | |
Verify PDRs and FARs | |
Generate traffic from UE to PDN | |
Verify traffic received from PDN | |
Generate traffic from PDN to UE | |
Verify traffic received from UE | |
Remove PDRs and FARs for UEs | |
Verify removed PDRs and FARs | |
""" | |
try: | |
from tests.USECASE.SegmentRouting.dependencies.up4 import UP4 | |
from tests.USECASE.SegmentRouting.dependencies.Testcaselib import \ | |
Testcaselib as run | |
except ImportError as e: | |
main.log.error("Import not found. Exiting the test") | |
main.log.error(e) | |
main.cleanAndExit() | |
run.initTest(main) | |
main.log.info(main.Cluster.numCtrls) | |
main.Cluster.setRunningNode(3) | |
run.installOnos(main, skipPackage=True, cliSleep=5) | |
main.step("Start scapy and p4rt client") | |
# Use the first available ONOS instance CLI | |
onos_cli = main.Cluster.active(0).CLI | |
up4 = UP4() | |
# Get the P4RT client connected to UP4 in the first available ONOS instance | |
up4.setup(main.Cluster.active(0).p4rtUp4) | |
main.step("Program PDRs and FARs via UP4") | |
up4.attachUes() | |
main.step("Verify PDRs and FARs in ONOS") | |
up4.verifyUp4Flow(onos_cli) | |
# ------- Test Upstream traffic (enb->pdn) | |
main.step("Test upstream traffic") | |
up4.testUpstreamTraffic() | |
# ------- Test Downstream traffic (pdn->enb) | |
main.step("Test downstream traffic") | |
up4.testDownstreamTraffic() | |
main.step("Remove PDRs and FARs via UP4") | |
up4.detachUes() | |
main.step("Verify removed PDRs and FARs from ONOS") | |
up4.verifyNoUesFlow(onos_cli) | |
main.step("Stop scapy and p4rt client") | |
up4.teardown() | |
run.cleanup(main) | |
def CASE2(self): | |
main.case("BESS traffic routed") | |
""" | |
Program PDRs and FARs for UEs managed via UP4 | |
Verify PDRs and FARs | |
Verify Upstream Traffic: eNB -> Fabric -> BESS (encapped) | |
Verify Upstream Traffic: BESS -> Fabric -> PDN (not encapped) | |
Verify Downstream Traffic: PDN -> Fabric -> BESS (not encapped) | |
Verify Downstream Traffic: BESS -> Fabric -> eNB (encapped) | |
Remove PDRs and FARs for UEs managed via UP4 | |
Verify removed PDRs and FARs | |
""" | |
BESS_TEID = 300 | |
BESS_UE_ADDR = "10.241.0.1" | |
GPDU_PORT = 2152 | |
UE_PORT = 400 | |
PDN_PORT = 800 | |
try: | |
from tests.USECASE.SegmentRouting.dependencies.up4 import UP4 | |
from tests.USECASE.SegmentRouting.dependencies.Testcaselib import \ | |
Testcaselib as run | |
except ImportError as e: | |
main.log.error("Import not found. Exiting the test") | |
main.log.error(e) | |
main.cleanAndExit() | |
run.initTest(main) | |
main.log.info(main.Cluster.numCtrls) | |
main.Cluster.setRunningNode(3) | |
run.installOnos(main, skipPackage=True, cliSleep=5) | |
main.step("Start scapy and p4rt client + Scapy on BESS Host") | |
# Use the first available ONOS instance CLI | |
onos_cli = main.Cluster.active(0).CLI | |
up4 = UP4() | |
# Get the P4RT client connected to UP4 in the first available ONOS instance | |
up4.setup(main.Cluster.active(0).p4rtUp4) | |
# Setup the emulated BESS host and required parameters | |
bess_host = main.Compute2 # FIXME: Parametrize? | |
bess_interface = bess_host.interfaces[0] | |
bess_s1u_address = bess_interface["ips"][0] | |
bess_host.startScapy(ifaceName=bess_interface["name"], enableGtp=True) | |
enodeb_host = up4.enodeb_host | |
enodeb_interface = up4.enodeb_interface | |
pdn_host = up4.pdn_host | |
pdn_interface = up4.pdn_interface | |
main.step("Program PDRs and FARs for UEs via UP4") | |
up4.attachUes() | |
main.step("Verify PDRs and FARs in ONOS") | |
up4.verifyUp4Flow(onos_cli) | |
# ------------------- UPSTREAM ------------------- | |
# ------- eNB -> fabric -> BESS (encapped) | |
main.step("Test upstream eNB -> fabric -> BESS") | |
# Start filter before sending packets, BESS should receive GTP encapped | |
# packets | |
pkt_filter_upstream = "ip and udp src port %d and udp dst port %d and src host %s and dst host %s" % ( | |
GPDU_PORT, GPDU_PORT, up4.enb_address, bess_s1u_address) | |
main.log.info("Start listening on %s intf %s" % ( | |
bess_host.name, bess_interface["name"])) | |
main.log.debug("BPF Filter BESS Upstream: \n %s" % pkt_filter_upstream) | |
bess_host.startFilter(ifaceName=bess_interface["name"], | |
sniffCount=1, | |
pktFilter=pkt_filter_upstream) | |
# Send GTP Packet | |
UP4.buildGtpPacket(enodeb_host, | |
src_ip_outer=up4.enb_address, | |
dst_ip_outer=bess_s1u_address, | |
src_ip_inner=BESS_UE_ADDR, | |
dst_ip_inner=pdn_interface["ips"][0], | |
src_udp_inner=UE_PORT, | |
dst_udp_inner=PDN_PORT, | |
teid=BESS_TEID) | |
enodeb_host.sendPacket() | |
packets = UP4.checkFilterAndGetPackets(bess_host) | |
# FIXME: with newer scapy TEID becomes teid (required for Scapy 2.4.5) | |
n_packets = packets.count("TEID=" + hex(BESS_TEID) + "L ") | |
tot_packets = packets.count('Ether') | |
utilities.assert_equal(expect=True, | |
actual=n_packets == 1 and tot_packets == 1, | |
onpass="BESS correctly received 1 GTP encapped packet", | |
onfail="ERROR: BESS received %d GTP encapped packets and filter captured %d packets" % ( | |
n_packets, tot_packets)) | |
# ------- BESS -> fabric -> PDN (not-encapped) | |
main.step("Test upstream BESS -> fabric -> PDN") | |
# Start filter before sending packets, PDN should receive non-GTP packet | |
pkt_filter_upstream = "ip and udp src port %d and udp dst port %d and src host %s and dst host %s" % ( | |
UE_PORT, PDN_PORT, BESS_UE_ADDR, pdn_interface["ips"][0]) | |
main.log.info("Start listening on %s intf %s" % ( | |
pdn_host.name, pdn_interface["name"])) | |
main.log.debug("BPF Filter PDN Upstream: \n %s" % pkt_filter_upstream) | |
pdn_host.startFilter(ifaceName=pdn_interface["name"], | |
sniffCount=1, | |
pktFilter=pkt_filter_upstream) | |
# Send UDP Packet | |
UP4.buildUdpPacket(bess_host, | |
src_ip=BESS_UE_ADDR, | |
dst_ip=pdn_interface["ips"][0], | |
src_udp=UE_PORT, | |
dst_udp=PDN_PORT) | |
bess_host.sendPacket() | |
packets = UP4.checkFilterAndGetPackets(pdn_host) | |
tot_packets = packets.count('Ether') | |
utilities.assert_equal(expect=True, | |
actual=tot_packets == 1, | |
onpass="PDN correctly received 1 packet", | |
onfail="ERROR: PDN received %d packets" % ( | |
tot_packets)) | |
# ------------------------------------------------ | |
# ------------------ DOWNSTREAM ------------------ | |
# ------- PDN -> fabric -> BESS (not-encapped) | |
main.step("Test downstream PDN -> fabric -> BESS") | |
pkt_filter_downstream = "ip and udp src port %d and udp dst port %d and src host %s and dst host %s" % ( | |
PDN_PORT, UE_PORT, pdn_interface["ips"][0], BESS_UE_ADDR) | |
main.log.info("Start listening on %s intf %s" % ( | |
bess_host.name, bess_interface["name"])) | |
main.log.debug( | |
"BPF Filter BESS Downstream: \n %s" % pkt_filter_downstream) | |
bess_host.startFilter(ifaceName=bess_interface["name"], | |
sniffCount=1, | |
pktFilter=pkt_filter_downstream) | |
UP4.buildUdpPacket(pdn_host, | |
dst_eth=up4.router_mac, | |
src_ip=pdn_interface["ips"][0], | |
dst_ip=BESS_UE_ADDR, | |
src_udp=PDN_PORT, | |
dst_udp=UE_PORT) | |
pdn_host.sendPacket() | |
packets = UP4.checkFilterAndGetPackets(bess_host) | |
tot_packets = packets.count('Ether') | |
utilities.assert_equal(expect=True, | |
actual=tot_packets == 1, | |
onpass="BESS correctly received 1 packet", | |
onfail="ERROR: BESS received %d packets" % ( | |
tot_packets)) | |
# ------- BESS -> fabric -> eNB (encapped) | |
main.step("Test downstream BESS -> fabric -> eNB") | |
pkt_filter_downstream = "ip and udp src port %d and udp dst port %d and src host %s and dst host %s" % ( | |
GPDU_PORT, GPDU_PORT, bess_s1u_address, up4.enb_address) | |
main.log.info("Start listening on %s intf %s" % ( | |
enodeb_host.name, enodeb_interface["name"])) | |
main.log.debug( | |
"BPF Filter BESS Downstream: \n %s" % pkt_filter_downstream) | |
enodeb_host.startFilter(ifaceName=enodeb_interface["name"], | |
sniffCount=1, | |
pktFilter=pkt_filter_downstream) | |
# Build GTP packet from BESS host | |
UP4.buildGtpPacket(bess_host, | |
src_ip_outer=bess_s1u_address, | |
dst_ip_outer=up4.enb_address, | |
src_ip_inner=pdn_interface["ips"][0], | |
dst_ip_inner=BESS_UE_ADDR, | |
src_udp_inner=PDN_PORT, | |
dst_udp_inner=UE_PORT, | |
teid=BESS_TEID) | |
bess_host.sendPacket() | |
packets = UP4.checkFilterAndGetPackets(enodeb_host) | |
# FIXME: with newer scapy TEID becomes teid (required for Scapy 2.4.5) | |
n_packets = packets.count("TEID=" + hex(BESS_TEID) + "L ") | |
tot_packets = packets.count('Ether') | |
utilities.assert_equal(expect=True, | |
actual=n_packets == 1 and tot_packets == 1, | |
onpass="eNodeB correctly received 1 GTP encapped packet", | |
onfail="ERROR: eNodeb received %d GTP encapped packets and filter captured %d packets" % ( | |
n_packets, tot_packets)) | |
# ------------------------------------------------ | |
main.step("Remove PDRs and FARs for UEs via UP4") | |
up4.detachUes() | |
main.step("Verify removed PDRs and FARs from ONOS") | |
up4.verifyNoUesFlow(onos_cli) | |
main.step("Stop scapy and p4rt client") | |
up4.teardown() | |
bess_host.stopScapy() | |
run.cleanup(main) | |
def CASE3(self, main): | |
main.case("Verify UP4 from different ONOS instances") | |
""" | |
Program PDRs and FARs via UP4 on first ONOS instance | |
Repeat for all ONOS Instances: | |
Verify PDRs and FARs via P4RT | |
Disconnect P4RT client | |
Verify and delete PDRs and FARs via UP4 on the third ONOS instance | |
Repeat for all ONOS Instance: | |
Verify removed PDRs and FARs via P4RT | |
Disconnect P4RT client | |
""" | |
try: | |
from tests.USECASE.SegmentRouting.dependencies.up4 import UP4 | |
from tests.USECASE.SegmentRouting.dependencies.Testcaselib import \ | |
Testcaselib as run | |
except ImportError as e: | |
main.log.error("Import not found. Exiting the test") | |
main.log.error(e) | |
main.cleanAndExit() | |
run.initTest(main) | |
main.log.info(main.Cluster.numCtrls) | |
main.Cluster.setRunningNode(3) | |
run.installOnos(main, skipPackage=True, cliSleep=5) | |
onos_cli_0 = main.Cluster.active(0).CLI | |
onos_cli_1 = main.Cluster.active(1).CLI | |
onos_cli_2 = main.Cluster.active(2).CLI | |
up4_0 = UP4() | |
up4_1 = UP4() | |
up4_2 = UP4() | |
main.step("Program PDRs and FARs via UP4 on ONOS 0") | |
up4_0.setup(main.Cluster.active(0).p4rtUp4, no_host=True) | |
up4_0.attachUes() | |
up4_0.verifyUp4Flow(onos_cli_0) | |
up4_0.teardown() | |
main.step("Verify PDRs and FARs number via UP4 P4RT on ONOS 1") | |
up4_1.setup(main.Cluster.active(1).p4rtUp4, no_host=True) | |
utilities.assert_equal( | |
expect=True, | |
actual=up4_1.verifyUesFlowNumberP4rt(), | |
onpass="Correct number of PDRs and FARs", | |
onfail="Wrong number of PDRs and FARs" | |
) | |
up4_1.teardown() | |
main.step("Verify PDRs and FARs number via UP4 P4RT on ONOS 2") | |
up4_2.setup(main.Cluster.active(2).p4rtUp4, no_host=True) | |
utilities.assert_equal( | |
expect=True, | |
actual=up4_2.verifyUesFlowNumberP4rt(), | |
onpass="Correct number of PDRs and FARs", | |
onfail="Wrong number of PDRs and FARs" | |
) | |
main.step("Verify all ONOS instances have the same number of flows") | |
onos_0_flow_count = onos_cli_0.checkFlowCount() | |
onos_1_flow_count = onos_cli_1.checkFlowCount() | |
onos_2_flow_count = onos_cli_2.checkFlowCount() | |
utilities.assert_equal( | |
expect=True, | |
actual=onos_0_flow_count == onos_1_flow_count == onos_2_flow_count, | |
onpass="All ONOS instances have the same number of flows", | |
onfail="ONOS instances have different number of flows: (%d, %d, %d)" % ( | |
onos_0_flow_count, onos_1_flow_count, onos_2_flow_count) | |
) | |
main.step("Remove PDRs and FARs via UP4 on ONOS 2") | |
up4_2.detachUes() | |
up4_2.verifyNoUesFlow(onos_cli_2) | |
main.step("Verify no PDRs and FARs via UP4 P4RT on ONOS 2") | |
utilities.assert_equal( | |
expect=True, | |
actual=up4_2.verifyNoUesFlowNumberP4rt(), | |
onpass="No PDRs and FARs", | |
onfail="Stale PDRs and FARs" | |
) | |
up4_2.teardown() | |
main.step("Verify no PDRs and FARs via UP4 P4RT on ONOS 1") | |
up4_1.setup(main.Cluster.active(1).p4rtUp4, no_host=True) | |
utilities.assert_equal( | |
expect=True, | |
actual=up4_1.verifyNoUesFlowNumberP4rt(), | |
onpass="No PDRs and FARs", | |
onfail="Stale PDRs and FARs" | |
) | |
up4_1.teardown() | |
main.step("Verify no PDRs and FARs via UP4 P4RT on ONOS 0") | |
up4_0.setup(main.Cluster.active(0).p4rtUp4, no_host=True) | |
utilities.assert_equal( | |
expect=True, | |
actual=up4_0.verifyNoUesFlowNumberP4rt(), | |
onpass="No PDRs and FARs", | |
onfail="Stale PDRs and FARs" | |
) | |
up4_0.teardown() | |
main.step("Verify all ONOS instances have the same number of flows") | |
onos_0_flow_count = onos_cli_0.checkFlowCount() | |
onos_1_flow_count = onos_cli_1.checkFlowCount() | |
onos_2_flow_count = onos_cli_2.checkFlowCount() | |
utilities.assert_equal( | |
expect=True, | |
actual=onos_0_flow_count == onos_1_flow_count == onos_2_flow_count, | |
onpass="All ONOS instances have the same number of flows", | |
onfail="ONOS instances have different number of flows: (%d, %d, %d)" % ( | |
onos_0_flow_count, onos_1_flow_count, onos_2_flow_count) | |
) | |
run.cleanup(main) | |
def CASE4(self, main): | |
main.case("Verify UP4 wipe-out after ONOS reboot") | |
""" | |
Program PDRs/FARs | |
Kill ONOS POD | |
Verify PDRs/FARs from other ONOS instances | |
Remove PDRs/FARs | |
Wait/Verify ONOS is back | |
Verify no PDRs/FARs from rebooted instance | |
Re-program PDRs/FARs from rebooted instance | |
Verify all instances have same number of flows | |
Remove PDRs/FARs (cleanup) | |
""" | |
try: | |
from tests.USECASE.SegmentRouting.dependencies.up4 import UP4 | |
from tests.USECASE.SegmentRouting.dependencies.Testcaselib import \ | |
Testcaselib as run | |
except ImportError as e: | |
main.log.error("Import not found. Exiting the test") | |
main.log.error(e) | |
main.cleanAndExit() | |
run.initTest(main) | |
main.log.info(main.Cluster.numCtrls) | |
main.Cluster.setRunningNode(3) | |
run.installOnos(main, skipPackage=True, cliSleep=5) | |
onos_cli_0 = main.Cluster.active(0).CLI | |
onos_cli_1 = main.Cluster.active(1).CLI | |
onos_cli_2 = main.Cluster.active(2).CLI | |
kubectl_0 = main.Cluster.active(0).k8s | |
up4_0 = UP4() | |
up4_1 = UP4() | |
up4_2 = UP4() | |
main.step("Program PDRs and FARs via UP4 on ONOS 0") | |
up4_0.setup(main.Cluster.active(0).p4rtUp4, no_host=True) | |
up4_0.attachUes() | |
up4_0.verifyUp4Flow(onos_cli_0) | |
up4_0.teardown() | |
onosPod = main.params["UP4_delete_pod"] | |
# Exit from previous port forwarding, because we need to restore | |
# port-forwarding after ONOS reboot. | |
kubectl_0.clearBuffer() | |
kubectl_0.exitFromProcess() | |
main.step("Kill " + onosPod) | |
utilities.assert_equal( | |
expect=main.TRUE, | |
actual=kubectl_0.kubectlDeletePod( | |
podName=onosPod, | |
kubeconfig=kubectl_0.kubeConfig, | |
namespace=main.params['kubernetes']['namespace'] | |
), | |
onpass="%s pod correctly deleted" % onosPod, | |
onfail="%s pod has not been deleted" % onosPod | |
) | |
main.step("Verify PDRs and FARs number via UP4 P4RT on ONOS 2") | |
up4_2.setup(main.Cluster.active(2).p4rtUp4, no_host=True) | |
utilities.assert_equal( | |
expect=True, | |
actual=up4_2.verifyUesFlowNumberP4rt(), | |
onpass="Correct number of PDRs and FARs", | |
onfail="Wrong number of PDRs and FARs" | |
) | |
main.step("Remove PDRs and FARs via UP4 on ONOS 2") | |
up4_2.detachUes() | |
up4_2.verifyNoUesFlow(onos_cli_2) | |
main.step("Verify no PDRs and FARs via UP4 P4RT on ONOS 2") | |
utilities.assert_equal( | |
expect=True, | |
actual=up4_2.verifyNoUesFlowNumberP4rt(), | |
onpass="No PDRs and FARs", | |
onfail="Stale PDRs and FARs" | |
) | |
up4_2.teardown() | |
main.step("Verify ONOS 0 has restarted correctly") | |
onosStarted = utilities.retry( | |
f=kubectl_0.kubectlCheckPodReady, | |
retValue=main.FALSE, | |
kwargs={ | |
"podName": onosPod, | |
"kubeconfig": kubectl_0.kubeConfig, | |
"namespace": main.params['kubernetes']['namespace'] | |
}, | |
sleep=10, | |
attempts=10 | |
) | |
utilities.assert_equal( | |
expect=main.TRUE, | |
actual=onosStarted, | |
onpass="%s pod correctly restarted" % onosPod, | |
onfail="%s pod haven't restarted correctly" % onosPod | |
) | |
main.step("Verify ONOS cluster is in good shape") | |
# A bug in kubectl port forwarding doesn't terminate port-forwarding | |
# when the container changed, nor reconnect correctly to the restarted | |
# container. | |
# See: https://github.com/kubernetes/kubectl/issues/686 | |
# Re-build the port-list for port forwarding | |
portList = "%s:%s " % (main.Cluster.active(0).CLI.karafPort, 8101) | |
portList += "%s:%s " % (main.Cluster.active(0).REST.port, 8181) | |
portList += "%s:%s " % (main.Cluster.active(0).p4rtUp4.p4rtPort, | |
main.ONOScell.up4Port) | |
kubectl_0.clearBuffer() | |
kubectl_0.kubectlPortForward( | |
onosPod, | |
portList, | |
kubectl_0.kubeConfig, | |
main.params['kubernetes']['namespace'] | |
) | |
onos_cli_0.clearBuffer() # Trigger ONOS CLI reconnection | |
onosNodesStatus = utilities.retry( | |
f=main.Cluster.nodesCheck, | |
retValue=False, | |
sleep=5, | |
attempts=10 | |
) | |
utilities.assert_equal( | |
expect=True, | |
actual=onosNodesStatus, | |
onpass="ONOS nodes status correct", | |
onfail="Wrong ONOS nodes status" | |
) | |
main.step("Verify no PDRs and FARs via UP4 P4RT on ONOS 0") | |
up4_0.setup(main.Cluster.active(0).p4rtUp4, no_host=True) | |
utilities.assert_equal( | |
expect=True, | |
actual=up4_0.verifyNoUesFlowNumberP4rt(), | |
onpass="No PDRs and FARs", | |
onfail="Stale PDRs and FARs" | |
) | |
main.step("Re-program PDRs and FARs via UP4 on ONOS 0 after restart") | |
up4_0.attachUes() | |
up4_0.verifyUp4Flow(onos_cli_0) | |
up4_0.teardown() | |
main.step("Verify PDRs and FARs via UP4 on ONOS 1") | |
up4_1.setup(main.Cluster.active(1).p4rtUp4, no_host=True) | |
up4_1.verifyUp4Flow(onos_cli_1) | |
main.step("Verify all ONOS instances have the same number of flows") | |
onos_0_flow_count = onos_cli_0.checkFlowCount() | |
onos_1_flow_count = onos_cli_1.checkFlowCount() | |
onos_2_flow_count = onos_cli_2.checkFlowCount() | |
utilities.assert_equal( | |
expect=True, | |
actual=onos_0_flow_count == onos_1_flow_count == onos_2_flow_count, | |
onpass="All ONOS instances have the same number of flows", | |
onfail="ONOS instances have different number of flows: (%d, %d, %d)" % ( | |
onos_0_flow_count, onos_1_flow_count, onos_2_flow_count) | |
) | |
main.step("Cleanup PDRs and FARs via UP4 on ONOS 1") | |
up4_1.detachUes() | |
up4_1.verifyNoUesFlow(onos_cli_1) | |
up4_1.teardown() | |
run.cleanup(main) |