2026-08-14 08:31:54,613 - INFO - Domain Default found not creating 2026-08-14 08:31:54,775 - INFO - Project ctest-TestCRUD-54726265 not found, creating it 2026-08-14 08:31:55,299 - INFO - Created Project:ctest-TestCRUD-54726265, ID : e5ccbd50-7b02-4b80-9333-11823dcce195 2026-08-14 08:31:56,877 - INFO - Creating Security group: ['default-domain', 'admin', 'ctest-admin-sg1-06562357'] 2026-08-14 08:31:57,760 - INFO - Creating Security group: ['default-domain', 'admin', 'ctest-admin-sg2-13675578'] 2026-08-14 08:31:58,927 - INFO - Creating Security group: ['default-domain', 'ctest-TestCRUD-54726265', 'ctest-proj-sg1-51547482'] 2026-08-14 08:31:59,597 - INFO - Creating Security group: ['default-domain', 'ctest-TestCRUD-54726265', 'ctest-proj-sg2-88637140'] 2026-08-14 08:32:00,444 - INFO - ================================================================================ 2026-08-14 08:32:00,445 - INFO - STARTING TEST : test_network_tags_crud 2026-08-14 08:32:00,445 - INFO - TEST DESCRIPTION : Tag CRUD on a network: set/list/append/show/delete/delete-all/ filter. Regression guard for OpenSDN-io/community#124. 2026-08-14 08:32:00,705 - DEBUG - Nothing to compare xmpp stats {'10.0.0.22': {'10.20.0.254': '0'}} with 2026-08-14 08:32:00,705 - INFO - Initial checks done. Running the testcase now 2026-08-14 08:32:00,705 - INFO - 2026-08-14 08:32:01,170 - INFO - Deleting Security group: ['default-domain', 'ctest-TestCRUD-54726265', 'ctest-proj-sg2-88637140'] 2026-08-14 08:32:01,233 - INFO - Deleting Security group: ['default-domain', 'ctest-TestCRUD-54726265', 'ctest-proj-sg1-51547482'] 2026-08-14 08:32:01,308 - INFO - Deleting Security group: ['default-domain', 'admin', 'ctest-admin-sg2-13675578'] 2026-08-14 08:32:01,378 - INFO - Deleting Security group: ['default-domain', 'admin', 'ctest-admin-sg1-06562357'] 2026-08-14 08:32:01,709 - ERROR - NotFound Python 3.9.25: /usr/bin/python3 Fri Aug 14 08:32:01 2026 A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred. /contrail-test/tcutils/wrappers.py in wrapper(self=, *args=(), **kwargs={}) 78 log.info('Initial checks done. Running the testcase now') 79 log.info('') 80 result = function(self, *args, **kwargs) 81 if self.inputs.upgrade: 82 pid = os.getpid() result = None function = self = args = () kwargs = {} /contrail-test/scripts/neutron/test_crud.py in test_network_tags_crud(self=) 601 602 # set (replace-all) 603 c.replace_tag('networks', net_id, {'tags': ['a', 'b']}) 604 assert tags() == {'a', 'b'}, 'replace_tag did not persist' 605 c = c.replace_tag = > net_id = 'be01f10a-935a-4e39-9063-94c7f7da968d' /usr/local/lib/python3.9/site-packages/neutronclient/v2_0/client.py in replace_tag(self=, resource_type='networks', resource_id='be01f10a-935a-4e39-9063-94c7f7da968d', body={'tags': ['a', 'b']}, **_params={}) 2096 def replace_tag(self, resource_type, resource_id, body, **_params): 2097 """Replace tags on the resource.""" 2098 return self.put(self.tags_path % (resource_type, resource_id), body) 2099 2100 def remove_tag(self, resource_type, resource_id, tag, **_params): self = self.put = > self.tags_path = '/%s/%s/tags' resource_type = 'networks' resource_id = 'be01f10a-935a-4e39-9063-94c7f7da968d' body = {'tags': ['a', 'b']} /usr/local/lib/python3.9/site-packages/neutronclient/v2_0/client.py in put(self=, action='/networks/be01f10a-935a-4e39-9063-94c7f7da968d/tags', body={'tags': ['a', 'b']}, headers=None, params=None) 360 361 def put(self, action, body=None, headers=None, params=None): 362 return self.retry_request("PUT", action, body=body, 363 headers=headers, params=params) 364 self = self.retry_request = > action = '/networks/be01f10a-935a-4e39-9063-94c7f7da968d/tags' body = {'tags': ['a', 'b']} headers = None params = None /usr/local/lib/python3.9/site-packages/neutronclient/v2_0/client.py in retry_request(self=, method='PUT', action='/networks/be01f10a-935a-4e39-9063-94c7f7da968d/tags', body={'tags': ['a', 'b']}, headers=None, params=None) 328 for i in range(max_attempts): 329 try: 330 return self.do_request(method, action, body=body, 331 headers=headers, params=params) 332 except (exceptions.ConnectionFailed, ksa_exc.ConnectionError): self = self.do_request = > method = 'PUT' action = '/networks/be01f10a-935a-4e39-9063-94c7f7da968d/tags' body = {'tags': ['a', 'b']} headers = None params = None /usr/local/lib/python3.9/site-packages/neutronclient/v2_0/client.py in do_request(self=, method='PUT', action='/v2.0/networks/be01f10a-935a-4e39-9063-94c7f7da968d/tags', body='{"tags": ["a", "b"]}', headers=None, params=None) 292 if not replybody: 293 replybody = resp.reason 294 self._handle_fault_response(status_code, replybody, resp) 295 296 def get_auth_info(self): self = self._handle_fault_response = > status_code = 404 replybody = '{"NeutronError": {"type": "SubnetNotFound", "mes..."Subnet None could not be found.", "detail": ""}}' resp = /usr/local/lib/python3.9/site-packages/neutronclient/v2_0/client.py in _handle_fault_response(self=, status_code=404, response_body='{"NeutronError": {"type": "SubnetNotFound", "mes..."Subnet None could not be found.", "detail": ""}}', resp=) 267 error_body = self._convert_into_with_meta(des_error_body, resp) 268 # Raise the appropriate exception 269 exception_handler_v20(status_code, error_body) 270 271 def do_request(self, method, action, body=None, headers=None, params=None): global exception_handler_v20 = status_code = 404 error_body = {'NeutronError': {'type': 'SubnetNotFound', 'mes...'Subnet None could not be found.', 'detail': ''}} /usr/local/lib/python3.9/site-packages/neutronclient/v2_0/client.py in exception_handler_v20(status_code=404, error_content={'NeutronError': {'type': 'SubnetNotFound', 'mes...'Subnet None could not be found.', 'detail': ''}}) 89 client_exc = exceptions.NeutronClientException 90 91 raise client_exc(message=error_message, 92 status_code=status_code, 93 request_ids=request_ids) client_exc = message undefined error_message = 'Subnet None could not be found.' status_code = 404 request_ids = ['req-7e7c45f2-4aa4-43ae-83c7-b4f3ccf4e728'] NotFound: Subnet None could not be found. Neutron server returns request_ids: ['req-7e7c45f2-4aa4-43ae-83c7-b4f3ccf4e728'] __cause__ = None __class__ = __context__ = None __delattr__ = __dict__ = {'_error_string': "Subnet None could not be found.\nNeutron server r...ids: ['req-7e7c45f2-4aa4-43ae-83c7-b4f3ccf4e728']", 'message': "Subnet None could not be found.\nNeutron server r...ids: ['req-7e7c45f2-4aa4-43ae-83c7-b4f3ccf4e728']", 'request_ids': ['req-7e7c45f2-4aa4-43ae-83c7-b4f3ccf4e728'], 'status_code': 404} __dir__ = __doc__ = None __eq__ = __format__ = __ge__ = __getattribute__ = __gt__ = __hash__ = __init__ = __init_subclass__ = __le__ = __lt__ = __module__ = 'neutronclient.common.exceptions' __ne__ = __new__ = __reduce__ = __reduce_ex__ = __repr__ = __setattr__ = __setstate__ = __sizeof__ = __str__ = __subclasshook__ = __suppress_context__ = False __traceback__ = __weakref__ = None _error_string = "Subnet None could not be found.\nNeutron server r...ids: ['req-7e7c45f2-4aa4-43ae-83c7-b4f3ccf4e728']" args = () message = "Subnet None could not be found.\nNeutron server r...ids: ['req-7e7c45f2-4aa4-43ae-83c7-b4f3ccf4e728']" req_ids_msg = 'Neutron server returns request_ids: %s' request_ids = ['req-7e7c45f2-4aa4-43ae-83c7-b4f3ccf4e728'] status_code = 404 with_traceback = The above is a description of an error in a Python program. Here is the original traceback: Traceback (most recent call last): File "/contrail-test/tcutils/wrappers.py", line 80, in wrapper result = function(self, *args, **kwargs) File "/contrail-test/scripts/neutron/test_crud.py", line 603, in test_network_tags_crud c.replace_tag('networks', net_id, {'tags': ['a', 'b']}) File "/usr/local/lib/python3.9/site-packages/neutronclient/v2_0/client.py", line 2098, in replace_tag return self.put(self.tags_path % (resource_type, resource_id), body) File "/usr/local/lib/python3.9/site-packages/neutronclient/v2_0/client.py", line 362, in put return self.retry_request("PUT", action, body=body, File "/usr/local/lib/python3.9/site-packages/neutronclient/v2_0/client.py", line 330, in retry_request return self.do_request(method, action, body=body, File "/usr/local/lib/python3.9/site-packages/neutronclient/v2_0/client.py", line 294, in do_request self._handle_fault_response(status_code, replybody, resp) File "/usr/local/lib/python3.9/site-packages/neutronclient/v2_0/client.py", line 269, in _handle_fault_response exception_handler_v20(status_code, error_body) File "/usr/local/lib/python3.9/site-packages/neutronclient/v2_0/client.py", line 91, in exception_handler_v20 raise client_exc(message=error_message, neutronclient.common.exceptions.NotFound: Subnet None could not be found. Neutron server returns request_ids: ['req-7e7c45f2-4aa4-43ae-83c7-b4f3ccf4e728'] 2026-08-14 08:32:01,717 - DEBUG - No XMPP flaps were noticed during the test 2026-08-14 08:32:01,717 - INFO - 2026-08-14 08:32:01,717 - INFO - END TEST : test_network_tags_crud : FAILED[0:00:01] 2026-08-14 08:32:01,717 - INFO - -------------------------------------------------------------------------------- 2026-08-14 08:32:01,728 - INFO - Creating Security group: ['default-domain', 'admin', 'ctest-admin-sg1-55937852'] 2026-08-14 08:32:02,500 - INFO - Creating Security group: ['default-domain', 'admin', 'ctest-admin-sg2-24673605'] 2026-08-14 08:32:03,248 - INFO - Creating Security group: ['default-domain', 'ctest-TestCRUD-54726265', 'ctest-proj-sg1-43984525'] 2026-08-14 08:32:04,072 - INFO - Creating Security group: ['default-domain', 'ctest-TestCRUD-54726265', 'ctest-proj-sg2-03325223'] 2026-08-14 08:32:04,812 - INFO - ================================================================================ 2026-08-14 08:32:04,812 - INFO - STARTING TEST : test_router_crud 2026-08-14 08:32:05,079 - DEBUG - Nothing to compare xmpp stats {'10.0.0.22': {'10.20.0.254': '0'}} with 2026-08-14 08:32:05,079 - INFO - Initial checks done. Running the testcase now 2026-08-14 08:32:05,079 - INFO - 2026-08-14 08:32:05,079 - INFO - Router create Request {'router': {'name': 'name-69620853'}} 2026-08-14 08:32:05,143 - INFO - Router create Response : {'router': {'id': 'df7d40f0-d9ea-4b9e-91e7-40371faee2cf', 'name': 'name-69620853', 'tenant_id': '53eff636d5fa417590174774f939a957', 'admin_state_up': True, 'status': 'ACTIVE', 'external_gateway_info': None, 'fq_name': ['default-domain', 'admin', 'name-69620853'], 'description': '', 'project_id': '53eff636d5fa417590174774f939a957'}} 2026-08-14 08:32:05,143 - INFO - Router create PASSED ,Body : {'router': {'name': 'name-69620853'}} 2026-08-14 08:32:05,159 - INFO - Attribute id is created 2026-08-14 08:32:05,160 - INFO - Attribute name is created 2026-08-14 08:32:05,160 - INFO - Attribute admin_state_up is created 2026-08-14 08:32:05,160 - INFO - Attribute status is created 2026-08-14 08:32:05,160 - INFO - Attribute tenant_id is created 2026-08-14 08:32:05,570 - INFO - Router show with fields ['name', 'admin_state_up', 'status', 'tenant_id'] passed 2026-08-14 08:32:05,570 - INFO - Router Update request {'router': {'name': 'name-59049172'}} 2026-08-14 08:32:05,615 - INFO - Router Update request PASSED,Body : {'router': {'name': 'name-59049172'}} 2026-08-14 08:32:05,616 - INFO - Response : {'router': {'id': 'df7d40f0-d9ea-4b9e-91e7-40371faee2cf', 'name': 'name-59049172', 'tenant_id': '53eff636d5fa417590174774f939a957', 'admin_state_up': True, 'status': 'ACTIVE', 'external_gateway_info': None, 'fq_name': ['default-domain', 'admin', 'name-69620853'], 'description': '', 'project_id': '53eff636d5fa417590174774f939a957'}} 2026-08-14 08:32:05,616 - INFO - Updation of Router df7d40f0-d9ea-4b9e-91e7-40371faee2cf with body {'router': {'name': 'name-59049172'}} passed 2026-08-14 08:32:05,616 - INFO - -------------------------------------------------------------------------------- 2026-08-14 08:32:05,616 - INFO - Router Update request {'router': {'admin_state_up': 'False'}} 2026-08-14 08:32:05,653 - INFO - Router Update request PASSED,Body : {'router': {'admin_state_up': 'False'}} 2026-08-14 08:32:05,654 - INFO - Response : {'router': {'id': 'df7d40f0-d9ea-4b9e-91e7-40371faee2cf', 'name': 'name-59049172', 'tenant_id': '53eff636d5fa417590174774f939a957', 'admin_state_up': False, 'status': 'ACTIVE', 'external_gateway_info': None, 'fq_name': ['default-domain', 'admin', 'name-69620853'], 'description': '', 'project_id': '53eff636d5fa417590174774f939a957'}} 2026-08-14 08:32:05,654 - INFO - Updation of Router df7d40f0-d9ea-4b9e-91e7-40371faee2cf with body {'router': {'admin_state_up': 'False'}} passed 2026-08-14 08:32:05,654 - INFO - -------------------------------------------------------------------------------- 2026-08-14 08:32:05,654 - INFO - Deleting router df7d40f0-d9ea-4b9e-91e7-40371faee2cf 2026-08-14 08:32:05,729 - ERROR - Result of delete router df7d40f0-d9ea-4b9e-91e7-40371faee2cf: () 2026-08-14 08:32:05,730 - INFO - ================================================================================ 2026-08-14 08:32:05,730 - INFO - Router create Request {'router': {'admin_state_up': 'False', 'name': 'name-61057751'}} 2026-08-14 08:32:05,819 - INFO - Router create Response : {'router': {'id': 'f3c85d82-7168-4ae4-8f4a-a696a0061a73', 'name': 'name-61057751', 'tenant_id': '53eff636d5fa417590174774f939a957', 'admin_state_up': False, 'status': 'ACTIVE', 'external_gateway_info': None, 'fq_name': ['default-domain', 'admin', 'name-61057751'], 'description': '', 'project_id': '53eff636d5fa417590174774f939a957'}} 2026-08-14 08:32:05,819 - INFO - Router create PASSED ,Body : {'router': {'admin_state_up': 'False', 'name': 'name-61057751'}} 2026-08-14 08:32:05,834 - INFO - Attribute id is created 2026-08-14 08:32:05,835 - INFO - Attribute name is created 2026-08-14 08:32:05,835 - INFO - Attribute admin_state_up is created 2026-08-14 08:32:05,835 - INFO - Attribute status is created 2026-08-14 08:32:05,835 - INFO - Attribute tenant_id is created 2026-08-14 08:32:06,217 - INFO - Router show with fields ['name', 'admin_state_up', 'status', 'tenant_id'] passed 2026-08-14 08:32:06,217 - INFO - Router Update request {'router': {'name': 'name-44904008'}} 2026-08-14 08:32:06,258 - INFO - Router Update request PASSED,Body : {'router': {'name': 'name-44904008'}} 2026-08-14 08:32:06,259 - INFO - Response : {'router': {'id': 'f3c85d82-7168-4ae4-8f4a-a696a0061a73', 'name': 'name-44904008', 'tenant_id': '53eff636d5fa417590174774f939a957', 'admin_state_up': False, 'status': 'ACTIVE', 'external_gateway_info': None, 'fq_name': ['default-domain', 'admin', 'name-61057751'], 'description': '', 'project_id': '53eff636d5fa417590174774f939a957'}} 2026-08-14 08:32:06,259 - INFO - Updation of Router f3c85d82-7168-4ae4-8f4a-a696a0061a73 with body {'router': {'name': 'name-44904008'}} passed 2026-08-14 08:32:06,259 - INFO - -------------------------------------------------------------------------------- 2026-08-14 08:32:06,259 - INFO - Router Update request {'router': {'admin_state_up': 'True'}} 2026-08-14 08:32:06,306 - INFO - Router Update request PASSED,Body : {'router': {'admin_state_up': 'True'}} 2026-08-14 08:32:06,306 - INFO - Response : {'router': {'id': 'f3c85d82-7168-4ae4-8f4a-a696a0061a73', 'name': 'name-44904008', 'tenant_id': '53eff636d5fa417590174774f939a957', 'admin_state_up': True, 'status': 'ACTIVE', 'external_gateway_info': None, 'fq_name': ['default-domain', 'admin', 'name-61057751'], 'description': '', 'project_id': '53eff636d5fa417590174774f939a957'}} 2026-08-14 08:32:06,306 - INFO - Updation of Router f3c85d82-7168-4ae4-8f4a-a696a0061a73 with body {'router': {'admin_state_up': 'True'}} passed 2026-08-14 08:32:06,306 - INFO - -------------------------------------------------------------------------------- 2026-08-14 08:32:06,306 - INFO - Deleting router f3c85d82-7168-4ae4-8f4a-a696a0061a73 2026-08-14 08:32:06,380 - ERROR - Result of delete router f3c85d82-7168-4ae4-8f4a-a696a0061a73: () 2026-08-14 08:32:06,381 - INFO - ================================================================================ 2026-08-14 08:32:06,381 - INFO - Router create Request {'router': {'tenant_id': 'e5ccbd50-7b02-4b80-9333-11823dcce195', 'name': 'name-11812599'}} 2026-08-14 08:32:06,454 - INFO - Router create Response : {'router': {'id': 'b581f709-cb90-4976-a9e0-090668d12622', 'name': 'name-11812599', 'tenant_id': 'e5ccbd507b024b80933311823dcce195', 'admin_state_up': True, 'status': 'ACTIVE', 'external_gateway_info': None, 'fq_name': ['default-domain', 'ctest-TestCRUD-54726265', 'name-11812599'], 'description': '', 'project_id': 'e5ccbd507b024b80933311823dcce195'}} 2026-08-14 08:32:06,454 - INFO - Router create PASSED ,Body : {'router': {'tenant_id': 'e5ccbd50-7b02-4b80-9333-11823dcce195', 'name': 'name-11812599'}} 2026-08-14 08:32:06,471 - INFO - Attribute id is created 2026-08-14 08:32:06,471 - INFO - Attribute name is created 2026-08-14 08:32:06,471 - INFO - Attribute admin_state_up is created 2026-08-14 08:32:06,471 - INFO - Attribute status is created 2026-08-14 08:32:06,471 - INFO - Attribute tenant_id is created 2026-08-14 08:32:06,919 - INFO - Router show with fields ['name', 'admin_state_up', 'status', 'tenant_id'] passed 2026-08-14 08:32:06,919 - INFO - Router Update request {'router': {'name': 'name-61116026'}} 2026-08-14 08:32:06,956 - INFO - Router Update request PASSED,Body : {'router': {'name': 'name-61116026'}} 2026-08-14 08:32:06,957 - INFO - Response : {'router': {'id': 'b581f709-cb90-4976-a9e0-090668d12622', 'name': 'name-61116026', 'tenant_id': 'e5ccbd507b024b80933311823dcce195', 'admin_state_up': True, 'status': 'ACTIVE', 'external_gateway_info': None, 'fq_name': ['default-domain', 'ctest-TestCRUD-54726265', 'name-11812599'], 'description': '', 'project_id': 'e5ccbd507b024b80933311823dcce195'}} 2026-08-14 08:32:06,957 - INFO - Updation of Router b581f709-cb90-4976-a9e0-090668d12622 with body {'router': {'name': 'name-61116026'}} passed 2026-08-14 08:32:06,957 - INFO - -------------------------------------------------------------------------------- 2026-08-14 08:32:06,957 - INFO - Router Update request {'router': {'admin_state_up': 'False'}} 2026-08-14 08:32:07,001 - INFO - Router Update request PASSED,Body : {'router': {'admin_state_up': 'False'}} 2026-08-14 08:32:07,002 - INFO - Response : {'router': {'id': 'b581f709-cb90-4976-a9e0-090668d12622', 'name': 'name-61116026', 'tenant_id': 'e5ccbd507b024b80933311823dcce195', 'admin_state_up': False, 'status': 'ACTIVE', 'external_gateway_info': None, 'fq_name': ['default-domain', 'ctest-TestCRUD-54726265', 'name-11812599'], 'description': '', 'project_id': 'e5ccbd507b024b80933311823dcce195'}} 2026-08-14 08:32:07,002 - INFO - Updation of Router b581f709-cb90-4976-a9e0-090668d12622 with body {'router': {'admin_state_up': 'False'}} passed 2026-08-14 08:32:07,002 - INFO - -------------------------------------------------------------------------------- 2026-08-14 08:32:07,002 - INFO - Deleting router b581f709-cb90-4976-a9e0-090668d12622 2026-08-14 08:32:07,079 - ERROR - Result of delete router b581f709-cb90-4976-a9e0-090668d12622: () 2026-08-14 08:32:07,079 - INFO - ================================================================================ 2026-08-14 08:32:07,079 - INFO - Deleting Security group: ['default-domain', 'ctest-TestCRUD-54726265', 'ctest-proj-sg2-03325223'] 2026-08-14 08:32:07,144 - INFO - Deleting Security group: ['default-domain', 'ctest-TestCRUD-54726265', 'ctest-proj-sg1-43984525'] 2026-08-14 08:32:07,220 - INFO - Deleting Security group: ['default-domain', 'admin', 'ctest-admin-sg2-24673605'] 2026-08-14 08:32:07,288 - INFO - Deleting Security group: ['default-domain', 'admin', 'ctest-admin-sg1-55937852'] 2026-08-14 08:32:07,609 - DEBUG - No XMPP flaps were noticed during the test 2026-08-14 08:32:07,610 - INFO - END TEST : test_router_crud : PASSED[0:00:03] 2026-08-14 08:32:07,610 - INFO - -------------------------------------------------------------------------------- 2026-08-14 08:32:08,335 - INFO - Deleted project: ctest-TestCRUD-54726265, ID : e5ccbd50-7b02-4b80-9333-11823dcce195