- Add access token blacklist on logout (VEZA-SEC-006) - Extend OAuthService for mock provider injection in tests - Add oauth_google_test.go: full OAuth Google flow with mocked provider - Add oauth_github_test.go: OAuth GitHub flow with PKCE verification - Add token_refresh_test.go: E2E refresh via httpOnly cookies - Add logout_blacklist_test.go: E2E logout + token blacklist - Fix testutils import path in resume_upload_test, track_quota_test - Fix CreatorID -> UserID in track_quota_test - Add test:integration script to package.json Release: v0.911 Keystone
10 lines
365 B
JSON
10 lines
365 B
JSON
{
|
|
"name": "veza-backend-api",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "go build -v ./...",
|
|
"test": "go test -v ./internal/handlers/... ./internal/services/... -short",
|
|
"lint": "test -z \"$(gofmt -l .)\" || (echo 'gofmt needed on:'; gofmt -l .; exit 1)",
|
|
"test:integration": "go test -tags=integration -v ./tests/integration/... -count=1"
|
|
}
|
|
}
|