-
Notifications
You must be signed in to change notification settings - Fork 93
test(e2e): add Playwright coverage for Raise Dispute flow #298
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Benjtalkshow
merged 4 commits into
boundlessfi:main
from
DevSolex:feat/e2e-raise-dispute-280
Jun 29, 2026
+555
−100
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
9c8370f
test(e2e): add Playwright coverage for Raise Dispute flow (#280)
DevSolex 0fc267d
test(e2e): address PR review — shared mocks, UNDER_REVIEW cases, requ…
DevSolex a8b0056
chore(e2e): drop unused LEADERBOARD_STUBS import
Benjtalkshow e454aab
chore(e2e): migrate bounty-application.spec to shared mocks helpers
Benjtalkshow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,122 @@ | ||
| /** | ||
| * Shared e2e mock helpers. | ||
| * | ||
| * Provides the baseline auth + GraphQL route stubs used across spec files. | ||
| * Each spec can register additional page.route() calls *after* calling these | ||
| * helpers to override specific operations (Playwright matches the first | ||
| * registered handler that accepts the request). | ||
| */ | ||
|
|
||
| import type { Page } from "@playwright/test"; | ||
|
|
||
| export const WALLET_ADDRESS = | ||
| "GCEZWKCA5VLDNRLN3RPRJMRZOX3Z6G5CHCGYWDOUALPIF5JD4PI21JQ"; | ||
|
|
||
| export interface MockSession { | ||
| user: { | ||
| id: string; | ||
| name: string; | ||
| email: string; | ||
| image: string | null; | ||
| walletAddress: string; | ||
| }; | ||
| session: { token: string }; | ||
| } | ||
|
|
||
| export function makeSession( | ||
| userId: string, | ||
| name: string, | ||
| email: string, | ||
| ): MockSession { | ||
| return { | ||
| user: { | ||
| id: userId, | ||
| name, | ||
| email, | ||
| image: null, | ||
| walletAddress: WALLET_ADDRESS, | ||
| }, | ||
| session: { token: "fake-e2e-token" }, | ||
| }; | ||
| } | ||
|
|
||
| /** Stub all /api/auth/** routes to return the given session object. */ | ||
| export async function stubAuth(page: Page, session: object): Promise<void> { | ||
| await page.route("**/api/auth/**", async (route) => { | ||
| const url = new URL(route.request().url()); | ||
| if ( | ||
| url.pathname.endsWith("/get-session") || | ||
| url.pathname.endsWith("/session") | ||
| ) { | ||
| await route.fulfill({ | ||
| status: 200, | ||
| contentType: "application/json", | ||
| body: JSON.stringify(session), | ||
| }); | ||
| } else { | ||
| await route.fulfill({ | ||
| status: 200, | ||
| contentType: "application/json", | ||
| body: "{}", | ||
| }); | ||
| } | ||
| }); | ||
| } | ||
|
|
||
| /** | ||
| * Stub /api/graphql for a specific set of operations. | ||
| * Pass a map of operationName → response data; any unmatched operation is aborted. | ||
| */ | ||
| export async function stubGraphQL( | ||
| page: Page, | ||
| handlers: Record<string, unknown>, | ||
| ): Promise<void> { | ||
| await page.route("**/api/graphql", async (route) => { | ||
| let body: { operationName?: string } = {}; | ||
| try { | ||
| body = JSON.parse(route.request().postData() ?? "{}") as { | ||
| operationName?: string; | ||
| }; | ||
| } catch { | ||
| /* ignore */ | ||
| } | ||
| const op = body.operationName ?? ""; | ||
| if (op in handlers) { | ||
| await route.fulfill({ | ||
| status: 200, | ||
| contentType: "application/json", | ||
| body: JSON.stringify({ data: handlers[op] }), | ||
| }); | ||
| } else { | ||
| await route.abort("failed"); | ||
| } | ||
| }); | ||
| } | ||
|
|
||
| /** Returns the hostname from BASE_URL (or 'localhost' as fallback). */ | ||
| export function baseUrlHostname(): string { | ||
| return new URL(process.env.BASE_URL ?? "http://localhost:3000").hostname; | ||
| } | ||
|
|
||
| /** Seed the session cookie against the correct host. */ | ||
| export async function seedSessionCookie(page: Page): Promise<void> { | ||
| await page.context().addCookies([ | ||
| { | ||
| name: "boundless_auth.session_token", | ||
| value: "fake-e2e-token", | ||
| domain: baseUrlHostname(), | ||
| path: "/", | ||
| httpOnly: false, | ||
| secure: false, | ||
| sameSite: "Lax", | ||
| }, | ||
| ]); | ||
| } | ||
|
|
||
| /** Null-response stubs for leaderboard operations that every detail page queries. */ | ||
| export const LEADERBOARD_STUBS: Record<string, unknown> = { | ||
| TopContributors: {}, | ||
| Leaderboard: {}, | ||
| GetLeaderboardUser: {}, | ||
| LeaderboardUser: {}, | ||
| }; | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.