2016-03-21 19:28:42 -04:00
|
|
|
// Copyright 2016 The Hugo Authors. All rights reserved.
|
2015-12-10 17:19:38 -05:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2013-08-30 20:18:05 -04:00
|
|
|
package hugolib
|
|
|
|
|
|
|
|
import (
|
2014-12-07 13:48:00 -05:00
|
|
|
"path/filepath"
|
2013-08-30 20:18:05 -04:00
|
|
|
"testing"
|
2014-04-07 11:44:13 -04:00
|
|
|
|
2015-05-20 02:21:21 -04:00
|
|
|
"html/template"
|
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/deps"
|
|
|
|
"github.com/gohugoio/hugo/source"
|
2017-01-10 04:55:03 -05:00
|
|
|
"github.com/stretchr/testify/require"
|
2013-08-30 20:18:05 -04:00
|
|
|
)
|
|
|
|
|
2016-03-22 18:59:07 -04:00
|
|
|
const slugDoc1 = "---\ntitle: slug doc 1\nslug: slug-doc-1\naliases:\n - sd1/foo/\n - sd2\n - sd3/\n - sd4.html\n---\nslug doc 1 content\n"
|
2013-09-12 19:17:53 -04:00
|
|
|
|
2016-03-22 18:59:07 -04:00
|
|
|
const slugDoc2 = `---
|
2013-09-18 12:15:46 -04:00
|
|
|
title: slug doc 2
|
|
|
|
slug: slug-doc-2
|
|
|
|
---
|
|
|
|
slug doc 2 content
|
|
|
|
`
|
2013-08-30 20:18:05 -04:00
|
|
|
|
2013-09-20 20:03:43 -04:00
|
|
|
var urlFakeSource = []source.ByteSource{
|
2016-08-19 07:22:19 -04:00
|
|
|
{Name: filepath.FromSlash("content/blue/doc1.md"), Content: []byte(slugDoc1)},
|
|
|
|
{Name: filepath.FromSlash("content/blue/doc2.md"), Content: []byte(slugDoc2)},
|
2013-09-12 19:17:53 -04:00
|
|
|
}
|
|
|
|
|
2015-05-05 10:02:52 -04:00
|
|
|
// Issue #1105
|
|
|
|
func TestShouldNotAddTrailingSlashToBaseURL(t *testing.T) {
|
2017-02-04 22:20:06 -05:00
|
|
|
t.Parallel()
|
2015-05-05 10:02:52 -04:00
|
|
|
for i, this := range []struct {
|
|
|
|
in string
|
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
{"http://base.com/", "http://base.com/"},
|
|
|
|
{"http://base.com/sub/", "http://base.com/sub/"},
|
|
|
|
{"http://base.com/sub", "http://base.com/sub"},
|
|
|
|
{"http://base.com", "http://base.com"}} {
|
|
|
|
|
2017-02-04 22:20:06 -05:00
|
|
|
cfg, fs := newTestCfg()
|
|
|
|
cfg.Set("baseURL", this.in)
|
|
|
|
d := deps.DepsCfg{Cfg: cfg, Fs: fs}
|
|
|
|
s, err := NewSiteForCfg(d)
|
2017-01-10 04:55:03 -05:00
|
|
|
require.NoError(t, err)
|
2015-05-05 10:02:52 -04:00
|
|
|
s.initializeSiteInfo()
|
|
|
|
|
2017-04-07 12:33:28 -04:00
|
|
|
if s.Info.BaseURL() != template.URL(this.expected) {
|
|
|
|
t.Errorf("[%d] got %s expected %s", i, s.Info.BaseURL(), this.expected)
|
2015-05-05 10:02:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-30 20:18:05 -04:00
|
|
|
func TestPageCount(t *testing.T) {
|
2017-02-04 22:20:06 -05:00
|
|
|
t.Parallel()
|
|
|
|
cfg, fs := newTestCfg()
|
|
|
|
cfg.Set("uglyURLs", false)
|
|
|
|
cfg.Set("paginate", 10)
|
2013-08-30 20:18:05 -04:00
|
|
|
|
2017-04-09 04:33:04 -04:00
|
|
|
writeSourcesToSource(t, "", fs, urlFakeSource...)
|
2017-02-04 22:20:06 -05:00
|
|
|
s := buildSingleSite(t, deps.DepsCfg{Fs: fs, Cfg: cfg}, BuildCfg{})
|
2017-01-10 04:55:03 -05:00
|
|
|
|
|
|
|
_, err := s.Fs.Destination.Open("public/blue")
|
2014-11-04 00:41:47 -05:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("No indexed rendered.")
|
2013-08-30 20:18:05 -04:00
|
|
|
}
|
|
|
|
|
2017-01-10 04:55:03 -05:00
|
|
|
for _, pth := range []string{
|
2016-07-28 03:30:58 -04:00
|
|
|
"public/sd1/foo/index.html",
|
|
|
|
"public/sd2/index.html",
|
|
|
|
"public/sd3/index.html",
|
|
|
|
"public/sd4.html",
|
2013-09-12 19:17:53 -04:00
|
|
|
} {
|
2017-01-10 04:55:03 -05:00
|
|
|
if _, err := s.Fs.Destination.Open(filepath.FromSlash(pth)); err != nil {
|
|
|
|
t.Errorf("No alias rendered: %s", pth)
|
2013-09-12 19:17:53 -04:00
|
|
|
}
|
|
|
|
}
|
2013-08-30 20:18:05 -04:00
|
|
|
}
|