Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 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))
Exemplo n.º 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'])
Exemplo n.º 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))
Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 14
0
 def test_404(self):
     try:
         real_sendfile(HttpRequest(), 'fhdsjfhjk.txt')
     except Http404:
         pass
Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 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)
Exemplo n.º 20
0
 def test_404(self):
     try:
         real_sendfile(HttpRequest(), 'fhdsjfhjk.txt')
     except Http404:
         pass
Exemplo n.º 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']))
Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 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'])
Exemplo n.º 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'])