Opened 10 years ago

Closed 10 years ago

#21505 closed Cleanup/optimization (fixed)

Add unit test for django.utils.text.get_valid_filename

Reported by: Vajrasky Kok Owned by: Vajrasky Kok
Component: Utilities Version: dev
Severity: Normal Keywords: test
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

There is no unit test for django.utils.text.get_valid_filename.

get_valid_filename("john's portrait in 2004.jpg")

'johns_portrait_in_2004.jpg'

It is used by FileSystemStorage.

obj = Storage()
obj.normal.save("&'@{}[],$=!-#()%+~_.txt", ContentFile("more content"))
obj.normal.close()
print(obj.normal.name) ==> "-_.txt"

Change History (3)

comment:1 by Vajrasky Kok, 10 years ago

Owner: changed from nobody to Vajrasky Kok
Status: newassigned

comment:2 by Vajrasky Kok, 10 years ago

Has patch: set

comment:3 by Baptiste Mispelon <bmispelon@…>, 10 years ago

Resolution: fixed
Status: assignedclosed

In 7169722d5c4c9f9829e353fbeda08b7550bf8991:

Fixed #21505 -- Added unit test for django.utils.text.get_valid_filename.

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