Пример #1
0
 def test_attachment_filename_false(self):
     response = real_sendfile(HttpRequest(),
                              self._get_readme(),
                              attachment=True,
                              attachment_filename=False)
     self.assertTrue(response is not None)
     self.assertEqual('attachment', response['Content-Disposition'])
Пример #2
0
 def test_attachment(self):
     response = real_sendfile(HttpRequest(),
                              self._get_readme(),
                              attachment=True)
     self.assertTrue(response is not None)
     self.assertEqual('attachment; filename="testfile.txt"',
                      response['Content-Disposition'])
Пример #3
0
 def test_attachment_filename_unicode(self):
     response = real_sendfile(HttpRequest(),
                              self._get_readme(),
                              attachment=True,
                              attachment_filename='test’s.txt')
     self.assertTrue(response is not None)
     self.assertEqual(
         'attachment; filename="tests.txt"; filename*=UTF-8\'\'test%E2%80%99s.txt',
         response['Content-Disposition'])
Пример #4
0
 def test_correct_url_in_xaccelredirect_header(self):
     filepath = self.ensure_file('readme.txt')
     response = real_sendfile(HttpRequest(), filepath)
     self.assertTrue(response is not None)
     self.assertEqual('/private/readme.txt', response['X-Accel-Redirect'])
Пример #5
0
 def test_correct_file_in_xsendfile_header(self):
     filepath = self.ensure_file('readme.txt')
     response = real_sendfile(HttpRequest(), filepath)
     self.assertTrue(response is not None)
     self.assertEqual(filepath, response['X-Sendfile'])
Пример #6
0
 def test_xsendfile_header_containing_unicode(self):
     filepath = self.ensure_file(u'péter_là_gueule.txt')
     response = real_sendfile(HttpRequest(), filepath)
     self.assertTrue(response is not None)
     self.assertEqual(smart_str(filepath), response['X-Sendfile'])
Пример #7
0
 def test_correct_file_in_xsendfile_header(self):
     response = real_sendfile(HttpRequest(), _get_readme())
     self.assertTrue(response is not None)
     self.assertEqual(_get_readme(), response['X-Sendfile'])
Пример #8
0
 def test_correct_file_in_xsendfile_header(self):
     filepath = self.ensure_file('readme.txt')
     response = real_sendfile(HttpRequest(), filepath)
     self.assertTrue(response is not None)
     self.assertEqual(filepath, response['X-Sendfile'])
Пример #9
0
 def test_sendfile(self):
     response = real_sendfile(HttpRequest(), self._get_readme())
     self.assertTrue(response is not None)
     self.assertEqual('text/plain', response['Content-Type'])
     self.assertEqual(self._get_readme(), smart_str(response.content))
Пример #10
0
 def test_set_encoding(self):
     response = real_sendfile(HttpRequest(),
                              self._get_readme(),
                              encoding='utf8')
     self.assertTrue(response is not None)
     self.assertEqual('utf8', response['Content-Encoding'])
Пример #11
0
 def test_sendfile(self):
     response = real_sendfile(HttpRequest(), self._get_readme())
     self.assertTrue(response is not None)
     self.assertEqual('text/plain', response['Content-Type'])
     self.assertEqual(self._get_readme(), smart_str(response.content))
Пример #12
0
 def test_set_mimetype(self):
     response = real_sendfile(HttpRequest(), self._get_readme(), mimetype='text/plain')
     self.assertTrue(response is not None)
     self.assertEqual('text/plain', response['Content-Type'])
Пример #13
0
 def test_xaccelredirect_header_containing_unicode(self):
     filepath = self.ensure_file(u'péter_là_gueule.txt')
     response = real_sendfile(HttpRequest(), filepath)
     self.assertTrue(response is not None)
     self.assertEqual('/private/p%C3%A9ter_l%C3%A0_gueule.txt', response['X-Accel-Redirect'])
