Ejemplo n.º 1
0
    def test_happy_flow(self):
        args = DeployCommand.Args(
            file="test/file.yml",
            values={"a.b.c": "foo", "a.b.d": "bar"},
            username="******",
            password="******",
            git_user="******",
            git_email="GIT_EMAIL",
            create_pr=False,
            auto_merge=False,
            single_commit=False,
            organisation="ORGA",
            repository_name="REPO",
            git_provider=GitProvider.GITHUB,
            git_provider_url=None,
            commit_message=None,
        )
        DeployCommand(args).execute()

        assert self.mock_manager.method_calls == [
            call.GitRepoApiFactory.create(args, "ORGA", "REPO"),
            call.GitRepo(self.git_repo_api_mock),
            call.GitRepo.clone(),
            call.GitRepo.get_full_file_path("test/file.yml"),
            call.update_yaml_file("/tmp/created-tmp-dir/test/file.yml", "a.b.c", "foo"),
            call.logging.info("Updated yaml property %s to %s", "a.b.c", "foo"),
            call.GitRepo.commit("GIT_USER", "GIT_EMAIL", "changed 'a.b.c' to 'foo' in test/file.yml"),
            call.update_yaml_file("/tmp/created-tmp-dir/test/file.yml", "a.b.d", "bar"),
            call.logging.info("Updated yaml property %s to %s", "a.b.d", "bar"),
            call.GitRepo.commit("GIT_USER", "GIT_EMAIL", "changed 'a.b.d' to 'bar' in test/file.yml"),
            call.GitRepo.push(),
        ]
Ejemplo n.º 2
0
    def test_nothing_to_update(self):
        self.update_yaml_file_mock.return_value = False

        args = DeployCommand.Args(
            file="test/file.yml",
            values={"a.b.c": "foo", "a.b.d": "bar"},
            username="******",
            password="******",
            git_user="******",
            git_email="GIT_EMAIL",
            create_pr=False,
            auto_merge=False,
            single_commit=False,
            organisation="ORGA",
            repository_name="REPO",
            git_provider=GitProvider.GITHUB,
            git_provider_url=None,
            commit_message=None,
        )
        DeployCommand(args).execute()

        assert self.mock_manager.method_calls == [
            call.GitRepoApiFactory.create(args, "ORGA", "REPO"),
            call.GitRepo(self.git_repo_api_mock),
            call.GitRepo.clone(),
            call.GitRepo.get_full_file_path("test/file.yml"),
            call.update_yaml_file("/tmp/created-tmp-dir/test/file.yml", "a.b.c", "foo"),
            call.logging.info("Yaml property %s already up-to-date", "a.b.c"),
            call.update_yaml_file("/tmp/created-tmp-dir/test/file.yml", "a.b.d", "bar"),
            call.logging.info("Yaml property %s already up-to-date", "a.b.d"),
            call.logging.info("All values already up-to-date. I'm done here."),
        ]
Ejemplo n.º 3
0
    def test_create_pr_happy_flow(self):
        deploy_command(
            command="deploy",
            file="test/file.yml",
            values={
                "a.b.c": "foo",
                "a.b.d": "bar"
            },
            username="******",
            password="******",
            git_user="******",
            git_email="GIT_EMAIL",
            create_pr=True,
            auto_merge=False,
            single_commit=False,
            organisation="ORGA",
            repository_name="REPO",
            git_provider="github",
            git_provider_url=None,
        )

        assert self.mock_manager.mock_calls == [
            call.create_tmp_dir(),
            call.create_git("USERNAME", "PASSWORD", "GIT_USER", "GIT_EMAIL",
                            "ORGA", "REPO", "github", None,
                            "/tmp/created-tmp-dir"),
            call.git_util.checkout("master"),
            call.logging.info("Master checkout successful"),
            call.git_util.new_branch("gitopscli-deploy-b973b5bb"),
            call.logging.info("Created branch %s",
                              "gitopscli-deploy-b973b5bb"),
            call.git_util.get_full_file_path("test/file.yml"),
            call.os.path.isfile("/tmp/created-tmp-dir/test/file.yml"),
            call.update_yaml_file("/tmp/created-tmp-dir/test/file.yml",
                                  "a.b.c", "foo"),
            call.logging.info("Updated yaml property %s to %s", "a.b.c",
                              "foo"),
            call.git_util.commit("changed 'a.b.c' to 'foo' in test/file.yml"),
            call.update_yaml_file("/tmp/created-tmp-dir/test/file.yml",
                                  "a.b.d", "bar"),
            call.logging.info("Updated yaml property %s to %s", "a.b.d",
                              "bar"),
            call.git_util.commit("changed 'a.b.d' to 'bar' in test/file.yml"),
            call.git_util.push("gitopscli-deploy-b973b5bb"),
            call.logging.info("Pushed branch %s", "gitopscli-deploy-b973b5bb"),
            call.delete_tmp_dir("/tmp/created-tmp-dir"),
            call.git_util.create_pull_request(
                "gitopscli-deploy-b973b5bb",
                "master",
                "Updated values in test/file.yml",
                "Updated 2 values in `test/file.yml`:\n```yaml\na.b.c: foo\na.b.d: bar\n```\n",
            ),
            call.git_util.get_pull_request_url("<dummy-pr-object>"),
            call.logging.info("Pull request created: %s",
                              "<url of <dummy-pr-object>>"),
        ]
