This commit improves the Bruno API collection with better formatting, updated test environment variables, and automation scripts for easier API testing workflow. ## Environment Updates - bruno/environments/Bookhoard.yml: Updated test IDs for library_id and job_id to reflect latest test database state ## Formatting Improvements Updated all Bruno collection files with consistent formatting: - bruno/highlights/Create Media Highlight.yml - bruno/highlights/Update Media Highlight.yml - bruno/library/Add Library Folder.yml - bruno/library/Create Library.yml - bruno/library/Delete Library.yml - bruno/library/Set Library Visibility.yml - bruno/media-items/Create Media Item.yml - bruno/media-items/Create Media Rating.yml - bruno/media-items/Update Media Item.yml - bruno/media-items/Update Media Rating.yml - bruno/media-items/search/Combined Search and Filters.yml - bruno/notes/Create Media Note.yml - bruno/notes/Update Media Note.yml - bruno/progress/Update Reading Progress.yml - bruno/user/admin/Register Admin User.yml - bruno/user/auth/Logout User.yml - bruno/user/auth/Refresh Token.yml Improvements include: - Consistent YAML structure and indentation - Proper multiline string format for JSON bodies - Moved auth: inherit after headers for consistency - Added descriptive comments in request bodies ## Automation Features Added runtime scripts to Create Library.yml: - after-response script automatically extracts and saves library_id from API response to environment variables - Persists library_id for use in subsequent requests - Reduces manual copy-paste workflow during testing Updated request bodies with example data: - Create Media Item.yml: Added complete example with library_id variable reference, title, author, file_path, file_size, mime_type - Other files: Updated with proper JSON formatting ## Benefits - More consistent API collection structure - Automated workflow reduces manual steps - Better readability with proper YAML formatting - Example data makes requests easier to understand
37 lines
951 B
YAML
37 lines
951 B
YAML
name: Bookhoard
|
|
variables:
|
|
- name: base_url
|
|
value: http://localhost:8765
|
|
- name: media_item_id
|
|
value: 02a535a4-19f8-43fa-b81b-89a226d19dd9
|
|
- name: fake_book_id
|
|
value: 123e4567-e89b-12d3-a456-426614174000
|
|
- name: user_id
|
|
value: c51118f0-31fc-4c32-827d-517d6599bf21
|
|
- name: highlight_id
|
|
value: 660f9501-f29b-51d4-b716-446655440001
|
|
- name: note_id
|
|
value: 7710a602-g29b-61d4-c716-446655440002
|
|
- name: library_id
|
|
value: d2932c11-cd39-4c4a-b940-124b75964099
|
|
- name: job_id
|
|
value: c5766af2-44a5-4537-abb0-e3fa42fc93f9
|
|
- name: rating
|
|
value: "5"
|
|
- name: is_visible
|
|
value: "true"
|
|
- name: library_folder
|
|
value: /app/uploads
|
|
- name: opds_base_url
|
|
value: ""
|
|
- secret: true
|
|
name: token
|
|
- secret: true
|
|
name: refresh_token
|
|
- secret: true
|
|
name: kobo_device_token
|
|
- secret: true
|
|
name: other_device_id
|
|
- name: collection_id
|
|
value: 412c03c3-0843-4bd4-b764-cc9457bb9df2
|