1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
package rss_test
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"path/filepath"
"strings"
"testing"
"github.com/mmcdole/gofeed/rss"
"github.com/stretchr/testify/assert"
)
func TestParser_Parse(t *testing.T) {
files, _ := filepath.Glob("../testdata/parser/rss/*.xml")
for _, f := range files {
base := filepath.Base(f)
name := strings.TrimSuffix(base, filepath.Ext(base))
fmt.Printf("Testing %s... ", name)
// Get actual source feed
ff := fmt.Sprintf("../testdata/parser/rss/%s.xml", name)
f, _ := ioutil.ReadFile(ff)
// Parse actual feed
fp := &rss.Parser{}
actual, _ := fp.Parse(bytes.NewReader(f))
// Get json encoded expected feed result
ef := fmt.Sprintf("../testdata/parser/rss/%s.json", name)
e, _ := ioutil.ReadFile(ef)
// Unmarshal expected feed
expected := &rss.Feed{}
json.Unmarshal(e, &expected)
if assert.Equal(t, expected, actual, "Feed file %s.xml did not match expected output %s.json", name, name) {
fmt.Printf("OK\n")
} else {
fmt.Printf("Failed\n")
}
}
}
// TODO: Examples
|