Ejemplo n.º 4
0
    def test_create_pr_and_merge_happy_flow(self):
        args = DeployCommand.Args(
            file="test/file.yml",
            values={
                "a.b.c": "foo",
                "a.b.d": "bar"
            },
            username="******",
            password="******",
            git_user="******",
            git_email="GIT_EMAIL",
            create_pr=True,
            auto_merge=True,
            single_commit=False,
            organisation="ORGA",
            repository_name="REPO",
            git_provider=GitProvider.GITHUB,
            git_provider_url=None,
            commit_message=None,
        )
        DeployCommand(args).execute()

        assert self.mock_manager.method_calls == [
            call.GitRepoApiFactory.create(args, "ORGA", "REPO"),
            call.GitRepo(self.git_repo_api_mock),
            call.GitRepo.clone(),
            call.uuid.uuid4(),
            call.GitRepo.new_branch("gitopscli-deploy-b973b5bb"),
            call.GitRepo.get_full_file_path("test/file.yml"),
            call.update_yaml_file("/tmp/created-tmp-dir/test/file.yml",
                                  "a.b.c", "foo"),
            call.logging.info("Updated yaml property %s to %s", "a.b.c",
                              "foo"),
            call.GitRepo.commit("GIT_USER", "GIT_EMAIL",
                                "changed 'a.b.c' to 'foo' in test/file.yml"),
            call.update_yaml_file("/tmp/created-tmp-dir/test/file.yml",
                                  "a.b.d", "bar"),
            call.logging.info("Updated yaml property %s to %s", "a.b.d",
                              "bar"),
            call.GitRepo.commit("GIT_USER", "GIT_EMAIL",
                                "changed 'a.b.d' to 'bar' in test/file.yml"),
            call.GitRepo.push(),
            call.GitRepoApi.create_pull_request_to_default_branch(
                "gitopscli-deploy-b973b5bb",
                "Updated values in test/file.yml",
                "Updated 2 values in `test/file.yml`:\n```yaml\na.b.c: foo\na.b.d: bar\n```\n",
            ),
            call.GitRepoApi.merge_pull_request(42, "merge"),
            call.GitRepoApi.delete_branch("gitopscli-deploy-b973b5bb"),
        ]
Ejemplo n.º 5
0
    def test_key_not_found(self):
        self.update_yaml_file_mock.side_effect = KeyError("dummy key error")

        args = DeployCommand.Args(
            file="test/file.yml",
            values={
                "a.b.c": "foo",
                "a.b.d": "bar"
            },
            username="******",
            password="******",
            git_user="******",
            git_email="GIT_EMAIL",
            create_pr=False,
            auto_merge=False,
            single_commit=False,
            organisation="ORGA",
            repository_name="REPO",
            git_provider=GitProvider.GITHUB,
            git_provider_url=None,
            commit_message=None,
        )
        with pytest.raises(GitOpsException) as ex:
            DeployCommand(args).execute()
        self.assertEqual(str(ex.value),
                         "Key 'a.b.c' not found in file: test/file.yml")

        assert self.mock_manager.method_calls == [
            call.GitRepoApiFactory.create(args, "ORGA", "REPO"),
            call.GitRepo(self.git_repo_api_mock),
            call.GitRepo.clone(),
            call.GitRepo.get_full_file_path("test/file.yml"),
            call.update_yaml_file("/tmp/created-tmp-dir/test/file.yml",
                                  "a.b.c", "foo"),
        ]
