|
@@ -0,0 +1,596 @@
|
|
|
+package options
|
|
|
+
|
|
|
+import (
|
|
|
+ "encoding/base64"
|
|
|
+ "fmt"
|
|
|
+ "net/http"
|
|
|
+ "net/url"
|
|
|
+ "testing"
|
|
|
+
|
|
|
+ "github.com/stretchr/testify/assert"
|
|
|
+ "github.com/stretchr/testify/require"
|
|
|
+ "github.com/stretchr/testify/suite"
|
|
|
+
|
|
|
+ "github.com/imgproxy/imgproxy/v3/config"
|
|
|
+ "github.com/imgproxy/imgproxy/v3/imagetype"
|
|
|
+)
|
|
|
+
|
|
|
+type ProcessingOptionsTestSuite struct{ suite.Suite }
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) SetupTest() {
|
|
|
+ config.Reset()
|
|
|
+ // Reset presets
|
|
|
+ presets = make(map[string]urlOptions)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParseBase64URL() {
|
|
|
+ originURL := "http://images.dev/lorem/ipsum.jpg?param=value"
|
|
|
+ path := fmt.Sprintf("/size:100:100/%s.png", base64.RawURLEncoding.EncodeToString([]byte(originURL)))
|
|
|
+ po, imageURL, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+ assert.Equal(s.T(), originURL, imageURL)
|
|
|
+ assert.Equal(s.T(), imagetype.PNG, po.Format)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParseBase64URLWithoutExtension() {
|
|
|
+ originURL := "http://images.dev/lorem/ipsum.jpg?param=value"
|
|
|
+ path := fmt.Sprintf("/size:100:100/%s", base64.RawURLEncoding.EncodeToString([]byte(originURL)))
|
|
|
+ po, imageURL, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+ assert.Equal(s.T(), originURL, imageURL)
|
|
|
+ assert.Equal(s.T(), imagetype.Unknown, po.Format)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParseBase64URLWithBase() {
|
|
|
+ config.BaseURL = "http://images.dev/"
|
|
|
+
|
|
|
+ originURL := "lorem/ipsum.jpg?param=value"
|
|
|
+ path := fmt.Sprintf("/size:100:100/%s.png", base64.RawURLEncoding.EncodeToString([]byte(originURL)))
|
|
|
+ po, imageURL, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+ assert.Equal(s.T(), fmt.Sprintf("%s%s", config.BaseURL, originURL), imageURL)
|
|
|
+ assert.Equal(s.T(), imagetype.PNG, po.Format)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePlainURL() {
|
|
|
+ originURL := "http://images.dev/lorem/ipsum.jpg"
|
|
|
+ path := fmt.Sprintf("/size:100:100/plain/%s@png", originURL)
|
|
|
+ po, imageURL, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+ assert.Equal(s.T(), originURL, imageURL)
|
|
|
+ assert.Equal(s.T(), imagetype.PNG, po.Format)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePlainURLWithoutExtension() {
|
|
|
+ originURL := "http://images.dev/lorem/ipsum.jpg"
|
|
|
+ path := fmt.Sprintf("/size:100:100/plain/%s", originURL)
|
|
|
+
|
|
|
+ po, imageURL, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+ assert.Equal(s.T(), originURL, imageURL)
|
|
|
+ assert.Equal(s.T(), imagetype.Unknown, po.Format)
|
|
|
+}
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePlainURLEscaped() {
|
|
|
+ originURL := "http://images.dev/lorem/ipsum.jpg?param=value"
|
|
|
+ path := fmt.Sprintf("/size:100:100/plain/%s@png", url.PathEscape(originURL))
|
|
|
+ po, imageURL, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+ assert.Equal(s.T(), originURL, imageURL)
|
|
|
+ assert.Equal(s.T(), imagetype.PNG, po.Format)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePlainURLWithBase() {
|
|
|
+ config.BaseURL = "http://images.dev/"
|
|
|
+
|
|
|
+ originURL := "lorem/ipsum.jpg"
|
|
|
+ path := fmt.Sprintf("/size:100:100/plain/%s@png", originURL)
|
|
|
+ po, imageURL, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+ assert.Equal(s.T(), fmt.Sprintf("%s%s", config.BaseURL, originURL), imageURL)
|
|
|
+ assert.Equal(s.T(), imagetype.PNG, po.Format)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePlainURLEscapedWithBase() {
|
|
|
+ config.BaseURL = "http://images.dev/"
|
|
|
+
|
|
|
+ originURL := "lorem/ipsum.jpg?param=value"
|
|
|
+ path := fmt.Sprintf("/size:100:100/plain/%s@png", url.PathEscape(originURL))
|
|
|
+ po, imageURL, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+ assert.Equal(s.T(), fmt.Sprintf("%s%s", config.BaseURL, originURL), imageURL)
|
|
|
+ assert.Equal(s.T(), imagetype.PNG, po.Format)
|
|
|
+}
|
|
|
+
|
|
|
+// func (s *ProcessingOptionsTestSuite) TestParseURLAllowedSource() {
|
|
|
+// config.AllowedSources = []string{"local://", "http://images.dev/"}
|
|
|
+
|
|
|
+// path := "/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+// _, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+// require.Nil(s.T(), err)
|
|
|
+// }
|
|
|
+
|
|
|
+// func (s *ProcessingOptionsTestSuite) TestParseURLNotAllowedSource() {
|
|
|
+// config.AllowedSources = []string{"local://", "http://images.dev/"}
|
|
|
+
|
|
|
+// path := "/plain/s3://images/lorem/ipsum.jpg"
|
|
|
+// _, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+// require.Error(s.T(), err)
|
|
|
+// }
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathFormat() {
|
|
|
+ path := "/format:webp/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), imagetype.WEBP, po.Format)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathResize() {
|
|
|
+ path := "/resize:fill:100:200:1/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), ResizeFill, po.ResizingType)
|
|
|
+ assert.Equal(s.T(), 100, po.Width)
|
|
|
+ assert.Equal(s.T(), 200, po.Height)
|
|
|
+ assert.True(s.T(), po.Enlarge)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathResizingType() {
|
|
|
+ path := "/resizing_type:fill/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), ResizeFill, po.ResizingType)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathSize() {
|
|
|
+ path := "/size:100:200:1/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), 100, po.Width)
|
|
|
+ assert.Equal(s.T(), 200, po.Height)
|
|
|
+ assert.True(s.T(), po.Enlarge)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathWidth() {
|
|
|
+ path := "/width:100/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), 100, po.Width)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathHeight() {
|
|
|
+ path := "/height:100/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), 100, po.Height)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathEnlarge() {
|
|
|
+ path := "/enlarge:1/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.True(s.T(), po.Enlarge)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathExtend() {
|
|
|
+ path := "/extend:1:so:10:20/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), true, po.Extend.Enabled)
|
|
|
+ assert.Equal(s.T(), GravitySouth, po.Extend.Gravity.Type)
|
|
|
+ assert.Equal(s.T(), 10.0, po.Extend.Gravity.X)
|
|
|
+ assert.Equal(s.T(), 20.0, po.Extend.Gravity.Y)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathGravity() {
|
|
|
+ path := "/gravity:soea/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), GravitySouthEast, po.Gravity.Type)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathGravityFocuspoint() {
|
|
|
+ path := "/gravity:fp:0.5:0.75/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), GravityFocusPoint, po.Gravity.Type)
|
|
|
+ assert.Equal(s.T(), 0.5, po.Gravity.X)
|
|
|
+ assert.Equal(s.T(), 0.75, po.Gravity.Y)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathQuality() {
|
|
|
+ path := "/quality:55/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), 55, po.Quality)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathBackground() {
|
|
|
+ path := "/background:128:129:130/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.True(s.T(), po.Flatten)
|
|
|
+ assert.Equal(s.T(), uint8(128), po.Background.R)
|
|
|
+ assert.Equal(s.T(), uint8(129), po.Background.G)
|
|
|
+ assert.Equal(s.T(), uint8(130), po.Background.B)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathBackgroundHex() {
|
|
|
+ path := "/background:ffddee/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.True(s.T(), po.Flatten)
|
|
|
+ assert.Equal(s.T(), uint8(0xff), po.Background.R)
|
|
|
+ assert.Equal(s.T(), uint8(0xdd), po.Background.G)
|
|
|
+ assert.Equal(s.T(), uint8(0xee), po.Background.B)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathBackgroundDisable() {
|
|
|
+ path := "/background:fff/background:/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.False(s.T(), po.Flatten)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathBlur() {
|
|
|
+ path := "/blur:0.2/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), float32(0.2), po.Blur)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathSharpen() {
|
|
|
+ path := "/sharpen:0.2/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), float32(0.2), po.Sharpen)
|
|
|
+}
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathDpr() {
|
|
|
+ path := "/dpr:2/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), 2.0, po.Dpr)
|
|
|
+}
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathWatermark() {
|
|
|
+ path := "/watermark:0.5:soea:10:20:0.6/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.True(s.T(), po.Watermark.Enabled)
|
|
|
+ assert.Equal(s.T(), GravitySouthEast, po.Watermark.Gravity.Type)
|
|
|
+ assert.Equal(s.T(), 10.0, po.Watermark.Gravity.X)
|
|
|
+ assert.Equal(s.T(), 20.0, po.Watermark.Gravity.Y)
|
|
|
+ assert.Equal(s.T(), 0.6, po.Watermark.Scale)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathPreset() {
|
|
|
+ presets["test1"] = urlOptions{
|
|
|
+ urlOption{Name: "resizing_type", Args: []string{"fill"}},
|
|
|
+ }
|
|
|
+
|
|
|
+ presets["test2"] = urlOptions{
|
|
|
+ urlOption{Name: "blur", Args: []string{"0.2"}},
|
|
|
+ urlOption{Name: "quality", Args: []string{"50"}},
|
|
|
+ }
|
|
|
+
|
|
|
+ path := "/preset:test1:test2/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), ResizeFill, po.ResizingType)
|
|
|
+ assert.Equal(s.T(), float32(0.2), po.Blur)
|
|
|
+ assert.Equal(s.T(), 50, po.Quality)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathPresetDefault() {
|
|
|
+ presets["default"] = urlOptions{
|
|
|
+ urlOption{Name: "resizing_type", Args: []string{"fill"}},
|
|
|
+ urlOption{Name: "blur", Args: []string{"0.2"}},
|
|
|
+ urlOption{Name: "quality", Args: []string{"50"}},
|
|
|
+ }
|
|
|
+
|
|
|
+ path := "/quality:70/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), ResizeFill, po.ResizingType)
|
|
|
+ assert.Equal(s.T(), float32(0.2), po.Blur)
|
|
|
+ assert.Equal(s.T(), 70, po.Quality)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathPresetLoopDetection() {
|
|
|
+ presets["test1"] = urlOptions{
|
|
|
+ urlOption{Name: "resizing_type", Args: []string{"fill"}},
|
|
|
+ }
|
|
|
+
|
|
|
+ presets["test2"] = urlOptions{
|
|
|
+ urlOption{Name: "blur", Args: []string{"0.2"}},
|
|
|
+ urlOption{Name: "quality", Args: []string{"50"}},
|
|
|
+ }
|
|
|
+
|
|
|
+ path := "/preset:test1:test2:test1/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ require.ElementsMatch(s.T(), po.UsedPresets, []string{"test1", "test2"})
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathCachebuster() {
|
|
|
+ path := "/cachebuster:123/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), "123", po.CacheBuster)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathStripMetadata() {
|
|
|
+ path := "/strip_metadata:true/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.True(s.T(), po.StripMetadata)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathWebpDetection() {
|
|
|
+ config.EnableWebpDetection = true
|
|
|
+
|
|
|
+ path := "/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ headers := http.Header{"Accept": []string{"image/webp"}}
|
|
|
+ po, _, err := ParsePath(path, headers)
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), true, po.PreferWebP)
|
|
|
+ assert.Equal(s.T(), false, po.EnforceWebP)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathWebpEnforce() {
|
|
|
+ config.EnforceWebp = true
|
|
|
+
|
|
|
+ path := "/plain/http://images.dev/lorem/ipsum.jpg@png"
|
|
|
+ headers := http.Header{"Accept": []string{"image/webp"}}
|
|
|
+ po, _, err := ParsePath(path, headers)
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), true, po.PreferWebP)
|
|
|
+ assert.Equal(s.T(), true, po.EnforceWebP)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathWidthHeader() {
|
|
|
+ config.EnableClientHints = true
|
|
|
+
|
|
|
+ path := "/plain/http://images.dev/lorem/ipsum.jpg@png"
|
|
|
+ headers := http.Header{"Width": []string{"100"}}
|
|
|
+ po, _, err := ParsePath(path, headers)
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), 100, po.Width)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathWidthHeaderDisabled() {
|
|
|
+ path := "/plain/http://images.dev/lorem/ipsum.jpg@png"
|
|
|
+ headers := http.Header{"Width": []string{"100"}}
|
|
|
+ po, _, err := ParsePath(path, headers)
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), 0, po.Width)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathWidthHeaderRedefine() {
|
|
|
+ config.EnableClientHints = true
|
|
|
+
|
|
|
+ path := "/width:150/plain/http://images.dev/lorem/ipsum.jpg@png"
|
|
|
+ headers := http.Header{"Width": []string{"100"}}
|
|
|
+ po, _, err := ParsePath(path, headers)
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), 150, po.Width)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathViewportWidthHeader() {
|
|
|
+ config.EnableClientHints = true
|
|
|
+
|
|
|
+ path := "/plain/http://images.dev/lorem/ipsum.jpg@png"
|
|
|
+ headers := http.Header{"Viewport-Width": []string{"100"}}
|
|
|
+ po, _, err := ParsePath(path, headers)
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), 100, po.Width)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathViewportWidthHeaderDisabled() {
|
|
|
+ path := "/plain/http://images.dev/lorem/ipsum.jpg@png"
|
|
|
+ headers := http.Header{"Viewport-Width": []string{"100"}}
|
|
|
+ po, _, err := ParsePath(path, headers)
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), 0, po.Width)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathViewportWidthHeaderRedefine() {
|
|
|
+ config.EnableClientHints = true
|
|
|
+
|
|
|
+ path := "/width:150/plain/http://images.dev/lorem/ipsum.jpg@png"
|
|
|
+ headers := http.Header{"Viewport-Width": []string{"100"}}
|
|
|
+ po, _, err := ParsePath(path, headers)
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), 150, po.Width)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathDprHeader() {
|
|
|
+ config.EnableClientHints = true
|
|
|
+
|
|
|
+ path := "/plain/http://images.dev/lorem/ipsum.jpg@png"
|
|
|
+ headers := http.Header{"Dpr": []string{"2"}}
|
|
|
+ po, _, err := ParsePath(path, headers)
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), 2.0, po.Dpr)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathDprHeaderDisabled() {
|
|
|
+ path := "/plain/http://images.dev/lorem/ipsum.jpg@png"
|
|
|
+ headers := http.Header{"Dpr": []string{"2"}}
|
|
|
+ po, _, err := ParsePath(path, headers)
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), 1.0, po.Dpr)
|
|
|
+}
|
|
|
+
|
|
|
+// func (s *ProcessingOptionsTestSuite) TestParsePathSigned() {
|
|
|
+// config.Keys = [][]byte{[]byte("test-key")}
|
|
|
+// config.Salts = [][]byte{[]byte("test-salt")}
|
|
|
+
|
|
|
+// path := "/HcvNognEV1bW6f8zRqxNYuOkV0IUf1xloRb57CzbT4g/width:150/plain/http://images.dev/lorem/ipsum.jpg@png"
|
|
|
+// _, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+// require.Nil(s.T(), err)
|
|
|
+// }
|
|
|
+
|
|
|
+// func (s *ProcessingOptionsTestSuite) TestParsePathSignedInvalid() {
|
|
|
+// config.Keys = [][]byte{[]byte("test-key")}
|
|
|
+// config.Salts = [][]byte{[]byte("test-salt")}
|
|
|
+
|
|
|
+// path := "/unsafe/width:150/plain/http://images.dev/lorem/ipsum.jpg@png"
|
|
|
+// _, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+// require.Error(s.T(), err)
|
|
|
+// assert.Equal(s.T(), signature.ErrInvalidSignature.Error(), err.Error())
|
|
|
+// }
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParsePathOnlyPresets() {
|
|
|
+ config.OnlyPresets = true
|
|
|
+ presets["test1"] = urlOptions{
|
|
|
+ urlOption{Name: "blur", Args: []string{"0.2"}},
|
|
|
+ }
|
|
|
+ presets["test2"] = urlOptions{
|
|
|
+ urlOption{Name: "quality", Args: []string{"50"}},
|
|
|
+ }
|
|
|
+
|
|
|
+ path := "/test1:test2/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), float32(0.2), po.Blur)
|
|
|
+ assert.Equal(s.T(), 50, po.Quality)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParseSkipProcessing() {
|
|
|
+ path := "/skp:jpg:png/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+
|
|
|
+ po, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), []imagetype.Type{imagetype.JPEG, imagetype.PNG}, po.SkipProcessingFormats)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParseSkipProcessingInvalid() {
|
|
|
+ path := "/skp:jpg:png:bad_format/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+
|
|
|
+ _, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Error(s.T(), err)
|
|
|
+ assert.Equal(s.T(), "Invalid image format in skip processing: bad_format", err.Error())
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParseExpires() {
|
|
|
+ path := "/exp:32503669200/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ _, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParseExpiresExpired() {
|
|
|
+ path := "/exp:1609448400/plain/http://images.dev/lorem/ipsum.jpg"
|
|
|
+ _, _, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Error(s.T(), err)
|
|
|
+ assert.Equal(s.T(), errExpiredURL.Error(), err.Error())
|
|
|
+}
|
|
|
+
|
|
|
+func (s *ProcessingOptionsTestSuite) TestParseBase64URLOnlyPresets() {
|
|
|
+ config.OnlyPresets = true
|
|
|
+ presets["test1"] = urlOptions{
|
|
|
+ urlOption{Name: "blur", Args: []string{"0.2"}},
|
|
|
+ }
|
|
|
+ presets["test2"] = urlOptions{
|
|
|
+ urlOption{Name: "quality", Args: []string{"50"}},
|
|
|
+ }
|
|
|
+
|
|
|
+ originURL := "http://images.dev/lorem/ipsum.jpg?param=value"
|
|
|
+ path := fmt.Sprintf("/test1:test2/%s.png", base64.RawURLEncoding.EncodeToString([]byte(originURL)))
|
|
|
+
|
|
|
+ po, imageURL, err := ParsePath(path, make(http.Header))
|
|
|
+
|
|
|
+ require.Nil(s.T(), err)
|
|
|
+
|
|
|
+ assert.Equal(s.T(), float32(0.2), po.Blur)
|
|
|
+ assert.Equal(s.T(), 50, po.Quality)
|
|
|
+ assert.Equal(s.T(), originURL, imageURL)
|
|
|
+}
|
|
|
+
|
|
|
+func TestProcessingOptions(t *testing.T) {
|
|
|
+ suite.Run(t, new(ProcessingOptionsTestSuite))
|
|
|
+}
|