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