當前位置: 首頁>>代碼示例>>Python>>正文


Python cookielib.domain_match方法代碼示例

本文整理匯總了Python中cookielib.domain_match方法的典型用法代碼示例。如果您正苦於以下問題:Python cookielib.domain_match方法的具體用法?Python cookielib.domain_match怎麽用?Python cookielib.domain_match使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在cookielib的用法示例。


在下文中一共展示了cookielib.domain_match方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_domain_match

# 需要導入模塊: import cookielib [as 別名]
# 或者: from cookielib import domain_match [as 別名]
def test_domain_match(self):
        from cookielib import domain_match, user_domain_match
        self.assertTrue(domain_match("192.168.1.1", "192.168.1.1"))
        self.assertFalse(domain_match("192.168.1.1", ".168.1.1"))
        self.assertTrue(domain_match("x.y.com", "x.Y.com"))
        self.assertTrue(domain_match("x.y.com", ".Y.com"))
        self.assertFalse(domain_match("x.y.com", "Y.com"))
        self.assertTrue(domain_match("a.b.c.com", ".c.com"))
        self.assertFalse(domain_match(".c.com", "a.b.c.com"))
        self.assertTrue(domain_match("example.local", ".local"))
        self.assertFalse(domain_match("blah.blah", ""))
        self.assertFalse(domain_match("", ".rhubarb.rhubarb"))
        self.assertTrue(domain_match("", ""))

        self.assertTrue(user_domain_match("acme.com", "acme.com"))
        self.assertFalse(user_domain_match("acme.com", ".acme.com"))
        self.assertTrue(user_domain_match("rhubarb.acme.com", ".acme.com"))
        self.assertTrue(user_domain_match("www.rhubarb.acme.com", ".acme.com"))
        self.assertTrue(user_domain_match("x.y.com", "x.Y.com"))
        self.assertTrue(user_domain_match("x.y.com", ".Y.com"))
        self.assertFalse(user_domain_match("x.y.com", "Y.com"))
        self.assertTrue(user_domain_match("y.com", "Y.com"))
        self.assertFalse(user_domain_match(".y.com", "Y.com"))
        self.assertTrue(user_domain_match(".y.com", ".Y.com"))
        self.assertTrue(user_domain_match("x.y.com", ".com"))
        self.assertFalse(user_domain_match("x.y.com", "com"))
        self.assertFalse(user_domain_match("x.y.com", "m"))
        self.assertFalse(user_domain_match("x.y.com", ".m"))
        self.assertFalse(user_domain_match("x.y.com", ""))
        self.assertFalse(user_domain_match("x.y.com", "."))
        self.assertTrue(user_domain_match("192.168.1.1", "192.168.1.1"))
        # not both HDNs, so must string-compare equal to match
        self.assertFalse(user_domain_match("192.168.1.1", ".168.1.1"))
        self.assertFalse(user_domain_match("192.168.1.1", "."))
        # empty string is a special case
        self.assertFalse(user_domain_match("192.168.1.1", "")) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:38,代碼來源:test_cookielib.py

示例2: test_domain_match

