Skip to content

Commit

Permalink
test: add playwright tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kernoeb committed Jan 29, 2024
1 parent 462e3fb commit 6599c9e
Show file tree
Hide file tree
Showing 9 changed files with 231 additions and 1 deletion.
1 change: 1 addition & 0 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@
<v-tooltip top>
<template #activator="{ on, attrs }">
<v-btn
id="change-planning-button"
v-bind="attrs"
icon
v-on="on"
Expand Down
5 changes: 5 additions & 0 deletions test/real-world/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
playwright-report
test-results
Dockerfile
real-world-test.sh
5 changes: 5 additions & 0 deletions test/real-world/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules/
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
10 changes: 10 additions & 0 deletions test/real-world/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM mcr.microsoft.com/playwright:v1.41.1-jammy

WORKDIR /tmp/test

COPY package.json package-lock.json ./
RUN npm ci
COPY . .

ENV CI=true
CMD ["npx", "playwright", "test"]
91 changes: 91 additions & 0 deletions test/real-world/package-lock.json

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

14 changes: 14 additions & 0 deletions test/real-world/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "real-world",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.41.1",
"@types/node": "^20.11.10"
}
}
18 changes: 18 additions & 0 deletions test/real-world/planning.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// @ts-check
const { test, expect } = require('@playwright/test')

test('has title', async ({ page }) => {
await page.goto('/')
await expect(page).toHaveTitle('PlanningSup')
})

test('check page', async ({ page }) => {
await page.goto('/')
await expect(page.locator('text=IUT de Vannes | BUT INFO | 1ère année | GR 1A | GR 1A1')).toBeVisible()
})

test('change edt', async ({ page }) => {
await page.goto('/')
await page.click('#change-planning-button')
await expect(page.locator('.selected_planning')).toHaveText('IUT de Vannes')
})
80 changes: 80 additions & 0 deletions test/real-world/playwright.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
// @ts-check
const { defineConfig, devices } = require('@playwright/test')

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

/**
* @see https://playwright.dev/docs/test-configuration
*/
module.exports = defineConfig({
testDir: './.',
/* Timeout for each test */
timeout: 5000,
/* 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 ? 1 : 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: process.env.CI ? 'null' : '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: process.env.BASE_URL || 'http://localhost:31022',

/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: process.env.CI ? 'off' : '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: 'npm run start',
// url: 'http://127.0.0.1:3000',
// reuseExistingServer: !process.env.CI,
// },
})
8 changes: 7 additions & 1 deletion test/real-world/real-world-test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

BASE_URL="http://localhost:31022/api/v1"
export BASE_URL="http://localhost:31022/api/v1"

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd "$SCRIPT_DIR"/../../ || exit 1
Expand Down Expand Up @@ -101,3 +101,9 @@ fi

echo "CALENDAR INFO working!"

# Playwright tests
cd "$SCRIPT_DIR" || exit 1
docker build -t test-playwright . || exit 1
docker run -it --rm --ipc=host --network=host --init test-playwright:latest || exit 1

echo "Tests passed!"

0 comments on commit 6599c9e

Please sign in to comment.