我无法设置 funkload 与 cookie 一起工作。我打开fl-record
并执行一系列请求,每个请求都发送一个 cookie。如果我在不提供文件夹路径的情况下使用该命令,则输出以 TCPWatch-Proxy 格式存储,我可以看到所有 cookie 的内容,因此我知道它们已发送。
例如,这是以下内容watch0003.request
:
GET http://mydomainnamehere.pl/api/world/me/ HTTP/1.1
Host: mydomainnamehere.pl
Proxy-Connection: keep-alive
Referer: http://mydomainnamehere.pl/test/engine/
X-Requested-With: XMLHttpRequest
User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.57 Safari/534.24
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: pl,en-US;q=0.8,en;q=0.6,fr-FR;q=0.4,fr;q=0.2
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: Beacon-ClientID=<<<some-beaconpush-id-here>>>; sessionid=<<<some-session-id>>>; fbs_<<<some-facebook-id>>>="access_token=<<<some-access-token>>>&expires=1308254400&secret=<<<some-secret>>>&session_key=<<<some-session-key>>>&sig=<<<some-signature>>>&uid=<<<some-user-id>>>"; Beacon-Preferred-Client=WebSocket
但是,如果我fl-record
使用测试用例的名称运行并通过这样做命令 funkload 将输出存储为 python 测试,则所有 Cookie 都将被省略。代码中没有一行与它们有任何关系:
import unittest
from funkload.FunkLoadTestCase import FunkLoadTestCase
from webunit.utility import Upload
from funkload.utils import Data
#from funkload.utils import xmlrpc_get_credential
class Simple(FunkLoadTestCase):
def setUp(self):
"""Setting up test."""
self.logd("setUp")
self.server_url = self.conf_get('main', 'url')
# XXX here you can setup the credential access like this
# credential_host = self.conf_get('credential', 'host')
# credential_port = self.conf_getInt('credential', 'port')
# self.login, self.password = xmlrpc_get_credential(credential_host,
# credential_port,
# XXX replace with a valid group
# 'members')
def test_simple(self):
# The description should be set in the configuration file
server_url = self.server_url
# begin of test ---------------------------------------------
...
# /tmp/tmp5Nv5lW_funkload/watch0003.request
self.get(server_url + "/api/world/me/",
description="Get /api/world/me/")
...
# end of test -----------------------------------------------
def tearDown(self):
"""Setting up test."""
self.logd("tearDown.\n")
if __name__ in ('main', '__main__'):
unittest.main()
还有一个配置文件,但也没有关于 cookie 的内容。
另一方面,文档指出 fl 具有(Cookie 支持)。我还在以前的版本中发现了一些关于 Cookie 支持的错误修正,所以我可以假设这不仅仅是一个空的声明。我还在其中一个更改日志中发现了一个点,指出“已删除的 cookie”不包含在输出中。这让我想知道,问题可能在于记录的 cookie 被标记为删除,或者在从 TCP-Watch 格式转换为实际测试用例时被 fl 识别为删除。然而,这只是一个疯狂的猜测。
我想知道:
- 如果您曾经在 funkload 的 cookie 支持方面取得成功。如果是这样,您使用的是哪个版本。
- 关于你对 funkload 的一般体验,以及它是否值得在更复杂的设置中使用。
编辑
显然,记录的一些请求TCPWatch
完全被忽略了,并且不包含在输出测试用例中。有人知道为什么要这样做吗?它与重定向有什么关系吗?
编辑(2)
好的,确实如此。这件事实际上是有道理的。它忽略了重定向的结果,因为这些将通过简单地生成HTTP 302 Found
。然而,cookie 的问题仍然无法解释。