Exemple #1
0
 def test_get_refs_registered_missing_branch(self):
     github_mock = self.github
     self.node_settings.registration_data = {
         'branches':
         [branch.as_json() for branch in github_mock.branches.return_value]
     }
     with mock.patch('osf.models.node.AbstractNode.is_registration',
                     new_callable=mock.PropertyMock) as mock_is_reg:
         mock_is_reg.return_value = True
         with assert_raises(HTTPError):
             utils.get_refs(self.node_settings, branch='nothere')
Exemple #2
0
 def test_get_refs_registered_missing_branch(self):
     github_mock = self.github
     self.node_settings.registration_data = {
         'branches': [
             branch.as_json()
             for branch in github_mock.branches.return_value
         ]
     }
     with mock.patch('osf.models.node.AbstractNode.is_registration', new_callable=mock.PropertyMock) as mock_is_reg:
         mock_is_reg.return_value = True
         with assert_raises(HTTPError):
             utils.get_refs(self.node_settings, branch='nothere')
Exemple #3
0
 def test_get_refs_branch(self, mock_repo, mock_branches):
     github_mock = self.github
     mock_repo.return_value = github_mock.repo.return_value
     mock_branches.return_value = github_mock.branches.return_value
     branch, sha, branches = utils.get_refs(self.node_settings, 'master')
     assert_equal(branch, 'master')
     branch_sha = self._get_sha_for_branch('master')
     assert_equal(sha, branch_sha)
     assert_equal(branches, github_mock.branches.return_value)
Exemple #4
0
 def test_get_refs_defaults(self, mock_repo, mock_branches):
     github_mock = self.github
     mock_repo.return_value = github_mock.repo.return_value
     mock_branches.return_value = github_mock.branches.return_value
     branch, sha, branches = utils.get_refs(self.node_settings)
     assert_equal(branch, github_mock.repo.return_value.default_branch)
     assert_equal(sha, self._get_sha_for_branch(
         branch=None))  # Get refs for default branch
     assert_equal(branches, github_mock.branches.return_value)
Exemple #5
0
 def test_get_refs_branch(self, mock_repo, mock_branches):
     github_mock = self.github
     mock_repo.return_value = github_mock.repo.return_value
     mock_branches.return_value = github_mock.branches.return_value
     branch, sha, branches = utils.get_refs(self.node_settings, 'master')
     assert_equal(branch, 'master')
     branch_sha = self._get_sha_for_branch('master')
     assert_equal(sha, branch_sha)
     assert_equal(
         branches,
         github_mock.branches.return_value
     )
Exemple #6
0
 def test_get_refs_defaults(self, mock_repo, mock_branches):
     github_mock = self.github
     mock_repo.return_value = github_mock.repo.return_value
     mock_branches.return_value = github_mock.branches.return_value
     branch, sha, branches = utils.get_refs(self.node_settings)
     assert_equal(
         branch,
         github_mock.repo.return_value.default_branch
     )
     assert_equal(sha, self._get_sha_for_branch(branch=None))  # Get refs for default branch
     assert_equal(
         branches,
         github_mock.branches.return_value
     )
Exemple #7
0
def github_hgrid_data(node_settings, auth, **kwargs):

    # Quit if no repo linked
    if not node_settings.complete:
        return

    connection = GitHubClient(external_account=node_settings.external_account)

    # Initialize repo here in the event that it is set in the privacy check
    # below. This potentially saves an API call in _check_permissions, below.
    repo = None

    # Quit if privacy mismatch and not contributor
    node = node_settings.owner
    if node.is_public and not node.is_contributor(auth.user):
        try:
            repo = connection.repo(node_settings.user, node_settings.repo)
        except NotFoundError:
            logger.error('Could not access GitHub repo')
            return None
        except GitHubError:
            return
        if repo.private:
            return None

    try:
        branch, sha, branches = get_refs(
            node_settings,
            branch=kwargs.get('branch'),
            sha=kwargs.get('sha'),
            connection=connection,
        )
    except (NotFoundError, GitHubError):
        # TODO: Show an alert or change GitHub configuration?
        logger.error('GitHub repo not found')
        return

    if branch is not None:
        ref = ref_to_params(branch, sha)
        can_edit = check_permissions(
            node_settings, auth, connection, branch, sha, repo=repo,
        )
    else:
        ref = None
        can_edit = False

    name_tpl = '{user}/{repo}'.format(
        user=node_settings.user, repo=node_settings.repo
    )

    permissions = {
        'edit': can_edit,
        'view': True,
        'private': node_settings.is_private
    }
    urls = {
        'upload': node_settings.owner.api_url + 'github/file/' + (ref or ''),
        'fetch': node_settings.owner.api_url + 'github/hgrid/' + (ref or ''),
        'branch': node_settings.owner.api_url + 'github/hgrid/root/',
        'zip': node_settings.owner.api_url + 'github/zipball/' + (ref or ''),
        'repo': 'https://github.com/{0}/{1}/tree/{2}'.format(node_settings.user, node_settings.repo, branch)
    }

    branch_names = [each.name for each in branches]
    if not branch_names:
        branch_names = [branch]  # if repo un-init-ed then still add default branch to list of branches

    return [rubeus.build_addon_root(
        node_settings,
        name_tpl,
        urls=urls,
        permissions=permissions,
        branches=branch_names,
        defaultBranch=branch,
        private_key=kwargs.get('view_only', None),
    )]
Exemple #8
0
 def test_get_refs_defaults(self, mock_repo, mock_branches):
     github_mock = self.github
     mock_repo.return_value = github_mock.repo.return_value
     mock_branches.return_value = github_mock.branches.return_value
     branch, sha, branches = utils.get_refs(self.node_settings)
Exemple #9
0
 def test_get_refs_sha_no_branch(self):
     with assert_raises(HTTPError):
         utils.get_refs(self.node_settings, sha='12345')
Exemple #10
0
 def test_get_refs_sha_no_branch(self):
     with assert_raises(HTTPError):
         utils.get_refs(self.node_settings, sha='12345')