Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Commit

Permalink
test: init playwright
Browse files Browse the repository at this point in the history
  • Loading branch information
foxminchan committed Jun 9, 2024
1 parent b9d4043 commit 8e3f49a
Show file tree
Hide file tree
Showing 7 changed files with 187 additions and 20 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -906,3 +906,7 @@ FodyWeavers.xsd
# Additional files built by Visual Studio

# End of https://www.toptal.com/developers/gitignore/api/csharp,visualstudio,aspnetcore,visualstudiocode
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,20 +69,20 @@ Build an e-commerce web site with minimum functionality below:

## Technical Stack

- [ASP.NET Core 8.0](https://docs.microsoft.com/en-us/aspnet/core/?view=aspnetcore-8.0)
- [htmx](https://htmx.org/)
- [Alphine.js](https://alpinejs.dev/)
- [///\_hyperscript](https://hyperscript.org/)
- [Next.js 14.0](https://nextjs.org/)
- [ASP.NET Core 8.0](https://docs.microsoft.com/en-us/aspnet/core/?view=aspnetcore-8.0)
- [Duende IdentityServer 7.0](https://duendesoftware.com/products/identityserver)
- [Redis](https://redis.io/)
- [Postgres](https://www.postgresql.org/)
- [Aspire](https://learn.microsoft.com/dotnet/aspire)
- [Yarp](https://microsoft.github.io/reverse-proxy/)
- [OpenTelemetry](https://opentelemetry.io/)
- [NUKE](https://nuke.build/)
- [Semantic Kernel](aka.ms/semantic-kernel)
- [OpenAI](https://openai.com/)
- [Semantic Kernel](aka.ms/semantic-kernel)
- [NUKE](https://nuke.build/)

## Software Architecture

Expand All @@ -106,11 +106,11 @@ Build an e-commerce web site with minimum functionality below:

- Get the latest source code: [https://github.com/foxminchan/RookieShop](https://github.com/foxminchan/RookieShop)
- Install & start Docker Desktop: [https://docs.docker.com/engine/install/](https://docs.docker.com/engine/install/)
- Install k3d: [https://k3d.io/](https://k3d.io/)
- Install .NET 8.0 SDK: [https://dotnet.microsoft.com/download](https://dotnet.microsoft.com/download)
- Install Node.js: [https://nodejs.org/en/download/](https://nodejs.org/en/download/)
- Install bun: [https://bun.sh/](https://bun.sh/)
- Install Stripe CLI: [https://stripe.com/docs/stripe-cli](https://stripe.com/docs/stripe-cli)
- Install k3d: [https://k3d.io/](https://k3d.io/)
- Open AI API Key: [https://platform.openai.com/](https://platform.openai.com/)

#### Windows with Visual Studio
Expand All @@ -130,7 +130,7 @@ Build an e-commerce web site with minimum functionality below:
```bash
# Setup the tools

npm install
npm install --force
dotnet tool restore

# Install the dependencies for the .NET Core projects
Expand Down
Binary file removed bun.lockb
Binary file not shown.
Empty file added e2e/login.setup.ts
Empty file.
104 changes: 89 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@playwright/test": "^1.44.1",
"@types/node": "^20.14.2",
"@vuepress/bundler-vite": "2.0.0-rc.12",
"dotenv": "^16.4.5",
"husky": "^9.0.11",
"vue": "^3.4.27",
"vuepress": "2.0.0-rc.12",
Expand Down
86 changes: 86 additions & 0 deletions playwright.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
import { defineConfig, devices } from "@playwright/test";

/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
require("dotenv").config();

/**
* See https://playwright.dev/docs/test-configuration.
*/
export default defineConfig({
testDir: "./e2e",
/* 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:5045",

/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: "on-first-retry",
...devices["Desktop Chrome"],
},

/* Configure projects for major browsers */
projects: [
{
name: "setup",
testMatch: "**/*.setup.ts",
},
// {
// 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:
"dotnet run --project src/RookieShop.AppHost/RookieShop.AppHost.csproj",
url: "http://localhost:5045",
reuseExistingServer: !process.env.CI,
stderr: "pipe",
stdout: "pipe",
timeout: process.env.CI ? 5 * 60_000 : 60_000,
},
});

0 comments on commit 8e3f49a

Please sign in to comment.