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