gpt4 book ai didi

python webtest端口配置?

转载 作者:太空狗 更新时间:2023-10-30 02:14:16 24 4
gpt4 key购买 nike

我正在尝试使用 webtest 编写一些测试来测试我的 python GAE 应用程序。我遇到的问题是应用程序正在监听端口 8080,但我无法将 webtest 配置为访问该端口。

比如我想用app.get('/getreport')来打http://localhost:8080/getreport .显然,它只命中了 http://localhost/getreport。

有没有办法设置 webtest 以命中特定端口?

最佳答案

使用 paste.proxy.TransparentProxy,您可以测试任何响应 http 请求的东西...

from webtest import TestApp
from paste.proxy import TransparentProxy
testapp = TestApp(TransparentProxy())
res = testapp.get("http://google.com")
assert res.status=="200 OK","failure....."

关于python webtest端口配置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2774249/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com