tplimpl: Reintroduce the double template lookup in Partial
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 4 Apr 2017 15:21:04 +0000 (17:21 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 4 Apr 2017 15:21:04 +0000 (17:21 +0200)
So it works as before without the html suffix.

Fixes #3272

tpl/tplimpl/templateFuncster.go
tpl/tplimpl/template_funcs_test.go

index 1fbaebd43f98842626b09c97524fdd3da9069f55..ddcafedfd832ff3d5f1fdc5b97f8e7f55d97ba26 100644 (file)
@@ -63,6 +63,10 @@ func (t *templateFuncster) partial(name string, contextList ...interface{}) (int
 
        for _, n := range []string{"partials/" + name, "theme/partials/" + name} {
                templ := t.Tmpl.Lookup(n)
+               if templ == nil {
+                       // For legacy reasons.
+                       templ = t.Tmpl.Lookup(n + ".html")
+               }
                if templ != nil {
                        b := bp.GetBuffer()
                        defer bp.PutBuffer(b)
index b50765fcb9549ce8c87a3ec361af46d80024990c..075581c66d4f93fe4086052beaefa3ee0861ab86 100644 (file)
@@ -2908,6 +2908,40 @@ func TestPartialHTMLAndText(t *testing.T) {
 
 }
 
+func TestPartialHTMLWithNoSuffix(t *testing.T) {
+       t.Parallel()
+       config := newDepsConfig(viper.New())
+
+       data := struct {
+               Name string
+       }{
+               Name: "a",
+       }
+
+       config.WithTemplate = func(templ tpl.TemplateHandler) error {
+               if err := templ.AddTemplate("htmlTemplate.html", `HTML Test Partial: {{ partial "test" . -}}`); err != nil {
+                       return err
+               }
+
+               if err := templ.AddTemplate("partials/test.html", "HTML Name: {{ .Name }}"); err != nil {
+                       return err
+               }
+               return nil
+       }
+
+       de, err := deps.New(config)
+       require.NoError(t, err)
+       require.NoError(t, de.LoadResources())
+
+       templ := de.Tmpl.Lookup("htmlTemplate.html")
+       require.NotNil(t, templ)
+       resultHTML, err := templ.ExecuteToString(data)
+       require.NoError(t, err)
+
+       require.Contains(t, resultHTML, "HTML Test Partial: HTML Name: a")
+
+}
+
 func TestPartialWithError(t *testing.T) {
        t.Parallel()
        config := newDepsConfig(viper.New())