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)
commitb718d743b7a2eff3bea74ced57147825294a629f
treef75ae7ee74522d0ac1e5632207454b33c26fa10e
parent0ba19c57f180c33b41c64335ea1d1c89335d34c0
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
resource/image_cache.go
resource/image_test.go