Ejemplo n.º 6
0
    def test_create_new_preview_invalid_chart_template(self):
        self.os_mock.path.isdir.side_effect = lambda path: {
            "/tmp/target-repo/my-app-685912d3-preview":
            False,  # doesn't exist yet -> expect create
            "/tmp/template-repo/.preview-templates/my-app": True,
        }[path]

        self.update_yaml_file_mock.side_effect = KeyError()

        try:
            CreatePreviewCommand(ARGS).execute()
            self.fail()
        except GitOpsException as ex:
            self.assertEqual(
                "Key 'name' not found in file: my-app-685912d3-preview/Chart.yaml",
                str(ex))

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                INFO_YAML,
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TARGET_ORG",
                "PREVIEW_TARGET_REPO",
            ),
            call.GitRepo(self.target_git_repo_api_mock),
            call.GitRepo.clone(None),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TEMPLATE_ORG",
                "PREVIEW_TEMPLATE_REPO",
            ),
            call.GitRepo(self.template_git_repo_api_mock),
            call.GitRepo.clone("template-branch"),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/target-repo/my-app-685912d3-preview"),
            call.logging.info("Create new folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(".preview-templates/my-app"),
            call.os.path.isdir("/tmp/template-repo/.preview-templates/my-app"),
            call.logging.info("Using the preview template folder: %s",
                              ".preview-templates/my-app"),
            call.shutil.copytree(
                "/tmp/template-repo/.preview-templates/my-app",
                "/tmp/target-repo/my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/Chart.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/Chart.yaml", "name",
                "my-app-685912d3-preview"),
        ]
Ejemplo n.º 7
0
    def test_commit_message_happy_flow(self):
        deploy_command(
            command="deploy",
            file="test/file.yml",
            values={
                "a.b.c": "foo",
                "a.b.d": "bar"
            },
            username="******",
            password="******",
            git_user="******",
            git_email="GIT_EMAIL",
            create_pr=False,
            auto_merge=False,
            single_commit=False,
            organisation="ORGA",
            repository_name="REPO",
            git_provider="github",
            git_provider_url=None,
            commit_message="testcommit",
        )

        assert self.mock_manager.mock_calls == [
            call.create_tmp_dir(),
            call.create_git("USERNAME", "PASSWORD", "GIT_USER", "GIT_EMAIL",
                            "ORGA", "REPO", "github", None,
                            "/tmp/created-tmp-dir"),
            call.git_util.checkout("master"),
            call.logging.info("Master checkout successful"),
            call.git_util.get_full_file_path("test/file.yml"),
            call.os.path.isfile("/tmp/created-tmp-dir/test/file.yml"),
            call.update_yaml_file("/tmp/created-tmp-dir/test/file.yml",
                                  "a.b.c", "foo"),
            call.logging.info("Updated yaml property %s to %s", "a.b.c",
                              "foo"),
            call.update_yaml_file("/tmp/created-tmp-dir/test/file.yml",
                                  "a.b.d", "bar"),
            call.logging.info("Updated yaml property %s to %s", "a.b.d",
                              "bar"),
            call.git_util.commit("testcommit"),
            call.git_util.push("master"),
            call.logging.info("Pushed branch %s", "master"),
            call.delete_tmp_dir("/tmp/created-tmp-dir"),
        ]
Ejemplo n.º 8
0
    def test_nothing_to_update(self):
        self.update_yaml_file_mock.return_value = False

        deploy_command(
            command="deploy",
            file="test/file.yml",
            values={
                "a.b.c": "foo",
                "a.b.d": "bar"
            },
            username="******",
            password="******",
            git_user="******",
            git_email="GIT_EMAIL",
            create_pr=False,
            auto_merge=False,
            single_commit=False,
            organisation="ORGA",
            repository_name="REPO",
            git_provider="github",
            git_provider_url=None,
        )

        assert self.mock_manager.mock_calls == [
            call.create_tmp_dir(),
            call.create_git("USERNAME", "PASSWORD", "GIT_USER", "GIT_EMAIL",
                            "ORGA", "REPO", "github", None,
                            "/tmp/created-tmp-dir"),
            call.git_util.checkout("master"),
            call.logging.info("Master checkout successful"),
            call.git_util.get_full_file_path("test/file.yml"),
            call.os.path.isfile("/tmp/created-tmp-dir/test/file.yml"),
            call.update_yaml_file("/tmp/created-tmp-dir/test/file.yml",
                                  "a.b.c", "foo"),
            call.logging.info("Yaml property %s already up-to-date", "a.b.c"),
            call.update_yaml_file("/tmp/created-tmp-dir/test/file.yml",
                                  "a.b.d", "bar"),
            call.logging.info("Yaml property %s already up-to-date", "a.b.d"),
            call.logging.info("All values already up-to-date. I'm done here"),
            call.delete_tmp_dir("/tmp/created-tmp-dir"),
        ]
Ejemplo n.º 9
0
    def test_create_preview_with_invalid_replacement_path(self):
        self.update_yaml_file_mock.side_effect = KeyError()

        try:
            CreatePreviewCommand(ARGS).execute()
            self.fail()
        except GitOpsException as ex:
            self.assertEqual(
                "Key 'name' not found in file: my-app-685912d3-preview/Chart.yaml",
                str(ex))

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                INFO_YAML,
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TARGET_ORG",
                "PREVIEW_TARGET_REPO",
            ),
            call.GitRepo(self.target_git_repo_api_mock),
            call.GitRepo.clone(None),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TEMPLATE_ORG",
                "PREVIEW_TEMPLATE_REPO",
            ),
            call.GitRepo(self.template_git_repo_api_mock),
            call.GitRepo.clone("template-branch"),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/target-repo/my-app-685912d3-preview"),
            call.logging.info("Use existing folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/Chart.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/Chart.yaml",
                "name",
                "my-app-685912d3-preview",
            ),
        ]
Ejemplo n.º 10
0
    def test_create_preview_with_invalid_replacement_path(self):
        self.update_yaml_file_mock.side_effect = KeyError()

        try:
            CreatePreviewCommand(ARGS).execute()
            self.fail()
        except GitOpsException as ex:
            self.assertEqual(
                "Key 'image.tag' not found in file: my-app-685912d3-preview/values.yaml",
                str(ex))

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                INFO_YAML,
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "TEAM_CONFIG_ORG",
                "TEAM_CONFIG_REPO",
            ),
            call.GitRepo(self.git_repo_api_mock),
            call.GitRepo.clone(),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/created-tmp-dir/my-app-685912d3-preview"),
            call.logging.info("Use existing folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/created-tmp-dir/my-app-685912d3-preview/values.yaml",
                "image.tag",
                "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9",
            ),
        ]
Ejemplo n.º 11
0
    def test_preview_already_up_to_date(self):
        self.os_mock.path.isdir.side_effect = lambda path: {
            "/tmp/target-repo/my-app-685912d3-preview":
            True,  # already exists -> expect update
        }[path]

        self.update_yaml_file_mock.return_value = False  # nothing updated -> expect already up to date

        deployment_already_up_to_date_callback = Mock(return_value=None)

        command = CreatePreviewCommand(ARGS)
        command.register_callbacks(
            deployment_already_up_to_date_callback=
            deployment_already_up_to_date_callback,
            deployment_updated_callback=lambda route_host: self.fail(
                "should not be called"),
            deployment_created_callback=lambda route_host: self.fail(
                "should not be called"),
        )
        command.execute()

        deployment_already_up_to_date_callback.assert_called_once_with(
            "app.xy-685912d3.example.tld")

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                INFO_YAML,
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TARGET_ORG",
                "PREVIEW_TARGET_REPO",
            ),
            call.GitRepo(self.target_git_repo_api_mock),
            call.GitRepo.clone(None),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TEMPLATE_ORG",
                "PREVIEW_TEMPLATE_REPO",
            ),
            call.GitRepo(self.template_git_repo_api_mock),
            call.GitRepo.clone("template-branch"),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/target-repo/my-app-685912d3-preview"),
            call.logging.info("Use existing folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/Chart.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/Chart.yaml", "name",
                "my-app-685912d3-preview"),
            call.logging.info("Keep property '%s' in '%s' value: %s", "name",
                              "Chart.yaml", "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/values.yaml",
                "image.tag",
                "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9",
            ),
            call.logging.info(
                "Keep property '%s' in '%s' value: %s",
                "image.tag",
                "values.yaml",
                "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9",
            ),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/values.yaml",
                "route.host", "app.xy-685912d3.example.tld"),
            call.logging.info("Keep property '%s' in '%s' value: %s",
                              "route.host", "values.yaml",
                              "app.xy-685912d3.example.tld"),
            call.logging.info(
                "The preview is already up-to-date. I'm done here."),
        ]
Ejemplo n.º 12
0
    def test_create_new_preview_from_same_template_target_repo(self):
        gitops_config: GitOpsConfig = self.load_gitops_config_mock.return_value
        self.load_gitops_config_mock.return_value = GitOpsConfig(
            api_version=gitops_config.api_version,
            application_name=gitops_config.application_name,
            preview_host_template=gitops_config.preview_host_template,
            preview_template_organisation=gitops_config.
            preview_target_organisation,  # template = target
            preview_template_repository=gitops_config.
            preview_target_repository,  # template = target
            preview_template_path_template=gitops_config.
            preview_template_path_template,
            preview_template_branch=gitops_config.
            preview_target_branch,  # template = target
            preview_target_organisation=gitops_config.
            preview_target_organisation,
            preview_target_repository=gitops_config.preview_target_repository,
            preview_target_branch=gitops_config.preview_target_branch,
            preview_target_namespace_template=gitops_config.
            preview_target_namespace_template,
            preview_target_max_namespace_length=gitops_config.
            preview_target_max_namespace_length,
            replacements=gitops_config.replacements,
        )

        self.os_mock.path.isdir.side_effect = lambda path: {
            "/tmp/target-repo/my-app-685912d3-preview":
            False,  # doesn't exist yet -> expect create
            "/tmp/target-repo/.preview-templates/my-app": True,
        }[path]

        deployment_created_callback = Mock(return_value=None)

        command = CreatePreviewCommand(ARGS)
        command.register_callbacks(
            deployment_already_up_to_date_callback=lambda route_host: self.
            fail("should not be called"),
            deployment_updated_callback=lambda route_host: self.fail(
                "should not be called"),
            deployment_created_callback=deployment_created_callback,
        )
        command.execute()

        deployment_created_callback.assert_called_once_with(
            "app.xy-685912d3.example.tld")

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                {
                    "previewId": "PREVIEW_ID",
                    "previewIdHash": "685912d3",
                    "routeHost": "app.xy-685912d3.example.tld",
                    "namespace": "my-app-685912d3-preview",
                },
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TARGET_ORG",
                "PREVIEW_TARGET_REPO",
            ),  # only clone once for template and target
            call.GitRepo(self.target_git_repo_api_mock),
            call.GitRepo.clone(None),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/target-repo/my-app-685912d3-preview"),
            call.logging.info("Create new folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(".preview-templates/my-app"),
            call.os.path.isdir("/tmp/target-repo/.preview-templates/my-app"),
            call.logging.info("Using the preview template folder: %s",
                              ".preview-templates/my-app"),
            call.shutil.copytree("/tmp/target-repo/.preview-templates/my-app",
                                 "/tmp/target-repo/my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/Chart.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/Chart.yaml", "name",
                "my-app-685912d3-preview"),
            call.logging.info("Replaced property '%s' in '%s' with value: %s",
                              "name", "Chart.yaml", "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/values.yaml",
                "image.tag",
                "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9",
            ),
            call.logging.info(
                "Replaced property '%s' in '%s' with value: %s",
                "image.tag",
                "values.yaml",
                "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9",
            ),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/values.yaml",
                "route.host", "app.xy-685912d3.example.tld"),
            call.logging.info(
                "Replaced property '%s' in '%s' with value: %s",
                "route.host",
                "values.yaml",
                "app.xy-685912d3.example.tld",
            ),
            call.GitRepo.commit(
                "GIT_USER",
                "GIT_EMAIL",
                "Create new preview environment for 'my-app' and git hash '3361723dbd91fcfae7b5b8b8b7d462fbc14187a9'.",
            ),
            call.GitRepo.push(),
        ]
