Dan Talayco | 79c6c4d | 2010-06-08 14:01:53 -0700 | [diff] [blame] | 1 | """ |
| 2 | Basic capabilities and capacities tests |
| 3 | |
| 4 | """ |
| 5 | |
| 6 | import logging |
| 7 | |
| 8 | import unittest |
| 9 | |
| 10 | import oftest.controller as controller |
| 11 | import oftest.cstruct as ofp |
| 12 | import oftest.message as message |
| 13 | import oftest.dataplane as dataplane |
| 14 | import oftest.action as action |
| 15 | import oftest.parse as parse |
| 16 | import basic |
| 17 | |
| 18 | from testutils import * |
| 19 | |
| 20 | #@var caps_port_map Local copy of the configuration map from OF port |
| 21 | # numbers to OS interfaces |
| 22 | caps_port_map = None |
| 23 | #@var caps_logger Local logger object |
| 24 | caps_logger = None |
| 25 | #@var caps_config Local copy of global configuration data |
| 26 | caps_config = None |
| 27 | |
Dan Talayco | c24aaae | 2010-07-08 14:05:24 -0700 | [diff] [blame] | 28 | # For test priority |
| 29 | test_prio = {} |
| 30 | |
Dan Talayco | 79c6c4d | 2010-06-08 14:01:53 -0700 | [diff] [blame] | 31 | def test_set_init(config): |
| 32 | """ |
| 33 | Set up function for caps test classes |
| 34 | |
| 35 | @param config The configuration dictionary; see oft |
| 36 | """ |
| 37 | |
Ed Swierk | 6ccbb07 | 2012-03-19 14:48:40 -0700 | [diff] [blame] | 38 | basic.test_set_init(config) |
| 39 | |
Dan Talayco | 79c6c4d | 2010-06-08 14:01:53 -0700 | [diff] [blame] | 40 | global caps_port_map |
| 41 | global caps_logger |
| 42 | global caps_config |
| 43 | |
| 44 | caps_logger = logging.getLogger("caps") |
| 45 | caps_logger.info("Initializing caps test set") |
| 46 | caps_port_map = config["port_map"] |
| 47 | caps_config = config |
| 48 | |
| 49 | |
| 50 | def flow_caps_common(obj, is_exact=True): |
| 51 | """ |
| 52 | The common function for |
| 53 | |
| 54 | @param obj The calling object |
| 55 | @param is_exact If True, checking exact match; else wildcard |
| 56 | """ |
| 57 | |
| 58 | global caps_port_map |
| 59 | of_ports = caps_port_map.keys() |
| 60 | of_ports.sort() |
| 61 | |
| 62 | rv = delete_all_flows(obj.controller, caps_logger) |
| 63 | obj.assertEqual(rv, 0, "Failed to delete all flows") |
| 64 | |
| 65 | pkt = simple_tcp_packet() |
Ed Swierk | 6192e51 | 2012-08-22 11:41:40 -0700 | [diff] [blame^] | 66 | match = packet_to_flow_match(obj, pkt) |
Dan Talayco | 79c6c4d | 2010-06-08 14:01:53 -0700 | [diff] [blame] | 67 | obj.assertTrue(match is not None, "Could not generate flow match from pkt") |
| 68 | for port in of_ports: |
| 69 | break; |
| 70 | match.in_port = port |
| 71 | match.nw_src = 1 |
| 72 | request = message.flow_mod() |
| 73 | count_check = 101 # fixme: better way to determine this. |
| 74 | if is_exact: |
| 75 | match.wildcards = 0 |
| 76 | else: |
| 77 | match.wildcards |= ofp.OFPFW_DL_SRC |
| 78 | |
| 79 | request.match = match |
Rob Sherwood | 9130bcd | 2012-03-07 12:23:50 -0800 | [diff] [blame] | 80 | request.buffer_id = 0xffffffff # set to NONE |
Dan Talayco | 79c6c4d | 2010-06-08 14:01:53 -0700 | [diff] [blame] | 81 | caps_logger.info(request.show()) |
| 82 | |
| 83 | tstats = message.table_stats_request() |
| 84 | try: # Determine the table index to check (or "all") |
| 85 | table_idx = caps_config["caps_table_idx"] |
| 86 | except: |
| 87 | table_idx = -1 # Accumulate all table counts |
| 88 | |
| 89 | # Make sure we can install at least one flow |
| 90 | caps_logger.info("Inserting initial flow") |
| 91 | rv = obj.controller.message_send(request) |
| 92 | obj.assertTrue(rv != -1, "Error installing flow mod") |
Dan Talayco | 2757e0a | 2012-05-02 09:28:52 -0700 | [diff] [blame] | 93 | obj.assertEqual(do_barrier(obj.controller), 0, "Barrier failed") |
Dan Talayco | 79c6c4d | 2010-06-08 14:01:53 -0700 | [diff] [blame] | 94 | flow_count = 1 |
| 95 | |
| 96 | caps_logger.info("Table idx: " + str(table_idx)) |
| 97 | caps_logger.info("Check every " + str(count_check) + " inserts") |
| 98 | |
| 99 | while True: |
| 100 | request.match.nw_src += 1 |
| 101 | rv = obj.controller.message_send(request) |
Dan Talayco | 79c6c4d | 2010-06-08 14:01:53 -0700 | [diff] [blame] | 102 | flow_count += 1 |
| 103 | if flow_count % count_check == 0: |
Dan Talayco | 2757e0a | 2012-05-02 09:28:52 -0700 | [diff] [blame] | 104 | obj.assertEqual(do_barrier(obj.controller), 0, "Barrier failed") |
Rich Lane | c8aaa3e | 2012-07-26 19:28:02 -0700 | [diff] [blame] | 105 | response, pkt = obj.controller.transact(tstats) |
Dan Talayco | 79c6c4d | 2010-06-08 14:01:53 -0700 | [diff] [blame] | 106 | obj.assertTrue(response is not None, "Get tab stats failed") |
| 107 | caps_logger.info(response.show()) |
| 108 | if table_idx == -1: # Accumulate for all tables |
| 109 | active_flows = 0 |
| 110 | for stats in response.stats: |
| 111 | active_flows += stats.active_count |
| 112 | else: # Table index to use specified in config |
| 113 | active_flows = response.stats[table_idx].active_count |
| 114 | if active_flows != flow_count: |
| 115 | break |
| 116 | |
| 117 | caps_logger.error("RESULT: " + str(flow_count) + " flows inserted") |
| 118 | caps_logger.error("RESULT: " + str(active_flows) + " flows reported") |
| 119 | |
| 120 | |
| 121 | class FillTableExact(basic.SimpleProtocol): |
| 122 | """ |
Dan Talayco | 8f91a5b | 2010-07-20 14:07:21 -0700 | [diff] [blame] | 123 | Fill the flow table with exact matches; can take a while |
Dan Talayco | 79c6c4d | 2010-06-08 14:01:53 -0700 | [diff] [blame] | 124 | |
| 125 | Fill table until no more flows can be added. Report result. |
| 126 | Increment the source IP address. Assume the flow table will |
| 127 | fill in less than 4 billion inserts |
| 128 | |
| 129 | To check the number of flows in the tables is expensive, so |
| 130 | it's only done periodically. This is controlled by the |
| 131 | count_check variable. |
| 132 | |
| 133 | A switch may have multiple tables. The default behaviour |
| 134 | is to count all the flows in all the tables. By setting |
| 135 | the parameter "caps_table_idx" in the configuration array, |
| 136 | you can control which table to check. |
| 137 | """ |
| 138 | def runTest(self): |
| 139 | caps_logger.info("Running " + str(self)) |
| 140 | flow_caps_common(self) |
| 141 | |
Dan Talayco | c24aaae | 2010-07-08 14:05:24 -0700 | [diff] [blame] | 142 | test_prio["FillTableExact"] = -1 |
Dan Talayco | 79c6c4d | 2010-06-08 14:01:53 -0700 | [diff] [blame] | 143 | |
| 144 | class FillTableWC(basic.SimpleProtocol): |
| 145 | """ |
| 146 | Fill the flow table with wildcard matches |
| 147 | |
| 148 | Fill table using wildcard entries until no more flows can be |
| 149 | added. Report result. |
| 150 | Increment the source IP address. Assume the flow table will |
| 151 | fill in less than 4 billion inserts |
| 152 | |
| 153 | To check the number of flows in the tables is expensive, so |
| 154 | it's only done periodically. This is controlled by the |
| 155 | count_check variable. |
| 156 | |
| 157 | A switch may have multiple tables. The default behaviour |
| 158 | is to count all the flows in all the tables. By setting |
| 159 | the parameter "caps_table_idx" in the configuration array, |
| 160 | you can control which table to check. |
| 161 | |
| 162 | """ |
| 163 | def runTest(self): |
| 164 | caps_logger.info("Running " + str(self)) |
| 165 | flow_caps_common(self, is_exact=False) |
Dan Talayco | 3788a3d | 2011-08-23 22:50:07 -0700 | [diff] [blame] | 166 | |
| 167 | test_prio["FillTableWC"] = -1 |