コード例 #1
0
 def assertScopeMatch(self, assumed, requiredScopeSets, expected):
     try:
         result = subject.scopeMatch(assumed, requiredScopeSets)
         self.assertEqual(result, expected)
     except:
         if expected != 'exception':
                 raise
コード例 #2
0
 def assertScopeMatch(self, assumed, requiredScopeSets, expected):
     try:
         result = subject.scopeMatch(assumed, requiredScopeSets)
         self.assertEqual(result, expected)
     except:
         if expected != 'exception':
             raise
コード例 #3
0
    def _find_user_by_email(self, email, username, scopes):
        """
        Try to find an existing user that matches the email.
        """

        if scopeMatch(scopes, [["assume:mozilla-user:{}".format(email)]]):
            # Find the user by their email.

            # Since there is a unique index on username, but not on email,
            # it is POSSIBLE there could be two users with the same email and
            # different usernames.  Not very likely, but this is safer.
            users = User.objects.filter(email=email)

            # update the username
            if users:
                user = users.first()
                user.username = username
                user.save()
                return user

        # if we didn't find any, or the user doesn't have the proper scope,
        # then raise an exception so we create a new user
        raise ObjectDoesNotExist
コード例 #4
0
ファイル: test_utils.py プロジェクト: vnzongzna/taskcluster
def assertScopeMatch(self, assumed, requiredScopeSets, expected):
    try:
        result = subject.scopeMatch(assumed, requiredScopeSets)
        assert result == expected
    except Exception:
        if expected != 'exception':
            raise

    def test_single_exact_match_string_except_1(self):
        self.assertScopeMatch(["foo:bar"], "foo:bar", "exception")

    def test_single_exact_match_string_except_2(self):
        self.assertScopeMatch(["foo:bar"], ["foo:bar"], "exception")

    def test_single_exact_match_string(self):
        self.assertScopeMatch(["foo:bar"], [["foo:bar"]], True)

    def test_empty_string_in_scopesets_except_1(self):
        self.assertScopeMatch(["foo:bar"], "", "exception")

    def test_empty_string_in_scopesets_except_2(self):
        self.assertScopeMatch(["foo:bar"], [""], "exception")

    def test_empty_string_in_scopesets(self):
        self.assertScopeMatch(["foo:bar"], [[""]], False)

    def test_prefix(self):
        self.assertScopeMatch(["foo:*"], [["foo:bar"]], True)

    def test_star_not_at_end(self):
        self.assertScopeMatch(["foo:*:bing"], [["foo:bar:bing"]], False)

    def test_star_at_beginnging(self):
        self.assertScopeMatch(["*:bar"], [["foo:bar"]], False)

    def test_prefix_with_no_star(self):
        self.assertScopeMatch(["foo:"], [["foo:bar"]], False)

    def test_star_but_not_prefix_1(self):
        self.assertScopeMatch(["foo:bar:*"], [["bar:bing"]], False)

    def test_star_but_not_prefix_2(self):
        self.assertScopeMatch(["bar:*"], [["foo:bar:bing"]], False)

    def test_disjunction_strings_except(self):
        self.assertScopeMatch(["bar:*"], ["foo:x", "bar:x"], "exception")

    def test_disjunction_strings_2(self):
        self.assertScopeMatch(["bar:*"], [["foo:x"], ["bar:x"]], True)

    def test_conjunction(self):
        self.assertScopeMatch(["bar:*", "foo:x"], [["foo:x", "bar:y"]], True)

    def test_empty_pattern(self):
        self.assertScopeMatch([""], [["foo:bar"]], False)

    def test_empty_patterns(self):
        self.assertScopeMatch([], [["foo:bar"]], False)

    def test_bare_star(self):
        self.assertScopeMatch(["*"], [["foo:bar", "bar:bing"]], True)

    def test_empty_conjunction_in_scopesets(self):
        self.assertScopeMatch(["foo:bar"], [[]], True)

    def test_non_string_scopesets(self):
        self.assertScopeMatch(["foo:bar"], {}, "exception")

    def test_non_string_scopeset(self):
        self.assertScopeMatch(["foo:bar"], [{}], "exception")

    def test_non_string_scope(self):
        self.assertScopeMatch(["foo:bar"], [[{}]], "exception")

    def test_empty_disjunction_in_scopesets(self):
        self.assertScopeMatch(["foo:bar"], [], False)