Fix GroupByParam to return original param string
authorTatsushi Demachi <tdemachi@gmail.com>
Tue, 10 Nov 2015 13:02:45 +0000 (22:02 +0900)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 10 Nov 2015 13:57:03 +0000 (14:57 +0100)
Page.GroupByParam function internally uses Page.GetParam to get a
parameter value for a key of a page group but now Page.GetParam returns
a lowercase character string every time. It has no need to using
lowercase character string as a group key value and it confuse a
function user.

This fixes it to keep and return an original parameter string as a group
key value.

Fix #1564

hugolib/pageGroup.go
hugolib/pageGroup_test.go

index 05d8aff9fc295e890672af38b745886962e18683..955e76b657fd8617fe2f51202fcead893195e323 100644 (file)
@@ -171,7 +171,7 @@ func (p Pages) GroupByParam(key string, order ...string) (PagesGroup, error) {
        }
 
        for _, e := range p {
-               param := e.GetParam(key)
+               param := e.getParam(key, false)
                if param == nil || reflect.TypeOf(param) != keyt {
                        continue
                }
index c8d89fb030817f7e1f0e85551c5355edf8318eb6..2de07bc9d625c8c4ffa1183ecdcb6e64565305ba 100644 (file)
@@ -220,6 +220,25 @@ func TestGroupByParamInReverseOrder(t *testing.T) {
        }
 }
 
+func TestGroupByParamCalledWithCapitalLetterString(t *testing.T) {
+       testStr := "TestString"
+       f := "/section1/test_capital.md"
+       p, err := NewPage(filepath.FromSlash(f))
+       if err != nil {
+               t.Fatalf("failed to prepare test page %s", f)
+       }
+       p.Params["custom_param"] = testStr
+       pages := Pages{p}
+
+       groups, err := pages.GroupByParam("custom_param")
+       if err != nil {
+               t.Fatalf("Unable to make PagesGroup array: %s", err)
+       }
+       if groups[0].Key != testStr {
+               t.Errorf("PagesGroup key is converted to a lower character string. It should be %#v, got %#v", testStr, groups[0].Key)
+       }
+}
+
 func TestGroupByParamCalledWithSomeUnavailableParams(t *testing.T) {
        pages := preparePageGroupTestPages(t)
        delete(pages[1].Params, "custom_param")