refactor: restructure Bruno API collection for consistency

Standardize all Bruno API request files with consistent formatting and
structure to improve maintainability and readability.

Changes include:
- Consolidate URL parameters into main URL instead of separate definitions
- Standardize quote style (double quotes throughout)
- Add proper settings section with defaults (timeout, redirects, etc.)
- Improve YAML formatting with literal style for multi-line content
- Remove redundant fields (disabled: false)
- Clean up header and body structure
- Update sequence numbers for better organization
- Add scenarios folder structure for organized test groupings

Removes obsolete Search Invalid Library ID test case.

Environment configuration updated with new library_id for testing.

These changes improve the Bruno collection's maintainability and make
it easier to create new API requests following established patterns.
This commit is contained in:
2026-03-25 18:03:00 -04:00
parent 8cc593af99
commit 74009f66b5
24 changed files with 229 additions and 254 deletions
+20 -34
View File
@@ -1,46 +1,32 @@
info:
name: Update Media Item
type: http
seq: 2
seq: 16
http:
method: PUT
url: '{{base_url}}/api/media-items/{{media_item_id}}'
auth: inherit
url: "{{base_url}}/api/media-items/{{media_item_id}}"
headers:
- name: ""
value: application/json
body:
type: json
json:
title: Updated Media Item Title
author: Updated Author Name
isbn: 978-9876543210
description: Updated description
cover_image_path: /updated/path/to/cover.jpg
series: Updated Series Name
series_number: 2
tags:
- updated
- fiction
- adventure
asin: B09XYZ789
date_published: '2023-02-20'
publisher: Updated Publisher
contributors:
- Updated Contributor
language: en
edition: Updated Edition
page_count: 400
genre: Updated Genre
copyright_year: 2023
goodreads_id: '7890123'
openlibrary_id: OL789012M
google_books_id: GB789012
headers:
- key: Content-Type
value: application/json
data: ""
auth: inherit
runtime:
scripts:
- type: tests
code: "test_update_media_item_success(status, headers, body) {\n if (status\
\ !== 200) {\n throw new Error(\"Expected status 200, got \" + status);"
- type: tests
code: |-
test_update_media_item_success(status, headers, body) {
if (status !== 200) {
throw new Error("Expected status 200, got " + status);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
docs: |-
## Update Media Item