diff options
author | Bjørn Erik Pedersen <[email protected]> | 2021-11-12 10:29:13 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2021-11-12 12:05:31 +0100 |
commit | 5f3f60898cfe1c087841ec1fbd5ddc2916d0a2c6 (patch) | |
tree | da8e1bdc14a8086cf4075b30b279dba47cea8961 /create/content_test.go | |
parent | 057d02de256a3866b7044abaa4d03c69d9fedef0 (diff) | |
download | hugo-5f3f60898cfe1c087841ec1fbd5ddc2916d0a2c6.tar.gz hugo-5f3f60898cfe1c087841ec1fbd5ddc2916d0a2c6.zip |
create: Improve archetype directory discovery and tests
Updates #9146
Diffstat (limited to 'create/content_test.go')
-rw-r--r-- | create/content_test.go | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/create/content_test.go b/create/content_test.go index 2d68f7610..a3692251f 100644 --- a/create/content_test.go +++ b/create/content_test.go @@ -167,7 +167,9 @@ func TestNewContentFromDirSiteFunction(t *testing.T) { c := qt.New(t) archetypeDir := filepath.Join("archetypes", "my-bundle") + defaultArchetypeDir := filepath.Join("archetypes", "default") c.Assert(mm.MkdirAll(archetypeDir, 0o755), qt.IsNil) + c.Assert(mm.MkdirAll(defaultArchetypeDir, 0o755), qt.IsNil) contentFile := ` File: %s @@ -176,6 +178,7 @@ site RegularPages: {{ len site.RegularPages }} ` c.Assert(afero.WriteFile(mm, filepath.Join(archetypeDir, "index.md"), []byte(fmt.Sprintf(contentFile, "index.md")), 0o755), qt.IsNil) + c.Assert(afero.WriteFile(mm, filepath.Join(defaultArchetypeDir, "index.md"), []byte("default archetype index.md"), 0o755), qt.IsNil) c.Assert(initFs(mm), qt.IsNil) cfg, fs := newTestCfg(c, mm) @@ -185,8 +188,20 @@ site RegularPages: {{ len site.RegularPages }} c.Assert(len(h.Sites), qt.Equals, 2) c.Assert(create.NewContent(h, "my-bundle", "post/my-post"), qt.IsNil) - cContains(c, readFileFromFs(t, fs.Source, filepath.Join("content", "post/my-post/index.md")), `site RegularPages: 10`) + + // Default bundle archetype + c.Assert(create.NewContent(h, "", "post/my-post2"), qt.IsNil) + cContains(c, readFileFromFs(t, fs.Source, filepath.Join("content", "post/my-post2/index.md")), `default archetype index.md`) + + // Regular file with bundle kind. + c.Assert(create.NewContent(h, "my-bundle", "post/foo.md"), qt.IsNil) + cContains(c, readFileFromFs(t, fs.Source, filepath.Join("content", "post/foo.md")), `draft: true`) + + // Regular files should fall back to the default archetype (we have no regular file archetype). + c.Assert(create.NewContent(h, "my-bundle", "mypage.md"), qt.IsNil) + cContains(c, readFileFromFs(t, fs.Source, filepath.Join("content", "mypage.md")), `draft: true`) + } func TestNewContentFromDirNoSite(t *testing.T) { |