5

每当我在测试期间使用 requestFactory 时,例如:

from django.contrib.auth.models import User
from django.test import TestCase
from django.test.client import RequestFactory
from django.test.client import Client
import nose.tools as nt

class TestSomeTestCaseWithUser(TestCase):

    def setUp(self):
        # Every test needs access to the request factory.
        self.factory = RequestFactory()
        self.client = Client()
        self.user_foo = User.objects.create_user('foo', 'foo@bar.com', 'bar')

    def tearDown(self):
        # Delete those objects that are saved in setup
        self.user_foo.delete()

    def test_request_user(self):
        self.client.login( username='foo', password='bar')
        request = self.factory.post('/my/url/', {"somedata": "data"})
        nt.assert_equal(request.user,self.user_foo)

在我尝试使用 request.user 的所有内容上:

AttributeError: 'dict' object has no attribute 'user'

这不起作用,所以我添加了一个解决方法:

def test_request_user(self):
    # Create an instance of a GET request.
    self.client.login( username='foo', password='bar')
    request = self.factory.post('/my/url/', {"somedata": "data"})
    # a little workaround, because factory does not add the logged in user
    request.user = self.user_foo
    nt.assert_equal(request.user,self.user_foo)

我在我的代码中经常使用 request.user ......所以在我想要(单元)测试的东西中也是如此......

感谢这个问题和答案,我发现您需要手动将用户添加到请求中:How to access request.user while testing? 我将此添加为解决方法。

我的问题是:

  • 为什么是这样?
  • 感觉就像请求工厂中的一个错误,是吗?(这是一种解决方法,还是只是一个未记录的功能)
  • 还是我做错了什么?(测试客户和工厂的结合)
  • 有没有更好的方法来测试请求中的登录用户?

我也试过这个:同样的问题

    response = self.client.post("/my/url/")
    request = response.request

顺便说一句,这个答案:Accessing the request.user object when testing Django建议使用

response.context['user'] 

代替

request.user

但在我的代码中并非如此,据我所知 request.user 已退出正常使用,为了解释我的问题,我将 request.user 置于测试中......在我的现实生活中,它不是在测试中......它在我要测试的代码中。

4

1 回答 1

8

抱歉......这似乎是一个记录在案的功能......

但是,最好举一个更好的例子。

看到这个

它在第三个列表项中:

它不支持中间件。如果视图正常运行需要,会话和身份验证属性必须由测试本身提供。

然而......这似乎与第一句话矛盾:

RequestFactory 与测试客户端共享相同的 API。然而,RequestFactory 提供了一种生成请求实例的方法,而不是像浏览器那样表现,该实例可以用作任何视图的第一个参数。这意味着您可以像测试任何其他功能一样测试视图功能

特别是同样的方式

不知道我是否应该删除这个问题......解决这个问题花了我很多时间......而不是理解我的解决方法......

所以我想有人也可以使用它..

我刚刚添加了一个文档扩展请求:https ://code.djangoproject.com/ticket/20609

于 2013-06-15T13:04:27.557 回答