test: update Bruno API collection with current database test values

Update test data values across Bruno API collection to reflect current
database state and improve test parameter relevance:

- Environment variables: Refresh library_id and job_id UUIDs to current
  database values for accurate testing
- Combined Search test: Update tags_filter from "scifi" to "fict" for
  broader genre coverage and extend year_max from 2000 to 2026 for
  modern title inclusivity
- Fuzzy Author Filter test: Change author_filter from "Conan" to
  "orwell" for consistent author search testing

These updates ensure API tests use valid reference data that matches
the development database state.
This commit is contained in:
2026-03-26 21:01:47 -04:00
parent be31cc88f1
commit d8c63b8b8e
3 changed files with 7 additions and 7 deletions
@@ -5,7 +5,7 @@ info:
http:
method: GET
url: "{{base_url}}/api/media-items/search?library_id={{library_id}}&q=1984&author_filter=orwell&tags_filter=scifi&year_min=1850&year_max=2000&sort=title ASC"
url: "{{base_url}}/api/media-items/search?library_id={{library_id}}&q=1984&author_filter=orwell&tags_filter=fict&year_min=1850&year_max=2026&sort=title ASC"
params:
- name: library_id
value: "{{library_id}}"
@@ -17,13 +17,13 @@ http:
value: orwell
type: query
- name: tags_filter
value: scifi
value: fict
type: query
- name: year_min
value: "1850"
type: query
- name: year_max
value: "2000"
value: "2026"
type: query
- name: sort
value: title ASC
@@ -5,13 +5,13 @@ info:
http:
method: GET
url: "{{base_url}}/api/media-items/search?library_id={{library_id}}&author_filter=Conan"
url: "{{base_url}}/api/media-items/search?library_id={{library_id}}&author_filter=orwell"
params:
- name: library_id
value: "{{library_id}}"
type: query
- name: author_filter
value: Conan
value: orwell
type: query
auth: inherit