2015-12-10 17:19:38 -05:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2013-08-12 20:14:54 -04:00
|
|
|
package hugolib
|
|
|
|
|
|
|
|
import (
|
2016-12-26 20:42:43 -05:00
|
|
|
"reflect"
|
2013-08-12 20:14:54 -04:00
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2016-03-23 05:10:28 -04:00
|
|
|
var pageYamlWithTaxonomiesA = `---
|
2014-09-09 16:58:02 -04:00
|
|
|
tags: ['a', 'B', 'c']
|
2013-08-12 20:14:54 -04:00
|
|
|
categories: 'd'
|
|
|
|
---
|
2014-04-08 23:15:57 -04:00
|
|
|
YAML frontmatter with tags and categories taxonomy.`
|
2013-08-12 20:14:54 -04:00
|
|
|
|
2016-03-23 05:10:28 -04:00
|
|
|
var pageYamlWithTaxonomiesB = `---
|
2013-10-25 18:40:55 -04:00
|
|
|
tags:
|
2013-08-12 20:14:54 -04:00
|
|
|
- "a"
|
2014-09-09 16:58:02 -04:00
|
|
|
- "B"
|
2013-08-12 20:14:54 -04:00
|
|
|
- "c"
|
|
|
|
categories: 'd'
|
|
|
|
---
|
2014-04-08 23:15:57 -04:00
|
|
|
YAML frontmatter with tags and categories taxonomy.`
|
2013-08-12 20:14:54 -04:00
|
|
|
|
2016-03-23 05:10:28 -04:00
|
|
|
var pageYamlWithTaxonomiesC = `---
|
2014-09-09 16:58:02 -04:00
|
|
|
tags: 'E'
|
2014-09-05 09:29:01 -04:00
|
|
|
categories: 'd'
|
|
|
|
---
|
|
|
|
YAML frontmatter with tags and categories taxonomy.`
|
|
|
|
|
2016-03-23 05:10:28 -04:00
|
|
|
var pageJSONWithTaxonomies = `{
|
2014-09-09 16:58:02 -04:00
|
|
|
"categories": "D",
|
2013-08-12 20:14:54 -04:00
|
|
|
"tags": [
|
2013-10-25 18:40:55 -04:00
|
|
|
"a",
|
|
|
|
"b",
|
2013-08-12 20:14:54 -04:00
|
|
|
"c"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
JSON Front Matter with tags and categories`
|
|
|
|
|
2016-03-23 05:10:28 -04:00
|
|
|
var pageTomlWithTaxonomies = `+++
|
2014-09-09 16:58:02 -04:00
|
|
|
tags = [ "a", "B", "c" ]
|
2013-08-12 20:14:54 -04:00
|
|
|
categories = "d"
|
|
|
|
+++
|
|
|
|
TOML Front Matter with tags and categories`
|
|
|
|
|
2014-04-08 23:15:57 -04:00
|
|
|
func TestParseTaxonomies(t *testing.T) {
|
2017-02-04 22:20:06 -05:00
|
|
|
t.Parallel()
|
2016-03-23 05:10:28 -04:00
|
|
|
for _, test := range []string{pageTomlWithTaxonomies,
|
|
|
|
pageJSONWithTaxonomies,
|
|
|
|
pageYamlWithTaxonomiesA,
|
|
|
|
pageYamlWithTaxonomiesB,
|
|
|
|
pageYamlWithTaxonomiesC,
|
2013-08-12 20:14:54 -04:00
|
|
|
} {
|
2014-05-01 14:11:56 -04:00
|
|
|
|
2017-02-04 22:20:06 -05:00
|
|
|
s := newTestSite(t)
|
|
|
|
p, _ := s.NewPage("page/with/taxonomy")
|
2015-04-03 15:41:12 -04:00
|
|
|
_, err := p.ReadFrom(strings.NewReader(test))
|
2013-08-12 20:14:54 -04:00
|
|
|
if err != nil {
|
2013-08-25 00:27:41 -04:00
|
|
|
t.Fatalf("Failed parsing %q: %s", test, err)
|
2013-08-12 20:14:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
param := p.GetParam("tags")
|
|
|
|
|
2014-09-05 09:29:01 -04:00
|
|
|
if params, ok := param.([]string); ok {
|
|
|
|
expected := []string{"a", "b", "c"}
|
2016-12-26 20:42:43 -05:00
|
|
|
if !reflect.DeepEqual(params, expected) {
|
2014-09-05 09:29:01 -04:00
|
|
|
t.Errorf("Expected %s: got: %s", expected, params)
|
|
|
|
}
|
|
|
|
} else if params, ok := param.(string); ok {
|
|
|
|
expected := "e"
|
|
|
|
if params != expected {
|
|
|
|
t.Errorf("Expected %s: got: %s", expected, params)
|
|
|
|
}
|
2013-08-12 20:14:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
param = p.GetParam("categories")
|
|
|
|
singleparam := param.(string)
|
|
|
|
|
|
|
|
if singleparam != "d" {
|
|
|
|
t.Fatalf("Expected: d, got: %s", singleparam)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|