mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 00:39:13 +00:00

* feat(rss): implement relative URL support * bp had some words * feat(gh): uplift golang to 1.19.1 * feat(docker): uplift golang to 1.19 * feat(docker): uplift to go 1.19 * cleanup * chore: update go version in go.mod * feat: refactor and add test feed process item * unescape query params after join * break out logic into separate method * add tests
110 lines
4.8 KiB
Go
110 lines
4.8 KiB
Go
package feed
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/autobrr/autobrr/internal/domain"
|
|
"github.com/autobrr/autobrr/internal/release"
|
|
|
|
"github.com/mmcdole/gofeed"
|
|
"github.com/rs/zerolog"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRSSJob_processItem(t *testing.T) {
|
|
now := time.Now()
|
|
|
|
type fields struct {
|
|
Name string
|
|
IndexerIdentifier string
|
|
Log zerolog.Logger
|
|
URL string
|
|
Repo domain.FeedCacheRepo
|
|
ReleaseSvc release.Service
|
|
attempts int
|
|
errors []error
|
|
JobID int
|
|
}
|
|
type args struct {
|
|
item *gofeed.Item
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
fields fields
|
|
args args
|
|
want *domain.Release
|
|
}{
|
|
{
|
|
name: "no_baseurl",
|
|
fields: fields{
|
|
Name: "test feed",
|
|
IndexerIdentifier: "mock-feed",
|
|
Log: zerolog.Logger{},
|
|
URL: "https://fake-feed.com/rss",
|
|
Repo: nil,
|
|
ReleaseSvc: nil,
|
|
attempts: 0,
|
|
errors: nil,
|
|
JobID: 0,
|
|
},
|
|
args: args{item: &gofeed.Item{
|
|
Title: "Some.Release.Title.2022.09.22.720p.WEB.h264-GROUP",
|
|
Description: `Category: Example
|
|
Size: 1.49 GB
|
|
Status: 27 seeders and 1 leechers
|
|
Speed: 772.16 kB/s
|
|
Added: 2022-09-29 16:06:08
|
|
`,
|
|
Link: "/details.php?id=00000&hit=1",
|
|
GUID: "Some.Release.Title.2022.09.22.720p.WEB.h264-GROUP",
|
|
}},
|
|
want: &domain.Release{ID: 0, FilterStatus: "PENDING", Rejections: []string{}, Indexer: "mock-feed", FilterName: "", Protocol: "torrent", Implementation: "RSS", Timestamp: now, GroupID: "", TorrentID: "", TorrentURL: "https://fake-feed.com/details.php?id=00000&hit=1", TorrentTmpFile: "", TorrentDataRawBytes: []uint8(nil), TorrentHash: "", TorrentName: "Some.Release.Title.2022.09.22.720p.WEB.h264-GROUP", Size: 0x0, Title: "Some Release Title", Category: "", Season: 0, Episode: 0, Year: 2022, Resolution: "720p", Source: "WEB", Codec: []string{"H.264"}, Container: "", HDR: []string(nil), Audio: []string(nil), AudioChannels: "", Group: "GROUP", Region: "", Language: "", Proper: false, Repack: false, Website: "", Artists: "", Type: "", LogScore: 0, IsScene: false, Origin: "", Tags: []string{}, ReleaseTags: "", Freeleech: false, FreeleechPercent: 0, Bonus: []string(nil), Uploader: "", PreTime: "", Other: []string(nil), RawCookie: "", AdditionalSizeCheckRequired: false, FilterID: 0, Filter: (*domain.Filter)(nil), ActionStatus: []domain.ReleaseActionStatus(nil)},
|
|
},
|
|
{
|
|
name: "with_baseurl",
|
|
fields: fields{
|
|
Name: "test feed",
|
|
IndexerIdentifier: "mock-feed",
|
|
Log: zerolog.Logger{},
|
|
URL: "https://fake-feed.com/rss",
|
|
Repo: nil,
|
|
ReleaseSvc: nil,
|
|
attempts: 0,
|
|
errors: nil,
|
|
JobID: 0,
|
|
},
|
|
args: args{item: &gofeed.Item{
|
|
Title: "Some.Release.Title.2022.09.22.720p.WEB.h264-GROUP",
|
|
Description: `Category: Example
|
|
Size: 1.49 GB
|
|
Status: 27 seeders and 1 leechers
|
|
Speed: 772.16 kB/s
|
|
Added: 2022-09-29 16:06:08
|
|
`,
|
|
Link: "https://fake-feed.com/details.php?id=00000&hit=1",
|
|
GUID: "Some.Release.Title.2022.09.22.720p.WEB.h264-GROUP",
|
|
}},
|
|
want: &domain.Release{ID: 0, FilterStatus: "PENDING", Rejections: []string{}, Indexer: "mock-feed", FilterName: "", Protocol: "torrent", Implementation: "RSS", Timestamp: now, GroupID: "", TorrentID: "", TorrentURL: "https://fake-feed.com/details.php?id=00000&hit=1", TorrentTmpFile: "", TorrentDataRawBytes: []uint8(nil), TorrentHash: "", TorrentName: "Some.Release.Title.2022.09.22.720p.WEB.h264-GROUP", Size: 0x0, Title: "Some Release Title", Category: "", Season: 0, Episode: 0, Year: 2022, Resolution: "720p", Source: "WEB", Codec: []string{"H.264"}, Container: "", HDR: []string(nil), Audio: []string(nil), AudioChannels: "", Group: "GROUP", Region: "", Language: "", Proper: false, Repack: false, Website: "", Artists: "", Type: "", LogScore: 0, IsScene: false, Origin: "", Tags: []string{}, ReleaseTags: "", Freeleech: false, FreeleechPercent: 0, Bonus: []string(nil), Uploader: "", PreTime: "", Other: []string(nil), RawCookie: "", AdditionalSizeCheckRequired: false, FilterID: 0, Filter: (*domain.Filter)(nil), ActionStatus: []domain.ReleaseActionStatus(nil)},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
j := &RSSJob{
|
|
Name: tt.fields.Name,
|
|
IndexerIdentifier: tt.fields.IndexerIdentifier,
|
|
Log: tt.fields.Log,
|
|
URL: tt.fields.URL,
|
|
Repo: tt.fields.Repo,
|
|
ReleaseSvc: tt.fields.ReleaseSvc,
|
|
attempts: tt.fields.attempts,
|
|
errors: tt.fields.errors,
|
|
JobID: tt.fields.JobID,
|
|
}
|
|
got := j.processItem(tt.args.item)
|
|
got.Timestamp = now // override to match
|
|
|
|
assert.Equal(t, tt.want, got)
|
|
})
|
|
}
|
|
}
|