tests: enable more tests (#506)

Enabling and fixing the following:

gcp_tpu_node
gcp_storage_bucket
gcp_spanner_instance
gcp_kms_key_ring
gcp_redis_instance
gcp_iam_service_account
gcp_compute_ssl_certificate
This commit is contained in:
Yusuke Tsutsumi 2022-10-10 21:39:33 +00:00 committed by GitHub
commit d802c99959
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 56 additions and 61 deletions

View file

@ -133,7 +133,6 @@ EXAMPLES = '''
- name: create a SSL certificate
google.cloud.gcp_compute_ssl_certificate:
name: test_object
region: us-central1
description: A certificate for testing. Do not use this certificate in production
certificate: |-
-----BEGIN CERTIFICATE-----

View file

@ -134,7 +134,7 @@ EXAMPLES = '''
- name: create a project
google.cloud.gcp_resourcemanager_project:
name: My Sample Project
id: alextest-{{ 10000000000 | random }}
id: ansible-test-{{ 10000000000 | random }}
auth_kind: serviceaccount
service_account_file: "/tmp/auth.pem"
parent:

View file

@ -21,6 +21,7 @@ SERVICE_LIST=(
"dns"
"file.googleapis.com"
"ml.googleapis.com"
"redis.googleapis.com"
"runtimeconfig.googleapis.com"
"sourcerepo.googleapis.com"
"spanner.googleapis.com"

View file

@ -1,2 +1 @@
cloud/gcp
unsupported

View file

@ -1 +1,2 @@
cloud/gcp
unsupported

View file

@ -1,2 +1 @@
cloud/gcp
unsupported

View file

@ -16,7 +16,6 @@
- name: delete a SSL certificate
google.cloud.gcp_compute_ssl_certificate:
name: "{{ resource_name }}"
region: us-central1
description: A certificate for testing. Do not use this certificate in production
certificate: |-
-----BEGIN CERTIFICATE-----
@ -50,7 +49,6 @@
- name: create a SSL certificate
google.cloud.gcp_compute_ssl_certificate:
name: "{{ resource_name }}"
region: us-central1
description: A certificate for testing. Do not use this certificate in production
certificate: |-
-----BEGIN CERTIFICATE-----
@ -103,7 +101,6 @@
- name: create a SSL certificate that already exists
google.cloud.gcp_compute_ssl_certificate:
name: "{{ resource_name }}"
region: us-central1
description: A certificate for testing. Do not use this certificate in production
certificate: |-
-----BEGIN CERTIFICATE-----
@ -142,7 +139,6 @@
- name: delete a SSL certificate
google.cloud.gcp_compute_ssl_certificate:
name: "{{ resource_name }}"
region: us-central1
description: A certificate for testing. Do not use this certificate in production
certificate: |-
-----BEGIN CERTIFICATE-----
@ -195,7 +191,6 @@
- name: delete a SSL certificate that does not exist
google.cloud.gcp_compute_ssl_certificate:
name: "{{ resource_name }}"
region: us-central1
description: A certificate for testing. Do not use this certificate in production
certificate: |-
-----BEGIN CERTIFICATE-----

View file

@ -1,2 +1 @@
cloud/gcp
unsupported

View file

@ -15,7 +15,7 @@
# Pre-test setup
- name: delete a service account
google.cloud.gcp_iam_service_account:
name: sa-{{ resource_name.split("-")[-1] }}@graphite-playground.google.com.iam.gserviceaccount.com
name: sa-{{ resource_name.split("-")[-1] }}@{{ gcp_project }}.iam.gserviceaccount.com
display_name: My Ansible test key
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
@ -24,7 +24,7 @@
#----------------------------------------------------------
- name: create a service account
google.cloud.gcp_iam_service_account:
name: sa-{{ resource_name.split("-")[-1] }}@graphite-playground.google.com.iam.gserviceaccount.com
name: sa-{{ resource_name.split("-")[-1] }}@{{ gcp_project }}.iam.gserviceaccount.com
display_name: My Ansible test key
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
@ -46,11 +46,11 @@
- name: verify that command succeeded
assert:
that:
- results['resources'] | map(attribute='name') | select("match", ".*sa-{{ resource_name.split("-")[-1] }}@graphite-playground.google.com.iam.gserviceaccount.com.*") | list | length == 1
- results['resources'] | map(attribute='name') | select("match", ".*sa-{{ resource_name.split("-")[-1] }}@{{ gcp_project }}.iam.gserviceaccount.com.*") | list | length == 1
# ----------------------------------------------------------------------------
- name: create a service account that already exists
google.cloud.gcp_iam_service_account:
name: sa-{{ resource_name.split("-")[-1] }}@graphite-playground.google.com.iam.gserviceaccount.com
name: sa-{{ resource_name.split("-")[-1] }}@{{ gcp_project }}.iam.gserviceaccount.com
display_name: My Ansible test key
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
@ -64,7 +64,7 @@
#----------------------------------------------------------
- name: delete a service account
google.cloud.gcp_iam_service_account:
name: sa-{{ resource_name.split("-")[-1] }}@graphite-playground.google.com.iam.gserviceaccount.com
name: sa-{{ resource_name.split("-")[-1] }}@{{ gcp_project }}.iam.gserviceaccount.com
display_name: My Ansible test key
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
@ -86,11 +86,11 @@
- name: verify that command succeeded
assert:
that:
- results['resources'] | map(attribute='name') | select("match", ".*sa-{{ resource_name.split("-")[-1] }}@graphite-playground.google.com.iam.gserviceaccount.com.*") | list | length == 0
- results['resources'] | map(attribute='name') | select("match", ".*sa-{{ resource_name.split("-")[-1] }}@{{ gcp_project }}.iam.gserviceaccount.com.*") | list | length == 0
# ----------------------------------------------------------------------------
- name: delete a service account that does not exist
google.cloud.gcp_iam_service_account:
name: sa-{{ resource_name.split("-")[-1] }}@graphite-playground.google.com.iam.gserviceaccount.com
name: sa-{{ resource_name.split("-")[-1] }}@{{ gcp_project }}.iam.gserviceaccount.com
display_name: My Ansible test key
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"

View file

@ -1,2 +1 @@
cloud/gcp
unsupported

View file

@ -1,2 +1 @@
cloud/gcp
unsupported

View file

@ -19,6 +19,7 @@
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file }}"
auto_create_subnetworks: true
state: present
register: network
- name: delete a instance
@ -165,6 +166,7 @@
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file }}"
auto_create_subnetworks: true
state: absent
register: network
ignore_errors: true

