Make RSS output test more realistic
authorbep <bjorn.erik.pedersen@gmail.com>
Fri, 8 May 2015 18:33:40 +0000 (20:33 +0200)
committerbep <bjorn.erik.pedersen@gmail.com>
Fri, 8 May 2015 18:33:37 +0000 (20:33 +0200)
By setting a non-default RSS uri config value.

hugolib/rss_test.go

index 23b838c40f0bb4b65c3f12bafc51c082bb17e75b..2b48f10aa5ca6df8808d321e7be967304635ac52 100644 (file)
@@ -33,8 +33,10 @@ const RSS_TEMPLATE = `<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom
 </rss>`
 
 func TestRSSOutput(t *testing.T) {
+       rssUri := "customrss.xml"
        viper.Set("baseurl", "http://auth/bub/")
-       viper.Set("RSSUri", "index.xml")
+       viper.Set("RSSUri", rssUri)
+       defer viper.Set("RSSUri", "index.xml")
 
        hugofs.DestinationFS = new(afero.MemMapFs)
        s := &Site{
@@ -57,10 +59,10 @@ func TestRSSOutput(t *testing.T) {
                t.Fatalf("Unable to RenderHomePage: %s", err)
        }
 
-       file, err := hugofs.DestinationFS.Open("index.xml")
+       file, err := hugofs.DestinationFS.Open(rssUri)
 
        if err != nil {
-               t.Fatalf("Unable to locate: %s", "index.xml")
+               t.Fatalf("Unable to locate: %s", rssUri)
        }
 
        rss := helpers.ReaderToBytes(file)