changelog: add test for slackwareaarch64

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2022-04-27 21:26:19 -04:00
parent 1e645e4616
commit e826043c5c
Signed by: vbatts
GPG Key ID: 10937E57733F1362
2 changed files with 6583 additions and 23 deletions

View File

@ -6,8 +6,23 @@ import (
"testing"
)
var changelogs = []struct {
File string
Url string
}{
{
File: "testdata/slackwareaarch64-current/ChangeLog.txt",
Url: "http://ftp.arm.slackware.com/slackwarearm/slackwareaarch64-current/ChangeLog.txt",
},
{
File: "testdata/slackware64/ChangeLog.txt",
Url: "http://slackware.osuosl.org/slackware64-current/ChangeLog.txt",
},
}
func TestFeed(t *testing.T) {
fh, err := os.Open("testdata/slackware64/ChangeLog.txt")
for _, cl := range changelogs {
fh, err := os.Open(cl.File)
if err != nil {
t.Fatal(err)
}
@ -18,7 +33,7 @@ func TestFeed(t *testing.T) {
t.Fatal(err)
}
f, err := ToFeed("http://slackware.osuosl.org/slackware64-current/ChangeLog.txt", e)
f, err := ToFeed(cl.Url, e)
if err != nil {
t.Fatal(err)
}
@ -36,3 +51,4 @@ func TestFeed(t *testing.T) {
t.Error(err)
}
}
}

File diff suppressed because it is too large Load Diff