hugolib: Add test for parseSitemap
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 7 Feb 2016 14:56:56 +0000 (15:56 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 7 Feb 2016 14:56:56 +0000 (15:56 +0100)
hugolib/sitemap_test.go

index 13bc92a188c671b5c2b743e650838a7d666cf2a1..bb3eaccd2a81cec26672c8e61b7042c05d1c4315 100644 (file)
@@ -22,6 +22,7 @@ import (
        "github.com/spf13/hugo/hugofs"
        "github.com/spf13/hugo/source"
        "github.com/spf13/viper"
+       "reflect"
 )
 
 const SITEMAP_TEMPLATE = `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
@@ -83,3 +84,19 @@ func TestSitemapOutput(t *testing.T) {
                t.Errorf("Sitemap file should start with <?xml. %s", sitemap)
        }
 }
+
+func TestParseSitemap(t *testing.T) {
+       expected := Sitemap{Priority: 3.0, Filename: "doo.xml", ChangeFreq: "3"}
+       input := map[string]interface{}{
+               "changefreq": "3",
+               "priority":   3.0,
+               "filename":   "doo.xml",
+               "unknown":    "ignore",
+       }
+       result := parseSitemap(input)
+
+       if !reflect.DeepEqual(expected, result) {
+               t.Errorf("Got \n%v expected \n%v", result, expected)
+       }
+
+}