| 
									
										
										
										
											2019-01-02 12:33:26 +01:00
										 |  |  | // Copyright 2019 The Hugo Authors. All rights reserved.
 | 
					
						
							| 
									
										
										
										
											2015-12-10 15:19:38 -07: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.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-07 08:57:37 +02:00
										 |  |  | package hugolib
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"testing"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-26 10:24:27 +02:00
										 |  |  | 	"reflect"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 21:05:17 +02:00
										 |  |  | 	qt "github.com/frankban/quicktest"
 | 
					
						
							| 
									
										
										
										
											2019-01-02 12:33:26 +01:00
										 |  |  | 	"github.com/gohugoio/hugo/config"
 | 
					
						
							| 
									
										
										
										
											2017-06-13 18:42:45 +02:00
										 |  |  | 	"github.com/gohugoio/hugo/deps"
 | 
					
						
							|  |  |  | 	"github.com/gohugoio/hugo/tpl"
 | 
					
						
							| 
									
										
										
										
											2014-05-07 08:57:37 +02:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-21 23:02:19 +01:00
										 |  |  | const sitemapTemplate = `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 | 
					
						
							| 
									
										
										
										
											2014-05-07 08:57:37 +02:00
										 |  |  |   {{ range .Data.Pages }}
 | 
					
						
							|  |  |  |   <url>
 | 
					
						
							| 
									
										
										
										
											2017-01-03 08:11:22 -08:00
										 |  |  |     <loc>{{ .Permalink }}</loc>{{ if not .Lastmod.IsZero }}
 | 
					
						
							|  |  |  |     <lastmod>{{ safeHTML ( .Lastmod.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ end }}{{ with .Sitemap.ChangeFreq }}
 | 
					
						
							| 
									
										
										
										
											2014-05-07 08:57:37 +02:00
										 |  |  |     <changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
 | 
					
						
							|  |  |  |     <priority>{{ .Sitemap.Priority }}</priority>{{ end }}
 | 
					
						
							|  |  |  |   </url>
 | 
					
						
							|  |  |  |   {{ end }}
 | 
					
						
							|  |  |  | </urlset>`
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestSitemapOutput(t *testing.T) {
 | 
					
						
							| 
									
										
										
										
											2017-02-05 10:20:06 +07:00
										 |  |  | 	t.Parallel()
 | 
					
						
							| 
									
										
										
										
											2016-11-09 19:59:28 +01:00
										 |  |  | 	for _, internal := range []bool{false, true} {
 | 
					
						
							|  |  |  | 		doTestSitemapOutput(t, internal)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func doTestSitemapOutput(t *testing.T, internal bool) {
 | 
					
						
							| 
									
										
										
										
											2014-05-07 08:57:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 21:05:17 +02:00
										 |  |  | 	c := qt.New(t)
 | 
					
						
							| 
									
										
										
										
											2017-02-05 10:20:06 +07:00
										 |  |  | 	cfg, fs := newTestCfg()
 | 
					
						
							|  |  |  | 	cfg.Set("baseURL", "http://auth/bub/")
 | 
					
						
							| 
									
										
										
										
											2014-05-07 08:57:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-05 10:20:06 +07:00
										 |  |  | 	depsCfg := deps.DepsCfg{Fs: fs, Cfg: cfg}
 | 
					
						
							| 
									
										
										
										
											2016-11-09 19:59:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-10 19:56:44 +01:00
										 |  |  | 	depsCfg.WithTemplate = func(templ tpl.TemplateManager) error {
 | 
					
						
							| 
									
										
										
										
											2017-06-06 08:09:25 +02:00
										 |  |  | 		if !internal {
 | 
					
						
							| 
									
										
										
										
											2017-01-10 10:55:03 +01:00
										 |  |  | 			templ.AddTemplate("sitemap.xml", sitemapTemplate)
 | 
					
						
							| 
									
										
										
										
											2016-11-09 19:59:28 +01:00
										 |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2017-06-06 08:09:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// We want to check that the 404 page is not included in the sitemap
 | 
					
						
							|  |  |  | 		// output. This template should have no effect either way, but include
 | 
					
						
							|  |  |  | 		// it for the clarity.
 | 
					
						
							|  |  |  | 		templ.AddTemplate("404.html", "Not found")
 | 
					
						
							|  |  |  | 		return nil
 | 
					
						
							| 
									
										
										
										
											2015-12-08 21:13:09 +00:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-10 10:55:03 +01:00
										 |  |  | 	writeSourcesToSource(t, "content", fs, weightedSources...)
 | 
					
						
							|  |  |  | 	s := buildSingleSite(t, depsCfg, BuildCfg{})
 | 
					
						
							| 
									
										
										
										
											2019-08-10 21:05:17 +02:00
										 |  |  | 	th := newTestHelper(s.Cfg, s.Fs, t)
 | 
					
						
							| 
									
										
										
										
											2017-06-06 08:09:25 +02:00
										 |  |  | 	outputSitemap := "public/sitemap.xml"
 | 
					
						
							| 
									
										
										
										
											2017-01-10 10:55:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-06 08:09:25 +02:00
										 |  |  | 	th.assertFileContent(outputSitemap,
 | 
					
						
							| 
									
										
										
										
											2016-11-09 19:59:28 +01:00
										 |  |  | 		// Regular page
 | 
					
						
							|  |  |  | 		" <loc>http://auth/bub/sect/doc1/</loc>",
 | 
					
						
							|  |  |  | 		// Home page
 | 
					
						
							|  |  |  | 		"<loc>http://auth/bub/</loc>",
 | 
					
						
							|  |  |  | 		// Section
 | 
					
						
							|  |  |  | 		"<loc>http://auth/bub/sect/</loc>",
 | 
					
						
							|  |  |  | 		// Tax terms
 | 
					
						
							|  |  |  | 		"<loc>http://auth/bub/categories/</loc>",
 | 
					
						
							|  |  |  | 		// Tax list
 | 
					
						
							|  |  |  | 		"<loc>http://auth/bub/categories/hugo/</loc>",
 | 
					
						
							|  |  |  | 	)
 | 
					
						
							| 
									
										
										
										
											2014-11-04 00:41:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 21:05:17 +02:00
										 |  |  | 	content := readDestination(th, th.Fs, outputSitemap)
 | 
					
						
							|  |  |  | 	c.Assert(content, qt.Not(qt.Contains), "404")
 | 
					
						
							| 
									
										
										
										
											2017-06-06 08:09:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-07 08:57:37 +02:00
										 |  |  | }
 | 
					
						
							| 
									
										
										
										
											2016-02-07 15:56:56 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | func TestParseSitemap(t *testing.T) {
 | 
					
						
							| 
									
										
										
										
											2017-02-05 10:20:06 +07:00
										 |  |  | 	t.Parallel()
 | 
					
						
							| 
									
										
										
										
											2019-01-02 12:33:26 +01:00
										 |  |  | 	expected := config.Sitemap{Priority: 3.0, Filename: "doo.xml", ChangeFreq: "3"}
 | 
					
						
							| 
									
										
										
										
											2016-02-07 15:56:56 +01:00
										 |  |  | 	input := map[string]interface{}{
 | 
					
						
							|  |  |  | 		"changefreq": "3",
 | 
					
						
							|  |  |  | 		"priority":   3.0,
 | 
					
						
							|  |  |  | 		"filename":   "doo.xml",
 | 
					
						
							|  |  |  | 		"unknown":    "ignore",
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2019-01-02 12:33:26 +01:00
										 |  |  | 	result := config.DecodeSitemap(config.Sitemap{}, input)
 | 
					
						
							| 
									
										
										
										
											2016-02-07 15:56:56 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if !reflect.DeepEqual(expected, result) {
 | 
					
						
							|  |  |  | 		t.Errorf("Got \n%v expected \n%v", result, expected)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }
 | 
					
						
							| 
									
										
										
										
											2019-05-02 09:54:26 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | // https://github.com/gohugoio/hugo/issues/5910
 | 
					
						
							|  |  |  | func TestSitemapOutputFormats(t *testing.T) {
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	b := newTestSitesBuilder(t).WithSimpleConfigFile()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	b.WithContent("blog/html-amp.md", `
 | 
					
						
							|  |  |  | ---
 | 
					
						
							|  |  |  | Title: AMP and HTML
 | 
					
						
							|  |  |  | outputs: [ "html", "amp" ]
 | 
					
						
							|  |  |  | ---
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | `)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	b.Build(BuildCfg{})
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Should link to the HTML version.
 | 
					
						
							|  |  |  | 	b.AssertFileContent("public/sitemap.xml", " <loc>http://example.com/blog/html-amp/</loc>")
 | 
					
						
							|  |  |  | }
 |