Ticket #10899: 10899_at_r16097.diff

File 10899_at_r16097.diff, 6.5 KB (added by Preston Timmons, 13 years ago)

Updated ticket to not produce extra queries

  • django/test/client.py

    diff --git a/django/test/client.py b/django/test/client.py
    index 5cbc0ca..95085b5 100644
    a b class Client(RequestFactory):  
    345345        super(Client, self).__init__(**defaults)
    346346        self.handler = ClientHandler(enforce_csrf_checks)
    347347        self.exc_info = None
     348        self._session_store = None
    348349
    349350    def store_exc_info(self, **kwargs):
    350351        """
    class Client(RequestFactory):  
    356357        """
    357358        Obtains the current session variables.
    358359        """
     360        if self._session_store:
     361            return self._session_store
     362
    359363        if 'django.contrib.sessions' in settings.INSTALLED_APPS:
    360364            engine = import_module(settings.SESSION_ENGINE)
    361             cookie = self.cookies.get(settings.SESSION_COOKIE_NAME, None)
     365            cookie = self.cookies.get(settings.SESSION_COOKIE_NAME)
    362366            if cookie:
    363                 return engine.SessionStore(cookie.value)
    364         return {}
     367                session_store = engine.SessionStore(cookie.value)
     368            else:
     369                session_store = engine.SessionStore()
     370                session_store.save()
     371                self.cookies[settings.SESSION_COOKIE_NAME] = \
     372                     session_store.session_key
     373            self._session_store = session_store
     374            return session_store
     375        else:
     376            return {}
    365377    session = property(_session)
    366378
    367 
    368379    def request(self, **request):
    369380        """
    370381        The master request method. Composes the environment dictionary
    class Client(RequestFactory):  
    374385        """
    375386        environ = self._base_environ(**request)
    376387
     388        if self._session_store:
     389            if getattr(self._session_store, "modified"):
     390                self._session_store.save()
     391
     392            if 'django.contrib.sessions' in settings.INSTALLED_APPS:
     393                # Update the session cookie since the session key can change
     394                # due to login or logout and force the session to be reloaded
     395                # on next access.
     396                self.cookies[settings.SESSION_COOKIE_NAME] = \
     397                    self._session_store.session_key
     398                self._session_store = None
     399
    377400        # Curry a data dictionary into an instance of the template renderer
    378401        # callback function.
    379402        data = {}
    class Client(RequestFactory):  
    505528        user = authenticate(**credentials)
    506529        if user and user.is_active \
    507530                and 'django.contrib.sessions' in settings.INSTALLED_APPS:
    508             engine = import_module(settings.SESSION_ENGINE)
    509531
    510532            # Create a fake request to store login details.
    511533            request = HttpRequest()
    512             if self.session:
    513                 request.session = self.session
    514             else:
    515                 request.session = engine.SessionStore()
     534            request.session = self.session
    516535            login(request, user)
    517536
    518537            # Save the session values.
    class Client(RequestFactory):  
    545564        if session_cookie:
    546565            session.delete(session_key=session_cookie.value)
    547566        self.cookies = SimpleCookie()
     567        self._session_store = None
    548568
    549569    def _handle_redirects(self, response, **extra):
    550570        "Follows any redirects by requesting responses from the server using GET."
  • docs/topics/testing.txt

    diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
    index fb9f6e5..1014b74 100644
    a b can access these properties as part of a test condition.  
    10001000    A dictionary-like object containing session information. See the
    10011001    :doc:`session documentation</topics/http/sessions>` for full details.
    10021002
    1003     To modify the session and then save it, it must be stored in a variable
    1004     first (because a new ``SessionStore`` is created every time this property
    1005     is accessed)::
     1003.. versionadded:: 1.4
     1004
     1005    Similar to normal Django sessions, you can manipulate sessions directly.
     1006    The modified values will be saved on subsequent requests.
    10061007
    10071008        def test_something(self):
    1008             session = self.client.session
    1009             session['somekey'] = 'test'
    1010             session.save()
     1009            self.client.session['somekey'] = value
     1010            self.client.session['anotherkey'] = value
    10111011
    10121012.. _Cookie module documentation: http://docs.python.org/library/cookie.html
    10131013
  • tests/regressiontests/test_client_regress/models.py

    diff --git a/tests/regressiontests/test_client_regress/models.py b/tests/regressiontests/test_client_regress/models.py
    index 6757695..40848a1 100644
    a b class SessionTests(TestCase):  
    691691        self.assertEqual(response.status_code, 200)
    692692        self.assertEqual(response.content, 'YES')
    693693
     694    def test_session_manipulation(self):
     695        # Check that the session can be edited as documented before #10899.
     696        session = self.client.session
     697        session["session_var"] = "foo"
     698        session.save()
     699
     700        response = self.client.get('/test_client_regress/check_session/')
     701        self.assertEqual(response.status_code, 200)
     702        self.assertEqual(response.content, 'foo')
     703
     704    def test_direct_session_manipulation(self):
     705        # Add a value to the session
     706        self.client.session['session_var'] = 'bar'
     707        self.assertEqual(self.client.session['session_var'], 'bar')
     708
     709        # Check that the session has been modified
     710        response = self.client.get('/test_client_regress/check_session/')
     711        self.assertEqual(response.status_code, 200)
     712        self.assertEqual(response.content, 'bar')
     713
     714        # Check that the session variable persists over login
     715        # when cycle_key() is called
     716        self.client.login(username='testclient', password='password')
     717        self.assertEqual(self.client.session['session_var'], 'bar')
     718
     719        response = self.client.get('/test_client_regress/check_session/')
     720        self.assertEqual(response.status_code, 200)
     721        self.assertEqual(response.content, 'bar')
     722
     723        # Check that new session is started after logout
     724        self.client.logout()
     725        self.assertEqual(self.client.session.get('session_var'), None)
     726
    694727    def test_logout(self):
    695728        """Logout should work whether the user is logged in or not (#9978)."""
    696729        self.client.logout()
    class SessionTests(TestCase):  
    699732        self.client.logout()
    700733        self.client.logout()
    701734
     735
    702736class RequestMethodTests(TestCase):
    703737    def test_get(self):
    704738        "Request a view via request method GET"
Back to Top