Example #1
0
 def test_garbageMatch(self):
     r = 'http://example.com/return.to'
     self.failUnless(
         trustroot.returnToMatches([
             'This is not a URL at all. In fact, it has characters, '
             'like "<" that are not allowed in URLs', r
         ], r))
Example #2
0
 def test_garbageMatch(self):
     r = 'http://example.com/return.to'
     self.failUnless(trustroot.returnToMatches(
         ['This is not a URL at all. In fact, it has characters, '
          'like "<" that are not allowed in URLs',
          r],
         r))
Example #3
0
 def test_noMatch(self):
     r = 'http://example.com/return.to'
     self.failIf(trustroot.returnToMatches(
         [r],
         'http://example.com/xss_exploit'))
Example #4
0
 def test_wildcard(self):
     self.failIf(trustroot.returnToMatches(
         ['http://*.example.com/return.to'],
         'http://example.com/return.to'))
Example #5
0
 def test_descendant(self):
     r = 'http://example.com/return.to'
     self.failUnless(trustroot.returnToMatches(
         [r],
         'http://example.com/return.to/user:joe'))
Example #6
0
 def test_exactMatch(self):
     r = 'http://example.com/return.to'
     self.failUnless(trustroot.returnToMatches([r], r))
Example #7
0
 def test_noEntries(self):
     self.failIf(trustroot.returnToMatches([], 'anything'))
Example #8
0
 def test_noMatch(self):
     r = 'http://example.com/return.to'
     self.failIf(
         trustroot.returnToMatches([r], 'http://example.com/xss_exploit'))
Example #9
0
 def test_wildcard(self):
     self.failIf(
         trustroot.returnToMatches(['http://*.example.com/return.to'],
                                   'http://example.com/return.to'))
Example #10
0
 def test_descendant(self):
     r = 'http://example.com/return.to'
     self.failUnless(
         trustroot.returnToMatches([r],
                                   'http://example.com/return.to/user:joe'))
Example #11
0
 def test_exactMatch(self):
     r = 'http://example.com/return.to'
     self.failUnless(trustroot.returnToMatches([r], r))
Example #12
0
 def test_noEntries(self):
     self.failIf(trustroot.returnToMatches([], 'anything'))