Example #1
0
 def test_successful_instance_group_update_no_instance_template_field(self, mock_hook):
     instance_group_manager_no_template = deepcopy(GCE_INSTANCE_GROUP_MANAGER_GET)
     del instance_group_manager_no_template['instanceTemplate']
     mock_hook.return_value.get_instance_group_manager.return_value = \
         instance_group_manager_no_template
     op = ComputeEngineInstanceGroupUpdateManagerTemplateOperator(
         project_id=GCP_PROJECT_ID,
         zone=GCE_ZONE,
         resource_id=GCE_INSTANCE_GROUP_MANAGER_NAME,
         task_id='id',
         source_template=GCE_INSTANCE_TEMPLATE_SOURCE_URL,
         destination_template=GCE_INSTANCE_TEMPLATE_DESTINATION_URL
     )
     result = op.execute(None)
     mock_hook.assert_called_once_with(api_version='beta',
                                       gcp_conn_id='google_cloud_default')
     expected_patch_no_instance_template = \
         deepcopy(GCE_INSTANCE_GROUP_MANAGER_EXPECTED_PATCH)
     del expected_patch_no_instance_template['instanceTemplate']
     mock_hook.return_value.patch_instance_group_manager.assert_called_once_with(
         project_id=GCP_PROJECT_ID,
         zone=GCE_ZONE,
         resource_id=GCE_INSTANCE_GROUP_MANAGER_NAME,
         body=expected_patch_no_instance_template,
         request_id=None
     )
     self.assertTrue(result)
Example #2
0
 def test_successful_instance_group_update_with_request_id(self, mock_hook):
     mock_hook.return_value.get_instance_group_manager.return_value = deepcopy(
         GCE_INSTANCE_GROUP_MANAGER_GET
     )
     op = ComputeEngineInstanceGroupUpdateManagerTemplateOperator(
         project_id=GCP_PROJECT_ID,
         zone=GCE_ZONE,
         resource_id=GCE_INSTANCE_GROUP_MANAGER_NAME,
         task_id='id',
         source_template=GCE_INSTANCE_TEMPLATE_SOURCE_URL,
         request_id=GCE_INSTANCE_GROUP_MANAGER_REQUEST_ID,
         destination_template=GCE_INSTANCE_TEMPLATE_DESTINATION_URL,
     )
     result = op.execute(None)
     mock_hook.assert_called_once_with(
         api_version='beta', gcp_conn_id='google_cloud_default', impersonation_chain=None,
     )
     mock_hook.return_value.patch_instance_group_manager.assert_called_once_with(
         project_id=GCP_PROJECT_ID,
         zone=GCE_ZONE,
         resource_id=GCE_INSTANCE_GROUP_MANAGER_NAME,
         body=GCE_INSTANCE_GROUP_MANAGER_EXPECTED_PATCH,
         request_id=GCE_INSTANCE_GROUP_MANAGER_REQUEST_ID,
     )
     self.assertTrue(result)
Example #3
0
 def test_try_to_use_non_existing_template(self, mock_hook):
     mock_hook.return_value.get_instance_group_manager.return_value = \
         deepcopy(GCE_INSTANCE_GROUP_MANAGER_GET)
     op = ComputeEngineInstanceGroupUpdateManagerTemplateOperator(
         project_id=GCP_PROJECT_ID,
         zone=GCE_ZONE,
         resource_id=GCE_INSTANCE_GROUP_MANAGER_NAME,
         task_id='id',
         source_template=GCE_INSTANCE_TEMPLATE_NON_EXISTING_URL,
         destination_template=GCE_INSTANCE_TEMPLATE_DESTINATION_URL)
     result = op.execute(None)
     mock_hook.assert_called_once_with(api_version='beta',
                                       gcp_conn_id='google_cloud_default')
     mock_hook.return_value.patch_instance_group_manager.assert_not_called()
     self.assertTrue(result)