Commit graph

233 commits

Author SHA1 Message Date
Chris Hawk
4ee4cc60b5 Enable required YAML lint rules and fix results 2025-01-14 15:15:59 -08:00
Chris Hawk
198adf8cfd
Merge branch 'master' into feature/#657 2024-11-11 16:25:50 -08:00
Sieradzki, Lukasz
2b35fbf404 https://github.com/ansible-collections/google.cloud/issues/657 2024-11-08 23:02:23 +01:00
Sieradzki, Lukasz
8b9a2c70dd https://github.com/ansible-collections/google.cloud/issues/657 2024-11-08 18:46:49 +01:00
Chris Hawk
cc1784084c Add a test that updates a pubsub subscription 2024-11-07 11:40:49 -08:00
Chris Hawk
e79c751f3a Fix assertNotEquals: deprecated in 3.2, removed in 3.12 2024-07-26 13:21:00 -07:00
Chris Hawk
d9d57cbeeb Remove jinja vars from conditional statements in integration test asserts 2024-07-24 16:15:24 -07:00
Chris Hawk
2ca4eccc78 chore: return service_usage test to unsupported due to quota enforcement 2023-11-21 09:39:11 -08:00
Chris Hawk
08ada5354d fix: upgrade ansible version, address test and lint errors 2023-11-17 16:39:42 -08:00
Chris Hawk
b64af489ea chore: fix gcp_sql_database integration test 2023-11-13 14:31:26 -08:00
Chris Hawk
bda318efba Revert "chore: fix gcp_sql_database integration test"
This reverts commit 3f44909f92.
2023-11-13 14:30:29 -08:00
Chris Hawk
3f44909f92 chore: fix gcp_sql_database integration test 2023-11-13 14:29:05 -08:00
Chris Hawk
bf74697b3f feat: add support for using application default credentials when running integration tests 2023-11-09 16:34:51 -08:00
Yusuke Tsutsumi
db81dcd5d5 test: disable flakey spanner test
The test continually fails due to an existing database being
created, hich implies the GET isn't returning the proper response.
2023-02-20 10:38:27 -08:00
Yusuke Tsutsumi
0ad88dc39d test: disable gcp_bigtable_instance test
The test is still flakey currently. A few attempts have
been made to fix it, but it seems that the bigtable API
does not consistently return the resource after is has
been created.

While exploring ways to make it more robust, disabling the
test to keep the CI tests from being unreliable to the point
of useless.
2023-02-18 14:08:04 -08:00
Yusuke Tsutsumi
75d4ded736 tests: updating the route test
validating the update of a route works as per concerns raised in #542
2023-02-10 16:48:29 -08:00
Nikolaos Kakouros
286dcaed56 Removes duplicate lines 2023-01-23 14:33:26 -08:00
nkakouros
30c2bbd84e Fixes GcpRequest comparison for boolean parameters
Fixes #402 .
2023-01-23 14:33:26 -08:00
Yusuke Tsutsumi
2db181d084 fix gcp_iam_role not updating
gcp_iam_role was not updating previously. The API uses a PATCH and
not a PUT.

Also fixing an accidental leftover diff from a bad merge.

fixes #236.
2022-12-15 23:04:47 -08:00
Yusuke Tsutsumi
d063d44b73 fixing gcp_resourcemanager_project delete
gcp_resourcemanager_project was not properly deleting projects.

fixing gcp_resourcemanager_project as well.

fixes #530.
2022-12-12 22:25:24 -08:00
Yusuke Tsutsumi
eab8b1fb7b disable spanner_database_info tests, python to 3.9
The client's List continues to be flakey. disabling until
the endpoint is stable.

Switching tests to use ansible 2.14, as 2.13 has issues with
spawning a docker container.

Upgrading the base python version as a consequence.

Removing the need for docker from unit tests, since that was failing
and also non-critical to run unit tests.
2022-12-04 12:00:59 -08:00
Yusuke Tsutsumi
18900797c5 tests: documenting unsupported cases
Some test cases are unsupported due to environmental or
blocking code restrictions (e.g. unimplemented dependent resources).

