mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 16:59:12 +00:00
feat(definitions): add expectations for test lines (#1257)
* factor out test helpers * refactor, add tests for animebytes * revert test refactor * better name * change format, migrate some examples * migrated remaining test cases * add comment about `Test` vs `Tests` * refactor * reorder expectations to match vars * generate * turn on strict unmarshalling, remove old `Test` from schema * start modifying actual definitions * done with the As * Bs * C, D * E, F * G, H, I, ... L * M, N * O, P * R * bonus error. without this, pattern/vars disagreement can panic. * S * T, U * X.. Now we know our ABCs next time won't you sing with meeeee * fix another test * another driveby change * be less strict parsing custom definitions * fix(definitions): load custom definitions --------- Co-authored-by: ze0s <ze0s@riseup.net>
This commit is contained in:
parent
e842a7bd42
commit
fef0da5711
83 changed files with 1887 additions and 565 deletions
|
@ -11,7 +11,7 @@ protocol: torrent
|
|||
supports:
|
||||
- irc
|
||||
- rss
|
||||
source: custom
|
||||
# source: custom
|
||||
settings:
|
||||
- name: api_key
|
||||
type: secret
|
||||
|
@ -56,12 +56,37 @@ irc:
|
|||
parse:
|
||||
type: single
|
||||
lines:
|
||||
- test:
|
||||
- "[Games/PC] The.Smallest.Game-ze0s (Größe: 31,53 MB) https://tsctracker.org/details.php?id=0000000"
|
||||
- "[Music/MP3] TUNES_4_LYFE_WEB_iNT (Größe: 31,53 GB) https://tsctracker.org/details.php?id=0000000"
|
||||
- "[XXX/0-Day] Cute.Stuff.69.XXX.VR180.2700p.MP4-s0ez (Größe: 2,3 TB) https://tsctracker.org/details.php?id=0000000"
|
||||
- "[Movies/HD] Have.You.Seen.The.Cat.Tonight-WhereThat (Größe: 1,0 MB) https://tsctracker.org/details.php?id=0000000"
|
||||
- "[TV-HD/X264] The.Eggerton.S01E01.720p.WEB.h264-OTA (Größe: 131,94 GB) https://tsctracker.org/details.php?id=0000000"
|
||||
- tests:
|
||||
- line: '[Games/PC] The.Smallest.Game-ze0s (Größe: 31,53 MB) https://tsctracker.org/details.php?id=0000000'
|
||||
expect:
|
||||
category: Games/PC
|
||||
torrentName: The.Smallest.Game-ze0s
|
||||
size: 31,53 MB
|
||||
torrentId: "0000000"
|
||||
- line: '[Music/MP3] TUNES_4_LYFE_WEB_iNT (Größe: 31,53 GB) https://tsctracker.org/details.php?id=0000000'
|
||||
expect:
|
||||
category: Music/MP3
|
||||
torrentName: TUNES_4_LYFE_WEB_iNT
|
||||
size: 31,53 GB
|
||||
torrentId: "0000000"
|
||||
- line: '[XXX/0-Day] Cute.Stuff.69.XXX.VR180.2700p.MP4-s0ez (Größe: 2,3 TB) https://tsctracker.org/details.php?id=0000000'
|
||||
expect:
|
||||
category: XXX/0-Day
|
||||
torrentName: Cute.Stuff.69.XXX.VR180.2700p.MP4-s0ez
|
||||
size: 2,3 TB
|
||||
torrentId: "0000000"
|
||||
- line: '[Movies/HD] Have.You.Seen.The.Cat.Tonight-WhereThat (Größe: 1,0 MB) https://tsctracker.org/details.php?id=0000000'
|
||||
expect:
|
||||
category: Movies/HD
|
||||
torrentName: Have.You.Seen.The.Cat.Tonight-WhereThat
|
||||
size: 1,0 MB
|
||||
torrentId: "0000000"
|
||||
- line: '[TV-HD/X264] The.Eggerton.S01E01.720p.WEB.h264-OTA (Größe: 131,94 GB) https://tsctracker.org/details.php?id=0000000'
|
||||
expect:
|
||||
category: TV-HD/X264
|
||||
torrentName: The.Eggerton.S01E01.720p.WEB.h264-OTA
|
||||
size: 131,94 GB
|
||||
torrentId: "0000000"
|
||||
pattern: '\[(.*)\].(.*?).\(Größe:.(.*?)\).*id=(\d+)'
|
||||
vars:
|
||||
- category
|
||||
|
@ -71,4 +96,4 @@ irc:
|
|||
|
||||
match:
|
||||
infourl: "/details.php?id={{ .torrentId }}"
|
||||
torrenturl: "/ddownload_ssl.php/{{ .torrentId }}/{{ .uid }}/{{ .api_key }}/{{ .torrentName }}.torrent"
|
||||
torrenturl: "/ddownload_ssl.php/{{ .torrentId }}/{{ .uid }}/{{ .api_key }}/{{ .torrentName }}.torrent"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue