Example #1
0
    def test_custom_github_url(self, mocker, requests_mock):
        """
        Given:
            A github remote url and the environment variable is set
        When:
            Trying to get git configuration
        Then:
            Validate the correct repo configuration got back
        """
        mocker.patch.object(GitContentConfig,
                            '_search_gitlab_repo',
                            return_value=None)
        custom_github = 'my-own-github-url.com'
        repo_name = 'org/repo'
        requests_mock.get(f'https://api.{custom_github}/repos/{repo_name}')
        url = f'https://{custom_github}/{repo_name}'
        mocker.patch.dict(os.environ, {GitContentConfig.ENV_REPO_HOSTNAME_NAME: custom_github})  # test with env var
        mocker.patch.object(Repo, 'remote', return_value=Urls([url]))
        git_config = GitContentConfig()
        assert git_config.git_provider == GitProvider.GitHub
        assert git_config.current_repository == 'org/repo'
        assert git_config.base_api == f'https://raw.{custom_github}/org/repo'

        mocker.patch.dict(os.environ, {})
        mocker.patch.object(Repo, 'remote', return_value=Urls([url]))
        git_config = GitContentConfig(repo_hostname=custom_github)  # test with argument
        assert git_config.git_provider == GitProvider.GitHub
        assert git_config.current_repository == 'org/repo'
        assert git_config.base_api == f'https://raw.{custom_github}/org/repo'

        # test with no args, should find it with remote address
        git_config = GitContentConfig()  # test with argument
        assert git_config.git_provider == GitProvider.GitHub
        assert git_config.current_repository == 'org/repo'
        assert git_config.base_api == f'https://raw.{custom_github}/org/repo'
Example #2
0
    def test_valid_gitlabs(self, mocker, requests_mock, url, repo_name):
        """
        Given:
            valid gitlab remote urls
        When:
            Trying to get git configuration
        Then:
            Validate the correct repo configuration got back
        """
        requests_mock.get("https://code.pan.run/api/v4/projects",
                          json=[{
                              'id': 3606
                          }])
        mocker.patch.object(Repo, 'remote', return_value=Urls([url]))
        git_config = GitContentConfig()
        assert git_config.current_repository is None  # does not relevant to gitlab at all
        assert git_config.git_provider == GitProvider.GitLab
        assert git_config.base_api == GitContentConfig.BASE_RAW_GITLAB_LINK.format(
            GITLAB_HOST='code.pan.run', GITLAB_ID=3606)

        # We give the repo hostname, but there is a response from the remote url hostname
        git_config = GitContentConfig(repo_hostname='my-gitlab-hostname.com',
                                      git_provider=GitProvider.GitLab)
        assert git_config.base_api == GitContentConfig.BASE_RAW_GITLAB_LINK.format(
            GITLAB_HOST='code.pan.run', GITLAB_ID=3606)
Example #3
0
    def test_provide_repo_name(self, mocker, requests_mock):
        """
        Given:
            A repo name argument to git config
        When:
            Calling git config to other repo instead of the one that configured in the env
        Then:
            The git config should be as the repo name provided
        """

        requests_mock.get(f'https://api.github.com/repos/{GitContentConfig.OFFICIAL_CONTENT_REPO_NAME}')
        git_config = GitContentConfig(GitContentConfig.OFFICIAL_CONTENT_REPO_NAME)
        assert git_config.current_repository == GitContentConfig.OFFICIAL_CONTENT_REPO_NAME
        assert git_config.base_api == DEFAULT_GITHUB_BASE_API

        custom_repo_name = 'org/repo'
        requests_mock.get(f'https://api.github.com/repos/{custom_repo_name}')
        requests_mock.get('https://api.github.com/repos/demisto/demisto-sdk')
        git_config = GitContentConfig(custom_repo_name)

        assert git_config.current_repository == custom_repo_name
        assert git_config.base_api == f'https://raw.githubusercontent.com/{custom_repo_name}'

        mocker.patch.object(GitContentConfig,
                            '_search_gitlab_repo',
                            return_value=('gitlab.com', 3))
        git_config = GitContentConfig(custom_repo_name, git_provider=GitProvider.GitLab)
        assert git_config.current_repository == custom_repo_name
        assert git_config.base_api == 'https://gitlab.com/api/v4/projects/3/repository'
