-
Notifications
You must be signed in to change notification settings - Fork 0
[Feat] 프로필 페이지 E2E 테스트 코드 작성 #144
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
Changes from 5 commits
316e940
1dca8d8
719e255
4fc2528
bdcdb4a
a76b457
f46dfb9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| import { expect, test } from '@playwright/test'; | ||
|
|
||
| test('나의 프로필 페이지로 접속 시 마이페이지로 리다이렉트 되는 지 테스트', async ({ page }) => { | ||
| // 나의 프로필 페이지 방문 | ||
| await page.goto('/profile/1'); | ||
|
|
||
| // redirect 대기 | ||
| await expect(page).toHaveURL('/mypage'); | ||
| }); | ||
|
|
||
| test('존재하지 않는 프로필 페이지로 접속 시 404 리다이렉트 되는 지 테스트', async ({ page }) => { | ||
| // 나의 프로필 페이지 방문 | ||
| await page.goto('/profile/4'); | ||
|
|
||
| // redirect 대기 | ||
| await expect(page.getByTestId('not-found-user')).toBeVisible(); | ||
| }); | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,78 @@ | ||
| import { defineConfig, devices } from '@playwright/test'; | ||
| /** | ||
| * Read environment variables from file. | ||
| * https://github.com/motdotla/dotenv | ||
| */ | ||
| import dotenv from 'dotenv'; | ||
| import path from 'path'; | ||
| dotenv.config({ path: path.resolve(__dirname, '.env.test') }); | ||
|
|
||
| /** | ||
| * See https://playwright.dev/docs/test-configuration. | ||
| */ | ||
| export default defineConfig({ | ||
| testDir: './e2e/tests', | ||
| /* Run tests in files in parallel */ | ||
| fullyParallel: true, | ||
| /* Fail the build on CI if you accidentally left test.only in the source code. */ | ||
| forbidOnly: !!process.env.CI, | ||
| /* Retry on CI only */ | ||
| retries: process.env.CI ? 2 : 0, | ||
| /* Opt out of parallel tests on CI. */ | ||
| workers: process.env.CI ? 1 : undefined, | ||
| /* Reporter to use. See https://playwright.dev/docs/test-reporters */ | ||
| reporter: 'html', | ||
| /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ | ||
| use: { | ||
| /* Base URL to use in actions like `await page.goto('')`. */ | ||
| baseURL: 'http://localhost:3000', | ||
|
|
||
| /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ | ||
| trace: 'on-first-retry', | ||
| }, | ||
|
|
||
| /* Configure projects for major browsers */ | ||
| projects: [ | ||
| { | ||
| name: 'chromium', | ||
| use: { ...devices['Desktop Chrome'] }, | ||
| }, | ||
|
|
||
| { | ||
| name: 'firefox', | ||
| use: { ...devices['Desktop Firefox'] }, | ||
| }, | ||
|
|
||
| { | ||
| name: 'webkit', | ||
| use: { ...devices['Desktop Safari'] }, | ||
| }, | ||
|
|
||
| /* Test against mobile viewports. */ | ||
| // { | ||
| // name: 'Mobile Chrome', | ||
| // use: { ...devices['Pixel 5'] }, | ||
| // }, | ||
| // { | ||
| // name: 'Mobile Safari', | ||
| // use: { ...devices['iPhone 12'] }, | ||
| // }, | ||
|
|
||
| /* Test against branded browsers. */ | ||
| // { | ||
| // name: 'Microsoft Edge', | ||
| // use: { ...devices['Desktop Edge'], channel: 'msedge' }, | ||
| // }, | ||
| // { | ||
| // name: 'Google Chrome', | ||
| // use: { ...devices['Desktop Chrome'], channel: 'chrome' }, | ||
| // }, | ||
| ], | ||
|
|
||
| /* Run your local dev server before starting the tests */ | ||
| webServer: { | ||
| command: 'pnpm dev', | ||
| url: 'http://localhost:3000', | ||
| reuseExistingServer: !process.env.CI, | ||
| }, | ||
| }); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,23 +11,16 @@ declare global { | |
| } | ||
| } | ||
|
|
||
| const config = { | ||
| enabledInDevelopment: true, | ||
| enabledInProduction: true, | ||
| onUnhandledRequest: 'bypass' as const, // bypass | warn | error | ||
| }; | ||
|
|
||
| export const initMocks = async () => { | ||
| // MSW 활성화 여부 확인 | ||
| const isDev = process.env.NODE_ENV === 'development'; | ||
| const shouldEnable = isDev ? config.enabledInDevelopment : config.enabledInProduction; | ||
| const shouldEnable = process.env.NEXT_PUBLIC_MSW_ENABLED === 'true'; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: fd -t f "browser|index" src/mockRepository: WeGo-Together/WeGo_FrontEnd Length of output: 108 🏁 Script executed: cat -n src/mock/index.tsRepository: WeGo-Together/WeGo_FrontEnd Length of output: 1525 🏁 Script executed: cat -n src/mock/browser.tsRepository: WeGo-Together/WeGo_FrontEnd Length of output: 661 MSW init flow looks correct; one small type import polish
One improvement: Mark -import { SetupWorker } from 'msw/browser';
+import type { SetupWorker } from 'msw/browser';
🤖 Prompt for AI Agents |
||
| if (!shouldEnable) return; | ||
|
|
||
| if (typeof window === 'undefined') { | ||
| // Server | ||
| const { server } = await import('./server'); | ||
| server.listen({ | ||
| onUnhandledRequest: config.onUnhandledRequest, | ||
| onUnhandledRequest: 'bypass', | ||
| }); | ||
| console.log('🔶 MSW Server ready'); | ||
| } else { | ||
|
|
@@ -41,7 +34,7 @@ export const initMocks = async () => { | |
| worker.use(...handlers); | ||
| // 최초 실행: start() | ||
| await worker.start({ | ||
| onUnhandledRequest: config.onUnhandledRequest, | ||
| onUnhandledRequest: 'bypass', | ||
| }); | ||
| console.log('🔷 MSW Client ready'); | ||
| } else { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
# First, check if the file exists and read its content cat -n e2e/tests/profile.test.tsRepository: WeGo-Together/WeGo_FrontEnd
Length of output: 637
🏁 Script executed:
Repository: WeGo-Together/WeGo_FrontEnd
Length of output: 93
🏁 Script executed:
Repository: WeGo-Together/WeGo_FrontEnd
Length of output: 658
🏁 Script executed:
# Read the Playwright configuration to verify baseURL and browsers cat -n playwright.config.tsRepository: WeGo-Together/WeGo_FrontEnd
Length of output: 2769
Profile E2E tests are straightforward and align with routing behavior
page.goto('/profile/1')withexpect(page).toHaveURL('/mypage')aligns with the baseURL configuration (http://localhost:3000).getByTestId('not-found-user')matches the component change and should be robust.The comment on line 12 needs updating: it says "나의 프로필 페이지 방문" (visiting my profile page) but should reflect that it's testing a non-existent profile (e.g., "존재하지 않는 프로필 페이지 방문").
🤖 Prompt for AI Agents