mirror of
				https://github.com/gohugoio/hugo.git
				synced 2024-05-11 05:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			132 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2019 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 modules
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/gohugoio/hugo/common/hugo"
 | 
						|
 | 
						|
	"github.com/gohugoio/hugo/config"
 | 
						|
 | 
						|
	qt "github.com/frankban/quicktest"
 | 
						|
)
 | 
						|
 | 
						|
func TestConfigHugoVersionIsValid(t *testing.T) {
 | 
						|
	c := qt.New(t)
 | 
						|
 | 
						|
	for _, test := range []struct {
 | 
						|
		in     HugoVersion
 | 
						|
		expect bool
 | 
						|
	}{
 | 
						|
		{HugoVersion{Min: "0.33.0"}, true},
 | 
						|
		{HugoVersion{Min: "0.56.0-DEV"}, true},
 | 
						|
		{HugoVersion{Min: "0.33.0", Max: "0.55.0"}, false},
 | 
						|
		{HugoVersion{Min: "0.33.0", Max: "0.99.0"}, true},
 | 
						|
	} {
 | 
						|
		c.Assert(test.in.IsValid(), qt.Equals, test.expect)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestDecodeConfig(t *testing.T) {
 | 
						|
	c := qt.New(t)
 | 
						|
	tomlConfig := `
 | 
						|
[module]
 | 
						|
 | 
						|
[module.hugoVersion]
 | 
						|
min = "0.54.2"
 | 
						|
max = "0.99.0"
 | 
						|
extended = true
 | 
						|
 | 
						|
[[module.mounts]]
 | 
						|
source="src/project/blog"
 | 
						|
target="content/blog"
 | 
						|
lang="en"
 | 
						|
[[module.imports]]
 | 
						|
path="github.com/bep/mycomponent"
 | 
						|
[[module.imports.mounts]]
 | 
						|
source="scss"
 | 
						|
target="assets/bootstrap/scss"
 | 
						|
[[module.imports.mounts]]
 | 
						|
source="src/markdown/blog"
 | 
						|
target="content/blog"
 | 
						|
lang="en"
 | 
						|
`
 | 
						|
	cfg, err := config.FromConfigString(tomlConfig, "toml")
 | 
						|
	c.Assert(err, qt.IsNil)
 | 
						|
 | 
						|
	mcfg, err := DecodeConfig(cfg)
 | 
						|
	c.Assert(err, qt.IsNil)
 | 
						|
 | 
						|
	v056 := hugo.VersionString("0.56.0")
 | 
						|
 | 
						|
	hv := mcfg.HugoVersion
 | 
						|
 | 
						|
	c.Assert(v056.Compare(hv.Min), qt.Equals, -1)
 | 
						|
	c.Assert(v056.Compare(hv.Max), qt.Equals, 1)
 | 
						|
	c.Assert(hv.Extended, qt.Equals, true)
 | 
						|
 | 
						|
	if hugo.IsExtended {
 | 
						|
		c.Assert(hv.IsValid(), qt.Equals, true)
 | 
						|
	}
 | 
						|
 | 
						|
	c.Assert(len(mcfg.Mounts), qt.Equals, 1)
 | 
						|
	c.Assert(len(mcfg.Imports), qt.Equals, 1)
 | 
						|
	imp := mcfg.Imports[0]
 | 
						|
	imp.Path = "github.com/bep/mycomponent"
 | 
						|
	c.Assert(imp.Mounts[1].Source, qt.Equals, "src/markdown/blog")
 | 
						|
	c.Assert(imp.Mounts[1].Target, qt.Equals, "content/blog")
 | 
						|
	c.Assert(imp.Mounts[1].Lang, qt.Equals, "en")
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
func TestDecodeConfigBothOldAndNewProvided(t *testing.T) {
 | 
						|
	c := qt.New(t)
 | 
						|
	tomlConfig := `
 | 
						|
 | 
						|
theme = ["b", "c"]
 | 
						|
 | 
						|
[module]
 | 
						|
[[module.imports]]
 | 
						|
path="a"
 | 
						|
 | 
						|
`
 | 
						|
	cfg, err := config.FromConfigString(tomlConfig, "toml")
 | 
						|
	c.Assert(err, qt.IsNil)
 | 
						|
 | 
						|
	modCfg, err := DecodeConfig(cfg)
 | 
						|
	c.Assert(err, qt.IsNil)
 | 
						|
	c.Assert(len(modCfg.Imports), qt.Equals, 3)
 | 
						|
	c.Assert(modCfg.Imports[0].Path, qt.Equals, "a")
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
// Test old style theme import.
 | 
						|
func TestDecodeConfigTheme(t *testing.T) {
 | 
						|
	c := qt.New(t)
 | 
						|
	tomlConfig := `
 | 
						|
 | 
						|
theme = ["a", "b"]
 | 
						|
`
 | 
						|
	cfg, err := config.FromConfigString(tomlConfig, "toml")
 | 
						|
	c.Assert(err, qt.IsNil)
 | 
						|
 | 
						|
	mcfg, err := DecodeConfig(cfg)
 | 
						|
	c.Assert(err, qt.IsNil)
 | 
						|
 | 
						|
	c.Assert(len(mcfg.Imports), qt.Equals, 2)
 | 
						|
	c.Assert(mcfg.Imports[0].Path, qt.Equals, "a")
 | 
						|
	c.Assert(mcfg.Imports[1].Path, qt.Equals, "b")
 | 
						|
}
 |