34

我的网站允许个人在没有登录的情况下通过基于当前 session_key 创建用户来贡献内容

我想为我的视图设置一个测试,但似乎无法修改 request.session:

我想这样做:

from django.contrib.sessions.models import Session
s = Session()
s.expire_date = '2010-12-05'
s.session_key = 'my_session_key'
s.save()
self.client.session = s
response = self.client.get('/myview/')

但我得到了错误:

AttributeError: can't set attribute

关于在发出获取请求之前如何修改客户端会话的想法?我已经看到,它似乎不起作用

4

5 回答 5

66

django 测试框架的客户端对象可以触摸会话。查看http://docs.djangoproject.com/en/dev/topics/testing/?from=olddocs#django.test.client.Client.session了解详情

当心 :To modify the session and then save it, it must be stored in a variable first (because a new SessionStore is created every time this property is accessed)

我认为下面这样的事情应该有效

s = self.client.session
s.update({
    "expire_date": '2010-12-05',
    "session_key": 'my_session_key',
})
s.save()
response = self.client.get('/myview/')
于 2010-12-15T20:42:47.607 回答
38

我就是这样做的(灵感来自http://blog.mediaonfire.com/?p=36中的解决方案)。

from django.test import TestCase
from django.conf import settings
from django.utils.importlib import import_module

class SessionTestCase(TestCase):
    def setUp(self):
        # http://code.djangoproject.com/ticket/10899
        settings.SESSION_ENGINE = 'django.contrib.sessions.backends.file'
        engine = import_module(settings.SESSION_ENGINE)
        store = engine.SessionStore()
        store.save()
        self.session = store
        self.client.cookies[settings.SESSION_COOKIE_NAME] = store.session_key

之后,您可以将测试创建为:

class BlahTestCase(SessionTestCase):

    def test_blah_with_session(self):
        session = self.session
        session['operator'] = 'Jimmy'
        session.save()

ETC...

于 2011-10-11T07:08:13.687 回答
14

正如 Andrew Austin 已经提到的,由于这个错误,它不起作用:https ://code.djangoproject.com/ticket/11475

你可以做的是:

from django.test import TestCase
from django.test.client import Client
from django.contrib.auth.models import User

class SessionTestCase(TestCase):
    def setUp(self):
        self.client = Client()
        User.objects.create_user('john', 'lennon@thebeatles.com', 'johnpassword')
        self.client.login(username='john', password='johnpassword')

    def test_something_with_sessions(self):
        session = self.client.session
        session['key'] = 'value'
        session.save()

在使用 User.objects.create_user() 和 self.client.login() 创建并登录用户后,如上面的代码所示,会话应该可以工作。

于 2013-03-04T03:55:39.873 回答
3

您可以创建一个自定义视图来插入虚拟数据,例如会话。

具有相应 url 的视图:/dummy/:

def dummy(request):
    # dummy init data
    request.session['expiry_date'] = '2010-12-05'
    return HttpResponse('Dummy data has been set successfully')

比在测试脚本中调用self.client.get('/dummy/')

在手动测试时,我还使用这个虚拟视图来初始化会话中的虚拟数据。

于 2011-04-16T13:51:05.317 回答
2

根据文档,您可以通过例如向测试客户端中的会话添加值

def test_something(self):
    session = self.client.session
    session['somekey'] = 'test'
    session.save()

https://docs.djangoproject.com/en/dev/topics/testing/tools/#django.test.Client.session

这将允许您测试需要会话中的数据才能正常运行的视图。

所以对于这个问题:

session = self.client.session
   session['expire_date'] = '2010-12-05'
   .....
   session.save()
于 2017-12-07T19:14:06.377 回答