Ejemplo n.º 13
0
    def test_create_new_preview(self):
        self.os_mock.path.isdir.side_effect = lambda path: {
            "/tmp/created-tmp-dir/my-app-685912d3-preview":
            False,  # doesn't exist yet -> expect create
            "/tmp/created-tmp-dir/.preview-templates/my-app": True,
        }[path]

        deployment_created_callback = Mock(return_value=None)

        command = CreatePreviewCommand(ARGS)
        command.register_callbacks(
            deployment_already_up_to_date_callback=lambda route_host: self.
            fail("should not be called"),
            deployment_updated_callback=lambda route_host: self.fail(
                "should not be called"),
            deployment_created_callback=deployment_created_callback,
        )
        command.execute()

        deployment_created_callback.assert_called_once_with(
            "app.xy-685912d3.example.tld")

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                {
                    "previewId": "PREVIEW_ID",
                    "previewIdHash": "685912d3",
                    "routeHost": "app.xy-685912d3.example.tld",
                    "namespace": "my-app-685912d3-preview",
                },
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "TEAM_CONFIG_ORG",
                "TEAM_CONFIG_REPO",
            ),
            call.GitRepo(self.git_repo_api_mock),
            call.GitRepo.clone(),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/created-tmp-dir/my-app-685912d3-preview"),
            call.logging.info("Create new folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(".preview-templates/my-app"),
            call.os.path.isdir(
                "/tmp/created-tmp-dir/.preview-templates/my-app"),
            call.logging.info("Using the preview template folder: %s",
                              ".preview-templates/my-app"),
            call.shutil.copytree(
                "/tmp/created-tmp-dir/.preview-templates/my-app",
                "/tmp/created-tmp-dir/my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/Chart.yaml"),
            call.update_yaml_file(
                "/tmp/created-tmp-dir/my-app-685912d3-preview/Chart.yaml",
                "name", "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/created-tmp-dir/my-app-685912d3-preview/values.yaml",
                "image.tag",
                "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9",
            ),
            call.logging.info("Replaced property '%s' with value: %s",
                              "image.tag",
                              "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/created-tmp-dir/my-app-685912d3-preview/values.yaml",
                "route.host", "app.xy-685912d3.example.tld"),
            call.logging.info("Replaced property '%s' with value: %s",
                              "route.host", "app.xy-685912d3.example.tld"),
            call.GitRepo.commit(
                "GIT_USER",
                "GIT_EMAIL",
                "Create new preview environment for 'my-app' and git hash '3361723dbd91fcfae7b5b8b8b7d462fbc14187a9'.",
            ),
            call.GitRepo.push(),
        ]
Ejemplo n.º 14
0
    def test_update_existing_preview(self):
        self.os_mock.path.isdir.side_effect = lambda path: {
            "/tmp/created-tmp-dir/my-app-685912d3-preview":
            True,  # already exists -> expect update
        }[path]

        deployment_updated_callback = Mock(return_value=None)

        command = CreatePreviewCommand(ARGS)
        command.register_callbacks(
            deployment_already_up_to_date_callback=lambda route_host: self.
            fail("should not be called"),
            deployment_updated_callback=deployment_updated_callback,
            deployment_created_callback=lambda route_host: self.fail(
                "should not be called"),
        )
        command.execute()

        deployment_updated_callback.assert_called_once_with(
            "app.xy-685912d3.example.tld")

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                INFO_YAML,
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "TEAM_CONFIG_ORG",
                "TEAM_CONFIG_REPO",
            ),
            call.GitRepo(self.git_repo_api_mock),
            call.GitRepo.clone(),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/created-tmp-dir/my-app-685912d3-preview"),
            call.logging.info("Use existing folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/created-tmp-dir/my-app-685912d3-preview/values.yaml",
                "image.tag",
                "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9",
            ),
            call.logging.info("Replaced property '%s' with value: %s",
                              "image.tag",
                              "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/created-tmp-dir/my-app-685912d3-preview/values.yaml",
                "route.host", "app.xy-685912d3.example.tld"),
            call.logging.info("Replaced property '%s' with value: %s",
                              "route.host", "app.xy-685912d3.example.tld"),
            call.GitRepo.commit(
                "GIT_USER",
                "GIT_EMAIL",
                "Update preview environment for 'my-app' and git hash '3361723dbd91fcfae7b5b8b8b7d462fbc14187a9'.",
            ),
            call.GitRepo.push(),
        ]