Fix IsMenuCurrent for SectionPagesMenu
authorbep <bjorn.erik.pedersen@gmail.com>
Sat, 9 May 2015 18:54:11 +0000 (20:54 +0200)
committerbep <bjorn.erik.pedersen@gmail.com>
Sat, 9 May 2015 18:53:58 +0000 (20:53 +0200)
Pretty sure it has worked at some point, but that PR probably has been rebased to pieces.

This refactors the fix by @dannys42 into a method, as this URL fix is applied several places.

Fixes #1114

hugolib/menu_test.go
hugolib/node.go
hugolib/site.go

index 73aeb07ddf71cad713916716942a367c3466692f..4ec659f8dcc2d7d2860c55f710d5f1e7f18408ca 100644 (file)
@@ -319,6 +319,52 @@ func doTestMenuWithUnicodeURLs(t *testing.T, canonifyURLs, uglyURLs bool) {
        assert.Equal(t, expected, unicodeRussian.URL, "uglyURLs[%t]", uglyURLs)
 }
 
+// Issue #1114
+func TestSectionPagesMenu(t *testing.T) {
+       viper.Set("SectionPagesMenu", "spm")
+       defer viper.Set("SectionPagesMenu", "")
+
+       for _, canonify := range []bool{true, false} {
+               doTestSectionPagesMenu(canonify, t)
+       }
+}
+
+func doTestSectionPagesMenu(canonifyUrls bool, t *testing.T) {
+       viper.Set("CanonifyURLs", canonifyUrls)
+       ts := setupMenuTests(t, MENU_PAGE_SECTIONS_SOURCES)
+       defer resetMenuTestState(ts)
+
+       assert.Equal(t, 2, len(ts.site.Sections))
+
+       firstSectionPages := ts.site.Sections["first"]
+       assert.Equal(t, 2, len(firstSectionPages))
+       secondSectionPages := ts.site.Sections["second-section"]
+       assert.Equal(t, 1, len(secondSectionPages))
+
+       nodeFirst := ts.site.newSectionListNode("first", firstSectionPages)
+       nodeSecond := ts.site.newSectionListNode("second-section", secondSectionPages)
+
+       firstSectionMenuEntry := ts.findTestMenuEntryByID("spm", "first")
+       secondSectionMenuEntry := ts.findTestMenuEntryByID("spm", "second-section")
+
+       assert.NotNil(t, firstSectionMenuEntry)
+       assert.NotNil(t, secondSectionMenuEntry)
+       assert.NotNil(t, nodeFirst)
+       assert.NotNil(t, nodeSecond)
+
+       for _, p := range firstSectionPages {
+               assert.True(t, p.Page.HasMenuCurrent("spm", firstSectionMenuEntry))
+               assert.False(t, p.Page.HasMenuCurrent("spm", secondSectionMenuEntry))
+               assert.True(t, nodeFirst.IsMenuCurrent("spm", firstSectionMenuEntry))
+               assert.False(t, nodeFirst.IsMenuCurrent("spm", secondSectionMenuEntry))
+       }
+
+       for _, p := range secondSectionPages {
+               assert.False(t, p.Page.HasMenuCurrent("spm", firstSectionMenuEntry))
+               assert.True(t, p.Page.HasMenuCurrent("spm", secondSectionMenuEntry))
+       }
+}
+
 func TestTaxonomyNodeMenu(t *testing.T) {
        viper.Set("CanonifyURLs", true)
        ts := setupMenuTests(t, MENU_PAGE_SOURCES)
index d98cfcb8b60b5e1d2ed0992f99fc1171346e9bb5..9be2150584ea2c232869ec25e17875599d4ee1d1 100644 (file)
@@ -18,7 +18,6 @@ import (
        "html/template"
        "sync"
        "time"
-    "strings"
 )
 
 type Node struct {
@@ -57,19 +56,8 @@ func (n *Node) HasMenuCurrent(menuID string, inme *MenuEntry) bool {
 }
 
 func (n *Node) IsMenuCurrent(menuID string, inme *MenuEntry) bool {
-    s := n.Site
 
-       me := MenuEntry{Name: n.Title, URL: n.URL}
-
-       if strings.HasPrefix(me.URL, "/") {
-               // make it match the nodes
-               menuEntryURL := me.URL
-               menuEntryURL = helpers.URLizeAndPrep(menuEntryURL)
-               if !s.canonifyURLs {
-                   menuEntryURL = helpers.AddContextRoot(string(s.BaseURL), menuEntryURL)
-               }
-               me.URL = menuEntryURL
-       }
+       me := MenuEntry{Name: n.Title, URL: n.Site.createNodeMenuEntryURL(n.URL)}
 
        if !me.IsSameResource(inme) {
                return false
index c52c89e6d53ab2c581e99a4b9737d3bf198b68e4..3e639760afa82cc3e5a11fa750fea45fc2621456 100644 (file)
@@ -724,16 +724,7 @@ func (s *Site) getMenusFromConfig() Menus {
                                        }
 
                                        menuEntry.MarshallMap(ime)
-
-                                       if strings.HasPrefix(menuEntry.URL, "/") {
-                                               // make it match the nodes
-                                               menuEntryURL := menuEntry.URL
-                                               menuEntryURL = helpers.URLizeAndPrep(menuEntryURL)
-                                               if !s.Info.canonifyURLs {
-                                                       menuEntryURL = helpers.AddContextRoot(string(s.Info.BaseURL), menuEntryURL)
-                                               }
-                                               menuEntry.URL = menuEntryURL
-                                       }
+                                       menuEntry.URL = s.Info.createNodeMenuEntryURL(menuEntry.URL)
 
                                        if ret[name] == nil {
                                                ret[name] = &Menu{}
@@ -747,6 +738,20 @@ func (s *Site) getMenusFromConfig() Menus {
        return ret
 }
 
+func (s *SiteInfo) createNodeMenuEntryURL(in string) string {
+
+       if !strings.HasPrefix(in, "/") {
+               return in
+       }
+       // make it match the nodes
+       menuEntryURL := in
+       menuEntryURL = helpers.URLizeAndPrep(menuEntryURL)
+       if !s.canonifyURLs {
+               menuEntryURL = helpers.AddContextRoot(string(s.BaseURL), menuEntryURL)
+       }
+       return menuEntryURL
+}
+
 func (s *Site) assembleMenus() {
 
        type twoD struct {
@@ -770,7 +775,7 @@ func (s *Site) assembleMenus() {
                if sectionPagesMenu != "" {
                        if _, ok := sectionPagesMenus[p.Section()]; !ok {
                                if p.Section() != "" {
-                                       me := MenuEntry{Identifier: p.Section(), Name: helpers.MakeTitle(p.Section()), URL: s.permalinkStr(p.Section())}
+                                       me := MenuEntry{Identifier: p.Section(), Name: helpers.MakeTitle(p.Section()), URL: s.Info.createNodeMenuEntryURL("/" + p.Section())}
                                        if _, ok := flat[twoD{sectionPagesMenu, me.KeyName()}]; ok {
                                                // menu with same id defined in config, let that one win
                                                continue