feat: SDLC database separation for CI/testing #35

Merged
david merged 12 commits from feat/e2e-test-improvements into main 2026-05-11 06:40:06 +00:00
3 changed files with 158 additions and 32 deletions
Showing only changes of commit a9138cfbe4 - Show all commits
+1 -32
View File
@@ -16,9 +16,6 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Clear Bun cache
run: bun pm cache rm || true
- name: Install dependencies - name: Install dependencies
run: bun install run: bun install
@@ -30,37 +27,9 @@ jobs:
- name: Run unit tests - name: Run unit tests
run: bun test src/__tests__/unit/ src/__tests__/*.test.tsx src/__tests__/auth-simple.test.ts run: bun test src/__tests__/unit/ src/__tests__/*.test.tsx src/__tests__/auth-simple.test.ts
e2e-tests:
runs-on: ubuntu-latest
needs: unit-tests
container:
image: docker.notsosm.art/euchre-camp/ci-base:latest
options: --user root
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Clear Bun cache
run: bun pm cache rm || true
- name: Install dependencies
run: bun install
- name: Generate Prisma client
run: bun x prisma generate
env:
DATABASE_URL: postgresql://user:pass@localhost:5432/dummy
- name: Run E2E tests
run: npm run test:acceptance:cucumber:prod
env:
DATABASE_URL: postgresql://euchre_camp:${{ secrets.DB_PASSWORD }}@dhg.lol:5432/euchre_camp_dev
DATABASE_PROVIDER: postgresql
analyze-bump-type: analyze-bump-type:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: e2e-tests needs: unit-tests
steps: steps:
- name: Checkout code - name: Checkout code
+47
View File
@@ -0,0 +1,47 @@
/**
* Epic 3: Rankings & Public Data
* Acceptance Test: Player Rankings Page
*
* User Story: As a visitor, I want to view player rankings so that I can see top players
*
* Acceptance Criteria:
* - Sortable rankings table
* - Columns: Rank, Name, Elo, Win Rate, Games Played
* - Search/filter functionality
* - Pagination
*/
import { test, expect } from '@playwright/test';
test.describe('Epic 3: Rankings Page', () => {
test('Rankings page loads and displays rankings table', async ({ page }) => {
await page.goto('http://localhost:3000/rankings');
// Check page title or heading
await expect(page.locator('h1, h2')).toContainText(/rankings?/i);
// Check for rankings table
await expect(page.locator('table')).toBeVisible();
});
test('Rankings table displays player columns', async ({ page }) => {
await page.goto('http://localhost:3000/rankings');
// Check for expected column headers
const table = page.locator('table');
await expect(table).toBeVisible();
// Check for column headers (may vary based on implementation)
const headerCount = await page.locator('th').count();
expect(headerCount).toBeGreaterThan(0);
});
test('Rankings page is publicly accessible (no login required)', async ({ page }) => {
// Navigate directly to rankings without logging in
await page.goto('http://localhost:3000/rankings');
// Page should load without redirecting to login
await expect(page).toHaveURL(/.*rankings.*/);
await expect(page.locator('body')).toBeVisible();
});
});
+110
View File
@@ -0,0 +1,110 @@
import { test, expect } from '@playwright/test'
import { prisma } from '@/lib/prisma'
test.describe('Home Page', () => {
const createdIds = {
players: [] as number[],
events: [] as number[],
matches: [] as number[],
users: [] as string[],
}
test.afterEach(async () => {
await prisma.match.deleteMany({ where: { id: { in: createdIds.matches } } })
await prisma.event.deleteMany({ where: { id: { in: createdIds.events } } })
await prisma.player.deleteMany({ id: { in: createdIds.players } })
await prisma.user.deleteMany({ where: { id: { in: createdIds.users } } })
createdIds.players = []
createdIds.events = []
createdIds.matches = []
createdIds.users = []
})
test('displays top 10 players section', async ({ page }) => {
const timestamp = Date.now()
for (let i = 0; i < 3; i++) {
const player = await prisma.player.create({
data: {
name: `Home Test Player ${timestamp} ${i + 1}`,
normalizedName: `home_test_player_${timestamp}_${i + 1}`.toLowerCase(),
currentElo: 2000 - i * 10,
gamesPlayed: 10,
wins: 7,
},
})
createdIds.players.push(player.id)
}
await page.goto('/')
await expect(page.locator('text=Top 10 Players')).toBeVisible()
await expect(
page.locator(`a:has-text("Home Test Player ${timestamp} 1")`)
).toBeVisible()
})
test('displays club president section', async ({ page }) => {
const timestamp = Date.now()
const user = await prisma.user.create({
data: {
email: `president-${timestamp}@example.com`,
name: `Club President ${timestamp}`,
role: 'club_admin',
},
})
createdIds.users.push(user.id)
await page.goto('/')
await expect(page.locator('text=Club President')).toBeVisible()
})
test('displays most recent tournament section', async ({ page }) => {
const timestamp = Date.now()
const tournament = await prisma.event.create({
data: {
name: `Recent Tournament ${timestamp}`,
eventType: 'tournament',
eventDate: new Date(Date.now() + 86400000),
status: 'completed',
},
})
createdIds.events.push(tournament.id)
const p1 = await prisma.player.create({
data: { name: `HP1 ${timestamp}`, normalizedName: `hp1_${timestamp}`.toLowerCase(), currentElo: 1500 },
})
const p2 = await prisma.player.create({
data: { name: `HP2 ${timestamp}`, normalizedName: `hp2_${timestamp}`.toLowerCase(), currentElo: 1480 },
})
const p3 = await prisma.player.create({
data: { name: `HP3 ${timestamp}`, normalizedName: `hp3_${timestamp}`.toLowerCase(), currentElo: 1450 },
})
const p4 = await prisma.player.create({
data: { name: `HP4 ${timestamp}`, normalizedName: `hp4_${timestamp}`.toLowerCase(), currentElo: 1420 },
})
createdIds.players.push(p1.id, p2.id, p3.id, p4.id)
const match = await prisma.match.create({
data: {
eventId: tournament.id,
player1P1Id: p1.id,
player1P2Id: p2.id,
player2P1Id: p3.id,
player2P2Id: p4.id,
team1Score: 10,
team2Score: 5,
status: 'completed',
playedAt: new Date(),
},
})
createdIds.matches.push(match.id)
await page.goto('/')
await expect(page.locator('text=Most Recent Tournament')).toBeVisible()
await expect(page.locator(`text=Recent Tournament ${timestamp}`)).toBeVisible()
})
})