As these will likely not be fixed before the first release certified
for Ansible 2.11 and beyond, documenting them instead.
2022-11-29 23:12:26 -08:00
Yusuke Tsutsumi
4cd61e66c1 tests: remove flakey spanner_database_info test
The spanner List API is returning intermittent 404s, which
is resulting in the spanner_database test failing every other
time.

Disabling the API until the test is more stable.
2022-11-27 08:34:30 -08:00
Yusuke Tsutsumi
117224d352 fix gcp_iam_role
gcp_iam_role did not handle the undelete behavior
that is specific to gcp_iam_role.
2022-11-27 08:34:30 -08:00
Yusuke Tsutsumi
6171713572 fix gcp_bigtable_instance
gcp_bigtable_instance scope was using an incorrect scope,
which was causing oauth requests to not complete successfully.
2022-11-27 08:34:30 -08:00
Yusuke Tsutsumi
44eb7c2d29 fix gcp_spanner_database delete
gcp_spanner_database erroneously used LRO handling on delete,
rather than a standard synchronous function. One side effect
was not catching 404s as a not found error code.
2022-11-27 08:34:30 -08:00
Yusuke Tsutsumi
50076e7f36 fix: crypto_key initial_version_creation default
skip_initial_version_creation previously defaulted to None,
which results in an invalid value in the create call to
gcp_kms_crypto_key.

Defaulting to False fixes the issue.
2022-11-27 08:34:30 -08:00
Yusuke Tsutsumi
0e9f2a74b1 fix: gcp_cloudtasks_queue
gcp_cloudtasks_queue was sending a "location" field in the
payload, when the resource did not have such a field.

