Opened 16 years ago

Closed 16 years ago

#7613 closed (fixed)

file_uploads regression test fails when LANG=C

Reported by: eddymul@… Owned by: Michael Axiak
Component: Testing framework Version: dev
Severity: Keywords: 2070-fix
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Ramiro Morales)

tests/regressiontests/file_uploads/tests.py (and BuildBot) assumes LANG=en_US.UTF-8 when tests are run. When LANG=C, tests break.

steps to reproduce:

  1. run Django r7826 tests with LANG=C as environment

expected:
Django passes test suite.

bug:

======================================================================
ERROR: test_large_upload (regressiontests.file_uploads.tests.FileUploadTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/tmp/buildd/python-django-0.97~svn7826/tests/regressiontests/file_uploads/tests.py", line 28, in test_large_upload
    file3 = open(os.path.join(tdir, u'test_中文_Orl\u00e9ans.jpg'), 'w+b')
UnicodeEncodeError: 'ascii' codec can't encode character u'\xe9' in position 30: ordinal not in range(128)

----------------------------------------------------------------------

Attachments (1)

ticket7613_regressiontests__file_uploads__tests_py.diff (610 bytes ) - added by eddymul@… 16 years ago.

Download all attachments as: .zip

Change History (8)

comment:1 by anonymous, 16 years ago

Summary: regression tests fail when LANG=Cfile_uploads regression test fails when LANG=C

comment:2 by Ramiro Morales, 16 years ago

Description: modified (diff)

comment:3 by Jeff Anderson, 16 years ago

Component: UncategorizedUnit test system
milestone: 1.0
Triage Stage: UnreviewedAccepted

comment:4 by Michael Axiak, 16 years ago

Keywords: 2070-fix added
milestone: 1.0
Owner: changed from nobody to Michael Axiak

comment:5 by Michael Axiak, 16 years ago

Triage Stage: AcceptedReady for checkin

This patch looks good.

comment:6 by Michael Axiak, 16 years ago

Status: newassigned

comment:7 by Jacob, 16 years ago

Resolution: fixed
Status: assignedclosed

(In [7904]) Fixed #7613: fixed file_upload tests when LANG=C. Thanks, eddymul.

Note: See TracTickets for help on using tickets.
Back to Top