mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
9f5a92078a
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
202 lines
5.5 KiB
Go
202 lines
5.5 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 hugolib
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"fmt"
|
|
|
|
"github.com/gohugoio/hugo/resources/page"
|
|
|
|
"github.com/gohugoio/hugo/helpers"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestDisableKindsNoneDisabled(t *testing.T) {
|
|
t.Parallel()
|
|
doTestDisableKinds(t)
|
|
}
|
|
|
|
func TestDisableKindsSomeDisabled(t *testing.T) {
|
|
t.Parallel()
|
|
doTestDisableKinds(t, page.KindSection, kind404)
|
|
}
|
|
|
|
func TestDisableKindsOneDisabled(t *testing.T) {
|
|
t.Parallel()
|
|
for _, kind := range allKinds {
|
|
if kind == page.KindPage {
|
|
// Turning off regular page generation have some side-effects
|
|
// not handled by the assertions below (no sections), so
|
|
// skip that for now.
|
|
continue
|
|
}
|
|
doTestDisableKinds(t, kind)
|
|
}
|
|
}
|
|
|
|
func TestDisableKindsAllDisabled(t *testing.T) {
|
|
t.Parallel()
|
|
doTestDisableKinds(t, allKinds...)
|
|
}
|
|
|
|
func doTestDisableKinds(t *testing.T, disabled ...string) {
|
|
siteConfigTemplate := `
|
|
baseURL = "http://example.com/blog"
|
|
enableRobotsTXT = true
|
|
disableKinds = %s
|
|
|
|
paginate = 1
|
|
defaultContentLanguage = "en"
|
|
|
|
[Taxonomies]
|
|
tag = "tags"
|
|
category = "categories"
|
|
`
|
|
|
|
pageTemplate := `---
|
|
title: "%s"
|
|
tags:
|
|
%s
|
|
categories:
|
|
- Hugo
|
|
---
|
|
# Doc
|
|
`
|
|
|
|
disabledStr := "[]"
|
|
|
|
if len(disabled) > 0 {
|
|
disabledStr = strings.Replace(fmt.Sprintf("%#v", disabled), "[]string{", "[", -1)
|
|
disabledStr = strings.Replace(disabledStr, "}", "]", -1)
|
|
}
|
|
|
|
siteConfig := fmt.Sprintf(siteConfigTemplate, disabledStr)
|
|
|
|
b := newTestSitesBuilder(t).WithConfigFile("toml", siteConfig)
|
|
|
|
b.WithTemplates(
|
|
"index.html", "Home|{{ .Title }}|{{ .Content }}",
|
|
"_default/single.html", "Single|{{ .Title }}|{{ .Content }}",
|
|
"_default/list.html", "List|{{ .Title }}|{{ .Content }}",
|
|
"_default/terms.html", "Terms List|{{ .Title }}|{{ .Content }}",
|
|
"layouts/404.html", "Page Not Found",
|
|
)
|
|
|
|
b.WithContent(
|
|
"sect/p1.md", fmt.Sprintf(pageTemplate, "P1", "- tag1"),
|
|
"categories/_index.md", newTestPage("Category Terms", "2017-01-01", 10),
|
|
"tags/tag1/_index.md", newTestPage("Tag1 List", "2017-01-01", 10),
|
|
)
|
|
|
|
b.Build(BuildCfg{})
|
|
h := b.H
|
|
|
|
require.Len(t, h.Sites, 1)
|
|
|
|
assertDisabledKinds(b, h.Sites[0], disabled...)
|
|
|
|
}
|
|
|
|
func assertDisabledKinds(b *sitesBuilder, s *Site, disabled ...string) {
|
|
assertDisabledKind(b,
|
|
func(isDisabled bool) bool {
|
|
if isDisabled {
|
|
return len(s.RegularPages()) == 0
|
|
}
|
|
return len(s.RegularPages()) > 0
|
|
}, disabled, page.KindPage, "public/sect/p1/index.html", "Single|P1")
|
|
assertDisabledKind(b,
|
|
func(isDisabled bool) bool {
|
|
p := s.getPage(page.KindHome)
|
|
if isDisabled {
|
|
return p == nil
|
|
}
|
|
return p != nil
|
|
}, disabled, page.KindHome, "public/index.html", "Home")
|
|
assertDisabledKind(b,
|
|
func(isDisabled bool) bool {
|
|
p := s.getPage(page.KindSection, "sect")
|
|
if isDisabled {
|
|
return p == nil
|
|
}
|
|
return p != nil
|
|
}, disabled, page.KindSection, "public/sect/index.html", "Sects")
|
|
assertDisabledKind(b,
|
|
func(isDisabled bool) bool {
|
|
p := s.getPage(page.KindTaxonomy, "tags", "tag1")
|
|
|
|
if isDisabled {
|
|
return p == nil
|
|
}
|
|
return p != nil
|
|
|
|
}, disabled, page.KindTaxonomy, "public/tags/tag1/index.html", "Tag1")
|
|
assertDisabledKind(b,
|
|
func(isDisabled bool) bool {
|
|
p := s.getPage(page.KindTaxonomyTerm, "tags")
|
|
if isDisabled {
|
|
return p == nil
|
|
}
|
|
return p != nil
|
|
|
|
}, disabled, page.KindTaxonomyTerm, "public/tags/index.html", "Tags")
|
|
assertDisabledKind(b,
|
|
func(isDisabled bool) bool {
|
|
p := s.getPage(page.KindTaxonomyTerm, "categories")
|
|
|
|
if isDisabled {
|
|
return p == nil
|
|
}
|
|
return p != nil
|
|
|
|
}, disabled, page.KindTaxonomyTerm, "public/categories/index.html", "Category Terms")
|
|
assertDisabledKind(b,
|
|
func(isDisabled bool) bool {
|
|
p := s.getPage(page.KindTaxonomy, "categories", "hugo")
|
|
if isDisabled {
|
|
return p == nil
|
|
}
|
|
return p != nil
|
|
|
|
}, disabled, page.KindTaxonomy, "public/categories/hugo/index.html", "Hugo")
|
|
// The below have no page in any collection.
|
|
assertDisabledKind(b, func(isDisabled bool) bool { return true }, disabled, kindRSS, "public/index.xml", "<link>")
|
|
assertDisabledKind(b, func(isDisabled bool) bool { return true }, disabled, kindSitemap, "public/sitemap.xml", "sitemap")
|
|
assertDisabledKind(b, func(isDisabled bool) bool { return true }, disabled, kindRobotsTXT, "public/robots.txt", "User-agent")
|
|
assertDisabledKind(b, func(isDisabled bool) bool { return true }, disabled, kind404, "public/404.html", "Page Not Found")
|
|
}
|
|
|
|
func assertDisabledKind(b *sitesBuilder, kindAssert func(bool) bool, disabled []string, kind, path, matcher string) {
|
|
isDisabled := stringSliceContains(kind, disabled...)
|
|
require.True(b.T, kindAssert(isDisabled), fmt.Sprintf("%s: %t", kind, isDisabled))
|
|
|
|
if kind == kindRSS && !isDisabled {
|
|
// If the home page is also disabled, there is not RSS to look for.
|
|
if stringSliceContains(page.KindHome, disabled...) {
|
|
isDisabled = true
|
|
}
|
|
}
|
|
|
|
if isDisabled {
|
|
// Path should not exist
|
|
fileExists, err := helpers.Exists(path, b.Fs.Destination)
|
|
require.False(b.T, fileExists)
|
|
require.NoError(b.T, err)
|
|
|
|
} else {
|
|
b.AssertFileContent(path, matcher)
|
|
}
|
|
}
|