I'm using sorl-thumbnail in a Django 1.2 (currently 1.2 RC) project and getting a surprising failure of four of sorl's built-in unit tests. Essentially, the resized images are all 1px shorter than the unit tests expect them to be. See below for details

I'm developing on OSX 10.5.8 (not Snow Leopard) with Python 2.5.1 (r251:54863, Feb 6 2009, 19:02:12) and PIL 1.1.6.

Any thoughts what might be up?

Cheers Steve

======================================================================
FAIL: test_extension (sorl.thumbnail.tests.fields.FieldTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/local/django/myprojectnamehere/lib/sorl/thumbnail/tests/fields.py", line 66, in test_extension
    self.verify_thumbnail((50, 37), thumb, expected_filename)
  File "/usr/local/django/myprojectnamehere/lib/sorl/thumbnail/tests/base.py", line 92, in verify_thumbnail
    self.assertEqual(image.size, expected_size)
AssertionError: (50, 38) != (50, 37)

======================================================================
FAIL: test_thumbnail (sorl.thumbnail.tests.fields.ImageWithThumbnailsFieldTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/local/django/myprojectnamehere/lib/sorl/thumbnail/tests/fields.py", line 111, in test_thumbnail
    self.verify_thumbnail((50, 37), thumb, expected_filename)
  File "/usr/local/django/myprojectnamehere/lib/sorl/thumbnail/tests/base.py", line 92, in verify_thumbnail
    self.assertEqual(image.size, expected_size)
AssertionError: (50, 38) != (50, 37)

======================================================================
FAIL: testTag (sorl.thumbnail.tests.templatetags.ThumbnailTagTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/local/django/myprojectnamehere/lib/sorl/thumbnail/tests/templatetags.py", line 118, in testTag
    self.verify_thumbnail((90, 67), expected_filename=expected_fn)
  File "/usr/local/django/myprojectnamehere/lib/sorl/thumbnail/tests/base.py", line 92, in verify_thumbnail
    self.assertEqual(image.size, expected_size)
AssertionError: (90, 68) != (90, 67)
link|improve this question

80% accept rate
It's also an open issue on the sorl project site code.google.com/p/sorl-thumbnail/issues/… – stevejalim May 13 '10 at 14:40
1  
It's related to round up or down. For my own unit tests with image processing, I usually use a custom equal (plus/minus margin). – Dingle May 15 '10 at 16:44
Thanks Dingle -- are they patches to the sorl tests, or do you skip the sorl tests altogether? – stevejalim May 15 '10 at 18:47
Same problem here. Did you ever find a solution? – Thomas Feb 8 '11 at 17:06
feedback

1 Answer

up vote 3 down vote accepted

Here's the hack that I used to work around this. I put the following in tests.py in my own app:

def monkeypatch_sorl_tests():
    from sorl.thumbnail.tests.base import BaseTest
    from sorl.thumbnail.tests.fields import FieldTest, ThumbnailFieldTest, ImageWithThumbnailsFieldTest
    def always_pass(*args, **kwargs):
        pass
    BaseTest.verify_thumbnail = always_pass
    FieldTest.test_extension = always_pass
    ImageWithThumbnailsFieldTest.test_thumbnail = always_pass
    ThumbnailFieldTest.test_thumbnail = always_pass

monkeypatch_sorl_tests()

Of course, this prevents some of the tests from running. But, assuming that the library has been tested on other systems, this shouldn't be too much of a problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.