hugolib: Fix Related when called from shortcode
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 14 Aug 2018 16:11:36 +0000 (18:11 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 14 Aug 2018 16:11:36 +0000 (18:11 +0200)
Fixes #5071

hugolib/shortcode_test.go
hugolib/site_sections.go

index f4935c6e9c7bd4d26bd284015c2384ffca7c4373..d57dca82e470aa22fa5db685fa0fa0884ec679e2 100644 (file)
@@ -150,6 +150,17 @@ func TestPositionalParamIndexOutOfBounds(t *testing.T) {
        CheckShortCodeMatch(t, "{{< video 47238zzb >}}", "Playing Video Missing", wt)
 }
 
+// #5071
+func TestShortcodeRelated(t *testing.T) {
+       t.Parallel()
+       wt := func(tem tpl.TemplateHandler) error {
+               tem.AddTemplate("_internal/shortcodes/a.html", `{{ len (.Site.RegularPages.Related .Page) }}`)
+               return nil
+       }
+
+       CheckShortCodeMatch(t, "{{< a >}}", "0", wt)
+}
+
 // some repro issues for panics in Go Fuzz testing
 
 func TestNamedParamSC(t *testing.T) {
index 2a92a342438fd2b2a48226815e69d44df0c46ddf..15b96e1a7bf87492879ee02d374d7570d0292ba6 100644 (file)
@@ -145,15 +145,16 @@ func (p *Page) Eq(other interface{}) bool {
 }
 
 func unwrapPage(in interface{}) (*Page, error) {
-       if po, ok := in.(*PageOutput); ok {
-               in = po.Page
-       }
-
-       pp, ok := in.(*Page)
-       if !ok {
+       switch v := in.(type) {
+       case *Page:
+               return v, nil
+       case *PageOutput:
+               return v.Page, nil
+       case *PageWithoutContent:
+               return v.Page, nil
+       default:
                return nil, fmt.Errorf("%T not supported", in)
        }
-       return pp, nil
 }
 
 // Sections returns this section's subsections, if any.