Пример #14
0
 def test_404(self):
     try:
         real_sendfile(HttpRequest(), 'fhdsjfhjk.txt')
     except Http404:
         pass
Пример #15
0
 def test_correct_url_in_xaccelredirect_header(self):
     filepath = self.ensure_file('readme.txt')
     response = real_sendfile(HttpRequest(), filepath)
     self.assertTrue(response is not None)
     self.assertEqual('/private/readme.txt', response['X-Accel-Redirect'])
Пример #16
0
 def test_xsendfile_header_containing_unicode(self):
     filepath = self.ensure_file(u'péter_là_gueule.txt')
     response = real_sendfile(HttpRequest(), filepath)
     self.assertTrue(response is not None)
     self.assertEqual(smart_str(filepath), response['X-Sendfile'])
Пример #17
0
 def test_correct_url_in_xaccelredirect_header(self):
     response = real_sendfile(HttpRequest(), _get_readme())
     self.assertTrue(response is not None)
     self.assertEqual('/private/README.rst', response['X-Accel-Redirect'])
Пример #18
0
 def test_xaccelredirect_header_containing_unicode(self):
     filepath = self.ensure_file(u'péter_là_gueule.txt')
     response = real_sendfile(HttpRequest(), filepath)
     self.assertTrue(response is not None)
     self.assertEqual(u'/private/péter_là_gueule.txt'.encode('utf-8'),
                      response['X-Accel-Redirect'])
Пример #19
0
 def test_sendfile(self):
     response = real_sendfile(HttpRequest(), _get_readme())
     self.assertTrue(response is not None)
     self.assertEqual('application/octet-stream', response['Content-Type'])
     self.assertEqual(_get_readme(), response.content)
Пример #20
0
 def test_404(self):
     try:
         real_sendfile(HttpRequest(), 'fhdsjfhjk.txt')
     except Http404:
         pass
Пример #21
0
 def test_location_header_containing_unicode(self):
     filepath = self.ensure_file(u'péter_là_gueule.txt')
     response = real_sendfile(HttpRequest(), filepath)
     self.assertTrue(response is not None)
     self.assertEqual(u'/private/péter_là_gueule.txt'.encode('utf-8'), unquote(response['Location']))
Пример #22
0
 def test_set_mimetype(self):
     response = real_sendfile(HttpRequest(),
                              self._get_readme(),
                              mimetype='text/plain')
     self.assertTrue(response is not None)
     self.assertEqual('text/plain', response['Content-Type'])
Пример #23
0
 def test_attachment_filename_unicode(self):
     response = real_sendfile(HttpRequest(), self._get_readme(), attachment=True, attachment_filename='test’s.txt')
     self.assertTrue(response is not None)
     self.assertEqual('attachment; filename="test\'s.txt"; filename*=UTF-8\'\'test%E2%80%99s.txt', response['Content-Disposition'])
Пример #24
0
 def test_set_encoding(self):
     response = real_sendfile(HttpRequest(), self._get_readme(), encoding='utf8')
     self.assertTrue(response is not None)
     self.assertEqual('utf8', response['Content-Encoding'])
Пример #25
0
 def test_attachment(self):
     response = real_sendfile(HttpRequest(), _get_readme(), attachment=True)
     self.assertTrue(response is not None)
     self.assertEqual('attachment; filename="README.rst"', response['Content-Disposition'])
Пример #26
0
 def test_attachment_filename(self):
     response = real_sendfile(HttpRequest(), self._get_readme(), attachment=True, attachment_filename='tests.txt')
     self.assertTrue(response is not None)
     self.assertEqual('attachment; filename="tests.txt"', response['Content-Disposition'])
Пример #27
0
 def test_correct_url_in_location_header(self):
     filepath = self.ensure_file('readme.txt')
     response = real_sendfile(HttpRequest(), filepath)
     self.assertTrue(response is not None)
     self.assertEqual('/private/readme.txt', response['Location'])