update todos

This commit is contained in:
2026-01-31 15:55:02 +01:00
parent d183fb4b53
commit e48b386b54
2 changed files with 60 additions and 8 deletions
+37
View File
@@ -194,3 +194,40 @@ for i in range(10):
``` ```
``` ```
</markdown_spec> </markdown_spec>
<test_coverage>
## Test Coverage Tracking
The project uses SimpleCov to track test coverage. Coverage data is stored in `coverage/.resultset.json` after each test run.
### Coverage Information
- **Location**: `coverage/.resultset.json`
- **Format**: JSON file with line-by-line coverage data for each Ruby file
- **Generated by**: SimpleCov gem (runs automatically with tests)
- **HTML Report**: `coverage/index.html` (open in browser for detailed report)
### Reading Coverage Data
When checking test coverage:
1. Run tests: `bin/rails test`
2. Check overall coverage in console output (e.g., "Line Coverage: 85.7% (707 / 825)")
3. For detailed per-file coverage: open `coverage/index.html` in a browser
4. The `.resultset.json` file contains raw coverage data if programmatic access is needed
### Coverage Goals
- Aim for **80%+ line coverage** for all models and helpers
- Controllers should have **all actions tested** (both success and error paths)
- Critical business logic should have **100% coverage**
### Files Excluded from Coverage
- `config/` - Configuration files
- `db/` - Database migrations and schema
- `test/` - Test files themselves
- `vendor/` - Third-party code
### Coverage Notes for Agents
- Always run tests after making changes to verify coverage isn't decreasing
- If adding new methods/classes, add corresponding tests
- Coverage report shows which lines are NOT covered (highlighted in red in HTML report)
- Missing coverage often indicates edge cases or error paths not tested
</test_coverage>
+23 -8
View File
@@ -109,14 +109,29 @@
## Testing ## Testing
- [ ] **Controller tests** for all actions - [x] **Controller tests** for all actions
- [ ] **System tests** for critical user flows - [x] EntriesController (index, show, edit, update, download, filters, search)
- [ ] Public browsing and search - [x] PasswordResetsController (new, create, edit, update, token validation)
- [ ] Contributor creates/edits entry - [x] Existing tests: Sessions, Invitations, Setup, Admin controllers, Comments, Requests
- [ ] Reviewer workflow - [x] **System tests** for critical user flows
- [ ] Admin user management - [x] Public browsing and search
- [ ] **Integration tests** for authentication flows - [x] Contributor creates/edits entry
- [ ] **Performance tests** for search queries - [ ] Reviewer workflow (pending feature implementation)
- [x] Admin user management
- [x] **Integration tests** for authentication flows
- [x] Sign in/sign out flows
- [x] Remember me functionality
- [x] Session timeout
- [x] Rate limiting
- [x] Password reset flow
- [x] Invitation acceptance flow
- [x] **Performance tests** for search queries
- [x] Full text search benchmarks
- [x] Language-specific search
- [x] Alphabetical browsing
- [x] Category filtering
- [x] Combined filters
- [x] XLSX download performance
## Deployment ## Deployment