Home
last modified time | relevance | path

Searched refs:compute_client (Results 1 – 15 of 15) sorted by relevance

/tools/acloud/internal/lib/
Dgcompute_client_test.py81 self.compute_client = gcompute_client.ComputeClient(
83 self.compute_client._service = mock.MagicMock()
103 self.compute_client._service.globalOperations = mock.MagicMock(
106 self.compute_client._service.zoneOperations = mock.MagicMock(
109 self.compute_client._service.regionOperations = mock.MagicMock(
119 status = self.compute_client._GetOperationStatus(
130 status = self.compute_client._GetOperationStatus(
143 self.compute_client._GetOperationStatus(
157 self.compute_client._GetOperationStatus,
167 self.compute_client.WaitOnOperation(
[all …]
/tools/acloud/public/
Ddevice_driver_test.py66 self.compute_client = mock.MagicMock()
70 return_value=self.compute_client)
94 self.compute_client.GetInstanceIP.return_value = fake_ip
95 self.compute_client.GenerateImageName.return_value = fake_image
96 self.compute_client.GenerateInstanceName.return_value = fake_instance
97 self.compute_client.GetDataDiskName.return_value = disk_name
106 self.compute_client.CreateImage.assert_called_with(
108 self.compute_client.CreateInstance.assert_called_with(
114 self.compute_client.DeleteImage.assert_called_with(fake_image)
140 self.compute_client.GetInstanceIP.return_value = fake_ip
[all …]
Ddevice_driver.py312 def _FetchSerialLogsFromDevices(compute_client, instance_names, output_file, argument
326 serial_log = compute_client.GetSerialPortOutput(
374 compute_client = android_compute_client.AndroidComputeClient(cfg,
426 compute_client,
454 compute_client = android_compute_client.AndroidComputeClient(cfg,
456 zone_instances = compute_client.GetZonesByInstances(instance_names)
460 deleted_ins, failed_ins, error_ins = compute_client.DeleteInstances(
484 compute_client = android_compute_client.AndroidComputeClient(
487 if not compute_client.CheckAccess():
/tools/acloud/create/
Dcheeps_remote_image_remote_instance_test.py37 self.compute_client = mock.MagicMock()
41 return_value=self.compute_client)
45 return_value=self.compute_client)
53 self.compute_client.GetInstanceIP.return_value = self.IP
54 self.compute_client.GenerateImageName.return_value = self.IMAGE
55 self.compute_client.GenerateInstanceName.return_value = self.INSTANCE
88 self.compute_client.CreateInstance.assert_called_with(
120 self.compute_client.CreateInstance.assert_called_with(
Dcheeps_remote_image_remote_instance.py90 compute_client = cheeps_compute_client.CheepsComputeClient(
92 super(CheepsDeviceFactory, self).__init__(compute_client)
/tools/acloud/public/actions/
Dcreate_cuttlefish_action_test.py64 self.compute_client = mock.MagicMock()
68 return_value=self.compute_client)
72 return_value=self.compute_client)
76 return_value=self.compute_client)
106 self.compute_client.GetInstanceIP.return_value = self.IP
107 self.compute_client.GenerateImageName.return_value = self.IMAGE
108 self.compute_client.GenerateInstanceName.return_value = self.INSTANCE
130 self.compute_client.CreateInstance.assert_called_with(
Dcreate_goldfish_action_test.py60 self.compute_client = mock.MagicMock()
64 return_value=self.compute_client)
68 return_value=self.compute_client)
105 self.compute_client.GetInstanceIP.return_value = self.IP
106 self.compute_client.GenerateImageName.return_value = self.IMAGE
107 self.compute_client.GenerateInstanceName.return_value = self.INSTANCE
132 self.compute_client.CreateInstance.assert_called_with(
188 self.compute_client.CreateInstance.assert_called_with(
215 self.compute_client.GetInstanceIP.return_value = self.IP
216 self.compute_client.GenerateImageName.return_value = self.IMAGE
[all …]
Dbase_device_factory.py29 def __init__(self, compute_client): argument
31 self._compute_client = compute_client
Dcommon_operations_test.py53 self.compute_client = mock.MagicMock()
57 return_value=self.compute_client)
59 self.Patch(self.compute_client, "GetInstanceIP", return_value=self.IP)
65 return_value=self.compute_client)
Dcreate_cuttlefish_action.py64 compute_client = cvd_compute_client_multi_stage.CvdComputeClient(
68 compute_client = cvd_compute_client.CvdComputeClient(
70 super(CuttlefishDeviceFactory, self).__init__(compute_client)
Dremote_instance_cf_device_factory.py63 compute_client = cvd_compute_client_multi_stage.CvdComputeClient(
69 super(RemoteInstanceDeviceFactory, self).__init__(compute_client)
/tools/acloud/public/acloud_kernel/
Dkernel_swapper_test.py39 self.compute_client = mock.MagicMock()
43 return_value=self.compute_client)
48 self.compute_client.GetInstanceIP.return_value = self.fake_ip
76 self.compute_client.WaitForBoot.assert_called_once_with(
/tools/acloud/reconnect/
Dreconnect.py73 compute_client = android_compute_client.AndroidComputeClient(
75 compute_client.AddSshRsaInstanceMetadata(
/tools/acloud/list/
Dlist.py106 compute_client = gcompute_client.ComputeClient(cfg, credentials)
108 all_instances = compute_client.ListInstances(instance_filter=filter_item)
/tools/acloud/delete/
Ddelete.py197 compute_client = cvd_compute_client_multi_stage.CvdComputeClient(
206 compute_client.InitRemoteHost(ssh, remote_host, host_user)