Detect missed index from front matter
authorNoah Campbell <noahcampbell@gmail.com>
Tue, 13 Aug 2013 17:46:05 +0000 (10:46 -0700)
committerspf13 <steve.francia@gmail.com>
Sun, 18 Aug 2013 03:45:03 +0000 (23:45 -0400)
hugolib/indexing_test.go [new file with mode: 0644]
hugolib/site.go

diff --git a/hugolib/indexing_test.go b/hugolib/indexing_test.go
new file mode 100644 (file)
index 0000000..4d7d04f
--- /dev/null
@@ -0,0 +1,18 @@
+package hugolib
+
+import (
+       "testing"
+       "strings"
+)
+
+func TestSitePossibleIndexes(t *testing.T) {
+       site := new(Site)
+       page, _ := ReadFrom(strings.NewReader(PAGE_YAML_WITH_INDEXES_A), "path/to/page")
+       site.Pages = append(site.Pages, page)
+       indexes := site.possibleIndexes()
+       if !compareStringSlice(indexes, []string{"tags", "categories"}) {
+               t.Fatalf("possible indexes do not match [tags categories].  Got: %s", indexes)
+       }
+}
+
+
index 966208f92d0c31aedd4601016c0518b0b559e5c2..5011cf6b2bad0a62efda5d0635e235ae6dd00691 100644 (file)
@@ -390,6 +390,26 @@ func (s *Site) BuildSiteMeta() (err error) {
        return
 }
 
+func (s *Site) possibleIndexes() (indexes []string) {
+       for _, p := range s.Pages {
+               for k, _ := range p.Params {
+                       if !inStringArray(indexes, k) {
+                               indexes = append(indexes, k)
+                       }
+               }
+       }
+       return
+}
+
+func inStringArray(arr []string, el string) bool {
+       for _, v := range arr {
+               if v == el {
+                       return true
+               }
+       }
+       return false
+}
+
 func (s *Site) RenderAliases() error {
        for i, p := range s.Pages {
                for _, a := range p.Aliases {