View file

@ -16,7 +16,7 @@
- name: delete a project
google.cloud.gcp_resourcemanager_project:
name: My Sample Project
id: alextest-{{ 10000000000 | random }}
id: ansible-test-{{ 10000000000 | random }}
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file }}"
parent:
@ -27,7 +27,7 @@
- name: create a project
google.cloud.gcp_resourcemanager_project:
name: My Sample Project
id: alextest-{{ 10000000000 | random }}
id: ansible-test-{{ 10000000000 | random }}
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file }}"
parent:
@ -55,7 +55,7 @@
- name: create a project that already exists
google.cloud.gcp_resourcemanager_project:
name: My Sample Project
id: alextest-{{ 10000000000 | random }}
id: ansible-test-{{ 10000000000 | random }}
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file }}"
parent:
@ -71,7 +71,7 @@
- name: delete a project
google.cloud.gcp_resourcemanager_project:
name: My Sample Project
id: alextest-{{ 10000000000 | random }}
id: ansible-test-{{ 10000000000 | random }}
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file }}"
parent:
@ -99,7 +99,7 @@
- name: delete a project that does not exist
google.cloud.gcp_resourcemanager_project:
name: My Sample Project
id: alextest-{{ 10000000000 | random }}
id: ansible-test-{{ 10000000000 | random }}
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file }}"
parent:

View file

@ -71,6 +71,11 @@
assert:
that:
- result.changed == true
# TODO(@toumorokoshi): investigate if the pause helps
# prevent quota issues.
# - name: Pause for 1 minute to keep from hitting quota limit
# ansible.builtin.pause:
# minutes: 1
- name: verify that service was deleted
google.cloud.gcp_serviceusage_service_info:
project: "{{ gcp_project }}"

