use of org.onlab.packet.ICMP6.ECHO_REPLY in project trellis-control by opennetworkinglab.
the class IcmpHandlerTest method testPing6LoopbackPair.
// Ping6 to the looback of our leaf (pair)
@Test
public void testPing6LoopbackPair() {
// Expected behavior
expect(segmentRoutingManager.deviceService.isAvailable(LOCAL_LEAF1)).andReturn(true).times(1);
expect(segmentRoutingManager.deviceService.isAvailable(LOCAL_LEAF2)).andReturn(true).times(1);
replay(segmentRoutingManager.deviceService);
// Process
icmpHandler.processIcmpv6(ETH_REQ_IPV6_LOOPBACK_PAIR, CP2021);
// Verify packet-out
Ethernet ethernet = packetService.getEthernetPacket(ETH_REQ_IPV6_LOOPBACK_PAIR.getSourceMAC());
assertNotNull(ethernet);
assertThat(ethernet.getSourceMAC(), is(ETH_REQ_IPV6_LOOPBACK_PAIR.getDestinationMAC()));
assertThat(ethernet.getDestinationMAC(), is(ETH_REQ_IPV6_LOOPBACK_PAIR.getSourceMAC()));
assertTrue(ethernet.getPayload() instanceof IPv6);
IPv6 ip = (IPv6) ethernet.getPayload();
assertThat(ip.getSourceAddress(), is(DST_IPV6_LOOPBACK_PAIR.toOctets()));
assertThat(ip.getDestinationAddress(), is(SRC_IPV61.toOctets()));
assertTrue(ip.getPayload() instanceof ICMP6);
ICMP6 icmp = (ICMP6) ip.getPayload();
assertThat(icmp.getIcmpType(), is(ECHO_REPLY));
// Verify behavior
verify(segmentRoutingManager.deviceService);
}
use of org.onlab.packet.ICMP6.ECHO_REPLY in project trellis-control by opennetworkinglab.
the class IcmpHandlerTest method testPing6Loopback.
// Ping6 to the looback of our leaf
@Test
public void testPing6Loopback() {
// Expected behavior
expect(segmentRoutingManager.deviceService.isAvailable(REMOTE_LEAF)).andReturn(true).times(1);
replay(segmentRoutingManager.deviceService);
// Process
icmpHandler.processIcmpv6(ETH_REQ_IPV6_LOOPBACK, CP12);
// Verify packet-out
Ethernet ethernet = packetService.getEthernetPacket(ETH_REQ_IPV6_LOOPBACK.getSourceMAC());
assertNotNull(ethernet);
assertThat(ethernet.getSourceMAC(), is(ETH_REQ_IPV6_LOOPBACK.getDestinationMAC()));
assertThat(ethernet.getDestinationMAC(), is(ETH_REQ_IPV6_LOOPBACK.getSourceMAC()));
assertTrue(ethernet.getPayload() instanceof IPv6);
IPv6 ip = (IPv6) ethernet.getPayload();
assertThat(ip.getSourceAddress(), is(DST_IPV6_LOOPBACK.toOctets()));
assertThat(ip.getDestinationAddress(), is(SRC_IPV6_MY.toOctets()));
assertTrue(ip.getPayload() instanceof ICMP6);
ICMP6 icmp = (ICMP6) ip.getPayload();
assertThat(icmp.getIcmpType(), is(ECHO_REPLY));
// Verify behavior
verify(segmentRoutingManager.deviceService);
}
use of org.onlab.packet.ICMP6.ECHO_REPLY in project trellis-control by opennetworkinglab.
the class IcmpHandlerTest method testPing6LoopbackPairDifferentLeafDown.
// Ping6 loopback of a destination that is down but
// hashing of the bond interfaces sends to other leaf
@Test
public void testPing6LoopbackPairDifferentLeafDown() {
// Expected behavior
expect(segmentRoutingManager.deviceService.isAvailable(LOCAL_LEAF1)).andReturn(true).times(1);
expect(segmentRoutingManager.deviceService.isAvailable(LOCAL_LEAF2)).andReturn(false).times(1);
replay(segmentRoutingManager.deviceService);
// Process
icmpHandler.processIcmpv6(ETH_REQ_IPV6_LOOPBACK_PAIR, CP2011);
// Verify packet-out
Ethernet ethernet = packetService.getEthernetPacket(ETH_REQ_IPV6_LOOPBACK_PAIR.getSourceMAC());
assertNotNull(ethernet);
assertThat(ethernet.getSourceMAC(), is(ETH_REQ_IPV6_LOOPBACK_PAIR.getDestinationMAC()));
assertThat(ethernet.getDestinationMAC(), is(ETH_REQ_IPV6_LOOPBACK_PAIR.getSourceMAC()));
assertTrue(ethernet.getPayload() instanceof IPv6);
IPv6 ip = (IPv6) ethernet.getPayload();
assertThat(ip.getSourceAddress(), is(DST_IPV6_LOOPBACK_PAIR.toOctets()));
assertThat(ip.getDestinationAddress(), is(SRC_IPV61.toOctets()));
assertTrue(ip.getPayload() instanceof ICMP6);
ICMP6 icmp = (ICMP6) ip.getPayload();
assertThat(icmp.getIcmpType(), is(ECHO_REPLY));
// Verify behavior
verify(segmentRoutingManager.deviceService);
}
use of org.onlab.packet.ICMP6.ECHO_REPLY in project trellis-control by opennetworkinglab.
the class IcmpHandlerTest method testPing6LinkLocalAddress.
// Ping6 to a link local address
@Test
public void testPing6LinkLocalAddress() {
// Process
icmpHandler.processIcmpv6(ETH_REQ_IPV6_LL, CP12);
// Verify packet-out
Ethernet ethernet = packetService.getEthernetPacket(ETH_REQ_IPV6_LL.getSourceMAC());
assertNotNull(ethernet);
assertThat(ethernet.getSourceMAC(), is(ETH_REQ_IPV6_LL.getDestinationMAC()));
assertThat(ethernet.getDestinationMAC(), is(ETH_REQ_IPV6_LL.getSourceMAC()));
assertTrue(ethernet.getPayload() instanceof IPv6);
IPv6 ip = (IPv6) ethernet.getPayload();
assertThat(ip.getSourceAddress(), is(DST_IPV6_LL.toOctets()));
assertThat(ip.getDestinationAddress(), is(SRC_IPV6_LL.toOctets()));
assertTrue(ip.getPayload() instanceof ICMP6);
ICMP6 icmp = (ICMP6) ip.getPayload();
assertThat(icmp.getIcmpType(), is(ECHO_REPLY));
}
use of org.onlab.packet.ICMP6.ECHO_REPLY in project trellis-control by opennetworkinglab.
the class IcmpHandlerTest method testPing6RemoteGatewayLeaf2Down.
// Ping6 to a gateway but one of the destination leaf is down
@Test
public void testPing6RemoteGatewayLeaf2Down() {
// Expected behavior
expect(segmentRoutingManager.deviceService.isAvailable(LOCAL_LEAF1)).andReturn(true).times(1);
expect(segmentRoutingManager.deviceService.isAvailable(LOCAL_LEAF2)).andReturn(false).times(1);
replay(segmentRoutingManager.deviceService);
// Process
icmpHandler.processIcmpv6(ETH_REQ_IPV61, CP11);
// Verify packet-out
Ethernet ethernet = packetService.getEthernetPacket(ETH_REQ_IPV61.getSourceMAC());
assertNotNull(ethernet);
assertThat(ethernet.getSourceMAC(), is(ETH_REQ_IPV61.getDestinationMAC()));
assertThat(ethernet.getDestinationMAC(), is(ETH_REQ_IPV61.getSourceMAC()));
assertThat(ethernet.getEtherType(), is(Ethernet.MPLS_UNICAST));
assertTrue(ethernet.getPayload() instanceof MPLS);
MPLS mpls = (MPLS) ethernet.getPayload();
assertThat(mpls.getLabel(), is(LOCAL_LEAF1_SID6));
assertTrue(mpls.getPayload() instanceof IPv6);
IPv6 ip = (IPv6) mpls.getPayload();
assertThat(ip.getSourceAddress(), is(DST_IPV6.toOctets()));
assertThat(ip.getDestinationAddress(), is(SRC_IPV61.toOctets()));
assertTrue(ip.getPayload() instanceof ICMP6);
ICMP6 icmp = (ICMP6) ip.getPayload();
assertThat(icmp.getIcmpType(), is(ECHO_REPLY));
// Verify behavior
verify(segmentRoutingManager.deviceService);
}