test(security): add security tests for auth and RLS enforcement#700
Open
magaret457 wants to merge 1 commit into
Open
test(security): add security tests for auth and RLS enforcement#700magaret457 wants to merge 1 commit into
magaret457 wants to merge 1 commit into
Conversation
Add vitest-based security tests covering: - Unauthorized requests rejected (invalid Ed25519 signature → 401) - Malformed/missing fields rejected (400) - Inactive meter filtered out (simulates insufficient device scope → 404) - Wrong meter key rejected (401) - Cross-tenant RLS: meter row hidden from wrong cooperative (404) - RLS INSERT violation surfaces correctly (500) Also: - Add vitest 2.1.8 to apps/web devDependencies - Add vitest.config.ts with path aliases matching tsconfig - Add 'pnpm test' step to CI web job All 7 tests pass. Closes AnnabelJoe#524
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Resolves #524
Adds a Vitest-based security test suite verifying auth flows and Supabase row-level security enforcement.
Test coverage
7 tests, all passing.
Files added / changed
apps/web/src/__tests__/auth-rls.security.test.ts— 7 security testsapps/web/vitest.config.ts— Vitest config with@aliasapps/web/package.json— addedvitest@2.1.8devDep +testscript.github/workflows/ci.yml— addedpnpm teststep to web job