Fix file paths for uncached transformed images
authorRob Jackson <rob@rjackson.me>
Tue, 31 Jul 2018 11:31:35 +0000 (12:31 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 31 Jul 2018 11:31:35 +0000 (13:31 +0200)
This commit also fixes an existing test to work according to the correct logic. The test was written based on erroneous behavior. We resize the image to 300x200px, and are now trying to fit it within a 50px square. The longest edge is 300 pixels, so we need to divide it by 6 (300 / 50 == 6). And then scale the shortest edge with the same proportion (200 / 6 == 33.33).

The original test was transforming the original source image, hence the previous values:

900 x 562
900 / 50 == 18
562 / 18 == 31.22

Fixes #5012

resource/image_cache.go
resource/image_test.go

index e5149e7a28fa1af98aee692c46c14d47e232ac7c..fb2996c9debb43616292d01889a2b75e69454376 100644 (file)
@@ -100,16 +100,16 @@ func (c *imageCache) getOrCreate(
 
        if exists {
                img = parent.clone()
-               img.relTargetDirFile.file = relTarget.file
-               img.sourceFilename = cacheFilename
-               // We have to look in the resources file system for this.
-               img.overriddenSourceFs = img.spec.BaseFs.Resources.Fs
        } else {
                img, err = create(cacheFilename)
                if err != nil {
                        return nil, err
                }
        }
+       img.relTargetDirFile.file = relTarget.file
+       img.sourceFilename = cacheFilename
+       // We have to look in the resources file system for this.
+       img.overriddenSourceFs = img.spec.BaseFs.Resources.Fs
 
        c.mu.Lock()
        if img2, found := c.store[key]; found {
index f4d91bd99324a1bfa822e5f5cf2a5a8f8fb907ae..9379709c47d379a53ef7431bc9e4ce7f8f4fb917 100644 (file)
@@ -73,6 +73,7 @@ func TestImageTransformBasic(t *testing.T) {
        assert.NoError(err)
        assert.True(image != resized)
        assert.True(image.genericResource != resized.genericResource)
+       assert.True(image.sourceFilename != resized.sourceFilename)
 
        resized0x, err := image.Resize("x200")
        assert.NoError(err)
@@ -100,7 +101,7 @@ func TestImageTransformBasic(t *testing.T) {
        assert.NoError(err)
        assert.Equal("/a/sunset_hu59e56ffff1bc1d8d122b1403d34e039f_90587_625708021e2bb281c9f1002f88e4753f.jpg", fitted.RelPermalink())
        assert.Equal(50, fitted.Width())
-       assert.Equal(31, fitted.Height())
+       assert.Equal(33, fitted.Height())
 
        // Check the MD5 key threshold
        fittedAgain, _ := fitted.Fit("10x20")
@@ -128,6 +129,7 @@ func TestImageTransformBasic(t *testing.T) {
        filledAgain, err := image.Fill("200x100 bottomLeft")
        assert.NoError(err)
        assert.True(filled == filledAgain)
+       assert.True(filled.sourceFilename == filledAgain.sourceFilename)
        assertFileCache(assert, image.spec.BaseFs.Resources.Fs, filledAgain.RelPermalink(), 200, 100)
 
 }