diff --git a/tests/cloud_operations/onprem_sa_key_management/__init__.py b/tests/cloud_operations/onprem_sa_key_management/__init__.py new file mode 100644 index 00000000..d46dbae5 --- /dev/null +++ b/tests/cloud_operations/onprem_sa_key_management/__init__.py @@ -0,0 +1,13 @@ +# Copyright 2021 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. diff --git a/tests/cloud_operations/onprem_sa_key_management/fixture/main.tf b/tests/cloud_operations/onprem_sa_key_management/fixture/main.tf new file mode 100644 index 00000000..1f609552 --- /dev/null +++ b/tests/cloud_operations/onprem_sa_key_management/fixture/main.tf @@ -0,0 +1,21 @@ +/** + * Copyright 2021 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 = "../../../../cloud-operations/onprem-sa-key-management" + project_create = var.project_create + project_id = var.project_id +} diff --git a/tests/cloud_operations/onprem_sa_key_management/fixture/variables.tf b/tests/cloud_operations/onprem_sa_key_management/fixture/variables.tf new file mode 100644 index 00000000..7014ccb5 --- /dev/null +++ b/tests/cloud_operations/onprem_sa_key_management/fixture/variables.tf @@ -0,0 +1,23 @@ +# Copyright 2021 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. + +variable "project_create" { + type = bool + default = true +} + +variable "project_id" { + type = string + default = "test" +} diff --git a/tests/cloud_operations/onprem_sa_key_management/test_plan.py b/tests/cloud_operations/onprem_sa_key_management/test_plan.py new file mode 100644 index 00000000..7de84db5 --- /dev/null +++ b/tests/cloud_operations/onprem_sa_key_management/test_plan.py @@ -0,0 +1,27 @@ +# Copyright 2021 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. + + +import os +import pytest + + +FIXTURES_DIR = os.path.join(os.path.dirname(__file__), 'fixture') + + +def test_resources(e2e_plan_runner): + "Test that plan works and the numbers of resources is as expected." + modules, resources = e2e_plan_runner(FIXTURES_DIR) + assert len(modules) == 3 + assert len(resources) == 7