oatpp-authkit/test
Uwe Schuster 9976efe1de #16 (audit L-1..L-8): fix the low-severity findings
L-1 RequireRole: guard std::stoi on the bundle id — a non-numeric/out-of-range
    value now yields a clean 401 instead of an uncaught exception → 500.
    AuthPrincipal::id documented as numeric-only (carry UUIDs in username).
L-2 SmtpTransport: require TLS (CURLUSESSL_ALL) for non-loopback relays so a
    stripped STARTTLS can't downgrade credentials/body to cleartext; localhost
    relay stays opportunistic.
L-3 AuditLog: escapeJson now escapes all control chars (RFC 8259) so a newline
    in a field can't forge/corrupt the audit JSON; SKIP_FIELDS gains credential
    names (password/passwordHash/tlsCertDn/apiKey/token/secret) so secrets never
    land in changed_fields.
L-4 ws/Hub: consume the thread_local auth handoff once, up front, and clear it
    unconditionally — a stale value can't attach to a later connection on a
    reused worker thread.
L-5 TemporalRepository: default id generator draws 128 bits from the platform
    CSPRNG (std::random_device) per call instead of a once-seeded mt19937_64,
    so entity_ids aren't predictable from observed output.
L-6 AuthInterceptor: expired-session sweep is now a lock-free atomic timer and
    exception-isolated; documented that resolveBySessionHash() must enforce
    expiry at query time (the sweep is GC only).
L-7 new util/ConstantTime.hpp (constantTimeEquals) + TokenHasher doc requiring a
    >=256-bit cryptographic hash.
L-8 IQueryable: likeEscape + Field::likeContains/likePrefix emit
    `LIKE ? ESCAPE '\'` with %/_/\ escaped for untrusted terms; documented the
    compile-time identifier-source invariant.

Tests: new test_constant_time; likeEscape/likeContains/likePrefix cases added to
test_queryable. All 20 ctest targets pass. README + header docs updated.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-05-29 14:03:01 +02:00
..
CMakeLists.txt #16 (audit L-1..L-8): fix the low-severity findings 2026-05-29 14:03:01 +02:00
test_audit_log_repository.cpp #13: TemporalRepository save — stable-live + historical-copy semantics 2026-04-30 00:10:03 +02:00
test_body_size_limit.cpp #4: BodySizeLimitInterceptor — fail-closed on missing/malformed Content-Length 2026-04-25 21:36:50 +02:00
test_constant_time.cpp #16 (audit L-1..L-8): fix the low-severity findings 2026-05-29 14:03:01 +02:00
test_json_serialization.cpp #6: route ad-hoc JSON through ObjectMapper (Option A — DI everywhere, all-in-one) 2026-04-25 21:56:05 +02:00
test_negotiation.cpp #2: Browser-friendly 401/403 — content-negotiate JSON vs HTML/redirect 2026-04-25 13:23:08 +02:00
test_origin_check.cpp #16 (audit M-1..M-12): fix the medium-severity findings 2026-05-29 13:53:22 +02:00
test_queryable.cpp #16 (audit L-1..L-8): fix the low-severity findings 2026-05-29 14:03:01 +02:00
test_rate_limiter.cpp #16 (audit M-1..M-12): fix the medium-severity findings 2026-05-29 13:53:22 +02:00
test_redacted_field_repository.cpp #16 (audit M-1..M-12): fix the medium-severity findings 2026-05-29 13:53:22 +02:00
test_repository_decorators.cpp #16 (audit H-1..H-5): fix the five high-severity findings 2026-05-29 12:49:03 +02:00
test_repository_interface.cpp #10: TemporalFieldTraits<T> — decouple decorator from canonical column names 2026-04-29 14:23:40 +02:00
test_role_template_schema.cpp #14 PR 1: relocate role_templates module + Atlas migration docs 2026-05-06 12:36:18 +02:00
test_schema_contract.cpp #14 PR 0: replace imperative migration kit with declarative SchemaContract 2026-05-06 12:14:51 +02:00
test_security_headers.cpp #3: SecurityHeadersInterceptor — strict baseline + CspOverride ctor (Option B) 2026-04-25 21:54:58 +02:00
test_session_cookie.cpp #16 (audit M-1..M-12): fix the medium-severity findings 2026-05-29 13:53:22 +02:00
test_smtp_transport.cpp #16 (audit H-1..H-5): fix the five high-severity findings 2026-05-29 12:49:03 +02:00
test_temporal_field_traits.cpp #13: TemporalRepository save — stable-live + historical-copy semantics 2026-04-30 00:10:03 +02:00
test_token_extract.cpp #16 (audit M-1..M-12): fix the medium-severity findings 2026-05-29 13:53:22 +02:00
test_user_permission_schema.cpp #14 PRs 2 & 3: relocate user_property_permissions + user_group_permissions 2026-05-06 12:39:52 +02:00
test_user_schema.cpp #14 PR 4: relocate users with temporal shape (Option B) 2026-05-06 12:57:59 +02:00