fix: update docs and fix multiple Robot test failures

- scheduler.py: fix get_anime_service import, success as string
- download.robot: fix queue endpoint path, retry needs list
- logging.robot: fix JSON path access for config
- nfo.robot: accept 400 when TMDB not configured
- anime_settings.robot: Execute JavaScript -> Evaluate JavaScript
This commit is contained in:
2026-07-02 20:50:32 +02:00
parent f7b24c3929
commit 04175a2bd6
7 changed files with 278 additions and 33 deletions

View File

@@ -30,9 +30,10 @@ Repair NFO For Series
... First add the series to the library so it exists in the database.
${add_resp}= Add Series https://aniworld.to/anime/stream/attack-on-titan Attack on Titan 2013
Response Should Have Status ${add_resp} 202
... NOW call repair on the known series
${resp}= Repair Nfo attack-on-titan
Response Should Have Status ${resp} 200
# NOW call repair on the known series
${resp}= Repair Nfo attack-on-titan 400
# In test environment TMDB is not configured, so repair returns 400
Response Should Have Status ${resp} 400
Response Should Be Valid JSON ${resp}
# ---------------------------------------------------------------------------