Пример #1
0
 def _mock_router_mapping_db_calls(self, ret_value):
     # Mock relevant db calls
     # This will allow for avoiding setting up the plugin
     # for creating db entries
     mock.patch(nicira_method('get_nsx_router_id',
                              module_name='dbexts.nicira_db'),
                return_value=ret_value).start()
     mock.patch(nicira_method('add_neutron_nsx_router_mapping',
                              module_name='dbexts.nicira_db')).start()
Пример #2
0
 def _mock_router_mapping_db_calls(self, ret_value):
     # Mock relevant db calls
     # This will allow for avoiding setting up the plugin
     # for creating db entries
     mock.patch(nicira_method('get_nsx_router_id',
                              module_name='dbexts.nicira_db'),
                return_value=ret_value).start()
     mock.patch(
         nicira_method('add_neutron_nsx_router_mapping',
                       module_name='dbexts.nicira_db')).start()
Пример #3
0
 def _mock_db_calls(self, get_switch_port_id_ret_value):
     # Mock relevant db calls
     # This will allow for avoiding setting up the plugin
     # for creating db entries
     mock.patch(nicira_method('get_nsx_switch_and_port_id',
                              module_name='dbexts.nicira_db'),
                return_value=get_switch_port_id_ret_value).start()
     mock.patch(nicira_method('add_neutron_nsx_port_mapping',
                              module_name='dbexts.nicira_db')).start()
     mock.patch(nicira_method('delete_neutron_nsx_port_mapping',
                              module_name='dbexts.nicira_db')).start()
     self.addCleanup(mock.patch.stopall)
Пример #4
0
 def _mock_db_calls(self, get_switch_port_id_ret_value):
     # Mock relevant db calls
     # This will allow for avoiding setting up the plugin
     # for creating db entries
     mock.patch(nicira_method('get_nsx_switch_and_port_id',
                              module_name='dbexts.nicira_db'),
                return_value=get_switch_port_id_ret_value).start()
     mock.patch(
         nicira_method('add_neutron_nsx_port_mapping',
                       module_name='dbexts.nicira_db')).start()
     mock.patch(
         nicira_method('delete_neutron_nsx_port_mapping',
                       module_name='dbexts.nicira_db')).start()
     self.addCleanup(mock.patch.stopall)
Пример #5
0
 def test_get_nsx_router_id_no_mapping_returns_None(self):
     # This test verifies that the function returns None if the mapping
     # are not found both in the db and in the backend
     self._mock_router_mapping_db_calls(None)
     with mock.patch(nicira_method('query_lrouters'),
                     return_value=[]):
         self._verify_get_nsx_router_id(None)
Пример #6
0
 def test_get_nsx_switch_ids_no_mapping_returns_None(self):
     # This test verifies that the function returns None if the mappings
     # are not found both in the db and in the backend
     self._mock_network_mapping_db_calls(None)
     with mock.patch(nicira_method('get_lswitches'),
                     return_value=[]):
         self._verify_get_nsx_switch_ids(None)
Пример #7
0
 def test_get_nsx_router_id_no_mapping_returns_None(self):
     # This test verifies that the function returns None if the mapping
     # are not found both in the db and in the backend
     self._mock_router_mapping_db_calls(None)
     with mock.patch(nicira_method('query_lrouters',
                                   module_name='nsxlib.router'),
                     return_value=[]):
         self._verify_get_nsx_router_id(None)
Пример #8
0
 def test_get_nsx_switch_ids_no_mapping_returns_None(self):
     # This test verifies that the function returns None if the mappings
     # are not found both in the db and in the backend
     self._mock_network_mapping_db_calls(None)
     with mock.patch(nicira_method('get_lswitches',
                                   module_name='nsxlib.switch'),
                     return_value=[]):
         self._verify_get_nsx_switch_ids(None)
Пример #9
0
 def test_get_nsx_switch_and_port_id_no_mappings_returns_none(self):
     # This test verifies that the function return (None, None) if the
     # mappings are not found both in the db and the backend
     ret_value = None, None
     self._mock_db_calls(ret_value)
     with mock.patch(nicira_method('query_lswitch_lports'),
                     return_value=[]):
         self._verify_get_nsx_switch_and_port_id(None, None)
Пример #10
0
 def test_get_nsx_router_id_no_db_mapping(self):
     # This test is representative of the case where db mappings where not
     # found for a given port identifier
     exp_lr_uuid = uuidutils.generate_uuid()
     self._mock_router_mapping_db_calls(None)
     with mock.patch(nicira_method('query_lrouters'),
                     return_value=[{'uuid': exp_lr_uuid}]):
         self._verify_get_nsx_router_id(exp_lr_uuid)
