2016-03-17 14:30:33 -04:00
// Copyright 2016 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 create_test
import (
2020-12-02 07:23:25 -05:00
"fmt"
2016-03-17 14:30:33 -04:00
"os"
"path/filepath"
2016-11-29 14:18:09 -05:00
"strings"
2016-03-17 14:30:33 -04:00
"testing"
2017-06-13 12:42:45 -04:00
"github.com/gohugoio/hugo/deps"
2017-02-04 22:20:06 -05:00
2017-06-13 12:42:45 -04:00
"github.com/gohugoio/hugo/hugolib"
2017-01-10 04:55:03 -05:00
2017-06-13 12:42:45 -04:00
"github.com/gohugoio/hugo/hugofs"
2017-01-10 04:55:03 -05:00
2019-08-10 15:05:17 -04:00
qt "github.com/frankban/quicktest"
2017-06-13 12:42:45 -04:00
"github.com/gohugoio/hugo/create"
"github.com/gohugoio/hugo/helpers"
2017-06-13 13:07:35 -04:00
"github.com/spf13/afero"
2016-03-17 14:30:33 -04:00
"github.com/spf13/viper"
)
func TestNewContent ( t * testing . T ) {
cases := [ ] struct {
2016-11-29 14:18:09 -05:00
kind string
path string
expected [ ] string
2016-03-17 14:30:33 -04:00
} {
2016-11-29 14:18:09 -05:00
{ "post" , "post/sample-1.md" , [ ] string { ` title = "Post Arch title" ` , ` test = "test1" ` , "date = \"2015-01-12T19:20:04-07:00\"" } } ,
2017-06-20 06:46:03 -04:00
{ "post" , "post/org-1.org" , [ ] string { ` #+title: ORG-1 ` } } ,
2016-12-15 03:27:30 -05:00
{ "emptydate" , "post/sample-ed.md" , [ ] string { ` title = "Empty Date Arch title" ` , ` test = "test1" ` } } ,
2017-06-22 14:30:01 -04:00
{ "stump" , "stump/sample-2.md" , [ ] string { ` title: "Sample 2" ` } } , // no archetype file
{ "" , "sample-3.md" , [ ] string { ` title: "Sample 3" ` } } , // no archetype
2017-06-18 13:06:28 -04:00
{ "product" , "product/sample-4.md" , [ ] string { ` title = "SAMPLE-4" ` } } , // empty archetype front matter
2018-09-19 01:48:17 -04:00
{ "lang" , "post/lang-1.md" , [ ] string { ` Site Lang: en|Name: Lang 1|i18n: Hugo Rocks! ` } } ,
{ "lang" , "post/lang-2.en.md" , [ ] string { ` Site Lang: en|Name: Lang 2|i18n: Hugo Rocks! ` } } ,
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
{ "lang" , "content/post/lang-3.nn.md" , [ ] string { ` Site Lang: nn|Name: Lang 3|i18n: Hugo Rokkar! ` } } ,
2018-09-19 01:48:17 -04:00
{ "lang" , "content_nn/post/lang-4.md" , [ ] string { ` Site Lang: nn|Name: Lang 4|i18n: Hugo Rokkar! ` } } ,
{ "lang" , "content_nn/post/lang-5.en.md" , [ ] string { ` Site Lang: en|Name: Lang 5|i18n: Hugo Rocks! ` } } ,
{ "lang" , "post/my-bundle/index.md" , [ ] string { ` Site Lang: en|Name: My Bundle|i18n: Hugo Rocks! ` } } ,
{ "lang" , "post/my-bundle/index.en.md" , [ ] string { ` Site Lang: en|Name: My Bundle|i18n: Hugo Rocks! ` } } ,
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
{ "lang" , "content/post/my-bundle/index.nn.md" , [ ] string { ` Site Lang: nn|Name: My Bundle|i18n: Hugo Rokkar! ` } } ,
2017-06-23 03:29:59 -04:00
{ "shortcodes" , "shortcodes/go.md" , [ ] string {
` title = "GO" ` ,
"{{< myshortcode >}}" ,
"{{% myshortcode %}}" ,
2020-12-02 07:23:25 -05:00
"{{</* comment */>}}\n{{%/* comment */%}}" ,
} } , // shortcodes
2016-03-17 14:30:33 -04:00
}
2019-08-10 15:05:17 -04:00
for i , cas := range cases {
cas := cas
t . Run ( fmt . Sprintf ( "%s-%d" , cas . kind , i ) , func ( t * testing . 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
t . Parallel ( )
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
mm := afero . NewMemMapFs ( )
2019-08-10 15:05:17 -04:00
c . Assert ( initFs ( mm ) , qt . IsNil )
cfg , fs := newTestCfg ( c , mm )
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
h , err := hugolib . NewHugoSites ( deps . DepsCfg { Cfg : cfg , Fs : fs } )
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-08-10 15:05:17 -04:00
c . Assert ( create . NewContent ( h , cas . kind , cas . path ) , 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
fname := filepath . FromSlash ( cas . path )
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 ! strings . HasPrefix ( fname , "content" ) {
fname = filepath . Join ( "content" , fname )
2016-03-17 14:30:33 -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
content := readFileFromFs ( t , fs . Source , fname )
2019-08-10 15:05:17 -04:00
for _ , v := range cas . expected {
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
found := strings . Contains ( content , v )
if ! found {
t . Fatalf ( "[%d] %q missing from output:\n%q" , i , v , content )
}
}
} )
2016-03-17 14:30:33 -04:00
}
}
2018-09-19 01:48:17 -04:00
func TestNewContentFromDir ( t * testing . 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
mm := afero . NewMemMapFs ( )
2019-08-10 15:05:17 -04:00
c := qt . New ( t )
2018-09-19 01:48:17 -04:00
archetypeDir := filepath . Join ( "archetypes" , "my-bundle" )
2019-08-10 15:05:17 -04:00
c . Assert ( mm . MkdirAll ( archetypeDir , 0755 ) , qt . IsNil )
2018-09-19 01:48:17 -04:00
2018-10-26 03:41:24 -04:00
archetypeThemeDir := filepath . Join ( "themes" , "mytheme" , "archetypes" , "my-theme-bundle" )
2019-08-10 15:05:17 -04:00
c . Assert ( mm . MkdirAll ( archetypeThemeDir , 0755 ) , qt . IsNil )
2018-10-26 03:41:24 -04:00
2018-09-19 01:48:17 -04:00
contentFile := `
File : % s
Site Lang : { { . Site . Language . Lang } }
Name : { { replace . Name "-" " " | title } }
i18n : { { T "hugo" } }
`
2019-08-10 15:05:17 -04:00
c . Assert ( afero . WriteFile ( mm , filepath . Join ( archetypeDir , "index.md" ) , [ ] byte ( fmt . Sprintf ( contentFile , "index.md" ) ) , 0755 ) , qt . IsNil )
c . Assert ( afero . WriteFile ( mm , filepath . Join ( archetypeDir , "index.nn.md" ) , [ ] byte ( fmt . Sprintf ( contentFile , "index.nn.md" ) ) , 0755 ) , qt . IsNil )
2018-09-19 01:48:17 -04:00
2019-08-10 15:05:17 -04:00
c . Assert ( afero . WriteFile ( mm , filepath . Join ( archetypeDir , "pages" , "bio.md" ) , [ ] byte ( fmt . Sprintf ( contentFile , "bio.md" ) ) , 0755 ) , qt . IsNil )
c . Assert ( afero . WriteFile ( mm , filepath . Join ( archetypeDir , "resources" , "hugo1.json" ) , [ ] byte ( ` hugo1: {{ printf "no template handling in here" }} ` ) , 0755 ) , qt . IsNil )
c . Assert ( afero . WriteFile ( mm , filepath . Join ( archetypeDir , "resources" , "hugo2.xml" ) , [ ] byte ( ` hugo2: {{ printf "no template handling in here" }} ` ) , 0755 ) , qt . IsNil )
2018-09-19 01:48:17 -04:00
2019-08-10 15:05:17 -04:00
c . Assert ( afero . WriteFile ( mm , filepath . Join ( archetypeThemeDir , "index.md" ) , [ ] byte ( fmt . Sprintf ( contentFile , "index.md" ) ) , 0755 ) , qt . IsNil )
c . Assert ( afero . WriteFile ( mm , filepath . Join ( archetypeThemeDir , "resources" , "hugo1.json" ) , [ ] byte ( ` hugo1: {{ printf "no template handling in here" }} ` ) , 0755 ) , 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 ( initFs ( mm ) , qt . IsNil )
cfg , fs := newTestCfg ( c , mm )
2018-10-26 03:41:24 -04:00
2018-09-19 01:48:17 -04:00
h , err := hugolib . NewHugoSites ( deps . DepsCfg { Cfg : cfg , Fs : fs } )
2019-08-10 15:05:17 -04:00
c . Assert ( err , qt . IsNil )
c . Assert ( len ( h . Sites ) , qt . Equals , 2 )
2018-09-19 01:48:17 -04:00
2019-08-10 15:05:17 -04:00
c . Assert ( create . NewContent ( h , "my-bundle" , "post/my-post" ) , qt . IsNil )
2018-09-19 01:48:17 -04:00
2019-08-10 15:05:17 -04:00
cContains ( c , readFileFromFs ( t , fs . Source , filepath . Join ( "content" , "post/my-post/resources/hugo1.json" ) ) , ` hugo1: {{ printf "no template handling in here" }} ` )
cContains ( c , readFileFromFs ( t , fs . Source , filepath . Join ( "content" , "post/my-post/resources/hugo2.xml" ) ) , ` hugo2: {{ printf "no template handling in here" }} ` )
2018-09-19 01:48:17 -04:00
// Content files should get the correct site context.
// TODO(bep) archetype check i18n
2019-08-10 15:05:17 -04:00
cContains ( c , readFileFromFs ( t , fs . Source , filepath . Join ( "content" , "post/my-post/index.md" ) ) , ` File: index.md ` , ` Site Lang: en ` , ` Name: My Post ` , ` i18n: Hugo Rocks! ` )
cContains ( c , readFileFromFs ( t , fs . Source , filepath . Join ( "content" , "post/my-post/index.nn.md" ) ) , ` File: index.nn.md ` , ` Site Lang: nn ` , ` Name: My Post ` , ` i18n: Hugo Rokkar! ` )
2018-09-19 01:48:17 -04:00
2019-08-10 15:05:17 -04:00
cContains ( c , readFileFromFs ( t , fs . Source , filepath . Join ( "content" , "post/my-post/pages/bio.md" ) ) , ` File: bio.md ` , ` Site Lang: en ` , ` Name: My Post ` )
2018-09-19 01:48:17 -04:00
2019-08-10 15:05:17 -04:00
c . Assert ( create . NewContent ( h , "my-theme-bundle" , "post/my-theme-post" ) , qt . IsNil )
cContains ( c , readFileFromFs ( t , fs . Source , filepath . Join ( "content" , "post/my-theme-post/index.md" ) ) , ` File: index.md ` , ` Site Lang: en ` , ` Name: My Theme Post ` , ` i18n: Hugo Rocks! ` )
cContains ( c , readFileFromFs ( t , fs . Source , filepath . Join ( "content" , "post/my-theme-post/resources/hugo1.json" ) ) , ` hugo1: {{ printf "no template handling in here" }} ` )
2016-03-17 14:30:33 -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
func initFs ( fs afero . Fs ) error {
2016-03-17 14:30:33 -04:00
perm := os . FileMode ( 0755 )
var err error
// create directories
dirs := [ ] string {
"archetypes" ,
"content" ,
filepath . Join ( "themes" , "sample" , "archetypes" ) ,
}
for _ , dir := range dirs {
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 . Mkdir ( dir , perm )
if err != nil && ! os . IsExist ( err ) {
2016-03-17 14:30:33 -04:00
return err
}
}
// create files
for _ , v := range [ ] struct {
path string
content string
} {
{
2016-11-29 14:18:09 -05:00
path : filepath . Join ( "archetypes" , "post.md" ) ,
content : "+++\ndate = \"2015-01-12T19:20:04-07:00\"\ntitle = \"Post Arch title\"\ntest = \"test1\"\n+++\n" ,
2016-03-17 14:30:33 -04:00
} ,
2017-06-20 06:46:03 -04:00
{
path : filepath . Join ( "archetypes" , "post.org" ) ,
content : "#+title: {{ .BaseFileName | upper }}" ,
} ,
2016-03-17 14:30:33 -04:00
{
2017-06-18 13:06:28 -04:00
path : filepath . Join ( "archetypes" , "product.md" ) ,
content : ` ++ +
title = "{{ .BaseFileName | upper }}"
++ + ` ,
2016-03-17 14:30:33 -04:00
} ,
2016-12-15 03:27:30 -05:00
{
path : filepath . Join ( "archetypes" , "emptydate.md" ) ,
content : "+++\ndate =\"\"\ntitle = \"Empty Date Arch title\"\ntest = \"test1\"\n+++\n" ,
} ,
2018-09-19 01:48:17 -04:00
{
path : filepath . Join ( "archetypes" , "lang.md" ) ,
content : ` Site Lang: {{ .Site .Language .Lang }} |Name: {{ replace .Name "-" " " | title }} |i18n: {{ T "hugo" }} ` ,
} ,
2017-06-23 03:29:59 -04:00
// #3623x
{
path : filepath . Join ( "archetypes" , "shortcodes.md" ) ,
content : ` ++ +
title = "{{ .BaseFileName | upper }}"
++ +
{ { < myshortcode > } }
Some text .
{ { % myshortcode % } }
{ { < /* comment */ > } }
{ { % /* comment */ % } }
` ,
} ,
2016-03-17 14:30:33 -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
f , err := fs . Create ( v . path )
2016-03-17 14:30:33 -04:00
if err != nil {
return err
}
defer f . Close ( )
_ , err = f . Write ( [ ] byte ( v . content ) )
if err != nil {
return err
}
}
return nil
}
2016-11-29 14:18:09 -05:00
2019-08-10 15:05:17 -04:00
func cContains ( c * qt . C , v interface { } , matches ... string ) {
2018-09-19 01:48:17 -04:00
for _ , m := range matches {
2019-08-10 15:05:17 -04:00
c . Assert ( v , qt . Contains , m )
2018-09-19 01:48:17 -04:00
}
}
2016-11-29 14:18:09 -05:00
// TODO(bep) extract common testing package with this and some others
func readFileFromFs ( t * testing . T , fs afero . Fs , filename string ) string {
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 . Helper ( )
2016-11-29 14:18:09 -05:00
filename = filepath . FromSlash ( filename )
b , err := afero . ReadFile ( fs , filename )
if err != nil {
// Print some debug info
root := strings . Split ( filename , helpers . FilePathSeparator ) [ 0 ]
afero . Walk ( fs , root , func ( path string , info os . FileInfo , err error ) error {
if info != nil && ! info . IsDir ( ) {
fmt . Println ( " " , path )
}
return nil
} )
t . Fatalf ( "Failed to read file: %s" , err )
}
return string ( b )
}
2017-02-04 22:20:06 -05:00
2019-08-10 15:05:17 -04:00
func newTestCfg ( c * qt . C , mm afero . Fs ) ( * viper . Viper , * hugofs . Fs ) {
2018-09-19 01:48:17 -04:00
cfg := `
2018-10-26 03:41:24 -04:00
theme = "mytheme"
2018-09-19 01:48:17 -04:00
[ languages ]
[ languages . en ]
weight = 1
languageName = "English"
[ languages . nn ]
weight = 2
languageName = "Nynorsk"
contentDir = "content_nn"
`
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 mm == nil {
mm = afero . NewMemMapFs ( )
}
2017-02-04 22:20:06 -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
mm . MkdirAll ( filepath . FromSlash ( "content_nn" ) , 0777 )
mm . MkdirAll ( filepath . FromSlash ( "themes/mytheme" ) , 0777 )
Add support for theme composition and inheritance
This commit adds support for theme composition and inheritance in Hugo.
With this, it helps thinking about a theme as a set of ordered components:
```toml
theme = ["my-shortcodes", "base-theme", "hyde"]
```
The theme definition example above in `config.toml` creates a theme with the 3 components with presedence from left to right.
So, Hugo will, for any given file, data entry etc., look first in the project, and then in `my-shortcode`, `base-theme` and lastly `hyde`.
Hugo uses two different algorithms to merge the filesystems, depending on the file type:
* For `i18n` and `data` files, Hugo merges deeply using the translation id and data key inside the files.
* For `static`, `layouts` (templates) and `archetypes` files, these are merged on file level. So the left-most file will be chosen.
The name used in the `theme` definition above must match a folder in `/your-site/themes`, e.g. `/your-site/themes/my-shortcodes`. There are plans to improve on this and get a URL scheme so this can be resolved automatically.
Also note that a component that is part of a theme can have its own configuration file, e.g. `config.toml`. There are currently some restrictions to what a theme component can configure:
* `params` (global and per language)
* `menu` (global and per language)
* `outputformats` and `mediatypes`
The same rules apply here: The left-most param/menu etc. with the same ID will win. There are some hidden and experimental namespace support in the above, which we will work to improve in the future, but theme authors are encouraged to create their own namespaces to avoid naming conflicts.
A final note: Themes/components can also have a `theme` definition in their `config.toml` and similar, which is the "inheritance" part of this commit's title. This is currently not supported by the Hugo theme site. We will have to wait for some "auto dependency" feature to be implemented for that to happen, but this can be a powerful feature if you want to create your own theme-variant based on others.
Fixes #4460
Fixes #4450
2018-03-01 09:01:25 -05:00
2019-08-10 15:05:17 -04:00
c . Assert ( afero . WriteFile ( mm , filepath . Join ( "i18n" , "en.toml" ) , [ ] byte ( ` [ hugo ]
other = "Hugo Rocks!" ` ) , 0755 ) , qt . IsNil )
c . Assert ( afero . WriteFile ( mm , filepath . Join ( "i18n" , "nn.toml" ) , [ ] byte ( ` [ hugo ]
other = "Hugo Rokkar!" ` ) , 0755 ) , qt . IsNil )
2017-02-04 22:20:06 -05:00
2019-08-10 15:05:17 -04:00
c . Assert ( afero . WriteFile ( mm , "config.toml" , [ ] byte ( cfg ) , 0755 ) , qt . IsNil )
2017-02-04 22:20:06 -05:00
2018-09-19 01:48:17 -04:00
v , _ , err := hugolib . LoadConfig ( hugolib . ConfigSourceDescriptor { Fs : mm , Filename : "config.toml" } )
2019-08-10 15:05:17 -04:00
c . Assert ( err , qt . IsNil )
2017-02-04 22:20:06 -05:00
2018-09-19 01:48:17 -04:00
return v , hugofs . NewFrom ( mm , v )
2017-02-04 22:20:06 -05:00
}