2017-03-13 18:55:02 -04:00
|
|
|
// Copyright 2017 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.
|
|
|
|
|
|
|
|
package images
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"image"
|
|
|
|
"image/color"
|
|
|
|
"image/png"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
qt "github.com/frankban/quicktest"
|
2021-06-09 04:58:18 -04:00
|
|
|
"github.com/gohugoio/hugo/config"
|
2023-01-04 12:24:36 -05:00
|
|
|
"github.com/gohugoio/hugo/config/testconfig"
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/deps"
|
|
|
|
"github.com/gohugoio/hugo/hugofs"
|
2017-06-13 13:07:35 -04:00
|
|
|
"github.com/spf13/afero"
|
|
|
|
"github.com/spf13/cast"
|
2017-03-13 18:55:02 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type tstNoStringer struct{}
|
|
|
|
|
|
|
|
var configTests = []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
path any
|
2017-03-13 18:55:02 -04:00
|
|
|
input []byte
|
2022-03-17 17:03:27 -04:00
|
|
|
expect any
|
2017-03-13 18:55:02 -04:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
path: "a.png",
|
|
|
|
input: blankImage(10, 10),
|
|
|
|
expect: image.Config{
|
|
|
|
Width: 10,
|
|
|
|
Height: 10,
|
|
|
|
ColorModel: color.NRGBAModel,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "a.png",
|
|
|
|
input: blankImage(10, 10),
|
|
|
|
expect: image.Config{
|
|
|
|
Width: 10,
|
|
|
|
Height: 10,
|
|
|
|
ColorModel: color.NRGBAModel,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "b.png",
|
|
|
|
input: blankImage(20, 15),
|
|
|
|
expect: image.Config{
|
|
|
|
Width: 20,
|
|
|
|
Height: 15,
|
|
|
|
ColorModel: color.NRGBAModel,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "a.png",
|
|
|
|
input: blankImage(20, 15),
|
|
|
|
expect: image.Config{
|
|
|
|
Width: 10,
|
|
|
|
Height: 10,
|
|
|
|
ColorModel: color.NRGBAModel,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// errors
|
|
|
|
{path: tstNoStringer{}, expect: false},
|
|
|
|
{path: "non-existent.png", expect: false},
|
|
|
|
{path: "", expect: false},
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNSConfig(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2017-03-13 18:55:02 -04:00
|
|
|
|
2023-01-04 12:24:36 -05:00
|
|
|
afs := afero.NewMemMapFs()
|
|
|
|
v := config.New()
|
2017-03-13 18:55:02 -04:00
|
|
|
v.Set("workingDir", "/a/b")
|
2023-01-04 12:24:36 -05:00
|
|
|
conf := testconfig.GetTestConfig(afs, v)
|
|
|
|
bcfg := conf.BaseConfig()
|
|
|
|
fs := hugofs.NewFrom(afs, bcfg)
|
2017-03-13 18:55:02 -04:00
|
|
|
|
2023-01-04 12:24:36 -05:00
|
|
|
ns := New(&deps.Deps{Fs: fs, Conf: conf})
|
2017-03-13 18:55:02 -04:00
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
for _, test := range configTests {
|
2017-03-13 18:55:02 -04:00
|
|
|
|
|
|
|
// check for expected errors early to avoid writing files
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
2019-08-02 11:32:23 -04:00
|
|
|
_, err := ns.Config(test.path)
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2017-03-13 18:55:02 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// cast path to string for afero.WriteFile
|
|
|
|
sp, err := cast.ToStringE(test.path)
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
2023-01-04 12:24:36 -05:00
|
|
|
afero.WriteFile(ns.deps.Fs.Source, filepath.Join(bcfg.WorkingDir, sp), test.input, 0755)
|
2017-03-13 18:55:02 -04:00
|
|
|
|
|
|
|
result, err := ns.Config(test.path)
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
|
|
|
c.Assert(len(ns.cache), qt.Not(qt.Equals), 0)
|
2017-03-13 18:55:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func blankImage(width, height int) []byte {
|
|
|
|
var buf bytes.Buffer
|
|
|
|
img := image.NewRGBA(image.Rect(0, 0, width, height))
|
|
|
|
if err := png.Encode(&buf, img); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return buf.Bytes()
|
|
|
|
}
|