Migrate cloud-identity-group tests

This commit is contained in:
Julio Castillo 2023-04-14 17:35:44 +02:00
parent 771dd02b18
commit 5f82938739
6 changed files with 60 additions and 114 deletions

View File

@ -28,7 +28,7 @@ module "group" {
"service-account@my-gcp-project.iam.gserviceaccount.com"
]
}
# tftest modules=1 resources=4
# tftest modules=1 resources=4 inventory=members.yaml
```
### Group with managers

View File

@ -1,4 +1,4 @@
# Copyright 2022 Google LLC
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@ -11,3 +11,16 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
values:
module.group.google_cloud_identity_group_membership.managers["user3@example.com"]:
preferred_member_key:
- id: user3@example.com
namespace: null
roles:
- name: MANAGER
- name: MEMBER
counts:
google_cloud_identity_group: 1
google_cloud_identity_group_membership: 4

View File

@ -0,0 +1,45 @@
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
values:
module.group.google_cloud_identity_group.group:
description: My group Description
display_name: My group name
group_key:
- id: mygroup@example.com
namespace: null
initial_group_config: EMPTY
parent: customers/C01234567
module.group.google_cloud_identity_group_membership.members["service-account@my-gcp-project.iam.gserviceaccount.com"]:
preferred_member_key:
- id: service-account@my-gcp-project.iam.gserviceaccount.com
namespace: null
roles:
- name: MEMBER
module.group.google_cloud_identity_group_membership.members["user1@example.com"]:
preferred_member_key:
- id: user1@example.com
namespace: null
roles:
- name: MEMBER
module.group.google_cloud_identity_group_membership.members["user2@example.com"]:
preferred_member_key:
- id: user2@example.com
namespace: null
roles:
- name: MEMBER
counts:
google_cloud_identity_group: 1
google_cloud_identity_group_membership: 3

View File

@ -1,25 +0,0 @@
/**
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
module "test" {
source = "../../../../modules/cloud-identity-group"
name = var.name
display_name = var.display_name
description = var.description
customer_id = var.customer_id
managers = var.managers
members = var.members
}

View File

@ -1,45 +0,0 @@
/**
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
variable "display_name" {
type = string
default = "display name"
}
variable "name" {
type = string
default = "my-group@example.com"
}
variable "description" {
type = string
default = null
}
variable "customer_id" {
type = string
default = "customers/C01234567"
}
variable "managers" {
type = list(string)
default = []
}
variable "members" {
type = list(string)
default = []
}

View File

@ -1,42 +0,0 @@
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from collections import Counter
def test_group(plan_runner):
"Test group."
_, resources = plan_runner()
assert len(resources) == 1
r = resources[0]
assert r['type'] == 'google_cloud_identity_group'
assert r['values']['display_name'] == 'display name'
assert r['values']['group_key'][0]['id'] == 'my-group@example.com'
assert r['values']['parent'] == 'customers/C01234567'
def test_members(plan_runner):
"Test group members."
members = '["member@example.com"]'
_, resources = plan_runner(members=members)
resource_types = Counter([r['type'] for r in resources])
assert resource_types == {
'google_cloud_identity_group': 1,
'google_cloud_identity_group_membership': 1,
}
values = next(r['values'] for r in resources if r['name'] == 'members')
assert values['preferred_member_key'][0]['id'] == 'member@example.com'
assert [role['name'] for role in values['roles']] == ['MEMBER']