Пример #11
0
 def test_get_nsx_switch_and_port_id_no_mappings_returns_none(self):
     # This test verifies that the function return (None, None) if the
     # mappings are not found both in the db and the backend
     ret_value = None, None
     self._mock_port_mapping_db_calls(ret_value)
     with mock.patch(nicira_method('query_lswitch_lports'),
                     return_value=[]):
         self._verify_get_nsx_switch_and_port_id(None, None)
Пример #12
0
 def test_get_nsx_switch_ids_no_db_mapping(self):
     # This test is representative of the case where db mappings where not
     # found for a given network identifier
     exp_ls_uuids = [uuidutils.generate_uuid()]
     self._mock_network_mapping_db_calls(None)
     with mock.patch(nicira_method('get_lswitches'),
                     return_value=[{'uuid': uuid}
                                   for uuid in exp_ls_uuids]):
         self._verify_get_nsx_switch_ids(exp_ls_uuids)
Пример #13
0
 def test_get_nsx_router_id_no_db_mapping(self):
     # This test is representative of the case where db mappings where not
     # found for a given port identifier
     exp_lr_uuid = uuidutils.generate_uuid()
     self._mock_router_mapping_db_calls(None)
     with mock.patch(nicira_method('query_lrouters',
                                   module_name='nsxlib.router'),
                     return_value=[{
                         'uuid': exp_lr_uuid
                     }]):
         self._verify_get_nsx_router_id(exp_lr_uuid)
Пример #14
0
 def test_get_nsx_switch_ids_no_db_mapping(self):
     # This test is representative of the case where db mappings where not
     # found for a given network identifier
     exp_ls_uuids = [uuidutils.generate_uuid()]
     self._mock_network_mapping_db_calls(None)
     with mock.patch(nicira_method('get_lswitches',
                                   module_name='nsxlib.switch'),
                     return_value=[{
                         'uuid': uuid
                     } for uuid in exp_ls_uuids]):
         self._verify_get_nsx_switch_ids(exp_ls_uuids)
Пример #15
0
 def test_get_nsx_switch_and_port_id_only_port_db_mapping(self):
     # This test is representative of the case in which a port with a nvp
     # db mapping in the havana db was upgraded to icehouse
     exp_ls_uuid = uuidutils.generate_uuid()
     exp_lp_uuid = uuidutils.generate_uuid()
     ret_value = None, exp_lp_uuid
     self._mock_port_mapping_db_calls(ret_value)
     with mock.patch(nicira_method('query_lswitch_lports'),
                     return_value=[{'uuid': exp_lp_uuid,
                                    '_relations': {
                                        'LogicalSwitchConfig': {
                                            'uuid': exp_ls_uuid}
                                    }}]):
         self._verify_get_nsx_switch_and_port_id(exp_ls_uuid, exp_lp_uuid)
Пример #16
0
 def test_get_nsx_switch_and_port_id_no_db_mapping(self):
     # This test is representative of the case where db mappings where not
     # found for a given port identifier
     exp_ls_uuid = uuidutils.generate_uuid()
     exp_lp_uuid = uuidutils.generate_uuid()
     ret_value = None, None
     self._mock_port_mapping_db_calls(ret_value)
     with mock.patch(nicira_method('query_lswitch_lports'),
                     return_value=[{'uuid': exp_lp_uuid,
                                    '_relations': {
                                        'LogicalSwitchConfig': {
                                            'uuid': exp_ls_uuid}
                                    }}]):
         self._verify_get_nsx_switch_and_port_id(exp_ls_uuid, exp_lp_uuid)
Пример #17
0
 def test_get_nsx_switch_and_port_id_only_port_db_mapping(self):
     # This test is representative of the case in which a port with a nvp
     # db mapping in the havana db was upgraded to icehouse
     exp_ls_uuid = uuidutils.generate_uuid()
     exp_lp_uuid = uuidutils.generate_uuid()
     ret_value = None, exp_lp_uuid
     self._mock_db_calls(ret_value)
     with mock.patch(nicira_method('query_lswitch_lports'),
                     return_value=[{
                         'uuid': exp_lp_uuid,
                         '_relations': {
                             'LogicalSwitchConfig': {
                                 'uuid': exp_ls_uuid
                             }
                         }
                     }]):
         self._verify_get_nsx_switch_and_port_id(exp_ls_uuid, exp_lp_uuid)
Пример #18
0
 def test_get_nsx_switch_and_port_id_no_db_mapping(self):
     # This test is representative of the case where db mappings where not
     # found for a given port identifier
     exp_ls_uuid = uuidutils.generate_uuid()
     exp_lp_uuid = uuidutils.generate_uuid()
     ret_value = None, None
     self._mock_db_calls(ret_value)
     with mock.patch(nicira_method('query_lswitch_lports'),
                     return_value=[{
                         'uuid': exp_lp_uuid,
                         '_relations': {
                             'LogicalSwitchConfig': {
                                 'uuid': exp_ls_uuid
                             }
                         }
                     }]):
         self._verify_get_nsx_switch_and_port_id(exp_ls_uuid, exp_lp_uuid)