当前位置: 首页>>代码示例>>Python>>正文


Python TestEnv.curl_post_data方法代码示例

本文整理汇总了Python中TestEnv.TestEnv.curl_post_data方法的典型用法代码示例。如果您正苦于以下问题:Python TestEnv.curl_post_data方法的具体用法?Python TestEnv.curl_post_data怎么用?Python TestEnv.curl_post_data使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TestEnv.TestEnv的用法示例。


在下文中一共展示了TestEnv.curl_post_data方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_200_03

# 需要导入模块: from TestEnv import TestEnv [as 别名]
# 或者: from TestEnv.TestEnv import curl_post_data [as 别名]
 def test_200_03(self):
     url = TestEnv.mkurl("https", "cgi", "/hecho.py")
     for hex in [ "10", "7f" ]:
         r = TestEnv.curl_post_data(url, "name=x%%%s&value=yz" % hex)
         assert 0 != r["rv"]
         r = TestEnv.curl_post_data(url, "name=x&value=y%%%sz" % hex)
         assert 0 != r["rv"]
开发者ID:covener,项目名称:mod_h2,代码行数:9,代码来源:test_200_header_invalid.py

示例2: test_200_02

# 需要导入模块: from TestEnv import TestEnv [as 别名]
# 或者: from TestEnv.TestEnv import curl_post_data [as 别名]
 def test_200_02(self):
     url = TestEnv.mkurl("https", "cgi", "/hecho.py")
     for x in range(1, 32):
         if 9 != x:
             r = TestEnv.curl_post_data(url, "name=x&value=y%%%02x" % x)
             if x in [ 10, 13 ]:
                 assert 0 == r["rv"], "unexpected exit code for char 0x%02x" % x
                 assert 200 == r["response"]["status"], "unexpected status for char 0x%02x" % x
             else:
                 assert 0 != r["rv"], "unexpected exit code for char 0x%02x" % x
开发者ID:covener,项目名称:mod_h2,代码行数:12,代码来源:test_200_header_invalid.py

示例3: test_300_02

# 需要导入模块: from TestEnv import TestEnv [as 别名]
# 或者: from TestEnv.TestEnv import curl_post_data [as 别名]
 def test_300_02(self):
     url = TestEnv.mkurl("https", "cgi", "/echo.py")
     r = TestEnv.curl_post_data(url, 'XYZ', options=[ "-H", "expect: 100-continue" ])
     assert 200 == r["response"]["status"]
     assert "previous" in r["response"]
     assert 100 == r["response"]["previous"]["status"] 
开发者ID:covener,项目名称:mod_h2,代码行数:8,代码来源:test_300_interim.py

示例4: test_300_03

# 需要导入模块: from TestEnv import TestEnv [as 别名]
# 或者: from TestEnv.TestEnv import curl_post_data [as 别名]
 def test_300_03(self):
     url = TestEnv.mkurl("https", "cgi", "/echo.py")
     r = TestEnv.curl_post_data(url, 'XYZ', options=[ "-H", "expect: the-unexpected" ])
     assert 417 == r["response"]["status"]
     assert not "previous" in r["response"]
开发者ID:covener,项目名称:mod_h2,代码行数:7,代码来源:test_300_interim.py

示例5: test_300_01

# 需要导入模块: from TestEnv import TestEnv [as 别名]
# 或者: from TestEnv.TestEnv import curl_post_data [as 别名]
 def test_300_01(self):
     url = TestEnv.mkurl("https", "test1", "/index.html")
     r = TestEnv.curl_post_data(url, 'XYZ')
     assert 200 == r["response"]["status"]
     assert not "previous" in r["response"]
开发者ID:covener,项目名称:mod_h2,代码行数:7,代码来源:test_300_interim.py


注:本文中的TestEnv.TestEnv.curl_post_data方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。