Ejemplo n.º 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))
Ejemplo n.º 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))
Ejemplo n.º 3
0
 def test_descendant(self):
     r = 'http://example.com/return.to'
     self.failUnless(trustroot.returnToMatches(
         [r],
         'http://example.com/return.to/user:joe'))
Ejemplo n.º 4
0
 def test_exactMatch(self):
     r = 'http://example.com/return.to'
     self.failUnless(trustroot.returnToMatches([r], r))
Ejemplo n.º 5
0
 def test_noEntries(self):
     self.failIf(trustroot.returnToMatches([], 'anything'))
Ejemplo n.º 6
0
 def test_exactMatch(self):
     r = 'http://example.com/return.to'
     self.assertTrue(trustroot.returnToMatches([r], r))
Ejemplo n.º 7
0
 def test_noEntries(self):
     self.assertFalse(trustroot.returnToMatches([], 'anything'))
Ejemplo n.º 8
0
 def test_exactMatch(self):
     r = 'http://example.com/return.to'
     self.failUnless(trustroot.returnToMatches([r], r))
Ejemplo n.º 9
0
 def test_wildcard(self):
     self.assertFalse(
         trustroot.returnToMatches(['http://*.example.com/return.to'],
                                   'http://example.com/return.to'))
Ejemplo n.º 10
0
 def test_descendant(self):
     r = 'http://example.com/return.to'
     self.assertTrue(
         trustroot.returnToMatches([r],
                                   'http://example.com/return.to/user:joe'))
Ejemplo n.º 11
0
 def test_garbageMatch(self):
     r = 'http://example.com/return.to'
     realm = 'This is not a URL at all. In fact, it has characters, like "<" that are not allowed in URLs'
     self.assertTrue(trustroot.returnToMatches([realm, r], r))
Ejemplo n.º 12
0
 def test_exactMatch(self):
     r = 'http://example.com/return.to'
     self.assertTrue(trustroot.returnToMatches([r], r))
Ejemplo n.º 13
0
 def test_noEntries(self):
     self.assertFalse(trustroot.returnToMatches([], 'anything'))
Ejemplo n.º 14
0
 def test_garbageMatch(self):
     r = 'http://example.com/return.to'
     realm = 'This is not a URL at all. In fact, it has characters, like "<" that are not allowed in URLs'
     self.assertTrue(trustroot.returnToMatches([realm, r], r))
Ejemplo n.º 15
0
 def test_wildcard(self):
     self.failIf(trustroot.returnToMatches(
         ['http://*.example.com/return.to'],
         'http://example.com/return.to'))
Ejemplo n.º 16
0
 def test_noMatch(self):
     r = 'http://example.com/return.to'
     self.assertFalse(
         trustroot.returnToMatches([r], 'http://example.com/xss_exploit'))
Ejemplo n.º 17
0
 def test_noMatch(self):
     r = 'http://example.com/return.to'
     self.failIf(trustroot.returnToMatches(
         [r],
         'http://example.com/xss_exploit'))
Ejemplo n.º 18
0
 def test_noEntries(self):
     self.failIf(trustroot.returnToMatches([], 'anything'))