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