mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-24 21:56:05 +02: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
This commit is contained in:
@@ -14,20 +14,31 @@
|
||||
package source
|
||||
|
||||
import (
|
||||
"os"
|
||||
"fmt"
|
||||
"path/filepath"
|
||||
"runtime"
|
||||
"testing"
|
||||
|
||||
"github.com/gohugoio/hugo/modules"
|
||||
|
||||
"github.com/gohugoio/hugo/langs"
|
||||
|
||||
"github.com/spf13/afero"
|
||||
|
||||
"github.com/gohugoio/hugo/helpers"
|
||||
"github.com/gohugoio/hugo/hugofs"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"github.com/spf13/viper"
|
||||
)
|
||||
|
||||
func TestEmptySourceFilesystem(t *testing.T) {
|
||||
assert := require.New(t)
|
||||
ss := newTestSourceSpec()
|
||||
src := ss.NewFilesystem("Empty")
|
||||
if len(src.Files()) != 0 {
|
||||
src := ss.NewFilesystem("")
|
||||
files, err := src.Files()
|
||||
assert.NoError(err)
|
||||
if len(files) != 0 {
|
||||
t.Errorf("new filesystem should contain 0 files.")
|
||||
}
|
||||
}
|
||||
@@ -38,6 +49,8 @@ func TestUnicodeNorm(t *testing.T) {
|
||||
return
|
||||
}
|
||||
|
||||
assert := require.New(t)
|
||||
|
||||
paths := []struct {
|
||||
NFC string
|
||||
NFD string
|
||||
@@ -47,14 +60,18 @@ func TestUnicodeNorm(t *testing.T) {
|
||||
}
|
||||
|
||||
ss := newTestSourceSpec()
|
||||
var fi os.FileInfo
|
||||
fi := hugofs.NewFileMetaInfo(nil, hugofs.FileMeta{})
|
||||
|
||||
for _, path := range paths {
|
||||
src := ss.NewFilesystem("base")
|
||||
for i, path := range paths {
|
||||
base := fmt.Sprintf("base%d", i)
|
||||
assert.NoError(afero.WriteFile(ss.Fs.Source, filepath.Join(base, path.NFD), []byte("some data"), 0777))
|
||||
src := ss.NewFilesystem(base)
|
||||
_ = src.add(path.NFD, fi)
|
||||
f := src.Files()[0]
|
||||
files, err := src.Files()
|
||||
assert.NoError(err)
|
||||
f := files[0]
|
||||
if f.BaseFileName() != path.NFC {
|
||||
t.Fatalf("file name in NFD form should be normalized (%s)", path.NFC)
|
||||
t.Fatalf("file %q name in NFD form should be normalized (%s)", f.BaseFileName(), path.NFC)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -70,12 +87,22 @@ func newTestConfig() *viper.Viper {
|
||||
v.Set("resourceDir", "resources")
|
||||
v.Set("publishDir", "public")
|
||||
v.Set("assetDir", "assets")
|
||||
_, err := langs.LoadLanguageSettings(v, nil)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
mod, err := modules.CreateProjectModule(v)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
v.Set("allModules", modules.Modules{mod})
|
||||
|
||||
return v
|
||||
}
|
||||
|
||||
func newTestSourceSpec() *SourceSpec {
|
||||
v := newTestConfig()
|
||||
fs := hugofs.NewMem(v)
|
||||
fs := hugofs.NewFrom(hugofs.NewBaseFileDecorator(afero.NewMemMapFs()), v)
|
||||
ps, err := helpers.NewPathSpec(fs, v)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
|
Reference in New Issue
Block a user