Skip to content

Commit

Permalink
Add unit test to check G Suite group is created
Browse files Browse the repository at this point in the history
  • Loading branch information
thefirstofthe300 committed Feb 25, 2019
1 parent d92e749 commit 9eda21d
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 7 deletions.
2 changes: 1 addition & 1 deletion modules/core_project_factory/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ resource "google_compute_shared_vpc_service_project" "shared_vpc_attachment" {
Default compute service account retrieval
*****************************************/
data "google_compute_default_service_account" "default" {
project = "${google_project.main.id}"
project = "${google_project.main.project_id}"

depends_on = ["google_project_service.project_services"]
}
Expand Down
14 changes: 8 additions & 6 deletions test/fixtures/full/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ module "vpc" {
source = "terraform-google-modules/network/google"
version = "~> 0.4.0"
network_name = "pf-test-int-full-${random_string.suffix.result}"
project_id = "${var.shared_vpc}"

project_id = "${var.shared_vpc}"

# The provided project must already be a Shared VPC host
shared_vpc_host = "false"
Expand Down Expand Up @@ -89,11 +90,12 @@ module "project-factory" {
group_role = "${var.group_role}"
group_name = "${var.group_name}"
shared_vpc = "${var.shared_vpc}"
shared_vpc_subnets = "${local.shared_vpc_subnets}"
sa_role = "${var.sa_role}"
sa_group = "${var.sa_group}"
credentials_path = "${var.credentials_path}"
lien = "true"

shared_vpc_subnets = "${local.shared_vpc_subnets}"
sa_role = "${var.sa_role}"
sa_group = "${var.sa_group}"
credentials_path = "${var.credentials_path}"
lien = "true"

activate_apis = [
"compute.googleapis.com",
Expand Down
6 changes: 6 additions & 0 deletions test/integration/full/controls/gsuite.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
project_id = attribute('project_id')
service_account_email = attribute('service_account_email')
credentials_path = attribute('credentials_path')
gsuite_admin_account = attribute('gsuite_admin_account')

ENV['CLOUDSDK_AUTH_CREDENTIAL_FILE_OVERRIDE'] = File.absolute_path(
credentials_path,
Expand Down Expand Up @@ -74,4 +75,9 @@
)
end
end

describe command("./test/scripts/gsuite/gsuite_groups.py --sa-json-credentials=#{credentials_path} --group-email #{group_email} --impersonate-user #{gsuite_admin_account}") do
its('exit_status') { should eq 0 }
its('stderr') { should eq '' }
end
end
63 changes: 63 additions & 0 deletions test/scripts/gsuite/gsuite_groups.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
#! /usr/bin/env python3

# Copyright 2018 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
#
# https://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.

import argparse
from googleapiclient.errors import HttpError
from googleapiclient.discovery import build
from google.oauth2 import service_account

SCOPES = ['https://www.googleapis.com/auth/admin.directory.group']


def authenticate(impersonated_user, sa_json_file_path, scopes):
print('Getting delegated credentials for %s' % impersonated_user)

return service_account.Credentials.from_service_account_file(
sa_json_file_path,
scopes=scopes,
subject=impersonated_user
)



def group_exists(service, group_email):
try:
return service.groups().get(groupKey=group_email).execute()
except HttpError as e:
if e.resp.status == 404:
print('Group %s does not exist' % group_email)
exit(1)
else:
print('Error fetching groups %s %s' % e.content, e.error_details)
exit(2)


if __name__ == "__main__":
parser = argparse.ArgumentParser(
description='Test if the specified G Suite exists')
parser.add_argument('--sa-json-credentials', dest='sa_json_credentials')
parser.add_argument('--group-email', dest='group_email')
parser.add_argument('--impersonate-user', dest='impersonate_user')
args = parser.parse_args()

service = build("admin",
"directory_v1",
credentials=authenticate(
args.impersonate_user,
args.sa_json_credentials,
SCOPES)
)
group_exists(service, args.group_email)

0 comments on commit 9eda21d

Please sign in to comment.