Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
// 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 hugolib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"math/rand"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2020-09-09 16:31:43 -04:00
|
|
|
"github.com/gohugoio/hugo/modules/npm"
|
|
|
|
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
"github.com/gohugoio/hugo/common/loggers"
|
|
|
|
|
|
|
|
"github.com/spf13/afero"
|
|
|
|
|
|
|
|
"github.com/gohugoio/hugo/hugofs/files"
|
|
|
|
|
|
|
|
"github.com/gohugoio/hugo/common/hugo"
|
|
|
|
|
|
|
|
"github.com/gohugoio/hugo/htesting"
|
|
|
|
"github.com/gohugoio/hugo/hugofs"
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
qt "github.com/frankban/quicktest"
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
"github.com/gohugoio/testmodBuilder/mods"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
2020-09-09 13:08:03 -04:00
|
|
|
func TestHugoModulesVariants(t *testing.T) {
|
2020-12-23 13:47:20 -05:00
|
|
|
if !htesting.IsCI() {
|
2020-04-28 06:24:02 -04:00
|
|
|
t.Skip("skip (relative) long running modules test when running locally")
|
|
|
|
}
|
2020-09-09 13:08:03 -04:00
|
|
|
|
2020-01-31 11:15:14 -05:00
|
|
|
config := `
|
|
|
|
baseURL="https://example.org"
|
|
|
|
workingDir = %q
|
|
|
|
|
|
|
|
[module]
|
|
|
|
[[module.imports]]
|
|
|
|
path="github.com/gohugoio/hugoTestModule2"
|
2020-09-09 13:08:03 -04:00
|
|
|
%s
|
2020-01-31 11:15:14 -05:00
|
|
|
`
|
|
|
|
|
2020-09-09 13:08:03 -04:00
|
|
|
createConfig := func(workingDir, moduleOpts string) string {
|
|
|
|
return fmt.Sprintf(config, workingDir, moduleOpts)
|
|
|
|
}
|
|
|
|
|
|
|
|
newTestBuilder := func(t testing.TB, moduleOpts string) (*sitesBuilder, func()) {
|
|
|
|
b := newTestSitesBuilder(t)
|
2020-09-09 16:31:43 -04:00
|
|
|
tempDir, clean, err := htesting.CreateTempDir(hugofs.Os, "hugo-modules-variants")
|
2020-09-09 13:08:03 -04:00
|
|
|
b.Assert(err, qt.IsNil)
|
2020-09-09 16:31:43 -04:00
|
|
|
workingDir := filepath.Join(tempDir, "myhugosite")
|
|
|
|
b.Assert(os.MkdirAll(workingDir, 0777), qt.IsNil)
|
2020-09-09 13:08:03 -04:00
|
|
|
b.Fs = hugofs.NewDefault(viper.New())
|
|
|
|
b.WithWorkingDir(workingDir).WithConfigFile("toml", createConfig(workingDir, moduleOpts))
|
|
|
|
b.WithTemplates(
|
|
|
|
"index.html", `
|
|
|
|
Param from module: {{ site.Params.Hugo }}|
|
|
|
|
{{ $js := resources.Get "jslibs/alpinejs/alpine.js" }}
|
|
|
|
JS imported in module: {{ with $js }}{{ .RelPermalink }}{{ end }}|
|
|
|
|
`,
|
|
|
|
"_default/single.html", `{{ .Content }}`)
|
|
|
|
b.WithContent("p1.md", `---
|
2020-01-31 11:15:14 -05:00
|
|
|
title: "Page"
|
|
|
|
---
|
|
|
|
|
|
|
|
[A link](https://bep.is)
|
|
|
|
|
|
|
|
`)
|
2020-09-09 13:08:03 -04:00
|
|
|
b.WithSourceFile("go.mod", `
|
2020-01-31 11:15:14 -05:00
|
|
|
module github.com/gohugoio/tests/testHugoModules
|
|
|
|
|
|
|
|
|
2019-09-10 05:26:34 -04:00
|
|
|
`)
|
|
|
|
|
2020-09-09 13:08:03 -04:00
|
|
|
b.WithSourceFile("go.sum", `
|
2019-09-10 05:26:34 -04:00
|
|
|
github.com/gohugoio/hugoTestModule2 v0.0.0-20200131160637-9657d7697877 h1:WLM2bQCKIWo04T6NsIWsX/Vtirhf0TnpY66xyqGlgVY=
|
|
|
|
github.com/gohugoio/hugoTestModule2 v0.0.0-20200131160637-9657d7697877/go.mod h1:CBFZS3khIAXKxReMwq0le8sEl/D8hcXmixlOHVv+Gd0=
|
2020-01-31 11:15:14 -05:00
|
|
|
`)
|
|
|
|
|
2020-09-09 13:08:03 -04:00
|
|
|
return b, clean
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("Target in subfolder", func(t *testing.T) {
|
|
|
|
b, clean := newTestBuilder(t, "ignoreImports=true")
|
|
|
|
defer clean()
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
|
|
|
b.AssertFileContent("public/p1/index.html", `<p>Page|https://bep.is|Title: |Text: A link|END</p>`)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Ignore config", func(t *testing.T) {
|
|
|
|
b, clean := newTestBuilder(t, "ignoreConfig=true")
|
|
|
|
defer clean()
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
|
|
|
b.AssertFileContent("public/index.html", `
|
|
|
|
Param from module: |
|
|
|
|
JS imported in module: |
|
|
|
|
`)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Ignore imports", func(t *testing.T) {
|
|
|
|
b, clean := newTestBuilder(t, "ignoreImports=true")
|
|
|
|
defer clean()
|
2020-01-31 11:15:14 -05:00
|
|
|
|
2020-09-09 13:08:03 -04:00
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
|
|
|
b.AssertFileContent("public/index.html", `
|
|
|
|
Param from module: Rocks|
|
|
|
|
JS imported in module: |
|
|
|
|
`)
|
|
|
|
})
|
2020-01-31 11:15:14 -05:00
|
|
|
|
2020-09-09 16:31:43 -04:00
|
|
|
t.Run("Create package.json", func(t *testing.T) {
|
|
|
|
b, clean := newTestBuilder(t, "")
|
|
|
|
defer clean()
|
|
|
|
|
|
|
|
b.WithSourceFile("package.json", `{
|
|
|
|
"name": "mypack",
|
|
|
|
"version": "1.2.3",
|
|
|
|
"scripts": {},
|
|
|
|
"dependencies": {
|
|
|
|
"nonon": "error"
|
|
|
|
}
|
|
|
|
}`)
|
|
|
|
|
|
|
|
b.WithSourceFile("package.hugo.json", `{
|
|
|
|
"name": "mypack",
|
|
|
|
"version": "1.2.3",
|
|
|
|
"scripts": {},
|
|
|
|
"dependencies": {
|
|
|
|
"foo": "1.2.3"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"postcss-cli": "7.8.0",
|
|
|
|
"tailwindcss": "1.8.0"
|
2020-12-16 06:11:32 -05:00
|
|
|
|
2020-09-09 16:31:43 -04:00
|
|
|
}
|
|
|
|
}`)
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
b.Assert(npm.Pack(b.H.BaseFs.SourceFs, b.H.BaseFs.Assets.Dirs), qt.IsNil)
|
|
|
|
|
|
|
|
b.AssertFileContentFn("package.json", func(s string) bool {
|
|
|
|
return s == `{
|
|
|
|
"comments": {
|
|
|
|
"dependencies": {
|
|
|
|
"foo": "project",
|
|
|
|
"react-dom": "github.com/gohugoio/hugoTestModule2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/cli": "github.com/gohugoio/hugoTestModule2",
|
|
|
|
"@babel/core": "github.com/gohugoio/hugoTestModule2",
|
|
|
|
"@babel/preset-env": "github.com/gohugoio/hugoTestModule2",
|
|
|
|
"postcss-cli": "project",
|
|
|
|
"tailwindcss": "project"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"foo": "1.2.3",
|
|
|
|
"react-dom": "^16.13.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/cli": "7.8.4",
|
|
|
|
"@babel/core": "7.9.0",
|
|
|
|
"@babel/preset-env": "7.9.5",
|
|
|
|
"postcss-cli": "7.8.0",
|
|
|
|
"tailwindcss": "1.8.0"
|
|
|
|
},
|
|
|
|
"name": "mypack",
|
|
|
|
"scripts": {},
|
|
|
|
"version": "1.2.3"
|
|
|
|
}`
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Create package.json, no default", func(t *testing.T) {
|
|
|
|
b, clean := newTestBuilder(t, "")
|
|
|
|
defer clean()
|
|
|
|
|
2020-09-14 11:09:34 -04:00
|
|
|
const origPackageJSON = `{
|
2020-09-09 16:31:43 -04:00
|
|
|
"name": "mypack",
|
|
|
|
"version": "1.2.3",
|
|
|
|
"scripts": {},
|
|
|
|
"dependencies": {
|
|
|
|
"moo": "1.2.3"
|
|
|
|
}
|
2020-09-14 11:09:34 -04:00
|
|
|
}`
|
|
|
|
|
|
|
|
b.WithSourceFile("package.json", origPackageJSON)
|
2020-09-09 16:31:43 -04:00
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
b.Assert(npm.Pack(b.H.BaseFs.SourceFs, b.H.BaseFs.Assets.Dirs), qt.IsNil)
|
|
|
|
|
|
|
|
b.AssertFileContentFn("package.json", func(s string) bool {
|
|
|
|
return s == `{
|
|
|
|
"comments": {
|
|
|
|
"dependencies": {
|
|
|
|
"moo": "project",
|
|
|
|
"react-dom": "github.com/gohugoio/hugoTestModule2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/cli": "github.com/gohugoio/hugoTestModule2",
|
|
|
|
"@babel/core": "github.com/gohugoio/hugoTestModule2",
|
|
|
|
"@babel/preset-env": "github.com/gohugoio/hugoTestModule2",
|
|
|
|
"postcss-cli": "github.com/gohugoio/hugoTestModule2",
|
|
|
|
"tailwindcss": "github.com/gohugoio/hugoTestModule2"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"moo": "1.2.3",
|
|
|
|
"react-dom": "^16.13.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/cli": "7.8.4",
|
|
|
|
"@babel/core": "7.9.0",
|
|
|
|
"@babel/preset-env": "7.9.5",
|
|
|
|
"postcss-cli": "7.1.0",
|
|
|
|
"tailwindcss": "1.2.0"
|
|
|
|
},
|
|
|
|
"name": "mypack",
|
|
|
|
"scripts": {},
|
|
|
|
"version": "1.2.3"
|
|
|
|
}`
|
|
|
|
})
|
2020-09-14 11:09:34 -04:00
|
|
|
|
|
|
|
// https://github.com/gohugoio/hugo/issues/7690
|
|
|
|
b.AssertFileContent("package.hugo.json", origPackageJSON)
|
2020-09-09 16:31:43 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Create package.json, no default, no package.json", func(t *testing.T) {
|
|
|
|
b, clean := newTestBuilder(t, "")
|
|
|
|
defer clean()
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
b.Assert(npm.Pack(b.H.BaseFs.SourceFs, b.H.BaseFs.Assets.Dirs), qt.IsNil)
|
|
|
|
|
|
|
|
b.AssertFileContentFn("package.json", func(s string) bool {
|
|
|
|
return s == `{
|
|
|
|
"comments": {
|
|
|
|
"dependencies": {
|
|
|
|
"react-dom": "github.com/gohugoio/hugoTestModule2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/cli": "github.com/gohugoio/hugoTestModule2",
|
|
|
|
"@babel/core": "github.com/gohugoio/hugoTestModule2",
|
|
|
|
"@babel/preset-env": "github.com/gohugoio/hugoTestModule2",
|
|
|
|
"postcss-cli": "github.com/gohugoio/hugoTestModule2",
|
|
|
|
"tailwindcss": "github.com/gohugoio/hugoTestModule2"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"react-dom": "^16.13.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/cli": "7.8.4",
|
|
|
|
"@babel/core": "7.9.0",
|
|
|
|
"@babel/preset-env": "7.9.5",
|
|
|
|
"postcss-cli": "7.1.0",
|
|
|
|
"tailwindcss": "1.2.0"
|
|
|
|
},
|
|
|
|
"name": "myhugosite",
|
|
|
|
"version": "0.1.0"
|
|
|
|
}`
|
|
|
|
})
|
|
|
|
})
|
2020-01-31 11:15:14 -05:00
|
|
|
}
|
|
|
|
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
// TODO(bep) this fails when testmodBuilder is also building ...
|
2020-09-09 13:08:03 -04:00
|
|
|
func TestHugoModulesMatrix(t *testing.T) {
|
2020-12-23 13:47:20 -05:00
|
|
|
if !htesting.IsCI() {
|
2019-11-27 07:42:36 -05:00
|
|
|
t.Skip("skip (relative) long running modules test when running locally")
|
|
|
|
}
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
t.Parallel()
|
|
|
|
|
2020-12-23 13:47:20 -05:00
|
|
|
if !htesting.IsCI() || hugo.GoMinorVersion() < 12 {
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
// https://github.com/golang/go/issues/26794
|
|
|
|
// There were some concurrent issues with Go modules in < Go 12.
|
2019-12-10 13:56:44 -05:00
|
|
|
t.Skip("skip this on local host and for Go <= 1.11 due to a bug in Go's stdlib")
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if testing.Short() {
|
|
|
|
t.Skip()
|
|
|
|
}
|
|
|
|
|
|
|
|
rnd := rand.New(rand.NewSource(time.Now().UnixNano()))
|
|
|
|
gooss := []string{"linux", "darwin", "windows"}
|
|
|
|
goos := gooss[rnd.Intn(len(gooss))]
|
|
|
|
ignoreVendor := rnd.Intn(2) == 0
|
|
|
|
testmods := mods.CreateModules(goos).Collect()
|
|
|
|
rnd.Shuffle(len(testmods), func(i, j int) { testmods[i], testmods[j] = testmods[j], testmods[i] })
|
|
|
|
|
|
|
|
for _, m := range testmods[:2] {
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
|
|
|
|
v := viper.New()
|
|
|
|
|
|
|
|
workingDir, clean, err := htesting.CreateTempDir(hugofs.Os, "hugo-modules-test")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
defer clean()
|
|
|
|
|
|
|
|
configTemplate := `
|
|
|
|
baseURL = "https://example.com"
|
|
|
|
title = "My Modular Site"
|
|
|
|
workingDir = %q
|
|
|
|
theme = %q
|
2020-09-09 10:51:13 -04:00
|
|
|
ignoreVendorPaths = %q
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
|
|
|
|
`
|
|
|
|
|
2020-09-09 10:51:13 -04:00
|
|
|
ignoreVendorPaths := ""
|
|
|
|
if ignoreVendor {
|
|
|
|
ignoreVendorPaths = "github.com/**"
|
|
|
|
}
|
|
|
|
config := fmt.Sprintf(configTemplate, workingDir, m.Path(), ignoreVendorPaths)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
|
|
|
|
b := newTestSitesBuilder(t)
|
|
|
|
|
|
|
|
// Need to use OS fs for this.
|
|
|
|
b.Fs = hugofs.NewDefault(v)
|
|
|
|
|
|
|
|
b.WithWorkingDir(workingDir).WithConfigFile("toml", config)
|
|
|
|
b.WithContent("page.md", `
|
|
|
|
---
|
|
|
|
title: "Foo"
|
|
|
|
---
|
|
|
|
`)
|
|
|
|
b.WithTemplates("home.html", `
|
|
|
|
|
|
|
|
{{ $mod := .Site.Data.modinfo.module }}
|
|
|
|
Mod Name: {{ $mod.name }}
|
|
|
|
Mod Version: {{ $mod.version }}
|
|
|
|
----
|
|
|
|
{{ range $k, $v := .Site.Data.modinfo }}
|
|
|
|
- {{ $k }}: {{ range $kk, $vv := $v }}{{ $kk }}: {{ $vv }}|{{ end -}}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
|
|
|
|
`)
|
|
|
|
b.WithSourceFile("go.mod", `
|
|
|
|
module github.com/gohugoio/tests/testHugoModules
|
|
|
|
|
|
|
|
|
|
|
|
`)
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
|
|
|
// Verify that go.mod is autopopulated with all the modules in config.toml.
|
|
|
|
b.AssertFileContent("go.mod", m.Path())
|
|
|
|
|
|
|
|
b.AssertFileContent("public/index.html",
|
|
|
|
"Mod Name: "+m.Name(),
|
|
|
|
"Mod Version: v1.4.0")
|
|
|
|
|
|
|
|
b.AssertFileContent("public/index.html", createChildModMatchers(m, ignoreVendor, m.Vendor)...)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func createChildModMatchers(m *mods.Md, ignoreVendor, vendored bool) []string {
|
2020-12-16 06:11:32 -05:00
|
|
|
// Child dependencies are one behind.
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
expectMinorVersion := 3
|
|
|
|
|
|
|
|
if !ignoreVendor && vendored {
|
|
|
|
// Vendored modules are stuck at v1.1.0.
|
|
|
|
expectMinorVersion = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
expectVersion := fmt.Sprintf("v1.%d.0", expectMinorVersion)
|
|
|
|
|
|
|
|
var matchers []string
|
|
|
|
|
|
|
|
for _, mm := range m.Children {
|
|
|
|
matchers = append(
|
|
|
|
matchers,
|
|
|
|
fmt.Sprintf("%s: name: %s|version: %s", mm.Name(), mm.Name(), expectVersion))
|
|
|
|
matchers = append(matchers, createChildModMatchers(mm, ignoreVendor, vendored || mm.Vendor)...)
|
|
|
|
}
|
|
|
|
return matchers
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestModulesWithContent(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
b := newTestSitesBuilder(t).WithWorkingDir("/site").WithConfigFile("toml", `
|
|
|
|
baseURL="https://example.org"
|
|
|
|
|
|
|
|
workingDir="/site"
|
|
|
|
|
|
|
|
defaultContentLanguage = "en"
|
|
|
|
|
|
|
|
[module]
|
|
|
|
[[module.imports]]
|
|
|
|
path="a"
|
|
|
|
[[module.imports.mounts]]
|
|
|
|
source="myacontent"
|
|
|
|
target="content/blog"
|
|
|
|
lang="en"
|
|
|
|
[[module.imports]]
|
|
|
|
path="b"
|
|
|
|
[[module.imports.mounts]]
|
|
|
|
source="mybcontent"
|
|
|
|
target="content/blog"
|
|
|
|
lang="nn"
|
|
|
|
[[module.imports]]
|
|
|
|
path="c"
|
|
|
|
[[module.imports]]
|
|
|
|
path="d"
|
|
|
|
|
|
|
|
[languages]
|
|
|
|
|
|
|
|
[languages.en]
|
|
|
|
title = "Title in English"
|
|
|
|
languageName = "English"
|
|
|
|
weight = 1
|
|
|
|
[languages.nn]
|
|
|
|
languageName = "Nynorsk"
|
|
|
|
weight = 2
|
|
|
|
title = "Tittel på nynorsk"
|
|
|
|
[languages.nb]
|
|
|
|
languageName = "Bokmål"
|
|
|
|
weight = 3
|
|
|
|
title = "Tittel på bokmål"
|
|
|
|
[languages.fr]
|
|
|
|
languageName = "French"
|
|
|
|
weight = 4
|
|
|
|
title = "French Title"
|
|
|
|
|
|
|
|
|
|
|
|
`)
|
|
|
|
|
|
|
|
b.WithTemplatesAdded("index.html", `
|
|
|
|
{{ range .Site.RegularPages }}
|
|
|
|
|{{ .Title }}|{{ .RelPermalink }}|{{ .Plain }}
|
|
|
|
{{ end }}
|
|
|
|
{{ $data := .Site.Data }}
|
|
|
|
Data Common: {{ $data.common.value }}
|
|
|
|
Data C: {{ $data.c.value }}
|
|
|
|
Data D: {{ $data.d.value }}
|
|
|
|
All Data: {{ $data }}
|
|
|
|
|
2019-07-29 11:23:10 -04:00
|
|
|
i18n hello1: {{ i18n "hello1" . }}
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
i18n theme: {{ i18n "theme" . }}
|
|
|
|
i18n theme2: {{ i18n "theme2" . }}
|
|
|
|
`)
|
|
|
|
|
|
|
|
content := func(id string) string {
|
|
|
|
return fmt.Sprintf(`---
|
|
|
|
title: Title %s
|
|
|
|
---
|
|
|
|
Content %s
|
|
|
|
|
|
|
|
`, id, id)
|
|
|
|
}
|
|
|
|
|
|
|
|
i18nContent := func(id, value string) string {
|
|
|
|
return fmt.Sprintf(`
|
|
|
|
[%s]
|
|
|
|
other = %q
|
|
|
|
`, id, value)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Content files
|
|
|
|
b.WithSourceFile("themes/a/myacontent/page.md", content("theme-a-en"))
|
|
|
|
b.WithSourceFile("themes/b/mybcontent/page.md", content("theme-b-nn"))
|
|
|
|
b.WithSourceFile("themes/c/content/blog/c.md", content("theme-c-nn"))
|
|
|
|
|
|
|
|
// Data files
|
|
|
|
b.WithSourceFile("data/common.toml", `value="Project"`)
|
|
|
|
b.WithSourceFile("themes/c/data/common.toml", `value="Theme C"`)
|
|
|
|
b.WithSourceFile("themes/c/data/c.toml", `value="Hugo Rocks!"`)
|
|
|
|
b.WithSourceFile("themes/d/data/c.toml", `value="Hugo Rodcks!"`)
|
|
|
|
b.WithSourceFile("themes/d/data/d.toml", `value="Hugo Rodks!"`)
|
|
|
|
|
|
|
|
// i18n files
|
2019-07-29 11:23:10 -04:00
|
|
|
b.WithSourceFile("i18n/en.toml", i18nContent("hello1", "Project"))
|
|
|
|
b.WithSourceFile("themes/c/i18n/en.toml", `
|
|
|
|
[hello1]
|
|
|
|
other="Theme C Hello"
|
|
|
|
[theme]
|
|
|
|
other="Theme C"
|
|
|
|
`)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
b.WithSourceFile("themes/d/i18n/en.toml", i18nContent("theme", "Theme D"))
|
|
|
|
b.WithSourceFile("themes/d/i18n/en.toml", i18nContent("theme2", "Theme2 D"))
|
|
|
|
|
|
|
|
// Static files
|
|
|
|
b.WithSourceFile("themes/c/static/hello.txt", `Hugo Rocks!"`)
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
|
|
|
b.AssertFileContent("public/index.html", "|Title theme-a-en|/blog/page/|Content theme-a-en")
|
|
|
|
b.AssertFileContent("public/nn/index.html", "|Title theme-b-nn|/nn/blog/page/|Content theme-b-nn")
|
|
|
|
|
|
|
|
// Data
|
|
|
|
b.AssertFileContent("public/index.html",
|
|
|
|
"Data Common: Project",
|
|
|
|
"Data C: Hugo Rocks!",
|
|
|
|
"Data D: Hugo Rodks!",
|
|
|
|
)
|
|
|
|
|
|
|
|
// i18n
|
|
|
|
b.AssertFileContent("public/index.html",
|
2019-07-29 11:23:10 -04:00
|
|
|
"i18n hello1: Project",
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
"i18n theme: Theme C",
|
|
|
|
"i18n theme2: Theme2 D",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestModulesIgnoreConfig(t *testing.T) {
|
|
|
|
b := newTestSitesBuilder(t).WithWorkingDir("/site").WithConfigFile("toml", `
|
|
|
|
baseURL="https://example.org"
|
|
|
|
|
|
|
|
workingDir="/site"
|
|
|
|
|
|
|
|
[module]
|
|
|
|
[[module.imports]]
|
|
|
|
path="a"
|
|
|
|
ignoreConfig=true
|
|
|
|
|
|
|
|
`)
|
|
|
|
|
|
|
|
b.WithSourceFile("themes/a/config.toml", `
|
|
|
|
[params]
|
|
|
|
a = "Should Be Ignored!"
|
|
|
|
`)
|
|
|
|
|
|
|
|
b.WithTemplatesAdded("index.html", `Params: {{ .Site.Params }}`)
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
|
|
|
b.AssertFileContentFn("public/index.html", func(s string) bool {
|
|
|
|
return !strings.Contains(s, "Ignored")
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestModulesDisabled(t *testing.T) {
|
|
|
|
b := newTestSitesBuilder(t).WithWorkingDir("/site").WithConfigFile("toml", `
|
|
|
|
baseURL="https://example.org"
|
|
|
|
|
|
|
|
workingDir="/site"
|
|
|
|
|
|
|
|
[module]
|
|
|
|
[[module.imports]]
|
|
|
|
path="a"
|
|
|
|
[[module.imports]]
|
|
|
|
path="b"
|
2019-07-24 15:46:24 -04:00
|
|
|
disable=true
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
`)
|
|
|
|
|
|
|
|
b.WithSourceFile("themes/a/config.toml", `
|
|
|
|
[params]
|
|
|
|
a = "A param"
|
|
|
|
`)
|
|
|
|
|
|
|
|
b.WithSourceFile("themes/b/config.toml", `
|
|
|
|
[params]
|
|
|
|
b = "B param"
|
|
|
|
`)
|
|
|
|
|
|
|
|
b.WithTemplatesAdded("index.html", `Params: {{ .Site.Params }}`)
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
|
|
|
b.AssertFileContentFn("public/index.html", func(s string) bool {
|
|
|
|
return strings.Contains(s, "A param") && !strings.Contains(s, "B param")
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestModulesIncompatible(t *testing.T) {
|
2020-01-15 09:59:56 -05:00
|
|
|
t.Parallel()
|
|
|
|
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
b := newTestSitesBuilder(t).WithWorkingDir("/site").WithConfigFile("toml", `
|
|
|
|
baseURL="https://example.org"
|
|
|
|
|
|
|
|
workingDir="/site"
|
|
|
|
|
|
|
|
[module]
|
|
|
|
[[module.imports]]
|
|
|
|
path="ok"
|
|
|
|
[[module.imports]]
|
|
|
|
path="incompat1"
|
|
|
|
[[module.imports]]
|
|
|
|
path="incompat2"
|
2019-08-13 11:15:52 -04:00
|
|
|
[[module.imports]]
|
|
|
|
path="incompat3"
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
|
|
|
|
`)
|
|
|
|
|
|
|
|
b.WithSourceFile("themes/ok/data/ok.toml", `title = "OK"`)
|
|
|
|
|
|
|
|
b.WithSourceFile("themes/incompat1/config.toml", `
|
|
|
|
|
|
|
|
[module]
|
|
|
|
[module.hugoVersion]
|
|
|
|
min = "0.33.2"
|
|
|
|
max = "0.45.0"
|
|
|
|
|
|
|
|
`)
|
|
|
|
|
|
|
|
// Old setup.
|
|
|
|
b.WithSourceFile("themes/incompat2/theme.toml", `
|
|
|
|
min_version = "5.0.0"
|
|
|
|
|
2019-08-13 11:15:52 -04:00
|
|
|
`)
|
|
|
|
|
|
|
|
// Issue 6162
|
|
|
|
b.WithSourceFile("themes/incompat3/theme.toml", `
|
|
|
|
min_version = 0.55.0
|
|
|
|
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
`)
|
|
|
|
|
|
|
|
logger := loggers.NewWarningLogger()
|
|
|
|
b.WithLogger(logger)
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
|
2020-10-21 05:17:48 -04:00
|
|
|
c.Assert(logger.LogCounters().WarnCounter.Count(), qt.Equals, uint64(3))
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestModulesSymlinks(t *testing.T) {
|
|
|
|
skipSymlink(t)
|
|
|
|
|
|
|
|
wd, _ := os.Getwd()
|
|
|
|
defer func() {
|
|
|
|
os.Chdir(wd)
|
|
|
|
}()
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
// We need to use the OS fs for this.
|
|
|
|
cfg := viper.New()
|
|
|
|
fs := hugofs.NewFrom(hugofs.Os, cfg)
|
|
|
|
|
|
|
|
workDir, clean, err := htesting.CreateTempDir(hugofs.Os, "hugo-mod-sym")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
|
|
|
|
defer clean()
|
|
|
|
|
|
|
|
const homeTemplate = `
|
|
|
|
Data: {{ .Site.Data }}
|
|
|
|
`
|
|
|
|
|
|
|
|
createDirsAndFiles := func(baseDir string) {
|
|
|
|
for _, dir := range files.ComponentFolders {
|
|
|
|
realDir := filepath.Join(baseDir, dir, "real")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(os.MkdirAll(realDir, 0777), qt.IsNil)
|
|
|
|
c.Assert(afero.WriteFile(fs.Source, filepath.Join(realDir, "data.toml"), []byte("[hello]\nother = \"hello\""), 0777), qt.IsNil)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
}
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(afero.WriteFile(fs.Source, filepath.Join(baseDir, "layouts", "index.html"), []byte(homeTemplate), 0777), qt.IsNil)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create project dirs and files.
|
|
|
|
createDirsAndFiles(workDir)
|
|
|
|
// Create one module inside the default themes folder.
|
|
|
|
themeDir := filepath.Join(workDir, "themes", "mymod")
|
|
|
|
createDirsAndFiles(themeDir)
|
|
|
|
|
|
|
|
createSymlinks := func(baseDir, id string) {
|
|
|
|
for _, dir := range files.ComponentFolders {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(os.Chdir(filepath.Join(baseDir, dir)), qt.IsNil)
|
|
|
|
c.Assert(os.Symlink("real", fmt.Sprintf("realsym%s", id)), qt.IsNil)
|
|
|
|
c.Assert(os.Chdir(filepath.Join(baseDir, dir, "real")), qt.IsNil)
|
|
|
|
c.Assert(os.Symlink("data.toml", fmt.Sprintf(filepath.FromSlash("datasym%s.toml"), id)), qt.IsNil)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
createSymlinks(workDir, "project")
|
|
|
|
createSymlinks(themeDir, "mod")
|
|
|
|
|
|
|
|
config := `
|
|
|
|
baseURL = "https://example.com"
|
|
|
|
theme="mymod"
|
|
|
|
defaultContentLanguage="nn"
|
|
|
|
defaultContentLanguageInSubDir=true
|
|
|
|
|
|
|
|
[languages]
|
|
|
|
[languages.nn]
|
|
|
|
weight = 1
|
|
|
|
[languages.en]
|
|
|
|
weight = 2
|
|
|
|
|
|
|
|
|
|
|
|
`
|
|
|
|
|
|
|
|
b := newTestSitesBuilder(t).WithNothingAdded().WithWorkingDir(workDir)
|
2019-07-24 18:12:40 -04:00
|
|
|
b.WithLogger(loggers.NewErrorLogger())
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
b.Fs = fs
|
|
|
|
|
|
|
|
b.WithConfigFile("toml", config)
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(os.Chdir(workDir), qt.IsNil)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
|
|
|
b.AssertFileContentFn(filepath.Join("public", "en", "index.html"), func(s string) bool {
|
|
|
|
// Symbolic links only followed in project. There should be WARNING logs.
|
|
|
|
return !strings.Contains(s, "symmod") && strings.Contains(s, "symproject")
|
|
|
|
})
|
|
|
|
|
|
|
|
bfs := b.H.BaseFs
|
|
|
|
|
2019-07-24 18:12:40 -04:00
|
|
|
for i, componentFs := range []afero.Fs{
|
|
|
|
bfs.Static[""].Fs,
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
bfs.Archetypes.Fs,
|
|
|
|
bfs.Content.Fs,
|
|
|
|
bfs.Data.Fs,
|
|
|
|
bfs.Assets.Fs,
|
2020-12-02 07:23:25 -05:00
|
|
|
bfs.I18n.Fs,
|
|
|
|
} {
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
|
2019-07-24 18:12:40 -04:00
|
|
|
if i != 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
for j, id := range []string{"mod", "project"} {
|
|
|
|
|
|
|
|
statCheck := func(fs afero.Fs, filename string, isDir bool) {
|
|
|
|
shouldFail := j == 0
|
|
|
|
if !shouldFail && i == 0 {
|
|
|
|
// Static dirs only supports symlinks for files
|
|
|
|
shouldFail = isDir
|
|
|
|
}
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
|
|
|
|
_, err := fs.Stat(filepath.FromSlash(filename))
|
|
|
|
if err != nil {
|
2019-07-24 18:12:40 -04:00
|
|
|
if i > 0 && strings.HasSuffix(filename, "toml") && strings.Contains(err.Error(), "files not supported") {
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
// OK
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2019-07-24 18:12:40 -04:00
|
|
|
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
if shouldFail {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
|
|
|
c.Assert(err, qt.Equals, hugofs.ErrPermissionSymlink)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
} else {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-24 18:12:40 -04:00
|
|
|
statCheck(componentFs, fmt.Sprintf("realsym%s", id), true)
|
|
|
|
statCheck(componentFs, fmt.Sprintf("real/datasym%s.toml", id), false)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-30 07:35:16 -04:00
|
|
|
|
|
|
|
func TestMountsProject(t *testing.T) {
|
2020-01-15 09:59:56 -05:00
|
|
|
t.Parallel()
|
2019-07-30 07:35:16 -04:00
|
|
|
|
|
|
|
config := `
|
|
|
|
|
|
|
|
baseURL="https://example.org"
|
|
|
|
|
|
|
|
[module]
|
|
|
|
[[module.mounts]]
|
|
|
|
source="mycontent"
|
|
|
|
target="content"
|
|
|
|
|
|
|
|
`
|
|
|
|
b := newTestSitesBuilder(t).
|
|
|
|
WithConfigFile("toml", config).
|
|
|
|
WithSourceFile(filepath.Join("mycontent", "mypage.md"), `
|
|
|
|
---
|
|
|
|
title: "My Page"
|
|
|
|
---
|
|
|
|
|
|
|
|
`)
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
2020-12-02 07:23:25 -05:00
|
|
|
// helpers.PrintFs(b.H.Fs.Source, "public", os.Stdout)
|
2019-07-30 07:35:16 -04:00
|
|
|
|
|
|
|
b.AssertFileContent("public/mypage/index.html", "Permalink: https://example.org/mypage/")
|
|
|
|
}
|
2019-09-03 06:58:02 -04:00
|
|
|
|
2019-12-30 04:50:00 -05:00
|
|
|
// https://github.com/gohugoio/hugo/issues/6684
|
|
|
|
func TestMountsContentFile(t *testing.T) {
|
2020-01-15 09:59:56 -05:00
|
|
|
t.Parallel()
|
2019-12-30 04:50:00 -05:00
|
|
|
c := qt.New(t)
|
|
|
|
workingDir, clean, err := htesting.CreateTempDir(hugofs.Os, "hugo-modules-content-file")
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
defer clean()
|
|
|
|
|
|
|
|
configTemplate := `
|
|
|
|
baseURL = "https://example.com"
|
|
|
|
title = "My Modular Site"
|
|
|
|
workingDir = %q
|
|
|
|
|
|
|
|
[module]
|
|
|
|
[[module.mounts]]
|
|
|
|
source = "README.md"
|
|
|
|
target = "content/_index.md"
|
|
|
|
[[module.mounts]]
|
|
|
|
source = "mycontent"
|
|
|
|
target = "content/blog"
|
|
|
|
|
|
|
|
`
|
|
|
|
|
|
|
|
config := fmt.Sprintf(configTemplate, workingDir)
|
|
|
|
|
|
|
|
b := newTestSitesBuilder(t).Running()
|
|
|
|
|
|
|
|
b.Fs = hugofs.NewDefault(viper.New())
|
|
|
|
|
|
|
|
b.WithWorkingDir(workingDir).WithConfigFile("toml", config)
|
|
|
|
b.WithTemplatesAdded("index.html", `
|
|
|
|
{{ .Title }}
|
|
|
|
{{ .Content }}
|
|
|
|
|
|
|
|
{{ $readme := .Site.GetPage "/README.md" }}
|
|
|
|
{{ with $readme }}README: {{ .Title }}|Filename: {{ path.Join .File.Filename }}|Path: {{ path.Join .File.Path }}|FilePath: {{ path.Join .File.FileInfo.Meta.PathFile }}|{{ end }}
|
|
|
|
|
|
|
|
|
|
|
|
{{ $mypage := .Site.GetPage "/blog/mypage.md" }}
|
|
|
|
{{ with $mypage }}MYPAGE: {{ .Title }}|Path: {{ path.Join .File.Path }}|FilePath: {{ path.Join .File.FileInfo.Meta.PathFile }}|{{ end }}
|
2020-01-31 11:15:14 -05:00
|
|
|
{{ $mybundle := .Site.GetPage "/blog/mybundle" }}
|
|
|
|
{{ with $mybundle }}MYBUNDLE: {{ .Title }}|Path: {{ path.Join .File.Path }}|FilePath: {{ path.Join .File.FileInfo.Meta.PathFile }}|{{ end }}
|
|
|
|
|
2019-12-30 04:50:00 -05:00
|
|
|
|
2020-01-05 06:56:41 -05:00
|
|
|
`, "_default/_markup/render-link.html", `
|
|
|
|
{{ $link := .Destination }}
|
|
|
|
{{ $isRemote := strings.HasPrefix $link "http" }}
|
|
|
|
{{- if not $isRemote -}}
|
|
|
|
{{ $url := urls.Parse .Destination }}
|
|
|
|
{{ $fragment := "" }}
|
|
|
|
{{- with $url.Fragment }}{{ $fragment = printf "#%s" . }}{{ end -}}
|
|
|
|
{{- with .Page.GetPage $url.Path }}{{ $link = printf "%s%s" .Permalink $fragment }}{{ end }}{{ end -}}
|
|
|
|
<a href="{{ $link | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }}{{ if $isRemote }} target="_blank"{{ end }}>{{ .Text | safeHTML }}</a>
|
2019-12-30 04:50:00 -05:00
|
|
|
`)
|
|
|
|
|
|
|
|
os.Mkdir(filepath.Join(workingDir, "mycontent"), 0777)
|
2020-01-05 06:56:41 -05:00
|
|
|
os.Mkdir(filepath.Join(workingDir, "mycontent", "mybundle"), 0777)
|
2019-12-30 04:50:00 -05:00
|
|
|
|
|
|
|
b.WithSourceFile("README.md", `---
|
|
|
|
title: "Readme Title"
|
|
|
|
---
|
|
|
|
|
|
|
|
Readme Content.
|
|
|
|
`,
|
|
|
|
filepath.Join("mycontent", "mypage.md"), `
|
|
|
|
---
|
|
|
|
title: "My Page"
|
|
|
|
---
|
|
|
|
|
2020-01-05 06:56:41 -05:00
|
|
|
|
|
|
|
* [Relative Link From Page](mybundle)
|
|
|
|
* [Relative Link From Page, filename](mybundle/index.md)
|
|
|
|
* [Link using original path](/mycontent/mybundle/index.md)
|
|
|
|
|
|
|
|
|
|
|
|
`, filepath.Join("mycontent", "mybundle", "index.md"), `
|
|
|
|
---
|
|
|
|
title: "My Bundle"
|
|
|
|
---
|
|
|
|
|
|
|
|
* [Dot Relative Link From Bundle](../mypage.md)
|
|
|
|
* [Link using original path](/mycontent/mypage.md)
|
|
|
|
* [Link to Home](/)
|
|
|
|
* [Link to Home, README.md](/README.md)
|
|
|
|
* [Link to Home, _index.md](/_index.md)
|
|
|
|
|
2019-12-30 04:50:00 -05:00
|
|
|
`)
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
|
|
|
b.AssertFileContent("public/index.html", `
|
|
|
|
README: Readme Title
|
|
|
|
/README.md|Path: _index.md|FilePath: README.md
|
|
|
|
Readme Content.
|
|
|
|
MYPAGE: My Page|Path: blog/mypage.md|FilePath: mycontent/mypage.md|
|
2020-01-31 11:15:14 -05:00
|
|
|
MYBUNDLE: My Bundle|Path: blog/mybundle/index.md|FilePath: mycontent/mybundle/index.md|
|
2019-12-30 04:50:00 -05:00
|
|
|
`)
|
2020-01-05 06:56:41 -05:00
|
|
|
b.AssertFileContent("public/blog/mypage/index.html", `
|
|
|
|
<a href="https://example.com/blog/mybundle/">Relative Link From Page</a>
|
|
|
|
<a href="https://example.com/blog/mybundle/">Relative Link From Page, filename</a>
|
|
|
|
<a href="https://example.com/blog/mybundle/">Link using original path</a>
|
|
|
|
|
|
|
|
`)
|
|
|
|
b.AssertFileContent("public/blog/mybundle/index.html", `
|
|
|
|
<a href="https://example.com/blog/mypage/">Dot Relative Link From Bundle</a>
|
|
|
|
<a href="https://example.com/blog/mypage/">Link using original path</a>
|
|
|
|
<a href="https://example.com/">Link to Home</a>
|
|
|
|
<a href="https://example.com/">Link to Home, README.md</a>
|
|
|
|
<a href="https://example.com/">Link to Home, _index.md</a>
|
|
|
|
`)
|
2019-12-30 04:50:00 -05:00
|
|
|
|
|
|
|
b.EditFiles("README.md", `---
|
|
|
|
title: "Readme Edit"
|
|
|
|
---
|
|
|
|
`)
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
|
|
|
b.AssertFileContent("public/index.html", `
|
|
|
|
Readme Edit
|
|
|
|
`)
|
|
|
|
}
|
|
|
|
|
2020-01-22 05:57:23 -05:00
|
|
|
func TestMountsPaths(t *testing.T) {
|
|
|
|
c := qt.New(t)
|
|
|
|
|
|
|
|
type test struct {
|
|
|
|
b *sitesBuilder
|
|
|
|
clean func()
|
|
|
|
workingDir string
|
|
|
|
}
|
|
|
|
|
|
|
|
prepare := func(c *qt.C, mounts string) test {
|
|
|
|
workingDir, clean, err := htesting.CreateTempDir(hugofs.Os, "hugo-mounts-paths")
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
|
|
|
|
configTemplate := `
|
|
|
|
baseURL = "https://example.com"
|
|
|
|
title = "My Modular Site"
|
|
|
|
workingDir = %q
|
|
|
|
|
|
|
|
%s
|
|
|
|
|
|
|
|
`
|
|
|
|
config := fmt.Sprintf(configTemplate, workingDir, mounts)
|
|
|
|
config = strings.Replace(config, "WORKING_DIR", workingDir, -1)
|
|
|
|
|
|
|
|
b := newTestSitesBuilder(c).Running()
|
|
|
|
|
|
|
|
b.Fs = hugofs.NewDefault(viper.New())
|
|
|
|
|
|
|
|
os.MkdirAll(filepath.Join(workingDir, "content", "blog"), 0777)
|
|
|
|
|
|
|
|
b.WithWorkingDir(workingDir).WithConfigFile("toml", config)
|
|
|
|
|
|
|
|
return test{
|
|
|
|
b: b,
|
|
|
|
clean: clean,
|
|
|
|
workingDir: workingDir,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Run("Default", func(c *qt.C) {
|
|
|
|
mounts := ``
|
|
|
|
|
|
|
|
test := prepare(c, mounts)
|
|
|
|
b := test.b
|
|
|
|
defer test.clean()
|
|
|
|
|
|
|
|
b.WithContent("blog/p1.md", `---
|
|
|
|
title: P1
|
|
|
|
---`)
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
|
|
|
p := b.GetPage("blog/p1.md")
|
|
|
|
f := p.File().FileInfo().Meta()
|
|
|
|
b.Assert(filepath.ToSlash(f.Path()), qt.Equals, "blog/p1.md")
|
|
|
|
b.Assert(filepath.ToSlash(f.PathFile()), qt.Equals, "content/blog/p1.md")
|
|
|
|
|
|
|
|
b.Assert(b.H.BaseFs.Layouts.Path(filepath.Join(test.workingDir, "layouts", "_default", "single.html")), qt.Equals, filepath.FromSlash("_default/single.html"))
|
|
|
|
})
|
|
|
|
|
|
|
|
c.Run("Mounts", func(c *qt.C) {
|
|
|
|
absDir, clean, err := htesting.CreateTempDir(hugofs.Os, "hugo-mounts-paths-abs")
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
defer clean()
|
|
|
|
|
|
|
|
mounts := `[module]
|
|
|
|
[[module.mounts]]
|
|
|
|
source = "README.md"
|
|
|
|
target = "content/_index.md"
|
|
|
|
[[module.mounts]]
|
|
|
|
source = "mycontent"
|
|
|
|
target = "content/blog"
|
|
|
|
[[module.mounts]]
|
|
|
|
source = "subdir/mypartials"
|
|
|
|
target = "layouts/partials"
|
|
|
|
[[module.mounts]]
|
|
|
|
source = %q
|
|
|
|
target = "layouts/shortcodes"
|
|
|
|
`
|
|
|
|
mounts = fmt.Sprintf(mounts, filepath.Join(absDir, "/abs/myshortcodes"))
|
|
|
|
|
|
|
|
test := prepare(c, mounts)
|
|
|
|
b := test.b
|
|
|
|
defer test.clean()
|
|
|
|
|
|
|
|
subContentDir := filepath.Join(test.workingDir, "mycontent", "sub")
|
|
|
|
os.MkdirAll(subContentDir, 0777)
|
|
|
|
myPartialsDir := filepath.Join(test.workingDir, "subdir", "mypartials")
|
|
|
|
os.MkdirAll(myPartialsDir, 0777)
|
|
|
|
|
|
|
|
absShortcodesDir := filepath.Join(absDir, "abs", "myshortcodes")
|
|
|
|
os.MkdirAll(absShortcodesDir, 0777)
|
|
|
|
|
|
|
|
b.WithSourceFile("README.md", "---\ntitle: Readme\n---")
|
|
|
|
b.WithSourceFile("mycontent/sub/p1.md", "---\ntitle: P1\n---")
|
|
|
|
|
|
|
|
b.WithSourceFile(filepath.Join(absShortcodesDir, "myshort.html"), "MYSHORT")
|
|
|
|
b.WithSourceFile(filepath.Join(myPartialsDir, "mypartial.html"), "MYPARTIAL")
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
|
|
|
p1_1 := b.GetPage("/blog/sub/p1.md")
|
|
|
|
p1_2 := b.GetPage("/mycontent/sub/p1.md")
|
|
|
|
b.Assert(p1_1, qt.Not(qt.IsNil))
|
|
|
|
b.Assert(p1_2, qt.Equals, p1_1)
|
|
|
|
|
|
|
|
f := p1_1.File().FileInfo().Meta()
|
|
|
|
b.Assert(filepath.ToSlash(f.Path()), qt.Equals, "blog/sub/p1.md")
|
|
|
|
b.Assert(filepath.ToSlash(f.PathFile()), qt.Equals, "mycontent/sub/p1.md")
|
|
|
|
b.Assert(b.H.BaseFs.Layouts.Path(filepath.Join(myPartialsDir, "mypartial.html")), qt.Equals, filepath.FromSlash("partials/mypartial.html"))
|
|
|
|
b.Assert(b.H.BaseFs.Layouts.Path(filepath.Join(absShortcodesDir, "myshort.html")), qt.Equals, filepath.FromSlash("shortcodes/myshort.html"))
|
|
|
|
b.Assert(b.H.BaseFs.Content.Path(filepath.Join(subContentDir, "p1.md")), qt.Equals, filepath.FromSlash("blog/sub/p1.md"))
|
|
|
|
b.Assert(b.H.BaseFs.Content.Path(filepath.Join(test.workingDir, "README.md")), qt.Equals, filepath.FromSlash("_index.md"))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-09-03 06:58:02 -04:00
|
|
|
// https://github.com/gohugoio/hugo/issues/6299
|
|
|
|
func TestSiteWithGoModButNoModules(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
c := qt.New(t)
|
|
|
|
// We need to use the OS fs for this.
|
|
|
|
workDir, clean, err := htesting.CreateTempDir(hugofs.Os, "hugo-no-mod")
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
|
|
|
|
cfg := viper.New()
|
|
|
|
cfg.Set("workingDir", workDir)
|
|
|
|
fs := hugofs.NewFrom(hugofs.Os, cfg)
|
|
|
|
|
|
|
|
defer clean()
|
|
|
|
|
|
|
|
b := newTestSitesBuilder(t)
|
|
|
|
b.Fs = fs
|
|
|
|
|
|
|
|
b.WithWorkingDir(workDir).WithViper(cfg)
|
|
|
|
|
|
|
|
b.WithSourceFile("go.mod", "")
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
}
|
2019-12-19 06:17:44 -05:00
|
|
|
|
|
|
|
// https://github.com/gohugoio/hugo/issues/6622
|
|
|
|
func TestModuleAbsMount(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
c := qt.New(t)
|
|
|
|
// We need to use the OS fs for this.
|
|
|
|
workDir, clean1, err := htesting.CreateTempDir(hugofs.Os, "hugo-project")
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
absContentDir, clean2, err := htesting.CreateTempDir(hugofs.Os, "hugo-content")
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
|
|
|
|
cfg := viper.New()
|
|
|
|
cfg.Set("workingDir", workDir)
|
|
|
|
fs := hugofs.NewFrom(hugofs.Os, cfg)
|
|
|
|
|
|
|
|
config := fmt.Sprintf(`
|
|
|
|
workingDir=%q
|
|
|
|
|
|
|
|
[module]
|
|
|
|
[[module.mounts]]
|
|
|
|
source = %q
|
|
|
|
target = "content"
|
2020-12-16 06:11:32 -05:00
|
|
|
|
2019-12-19 06:17:44 -05:00
|
|
|
`, workDir, absContentDir)
|
|
|
|
|
|
|
|
defer clean1()
|
|
|
|
defer clean2()
|
|
|
|
|
|
|
|
b := newTestSitesBuilder(t)
|
|
|
|
b.Fs = fs
|
|
|
|
|
|
|
|
contentFilename := filepath.Join(absContentDir, "p1.md")
|
|
|
|
afero.WriteFile(hugofs.Os, contentFilename, []byte(`
|
|
|
|
---
|
|
|
|
title: Abs
|
|
|
|
---
|
|
|
|
|
|
|
|
Content.
|
|
|
|
`), 0777)
|
|
|
|
|
|
|
|
b.WithWorkingDir(workDir).WithConfigFile("toml", config)
|
|
|
|
b.WithContent("dummy.md", "")
|
|
|
|
|
|
|
|
b.WithTemplatesAdded("index.html", `
|
|
|
|
{{ $p1 := site.GetPage "p1" }}
|
|
|
|
P1: {{ $p1.Title }}|{{ $p1.RelPermalink }}|Filename: {{ $p1.File.Filename }}
|
|
|
|
`)
|
|
|
|
|
|
|
|
b.Build(BuildCfg{})
|
|
|
|
|
|
|
|
b.AssertFileContent("public/index.html", "P1: Abs|/p1/", "Filename: "+contentFilename)
|
|
|
|
}
|