ref: b718d743b7a2eff3bea74ced57147825294a629f
parent: 0ba19c57f180c33b41c64335ea1d1c89335d34c0
author: Rob Jackson <[email protected]>
date: Tue Jul 31 08:31:35 EDT 2018
Fix file paths for uncached transformed images 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
--- a/resource/image_cache.go
+++ b/resource/image_cache.go
@@ -100,10 +100,6 @@
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 {
@@ -110,6 +106,10 @@
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 {
--- a/resource/image_test.go
+++ b/resource/image_test.go
@@ -73,6 +73,7 @@
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 @@
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 @@
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)
}