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.
|
|
|
|
|
2014-04-08 23:15:57 -04:00
|
|
|
package hugolib
|
|
|
|
|
|
|
|
import (
|
2016-11-07 14:24:37 -05:00
|
|
|
"path/filepath"
|
2016-12-26 20:42:43 -05:00
|
|
|
"reflect"
|
2014-04-08 23:15:57 -04:00
|
|
|
"testing"
|
2016-04-01 14:17:16 -04:00
|
|
|
|
|
|
|
"github.com/spf13/viper"
|
2014-04-08 23:15:57 -04:00
|
|
|
)
|
|
|
|
|
2016-04-01 14:17:16 -04:00
|
|
|
func TestByCountOrderOfTaxonomies(t *testing.T) {
|
2016-07-28 03:30:58 -04:00
|
|
|
defer testCommonResetState()
|
2016-04-01 14:17:16 -04:00
|
|
|
|
|
|
|
taxonomies := make(map[string]string)
|
|
|
|
|
|
|
|
taxonomies["tag"] = "tags"
|
|
|
|
taxonomies["category"] = "categories"
|
|
|
|
|
|
|
|
viper.Set("taxonomies", taxonomies)
|
|
|
|
|
2016-11-07 14:24:37 -05:00
|
|
|
writeSource(t, filepath.Join("content", "page.md"), pageYamlWithTaxonomiesA)
|
|
|
|
|
2017-01-03 11:28:51 -05:00
|
|
|
site := NewSiteDefaultLang()
|
2016-11-07 14:24:37 -05:00
|
|
|
|
|
|
|
if err := buildSiteSkipRender(site); err != nil {
|
|
|
|
t.Fatalf("Failed to build site: %s", err)
|
|
|
|
}
|
2016-04-01 14:17:16 -04:00
|
|
|
|
|
|
|
st := make([]string, 0)
|
|
|
|
for _, t := range site.Taxonomies["tags"].ByCount() {
|
|
|
|
st = append(st, t.Name)
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:42:43 -05:00
|
|
|
if !reflect.DeepEqual(st, []string{"a", "b", "c"}) {
|
2016-04-01 14:17:16 -04:00
|
|
|
t.Fatalf("ordered taxonomies do not match [a, b, c]. Got: %s", st)
|
|
|
|
}
|
|
|
|
}
|