当前位置: 首页>>代码示例>>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;未经允许,请勿转载。