Example #4
0
    def test_search_gitlab_id_invalid(self, mocker, requests_mock):
        """
        Given:
            An invalid repo name
        When:
            Searching for the id of the repo
        Then:
            None should be returned
        """

        repo = "no-real-repo"
        host = 'code.pan.run'
        search_api_url1 = f'https://code.pan.run/api/v4/projects?search={repo}'
        search_api_url2 = 'https://code.pan.run/api/v4/projects?search=test'

        requests_mock.get(search_api_url1, json=[])
        requests_mock.get(search_api_url2, json=[])
        mocker.patch.object(Repo,
                            'remote',
                            return_value=Urls(
                                ["https://code.pan.run/xsoar/test"]))
        mocker.patch.object(GitContentConfig,
                            '_search_github_repo',
                            return_value=None)
        git_config = GitContentConfig()
        assert git_config._search_gitlab_repo(host, repo) is None
        assert git_config.current_repository == GitContentConfig.OFFICIAL_CONTENT_REPO_NAME
        assert git_config.git_provider == GitProvider.GitHub
        assert git_config.base_api == DEFAULT_GITHUB_BASE_API
Example #5
0
    def test_search_gitlab_id_valid(self, mocker, requests_mock):
        """
        Given:
            A valid repo name
        When:
            Searching for the id of the repo
        Then:
            The id of the repo should be returned
        """

        with open(VALID_GITLAB_RESPONSE) as f:
            gitlab_response = json.load(f)
        repo = 'content-internal-dist'
        host = 'code.pan.run'
        url = f'https://{host}/api/v4/projects?search={repo}'
        requests_mock.get(url, json=gitlab_response)
        mocker.patch.object(
            Repo,
            'remote',
            return_value=Urls(
                ['https://code.pan.run/xsoar/content-internal-dist.git']))
        git_config = GitContentConfig()
        assert git_config.gitlab_id == 3606
        assert git_config.base_api == GitContentConfig.BASE_RAW_GITLAB_LINK.format(
            GITLAB_HOST=host, GITLAB_ID=3606)
Example #6
0
 def test_provide_project_id(self, requests_mock):
     """
     Given:
         Project id to gitlab
     When:
         Calling git config with repo based on gitlab
     Then:
         The git config should be as the repo name provided
     """
     requests_mock.get("https://code.pan.run/api/v4/projects/3")
     git_config = GitContentConfig(project_id=3, git_provider=GitProvider.GitLab, repo_hostname='code.pan.run')
     assert git_config.project_id == 3
     assert git_config.base_api == 'https://code.pan.run/api/v4/projects/3/repository'
Example #7
0
 def test_get_repo_name_empty_case(self, mocker):
     """
     Given:
         No repository (not running in git)
     When:
         Searching for repository name
     Then:
         Validate the correct repo got back - demisto/content
     """
     mocker.patch.object(Repo, 'remote', return_value=Urls(['']))
     mocker.patch.object(GitContentConfig, '_search_github_repo', return_value=None)
     git_config = GitContentConfig()
     assert git_config.current_repository == GitContentConfig.OFFICIAL_CONTENT_REPO_NAME
Example #8
0
    def get_remote_templates(self, files_list, dir):
        """
        Downloading the object related template-files and saving them in the output path.
        Args:
            files_list: List of files to download.
            dir: The name of the relevant directory (e.g. "Integrations", "Scripts").
        Returns:
            bool. True if the files were downloaded and saved successfully, False otherwise.
        """
        # create test_data dir
        if self.template in [self.HELLO_WORLD_INTEGRATION] + self.DEFAULT_TEMPLATES \
                + [self.HELLO_WORLD_FEED_INTEGRATION]:
            os.mkdir(os.path.join(self.full_output_path, self.TEST_DATA_DIR))

        if self.template in self.DEFAULT_TEMPLATES:
            pack_name = self.DEFAULT_TEMPLATE_PACK_NAME

        elif self.template in self.HELLO_WORLD_BASE_TEMPLATES + [
                self.HELLO_WORLD_FEED_INTEGRATION
        ]:
            pack_name = self.HELLO_WORLD_PACK_NAME

        else:
            pack_name = self.template

        path = os.path.join('Packs', pack_name, dir, self.template)

        for file in files_list:
            try:
                filename = file
                if 'README.md' in file and self.template not in self.HELLO_WORLD_BASE_TEMPLATES:
                    # This is for the cases when the actual readme file name in content repo
                    # is `README_example.md` - which happens when we do not want the readme
                    # files to appear in https://xsoar.pan.dev/docs/reference/index.
                    filename = file.replace('README.md', 'README_example.md')
                file_content = tools.get_remote_file(
                    os.path.join(path, filename),
                    return_content=True,
                    # Templates available only in the official repo
                    git_content_config=GitContentConfig(
                        repo_name=GitContentConfig.OFFICIAL_CONTENT_REPO_NAME))
                with open(os.path.join(self.full_output_path, file),
                          'wb') as f:
                    f.write(file_content)
            except Exception:
                print_warning(
                    f"Could not fetch remote template - {file}. Using local templates instead."
                )
                return False

        return True
