Exemplo n.º 1
0
 def test_create_probe_external(self):
     fake_network = {'network': {'id': 'fake_net',
                                 'tenant_id': 'fake_tenant',
                                 'router:external': True,
                                 'subnets': ['fake_subnet']}}
     self.client.show_network.return_value = fake_network
     cmd = commands.CreateProbe(self.app, None)
     cmd_parser = cmd.get_parser('create_probe')
     args = ['fake_net']
     parsed_args = cmd_parser.parse_args(args)
     cmd.run(parsed_args)
     fake_port = {'port':
                 {'device_owner': DEVICE_OWNER_PROBE,
                  'admin_state_up': True,
                  'network_id': 'fake_net',
                  'tenant_id': 'fake_tenant',
                  'fixed_ips': [{'subnet_id': 'fake_subnet'}],
                  'device_id': socket.gethostname()}}
     namespace = 'qprobe-fake_port'
     self.client.assert_has_calls([mock.call.show_network('fake_net'),
                                   mock.call.show_subnet('fake_subnet'),
                                   mock.call.create_port(fake_port),
                                   mock.call.show_subnet('fake_subnet')])
     self.driver.assert_has_calls([mock.call.get_device_name(mock.ANY),
                                   mock.call.plug('fake_net',
                                                  'fake_port',
                                                  'tap12345678-12',
                                                  'aa:bb:cc:dd:ee:ffa',
                                                  bridge='br-ex',
                                                  namespace=namespace),
                                   mock.call.init_l3('tap12345678-12',
                                                     ['10.0.0.3/24'],
                                                     namespace=namespace
                                                     )])
 def _test_create_probe(self, device_owner):
     cmd = commands.CreateProbe(self.app, None)
     cmd_parser = cmd.get_parser('create_probe')
     if device_owner == DEVICE_OWNER_COMPUTE_PROBE:
         args = ['fake_net', '--device-owner', 'compute']
     else:
         args = ['fake_net']
     parsed_args = cmd_parser.parse_args(args)
     cmd.run(parsed_args)
     fake_port = {
         'port': {
             'device_owner': device_owner,
             'admin_state_up': True,
             'network_id': 'fake_net',
             'tenant_id': 'fake_tenant',
             'fixed_ips': [{
                 'subnet_id': 'fake_subnet'
             }],
             'device_id': socket.gethostname()
         }
     }
     namespace = 'qprobe-fake_port'
     self.client.assert_has_calls([
         mock.call.show_network('fake_net'),
         mock.call.show_subnet('fake_subnet'),
         mock.call.create_port(fake_port),
         mock.call.show_subnet('fake_subnet')
     ])
     self.driver.assert_has_calls([
         mock.call.get_device_name(mock.ANY),
         mock.call.plug('fake_net',
                        'fake_port',
                        'tap12345678-12',
                        'aa:bb:cc:dd:ee:ffa',
                        bridge=None,
                        namespace=namespace),
         mock.call.init_l3('tap12345678-12', ['10.0.0.3/24'],
                           namespace=namespace)
     ])