internal/auth is pure logic (bcrypt hashing, session token generation) with no DB access — persistence for account/app_user/session lives in internal/store like everything else, via migration 0003. account is the tenant (Mandant); app_user is a login inside one account; session is a real server-side row (not a signed stateless token) so logout can actually end a session rather than the client just forgetting a JWT. submission.account_id is NOT NULL — added directly rather than the nullable-then-backfill dance, since no submission rows exist anywhere yet (verified empty on the test server before writing the migration). Added as migration 0003 (new file), not folded into an earlier one, since 0001/0002 are already applied on the test server. store.ErrNotFound lets callers distinguish "wrong email" / "unknown session" from a genuine DB error — matters for login, where those two cases should both fail closed but for different reasons. Not yet wired into internal/web — that's the next commit. All of this is tested against real Postgres (14 store tests green) but isn't reachable from any HTTP handler yet. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
92 lines
2.3 KiB
Go
92 lines
2.3 KiB
Go
package store_test
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/netcell-it/deklarix/internal/store"
|
|
)
|
|
|
|
// Diese Tests brauchen eine laufende Postgres-Instanz und werden ohne
|
|
// DATABASE_URL übersprungen, statt eine Verbindung vorzutäuschen.
|
|
func testDatabaseURL(t *testing.T) string {
|
|
t.Helper()
|
|
url := os.Getenv("DATABASE_URL")
|
|
if url == "" {
|
|
t.Skip("DATABASE_URL nicht gesetzt, überspringe Store-Integrationstest")
|
|
}
|
|
return url
|
|
}
|
|
|
|
func TestMigrateAndOpen(t *testing.T) {
|
|
url := testDatabaseURL(t)
|
|
|
|
if err := store.Migrate(url); err != nil {
|
|
t.Fatalf("Migrate: %v", err)
|
|
}
|
|
|
|
s, err := store.Open(context.Background(), url)
|
|
if err != nil {
|
|
t.Fatalf("Open: %v", err)
|
|
}
|
|
defer s.Close()
|
|
|
|
var tableCount int
|
|
err = s.Pool.QueryRow(context.Background(), `
|
|
SELECT count(*) FROM information_schema.tables
|
|
WHERE table_schema = 'public' AND table_name = ANY($1)
|
|
`, []string{"submission", "asset", "extraction", "finding", "evidence_package", "participant"}).Scan(&tableCount)
|
|
if err != nil {
|
|
t.Fatalf("query tables: %v", err)
|
|
}
|
|
if tableCount != 6 {
|
|
t.Fatalf("expected 6 tables, got %d", tableCount)
|
|
}
|
|
}
|
|
|
|
func TestFindingIsAppendOnly(t *testing.T) {
|
|
url := testDatabaseURL(t)
|
|
|
|
if err := store.Migrate(url); err != nil {
|
|
t.Fatalf("Migrate: %v", err)
|
|
}
|
|
|
|
s, err := store.Open(context.Background(), url)
|
|
if err != nil {
|
|
t.Fatalf("Open: %v", err)
|
|
}
|
|
defer s.Close()
|
|
|
|
ctx := context.Background()
|
|
|
|
acc, err := s.CreateAccount(ctx, "Test-Mandant")
|
|
if err != nil {
|
|
t.Fatalf("create account: %v", err)
|
|
}
|
|
|
|
var submissionID string
|
|
err = s.Pool.QueryRow(ctx, `
|
|
INSERT INTO submission (account_id, platform, post_type) VALUES ($1, 'instagram', 'reel')
|
|
RETURNING id
|
|
`, acc.ID).Scan(&submissionID)
|
|
if err != nil {
|
|
t.Fatalf("insert submission: %v", err)
|
|
}
|
|
|
|
var findingID string
|
|
err = s.Pool.QueryRow(ctx, `
|
|
INSERT INTO finding (submission_id, rule_id, rule_version, severity, title, fix, sources)
|
|
VALUES ($1, 'WK-004', 3, 'hoch', 'Testfeststellung', 'Testkorrektur', '{}')
|
|
RETURNING id
|
|
`, submissionID).Scan(&findingID)
|
|
if err != nil {
|
|
t.Fatalf("insert finding: %v", err)
|
|
}
|
|
|
|
_, err = s.Pool.Exec(ctx, `UPDATE finding SET title = 'geändert' WHERE id = $1`, findingID)
|
|
if err == nil {
|
|
t.Fatal("expected UPDATE on finding to be rejected, but it succeeded")
|
|
}
|
|
}
|