From 9a31eccf9ef97c52152cd125066b2d7bf994ab0a Mon Sep 17 00:00:00 2001 From: Ludovico Magnocavallo Date: Tue, 15 Jun 2021 14:54:57 +0200 Subject: [PATCH] data fondations test --- .../data_platform_foundations/__init__.py | 13 +++++++++ .../data_platform_foundations/fixture/main.tf | 26 ++++++++++++++++++ .../fixture/variables.tf | 26 ++++++++++++++++++ .../data_platform_foundations/test_plan.py | 27 +++++++++++++++++++ 4 files changed, 92 insertions(+) create mode 100644 tests/data_solutions/data_platform_foundations/__init__.py create mode 100644 tests/data_solutions/data_platform_foundations/fixture/main.tf create mode 100644 tests/data_solutions/data_platform_foundations/fixture/variables.tf create mode 100644 tests/data_solutions/data_platform_foundations/test_plan.py diff --git a/tests/data_solutions/data_platform_foundations/__init__.py b/tests/data_solutions/data_platform_foundations/__init__.py new file mode 100644 index 00000000..d46dbae5 --- /dev/null +++ b/tests/data_solutions/data_platform_foundations/__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/data_solutions/data_platform_foundations/fixture/main.tf b/tests/data_solutions/data_platform_foundations/fixture/main.tf new file mode 100644 index 00000000..d0f71ece --- /dev/null +++ b/tests/data_solutions/data_platform_foundations/fixture/main.tf @@ -0,0 +1,26 @@ +/** + * 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-environment" { + source = "../../../../data-solutions/data-platform-foundations/environment" + billing_account_id = var.billing_account + root_node = var.root_node +} + +module "test-resources" { + source = "../../../../data-solutions/data-platform-foundations/resources" + project_ids = module.test-environment.project_ids +} diff --git a/tests/data_solutions/data_platform_foundations/fixture/variables.tf b/tests/data_solutions/data_platform_foundations/fixture/variables.tf new file mode 100644 index 00000000..499e1e46 --- /dev/null +++ b/tests/data_solutions/data_platform_foundations/fixture/variables.tf @@ -0,0 +1,26 @@ +/** + * 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. + */ + +variable "billing_account" { + type = string + default = "123456-123456-123456" +} + +variable "root_node" { + description = "The resource name of the parent Folder or Organization. Must be of the form folders/folder_id or organizations/org_id." + type = string + default = "folders/12345678" +} diff --git a/tests/data_solutions/data_platform_foundations/test_plan.py b/tests/data_solutions/data_platform_foundations/test_plan.py new file mode 100644 index 00000000..80f29733 --- /dev/null +++ b/tests/data_solutions/data_platform_foundations/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) == 6 + assert len(resources) == 32