hugolib: Add GroupByExpireDate function
authorHanchen Wang <hanchen.wang@mail.utoronto.ca>
Wed, 11 May 2016 14:09:43 +0000 (10:09 -0400)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 14 Jun 2016 13:45:26 +0000 (15:45 +0200)
hugolib/pageGroup.go
hugolib/pageGroup_test.go

index 4f5286b81d8b684442f1ec87c6abdda9954d4672..814bf3e77a2163a96b798e0c093242ffe58716eb 100644 (file)
@@ -253,6 +253,19 @@ func (p Pages) GroupByPublishDate(format string, order ...string) (PagesGroup, e
        return p.groupByDateField(sorter, formatter, order...)
 }
 
+// GroupByExpireDate groups by the given page's ExpireDate value in the given format and with the given order.
+// Valid values for order is asc, desc, rev and reverse.
+// For valid format strings, see https://golang.org/pkg/time/#Time.Format
+func (p Pages) GroupByExpiryDate(format string, order ...string) (PagesGroup, error) {
+       sorter := func(p Pages) Pages {
+               return p.ByExpiryDate()
+       }
+       formatter := func(p *Page) string {
+               return p.ExpiryDate.Format(format)
+       }
+       return p.groupByDateField(sorter, formatter, order...)
+}
+
 // GroupByParamDate groups by a date set as a param on the page in the given format and with the given order.
 // Valid values for order is asc, desc, rev and reverse.
 // For valid format strings, see https://golang.org/pkg/time/#Time.Format
index c9b3cfaa8f9f993d8d26a6e962297db8d22d1bc7..e7a9751728d96ecf1e94ba338a69602cf90b0635 100644 (file)
@@ -47,6 +47,7 @@ func preparePageGroupTestPages(t *testing.T) Pages {
                p.Weight = s.weight
                p.Date = cast.ToTime(s.date)
                p.PublishDate = cast.ToTime(s.date)
+               p.ExpiryDate = cast.ToTime(s.date)
                p.Params["custom_param"] = s.param
                p.Params["custom_date"] = cast.ToTime(s.date)
                pages = append(pages, p)
@@ -369,6 +370,23 @@ func TestGroupByPublishDateWithEmptyPages(t *testing.T) {
        }
 }
 
+func TestGroupByExpiryDate(t *testing.T) {
+       pages := preparePageGroupTestPages(t)
+       expect := PagesGroup{
+               {Key: "2012-04", Pages: Pages{pages[4], pages[2], pages[0]}},
+               {Key: "2012-03", Pages: Pages{pages[3]}},
+               {Key: "2012-01", Pages: Pages{pages[1]}},
+       }
+
+       groups, err := pages.GroupByExpiryDate("2006-01")
+       if err != nil {
+               t.Fatalf("Unable to make PagesGroup array: %s", err)
+       }
+       if !reflect.DeepEqual(groups, expect) {
+               t.Errorf("PagesGroup has unexpected groups. It should be %#v, got %#v", expect, groups)
+       }
+}
+
 func TestGroupByParamDate(t *testing.T) {
        pages := preparePageGroupTestPages(t)
        expect := PagesGroup{