This commit updates all documentation files throughout the project: - Updated IMPLEMENTATION_PLAN.md with new implementation details - Updated PROJECT_GUIDELINES.md with coding standards and practices - Updated README.md with current project information - Updated SCREENSHOT_AUTOMATION.md with new automation details - Added TEST_DATA.md with test fixtures data - Updated cover_image_serving_plan.md with static URL patterns Documentation API updates: - Updated API reference documentation for all endpoints including: - Authentication (login, logout, register, refresh_token) - Book matching (auto_link, bulk_link, link_book, search) - Collections (CRUD operations, shelf mappings, auto-assign rules) - Conflicts (bulk operations, resolve/dismiss) - Devices (registration, approval, shelf management) - Highlights (create, update, delete, get) - Kobo sync (bookmark, markup, initialization, sync) - KOReader sync (library, metadata, bookmarks, progress) - Libraries (CRUD, folders, media items, stats) - Media items (bulk operations, CRUD) - Notes (CRUD operations) - OPDS (acquisition, feeds, publication) - Progress (reading progress tracking) - Queue (device queue management) - Ratings (star ratings) - Scanner (watch mode, scan operations) - Sync protocols (Kobo, KOReader) - Users (profile, password, admin operations) - WebSocket protocols - Updated user guides (admin, dashboard, settings, sync) - Updated device setup guides (Kobo, KOReader) - Updated developer guides (testing, contributing, operations) - Updated scripts/README.md
3.1 KiB
3.1 KiB
Testing
This document describes how to run and write tests for Bookhoard.
Test Users and Email Domains
Test Email Domain
All integration tests use the email domain @tests.bookhoard.internal for test users. This domain is reserved exclusively for testing and will never be used in production.
Why this domain?
- Clear indication it's for testing only
- Won't conflict with real user emails (which use real domains like
@gmail.com,@example.com, etc.) - Safe cleanup: Tests can delete all users with this domain without risk to production data
- If a real user somehow uses
@tests.bookhoard.internal, they are explicitly opting into test data deletion
Standard Test Users
The test suite creates these standard users:
-
Admin User
- Email:
testuser@tests.bookhoard.internal - Username:
testuser - Password:
Test@Pass123! - Role:
admin
- Email:
-
Regular User
- Email:
testregularuser@tests.bookhoard.internal - Username:
testregularuser - Password:
Test@Pass123! - Role:
user
- Email:
Test Lifecycle and Cleanup
Each test run:
- Deletes all existing users with
@tests.bookhoard.internalemail - Creates fresh standard test users
- Runs the test with clean state
- Cleans up via
t.Cleanup()to delete users created during the test
This ensures complete test isolation - no state leaks between tests.
Writing Tests
When writing new tests:
✅ DO:
- Use the standard test users from
setupTestServer(t) - Use
createRegularUserOnce(t, setup.DB)for additional test users - Let the test framework handle cleanup
- Use the
@tests.bookhoard.internaldomain if creating custom test users
❌ DON'T:
- Use real email domains like
@example.comor@gmail.com - Manually manage test user deletion (unless absolutely necessary)
- Assume test users persist between test runs
- Hardcode user IDs (always look up by email/username)
Running Tests
Run All Tests
make test
Run Integration Tests Only
make test-integration
Run Specific Test
go test -v -run TestUpdateProfile ./cmd/server/tests/
Run with Race Detection
go test -race ./cmd/server/tests/
Test Organization
Tests are located in cmd/server/tests/:
test_helpers.go- Test utilities and setup functions*_test.go- Test files organized by featureuser_test.go- User management testsauth_test.go- Authentication testsmedia_test.go- Media item tests- etc.
Key Test Helpers
setupTestServer(t *testing.T)- Creates test server with clean DB statecreateTestUserOnce(t, db)- Gets/creates standard admin usercreateRegularUserOnce(t, db)- Gets/creates additional test usersloginWithCredentials(t, server, email, password)- Returns auth token
Bruno API Tests
API integration tests in bruno/ also use the test email domain:
- Login test:
testuser@tests.bookhoard.internal - Register test:
testuser@tests.bookhoard.internal - Profile update test:
updated@tests.bookhoard.internal
See: Bruno Documentation