SVN: Zope/trunk/src/ZPublisher/tests/testHTTPResponse.py Remove tests which assert no-longer-supported cookie special case behavior.

Tres Seaver <[email protected]> Mon, 17 Oct 2011 09:26:14 -0400 (EDT)
Newsgroups gmane.comp.web.zope.cvs
Message-ID <[email protected]>
Log message for revision 123095:
  Remove tests which assert no-longer-supported cookie special case behavior.

Changed:
  U   Zope/trunk/src/ZPublisher/tests/testHTTPResponse.py

-=-
Modified: Zope/trunk/src/ZPublisher/tests/testHTTPResponse.py
===================================================================
--- Zope/trunk/src/ZPublisher/tests/testHTTPResponse.py	2011-10-14 14:53:12 UTC (rev 123094)
+++ Zope/trunk/src/ZPublisher/tests/testHTTPResponse.py	2011-10-17 13:26:13 UTC (rev 123095)
@@ -409,28 +409,6 @@
         self.assertEqual(response.headers['location'],
                          'http://www.ietf.org/rfc/rfc2616.txt')
 
-    def test_setHeader_Set_Cookie_special_case(self):
-        # This is crazy, given that we have APIs for cookies.  Special
-        # behavior will go away in Zope 2.13
-        response = self._makeOne()
-        response.setHeader('Set-Cookie', 'foo="bar"')
-        self.assertEqual(response.getHeader('Set-Cookie'), None)
-        self.assertEqual(response.accumulated_headers,
-                         [('Set-Cookie', 'foo="bar"')])
-
-    def test_setHeader_drops_CRLF_when_accumulating(self):
-        # RFC2616 disallows CRLF in a header value.
-        # This is crazy, given that we have APIs for cookies.  Special
-        # behavior will go away in Zope 2.13
-        response = self._makeOne()
-        response.setHeader('Set-Cookie', 'allowed="OK"')
-        response.setHeader('Set-Cookie',
-                       'violation="http://www.ietf.org/rfc/\r\nrfc2616.txt"')
-        self.assertEqual(response.accumulated_headers,
-                        [('Set-Cookie', 'allowed="OK"'),
-                         ('Set-Cookie',
-                          'violation="http://www.ietf.org/rfc/rfc2616.txt"')])
-
     def test_appendHeader_no_existing(self):
         response = self._makeOne()
         response.appendHeader('foo', 'foo')

_______________________________________________
Zope-Checkins maillist  -  [email protected]
https://mail.zope.org/mailman/listinfo/zope-checkins