# 需要導入模塊: import cookielib [as 別名]
# 或者: from cookielib import domain_match [as 別名]
def test_domain_match(self):
        from cookielib import domain_match, user_domain_match
        self.assertTrue(domain_match("192.168.1.1", "192.168.1.1"))
        self.assertTrue(not domain_match("192.168.1.1", ".168.1.1"))
        self.assertTrue(domain_match("x.y.com", "x.Y.com"))
        self.assertTrue(domain_match("x.y.com", ".Y.com"))
        self.assertTrue(not domain_match("x.y.com", "Y.com"))
        self.assertTrue(domain_match("a.b.c.com", ".c.com"))
        self.assertTrue(not domain_match(".c.com", "a.b.c.com"))
        self.assertTrue(domain_match("example.local", ".local"))
        self.assertTrue(not domain_match("blah.blah", ""))
        self.assertTrue(not domain_match("", ".rhubarb.rhubarb"))
        self.assertTrue(domain_match("", ""))

        self.assertTrue(user_domain_match("acme.com", "acme.com"))
        self.assertTrue(not user_domain_match("acme.com", ".acme.com"))
        self.assertTrue(user_domain_match("rhubarb.acme.com", ".acme.com"))
        self.assertTrue(user_domain_match("www.rhubarb.acme.com", ".acme.com"))
        self.assertTrue(user_domain_match("x.y.com", "x.Y.com"))
        self.assertTrue(user_domain_match("x.y.com", ".Y.com"))
        self.assertTrue(not user_domain_match("x.y.com", "Y.com"))
        self.assertTrue(user_domain_match("y.com", "Y.com"))
        self.assertTrue(not user_domain_match(".y.com", "Y.com"))
        self.assertTrue(user_domain_match(".y.com", ".Y.com"))
        self.assertTrue(user_domain_match("x.y.com", ".com"))
        self.assertTrue(not user_domain_match("x.y.com", "com"))
        self.assertTrue(not user_domain_match("x.y.com", "m"))
        self.assertTrue(not user_domain_match("x.y.com", ".m"))
        self.assertTrue(not user_domain_match("x.y.com", ""))
        self.assertTrue(not user_domain_match("x.y.com", "."))
        self.assertTrue(user_domain_match("192.168.1.1", "192.168.1.1"))
        # not both HDNs, so must string-compare equal to match
        self.assertTrue(not user_domain_match("192.168.1.1", ".168.1.1"))
        self.assertTrue(not user_domain_match("192.168.1.1", "."))
        # empty string is a special case
        self.assertTrue(not user_domain_match("192.168.1.1", "")) 
開發者ID:dxwu,項目名稱:BinderFilter,代碼行數:38,代碼來源:test_cookielib.py

示例3: test_domain_match

# 需要導入模塊: import cookielib [as 別名]
# 或者: from cookielib import domain_match [as 別名]
def test_domain_match(self):
        from cookielib import domain_match, user_domain_match
        self.assert_(domain_match("192.168.1.1", "192.168.1.1"))
        self.assert_(not domain_match("192.168.1.1", ".168.1.1"))
        self.assert_(domain_match("x.y.com", "x.Y.com"))
        self.assert_(domain_match("x.y.com", ".Y.com"))
        self.assert_(not domain_match("x.y.com", "Y.com"))
        self.assert_(domain_match("a.b.c.com", ".c.com"))
        self.assert_(not domain_match(".c.com", "a.b.c.com"))
        self.assert_(domain_match("example.local", ".local"))
        self.assert_(not domain_match("blah.blah", ""))
        self.assert_(not domain_match("", ".rhubarb.rhubarb"))
        self.assert_(domain_match("", ""))

        self.assert_(user_domain_match("acme.com", "acme.com"))
        self.assert_(not user_domain_match("acme.com", ".acme.com"))
        self.assert_(user_domain_match("rhubarb.acme.com", ".acme.com"))
        self.assert_(user_domain_match("www.rhubarb.acme.com", ".acme.com"))
        self.assert_(user_domain_match("x.y.com", "x.Y.com"))
        self.assert_(user_domain_match("x.y.com", ".Y.com"))
        self.assert_(not user_domain_match("x.y.com", "Y.com"))
        self.assert_(user_domain_match("y.com", "Y.com"))
        self.assert_(not user_domain_match(".y.com", "Y.com"))
        self.assert_(user_domain_match(".y.com", ".Y.com"))
        self.assert_(user_domain_match("x.y.com", ".com"))
        self.assert_(not user_domain_match("x.y.com", "com"))
        self.assert_(not user_domain_match("x.y.com", "m"))
        self.assert_(not user_domain_match("x.y.com", ".m"))
        self.assert_(not user_domain_match("x.y.com", ""))
        self.assert_(not user_domain_match("x.y.com", "."))
        self.assert_(user_domain_match("192.168.1.1", "192.168.1.1"))
        # not both HDNs, so must string-compare equal to match
        self.assert_(not user_domain_match("192.168.1.1", ".168.1.1"))
        self.assert_(not user_domain_match("192.168.1.1", "."))
        # empty string is a special case
        self.assert_(not user_domain_match("192.168.1.1", "")) 
開發者ID:ofermend,項目名稱:medicare-demo,代碼行數:38,代碼來源:test_cookielib.py


注:本文中的cookielib.domain_match方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。