Removing it fixes the tests.
2022-11-27 08:34:30 -08:00
Yusuke Tsutsumi
d3a7287c37 fix: gcp_container_cluster for GKE 1.19+
Incorporating a fix for GKE 1.19+ (See #444).

Inlined:

Google has removed basic-auth method from within GKE starting version 1.19
This lead the output response of the backend API not to provide basic-auth
data (username and password) anymore.

The current implementation of gcp_container_cluster when generating the kubectl
config file, always set basic-auth data w/o checking if there actually are
available or explicitly provided even when the value are not set/provided
from gcp_container_cluster.

In addition, re-enabling some tests that #444 fixed.

Co-authored-by: Xavier Lamien <laxathom@lxtnow.net>
2022-11-19 21:58:55 -08:00
Yusuke Tsutsumi
dc67fb3e17 tests: service account flaky test
fixing a flakey service account test. Sometimes the service account
generated can be less than 6 characters (e.g. sa-57), which is an
invalid length.

This ensures that the name is at least 6 characters.
2022-11-19 18:40:44 -08:00
Yusuke Tsutsumi
ebf095d22d tests: fix gcp_compute_vpn_tunnel
- vpn_gateway required minimal changes (stop using legacy load
  balancers)
- compute_vpn_tunnel requires a valid vpn configuration
  (several dependent forwarding rules and configuration to set up a
  proper tunnel).
2022-11-19 18:40:44 -08:00
Yusuke Tsutsumi
54c14b66f6 tests: enabling 5 tests
the following tests can be enabled without any changes:

- gcp_compute_target_http_proxy
- gcp_compute_target_https_proxy
- gcp_compute_target_ssl_proxy
- gcp_compute_target_tcp_proxy
2022-11-19 18:40:44 -08:00
Yusuke Tsutsumi
5fc619fbb7 tests: fixing region_target_http_proxy
The backend_service resource was not regional, which is in invalid
configuration for a regional proxy to depend on.

Fixing up cleanup-script to better handle region/ global resources.
2022-11-19 18:40:44 -08:00
Yusuke Tsutsumi
b6f694ed7e enabling 3 more tests
Tests were working with only minor config tweaks

- compute_autoscaler
- compute_disk
- global_forwarding_rule
2022-11-19 10:56:53 -08:00
Yusuke Tsutsumi
0fc41bbda4 WIP: fix compute instance + several tests
compute selflinks return back `wwww.googleapis.com` as the domain,
which was causing a perma-diff. Fixing google.cloud's normalization
fixes that.

Fixing the following tests as well, since creating an instance
now works:

- gcp_compute_instance
- gcp_compute_instance_group
- gcp_compute_instance_group_manager
- gcp_compute_instance_template
- gcp_compute_region_autoscaler
- gcp_compute_region_instance_group_manager
- gcp_compute_target_instance
- gcp_compute_target_pool
2022-11-13 22:28:40 -08:00
Yusuke Tsutsumi
5ea5ecda34 tests: enabling gcp_compute_backend_service test
with #393 merged, it is now possible to enable gcp_compute_backend_test.

Adding a temporary fix for server-normalized value of capacity_scaler,
which is resolving into perma-diff due to "1.0" != "1".
2022-11-05 15:16:49 -07:00
Yusuke Tsutsumi
3f6a50208d tests: changing gcp_tpu_node side
v2-8 seems to be in high demand causing test failures. changing it to
v2-32 seems to pass more consistently.
2022-10-10 20:33:23 +00:00
Yusuke Tsutsumi
3aa8682d5f tests: enable forwarding_rule, disable global version
the wrong forwarding rule was turned on, while the correct one
was turned off.
2022-10-10 18:50:27 +00:00
Yusuke Tsutsumi
d8c1d2f8b8 tests: fix gcp_tpu_node test
- gcp_tpu_node was using an old TensorFlow version, as well as using
  a popular TPU variant (3-8) in a zone that had a capacity limit.
  Both have been updated to working values.
2022-10-10 18:43:18 +00:00
Yusuke Tsutsumi
d03d7beda2 tests: fix gcp_storage_bucket test
- gcp_storage_bucket had a hard-coded bucket name. Making it based
  on the GCP project name to allow some attribution in the case of garbage
  detection.
2022-10-09 06:15:24 +00:00
Yusuke Tsutsumi
cfbc4d8be5 tests: cleaning up resourcemanager, enabling spanner
- gcp_spanner_instance works, enabling for CI.
- gcp_resourcemanager_project is running into quota issues for
  listing the API to verify state. Adding a to-do as well as
  removing some people-specific names.
2022-10-09 06:08:41 +00:00
Yusuke Tsutsumi
1a753eff05 tests: fix key_ring and redis
- gcp_key_ring was already passing, needed to be enabled.
- gcp_redis_instance was using legacy networks, switch to net networks.
2022-10-09 05:45:37 +00:00
Yusuke Tsutsumi
f1f41177e4 tests: fixing gcp_iam_service_account
there was a hardcoded GCP project for testing purposes.
2022-10-09 05:27:18 +00:00
Yusuke Tsutsumi
24d09d17c3 tests: fixing more fixed tests
- gcp_compute_ssl_certificate: region is not a supported parameter.
2022-10-09 05:10:15 +00:00
Yusuke Tsutsumi
9e7748bc23 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
2022-10-08 18:57:05 +00:00
Yusuke Tsutsumi
7fb64edcc5 tests: fix gcp_compute_region_url_map
- remove the global health check (not necessary to create a backend
  service)
- configure backend service to external, as internal backend services
  cannot use the HTTP protocol.
2022-10-08 18:40:05 +00:00
Yusuke Tsutsumi
c962945615 tests: fix google_compute_router test
google_compute_router was attempting to create a legacy network.
Creating a new network that passes the test.
2022-10-08 18:27:14 +00:00
Yusuke Tsutsumi
d52e5f0c3c tests: fix google_compute_route test
google_compute_route was creating legacy subnetworks in the
example, which are now deprecated.
2022-10-08 18:24:04 +00:00
Yusuke Tsutsumi
7cd653e50d minor improvement in gcp_compute_instance
The test does not yet pass due to a discovered change, but
some progress was made.

- updating disk image to an existing, non-EOL image.
- updating subnetwork configuration.
2022-10-08 18:18:42 +00:00
Yusuke Tsutsumi
6f1ee2b2b4 tests: fix gcp_compute_forwarding_rule test
The targetpool object was being passed directly to the forwarding
rule, rather than passing the selfLink string.
2022-10-08 17:57:06 +00:00