mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
72ff937e11
Closes #10855 Closes #8586 Closes #8996
47 lines
1.6 KiB
Go
47 lines
1.6 KiB
Go
// Copyright 2024 The Hugo Authors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//go:build extended
|
|
// +build extended
|
|
|
|
package resources_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
qt "github.com/frankban/quicktest"
|
|
"github.com/gohugoio/hugo/htesting/hqt"
|
|
"github.com/gohugoio/hugo/media"
|
|
)
|
|
|
|
func TestImageResizeWebP(t *testing.T) {
|
|
c := qt.New(t)
|
|
|
|
_, image := fetchImage(c, "sunrise.webp")
|
|
|
|
c.Assert(image.MediaType(), qt.Equals, media.Builtin.WEBPType)
|
|
c.Assert(image.RelPermalink(), qt.Equals, "/a/sunrise.webp")
|
|
c.Assert(image.ResourceType(), qt.Equals, "image")
|
|
exif := image.Exif()
|
|
c.Assert(exif, qt.Not(qt.IsNil))
|
|
c.Assert(exif.Tags["Copyright"], qt.Equals, "Bjørn Erik Pedersen")
|
|
c.Assert(exif.Lat, hqt.IsSameFloat64, 36.59744166666667)
|
|
c.Assert(exif.Long, hqt.IsSameFloat64, -4.50846)
|
|
c.Assert(exif.Date.IsZero(), qt.Equals, false)
|
|
|
|
resized, err := image.Resize("123x")
|
|
c.Assert(err, qt.IsNil)
|
|
c.Assert(image.MediaType(), qt.Equals, media.Builtin.WEBPType)
|
|
c.Assert(resized.RelPermalink(), qt.Equals, "/a/sunrise_hu6ad68bcbae1b79cbc2f6b451894deaf6_95652_123x0_resize_q68_h2_linear_2.webp")
|
|
c.Assert(resized.Width(), qt.Equals, 123)
|
|
}
|