blob: f5e8214887368067797ec562f7aceb0418ff39d9 [file] [log] [blame]
Rich Lanedacbe732013-01-29 17:32:11 -08001import logging
2import struct
3
4from oftest import config
Rich Lanee717c6e2013-03-12 10:25:50 -07005import ofp
Rich Lanedacbe732013-01-29 17:32:11 -08006import oftest.base_tests as base_tests
7
8from oftest.testutils import *
9
Rich Lanedacbe732013-01-29 17:32:11 -080010@nonstandard
11class TtlDecrement(base_tests.SimpleDataPlane):
12 def runTest(self):
13 of_ports = config["port_map"].keys()
14 of_ports.sort()
15 self.assertTrue(len(of_ports) >= 3, "Not enough ports for test")
16 portA = of_ports[0]
17 portB = of_ports[1]
18 portC = of_ports[2]
19
Rich Lane75ea24d2013-01-30 15:27:19 -080020 # Test using flow mods (does not test drop)
21 flow_match_test(self, config["port_map"],
22 pkt=simple_tcp_packet(pktlen=100, ip_ttl=2),
23 exp_pkt=simple_tcp_packet(pktlen=100, ip_ttl=1),
Rich Laneb659c762013-03-11 23:08:36 -070024 action_list=[ofp.action.nicira_dec_ttl()])
Rich Lane75ea24d2013-01-30 15:27:19 -080025
Rich Lanedacbe732013-01-29 17:32:11 -080026 outpkt = simple_tcp_packet(pktlen=100, ip_ttl=3)
27 msg = ofp.message.packet_out(in_port=ofp.OFPP_NONE,
28 data=str(outpkt),
29 actions=[
Rich Laneb659c762013-03-11 23:08:36 -070030 ofp.action.nicira_dec_ttl(),
Rich Lanedacbe732013-01-29 17:32:11 -080031 ofp.action.output(port=portA),
Rich Laneb659c762013-03-11 23:08:36 -070032 ofp.action.nicira_dec_ttl(),
Rich Lanedacbe732013-01-29 17:32:11 -080033 ofp.action.output(port=portB),
Rich Laneb659c762013-03-11 23:08:36 -070034 ofp.action.nicira_dec_ttl(),
Rich Lanedacbe732013-01-29 17:32:11 -080035 ofp.action.output(port=portC)])
36 self.controller.message_send(msg)
37
38 receive_pkt_check(self.dataplane, simple_tcp_packet(ip_ttl=2), [portA], [], self)
39 receive_pkt_check(self.dataplane, simple_tcp_packet(ip_ttl=1), [portB], [], self)
40 receive_pkt_check(self.dataplane, simple_tcp_packet(ip_ttl=0), [], [portC], self)