Exemplo n.º 1
0
    def test_multi_roles(self, wsgi):
        body = {'username': fake.word(), 'password': fake.word()}
        with patch('github.AuthenticatedUser.AuthenticatedUser'
                   ) as github_user_mock:
            # TODO: create role role1

            github_user = github_user_mock.return_value
            github_user.create_authorization.return_value = Authorization(
                None, [], {"token": "123456789"}, completed=True)
            github_user.login = '******'

            admin_team = Team(None, [], {"name": "sandwich-admin"},
                              completed=True)
            admin_team.has_in_members = MagicMock(return_value=True)

            prefix_team = Team(None, [], {"name": "sandwich-role1"},
                               completed=True)
            prefix_team.has_in_members = MagicMock(return_value=True)

            org = Organization(None, [], {"login": "******"}, completed=True)
            org.get_teams = MagicMock(return_value=[admin_team, prefix_team])

            github_user.get_orgs.return_value = [org]

            self.post(wsgi, '/v1/auth/github/authorization', body=body)
Exemplo n.º 2
0
    def test_exception(self, wsgi):
        body = {'username': fake.word(), 'password': fake.word()}
        with patch('github.AuthenticatedUser.AuthenticatedUser'
                   ) as github_user_mock:
            github_user = github_user_mock.return_value
            github_user.create_authorization.side_effect = GithubException(
                500, 'some other exception')

            self.post(wsgi,
                      '/v1/auth/github/authorization',
                      body=body,
                      status=424)
Exemplo n.º 3
0
    def test_required_otp(self, wsgi):
        body = {'username': fake.word(), 'password': fake.word()}
        with patch('github.AuthenticatedUser.AuthenticatedUser'
                   ) as github_user_mock:
            github_user = github_user_mock.return_value
            github_user.create_authorization.side_effect = TwoFactorException(
                401, 'two factor plz')

            self.post(wsgi,
                      '/v1/auth/github/authorization',
                      body=body,
                      status=401)
Exemplo n.º 4
0
    def test_invalid_creds(self, wsgi):
        body = {'username': fake.word(), 'password': fake.word()}
        with patch('github.AuthenticatedUser.AuthenticatedUser'
                   ) as github_user_mock:
            github_user = github_user_mock.return_value
            github_user.create_authorization.side_effect = BadCredentialsException(
                404, "Bad creds")

            self.post(wsgi,
                      '/v1/auth/github/authorization',
                      body=body,
                      status=404)
Exemplo n.º 5
0
    def test_ok(self, wsgi):
        body = {'username': fake.word(), 'password': fake.word()}
        with patch('github.AuthenticatedUser.AuthenticatedUser'
                   ) as github_user_mock:
            github_user = github_user_mock.return_value
            github_user.create_authorization.return_value = Authorization(
                None, [], {"token": "123456789"}, completed=True)
            github_user.login = '******'

            org = Organization(None, [], {"login": "******"}, completed=True)
            org.get_teams = MagicMock(return_value=[])

            github_user.get_orgs.return_value = [org]

            self.post(wsgi, '/v1/auth/github/authorization', body=body)
Exemplo n.º 6
0
    def test_not_in_org(self, wsgi):
        body = {'username': fake.word(), 'password': fake.word()}
        with patch('github.AuthenticatedUser.AuthenticatedUser') as github_user_mock, \
                patch('github.Organization.Organization') as github_org:
            github_user = github_user_mock.return_value
            github_user.create_authorization.return_value = Authorization(
                None, [], {"token": "123456789"}, completed=True)
            github_user.login = '******'
            github_user.get_orgs.return_value = []

            github_org.has_in_members.return_value = False

            self.post(wsgi,
                      '/v1/auth/github/authorization',
                      body=body,
                      status=403)