每当我在测试期间使用 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 置于测试中......在我的现实生活中,它不是在测试中......它在我要测试的代码中。