View file

@ -1,2 +1 @@
cloud/gcp
unsupported

View file

@ -1,2 +1 @@
cloud/gcp
unsupported

View file

@ -1,2 +1,2 @@
---
resource_name: "{{ resource_prefix }}"
resource_name: "{{ gcp_project }}-ansible-test-bucket"

View file

@ -15,7 +15,7 @@
# Pre-test setup
- name: delete a bucket
google.cloud.gcp_storage_bucket:
name: ansible-storage-module
name: "{{ resource_name }}"
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file }}"
@ -23,7 +23,7 @@
#----------------------------------------------------------
- name: create a bucket
google.cloud.gcp_storage_bucket:
name: ansible-storage-module
name: "{{ resource_name }}"
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file }}"
@ -36,7 +36,7 @@
# ----------------------------------------------------------------------------
- name: create a bucket that already exists
google.cloud.gcp_storage_bucket:
name: ansible-storage-module
name: "{{ resource_name }}"
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file }}"
@ -49,7 +49,7 @@
#----------------------------------------------------------
- name: delete a bucket
google.cloud.gcp_storage_bucket:
name: ansible-storage-module
name: "{{ resource_name }}"
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file }}"
@ -62,7 +62,7 @@
# ----------------------------------------------------------------------------
- name: delete a bucket that does not exist
google.cloud.gcp_storage_bucket:
name: ansible-storage-module
name: "{{ resource_name }}"
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file }}"

View file

@ -1,2 +1 @@
cloud/gcp
unsupported

View file

@ -16,9 +16,9 @@
- name: delete a node
google.cloud.gcp_tpu_node:
name: "{{ resource_name }}"
zone: us-central1-b
accelerator_type: v3-8
tensorflow_version: '1.11'
zone: us-central1-a
accelerator_type: "v2-32"
tensorflow_version: '2.10.0'
cidr_block: 10.2.0.0/29
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
@ -28,9 +28,9 @@
- name: create a node
google.cloud.gcp_tpu_node:
name: "{{ resource_name }}"
zone: us-central1-b
accelerator_type: v3-8
tensorflow_version: '1.11'
zone: us-central1-a
accelerator_type: "v2-32"
tensorflow_version: '2.10.0'
cidr_block: 10.2.0.0/29
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
@ -43,7 +43,7 @@
- result.changed == true
- name: verify that node was created
google.cloud.gcp_tpu_node_info:
zone: us-central1-b
zone: us-central1-a
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file }}"
@ -58,9 +58,9 @@
- name: create a node that already exists
google.cloud.gcp_tpu_node:
name: "{{ resource_name }}"
zone: us-central1-b
accelerator_type: v3-8
tensorflow_version: '1.11'
zone: us-central1-a
accelerator_type: "v2-32"
tensorflow_version: '2.10.0'
cidr_block: 10.2.0.0/29
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
@ -75,9 +75,9 @@
- name: delete a node
google.cloud.gcp_tpu_node:
name: "{{ resource_name }}"
zone: us-central1-b
accelerator_type: v3-8
tensorflow_version: '1.11'
zone: us-central1-a
accelerator_type: "v2-32"
tensorflow_version: '2.10.0'
cidr_block: 10.2.0.0/29
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
@ -90,7 +90,7 @@
- result.changed == true
- name: verify that node was deleted
google.cloud.gcp_tpu_node_info:
zone: us-central1-b
zone: us-central1-a
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file }}"
@ -105,9 +105,9 @@
- name: delete a node that does not exist
google.cloud.gcp_tpu_node:
name: "{{ resource_name }}"
zone: us-central1-b
accelerator_type: v3-8
tensorflow_version: '1.11'
zone: us-central1-a
accelerator_type: "v2-32"
tensorflow_version: '2.10.0'
cidr_block: 10.2.0.0/29
project: "{{ gcp_project }}"
auth_kind: "{{ gcp_cred_kind }}"