Example #9
0
 def test_valid_githubs(self, mocker, requests_mock, url: str, repo_name):
     """
     Given:
         valid github remote urls
     When:
         Trying to get github configuration
     Then:
         Validate the correct repo configuration got back
     """
     mocker.patch.object(GitContentConfig,
                         '_search_gitlab_repo',
                         return_value=None)
     mocker.patch.object(Repo, 'remote', return_value=Urls([url]))
     requests_mock.get(f'https://api.github.com/repos/{repo_name}')
     git_config = GitContentConfig()
     assert git_config.current_repository == repo_name
     assert 'githubusercontent.com' in git_config.base_api
Example #10
0
    def test_get_repo_name_gitlab_invalid(self, mocker):
        """
        Given:
            No repository (not running in git)
        When:
            A known output of git.Repo().remotes().url, but this url not found in GitLab API
        Then:
            Ignore gitlab and get back to content (demisto/content)
        """
        url = 'https://code.pan.run/xsoar/very-private-repo'
        mocker.patch.object(Repo, 'remote', return_value=Urls([url]))

        mocker.patch.object(GitContentConfig,
                            '_search_gitlab_repo',
                            return_value=None)
        git_config = GitContentConfig()
        # for invalid response should return the official content repo
        assert git_config.current_repository == GitContentConfig.OFFICIAL_CONTENT_REPO_NAME
Example #11
0
 def test_custom_github_url_invalid(self, mocker, requests_mock):
     """
     Given:
         A github remote url but the repo is not exists
     When:
         Trying to get git configuration
     Then:
         Validate we got back original content
     """
     mocker.patch.object(GitContentConfig,
                         '_search_gitlab_repo',
                         return_value=None)
     custom_github = 'my-own-github-url.com'
     repo_name = 'org/repo'
     requests_mock.get(f'https://api.{custom_github}/repos/{repo_name}', status_code=404)
     requests_mock.get(f'https://api.github.com/repos/{repo_name}', status_code=404)
     url = f'https://{custom_github}/{repo_name}'
     mocker.patch.object(Repo, 'remote', return_value=Urls([url]))
     git_config = GitContentConfig()
     assert git_config.current_repository == GitContentConfig.OFFICIAL_CONTENT_REPO_NAME
     assert git_config.base_api == DEFAULT_GITHUB_BASE_API
Example #12
0
 def test_gitlab_id_not_found(self, mocker):
     """
     Given:
         Specify to use gitlab but cannot find the project id
     When:
         Trying to get git configuration
     Then:
         Validate we got back original content
     """
     mocker.patch.object(GitContentConfig,
                         '_search_gitlab_repo',
                         return_value=None)
     url = 'https://code.pan.run/xsoar/very-private-repo'
     mocker.patch.object(Repo, 'remote', return_value=Urls([url]))
     click_mock = mocker.patch.object(click, 'secho')
     git_config = GitContentConfig(git_provider=GitProvider.GitLab)
     assert git_config.git_provider == GitProvider.GitHub
     assert git_config.current_repository == GitContentConfig.OFFICIAL_CONTENT_REPO_NAME
     assert git_config.base_api == DEFAULT_GITHUB_BASE_API
     message = click_mock.call_args_list[0][0][0]
     assert GitContentConfig.ENV_REPO_HOSTNAME_NAME in message
     assert GitCredentials.ENV_GITLAB_TOKEN_NAME in message