From 9e7748bc23dc90d54088989a9b00b71d613aceda Mon Sep 17 00:00:00 2001 From: Yusuke Tsutsumi Date: Sat, 8 Oct 2022 18:47:52 +0000 Subject: [PATCH] tests: fixing bootstrap code and invalid instance - bootstrap code was not correctly instantiating the cloud function. - compute_instance has a typo from a previous commit. - re-disabling forwarding rule as it still has the backend_service fingerprint requirement --- scripts/bootstrap-project.sh | 4 ++-- tests/integration/targets/gcp_compute_forwarding_rule/aliases | 1 + .../targets/gcp_compute_instance/tasks/autogen.yml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/bootstrap-project.sh b/scripts/bootstrap-project.sh index fbf49a7..0bce608 100755 --- a/scripts/bootstrap-project.sh +++ b/scripts/bootstrap-project.sh @@ -56,10 +56,10 @@ fi BUCKET_NAME="gs://${PROJECT_ID}-ansible-testing" if ! gcloud storage buckets describe "${BUCKET_NAME}" > /dev/null; then - gcloud storage buckets create "gs://${PROJECT_ID}-ansible-testing" --project="${PROJECT_ID}" + gcloud storage buckets create "${BUCKET_NAME}" --project="${PROJECT_ID}" fi -gsutil cp ./test-fixtures/cloud-function.zip "gs://${PROJECT_ID}-ansible-testing" +gsutil cp ./test-fixtures/cloud-function.zip "${BUCKET_NAME}" # The following is hard to automate, so echo diff --git a/tests/integration/targets/gcp_compute_forwarding_rule/aliases b/tests/integration/targets/gcp_compute_forwarding_rule/aliases index 26507c2..9812f01 100644 --- a/tests/integration/targets/gcp_compute_forwarding_rule/aliases +++ b/tests/integration/targets/gcp_compute_forwarding_rule/aliases @@ -1 +1,2 @@ cloud/gcp +unsupported diff --git a/tests/integration/targets/gcp_compute_instance/tasks/autogen.yml b/tests/integration/targets/gcp_compute_instance/tasks/autogen.yml index f96d489..57ac983 100644 --- a/tests/integration/targets/gcp_compute_instance/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_instance/tasks/autogen.yml @@ -80,7 +80,7 @@ boot: 'true' source: "{{ disk }}" - auto_delete: 'true' - interface: SCS + interface: NVME type: SCRATCH initialize_params: disk_type: local-ssd