Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
cda74c7f
Kaydet (Commit)
cda74c7f
authored
Mar 22, 2015
tarafından
Raúl Cumplido
Kaydeden (comit)
Tim Graham
Mar 25, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #24441 -- Changed get_image_dimensions() return value for broken images
üst
cb506aed
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
1 deletion
+18
-1
images.py
django/core/files/images.py
+1
-1
brokenimg.png
tests/files/brokenimg.png
+1
-0
tests.py
tests/files/tests.py
+16
-0
No files found.
django/core/files/images.py
Dosyayı görüntüle @
cda74c7f
...
...
@@ -66,7 +66,7 @@ def get_image_dimensions(file_or_path, close=False):
if
p
.
image
:
return
p
.
image
.
size
chunk_size
*=
2
return
None
return
(
None
,
None
)
finally
:
if
close
:
file
.
close
()
...
...
tests/files/brokenimg.png
0 → 100644
Dosyayı görüntüle @
cda74c7f
123
tests/files/tests.py
Dosyayı görüntüle @
cda74c7f
...
...
@@ -239,6 +239,22 @@ class InconsistentGetImageDimensionsBug(unittest.TestCase):
self
.
assertEqual
(
size
,
Image
.
open
(
fh
)
.
size
)
class
GetImageDimensionsOnInvalidImages
(
unittest
.
TestCase
):
@unittest.skipUnless
(
Image
,
"Pillow not installed"
)
def
test_invalid_image
(
self
):
"""
get_image_dimensions() should return (None, None) for the dimensions of
invalid images (#24441).
brokenimg.png is not a valid image and it has been generated by:
$ echo "123" > brokenimg.png
"""
img_path
=
os
.
path
.
join
(
os
.
path
.
dirname
(
upath
(
__file__
)),
"brokenimg.png"
)
with
open
(
img_path
,
'rb'
)
as
fh
:
size
=
images
.
get_image_dimensions
(
fh
)
self
.
assertEqual
(
size
,
(
None
,
None
))
class
FileMoveSafeTests
(
unittest
.
TestCase
):
def
test_file_move_overwrite
(
self
):
handle_a
,
self
.
file_a
=
tempfile
.
mkstemp
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment