Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
pweyck committed Oct 1, 2024
1 parent 2a8bd95 commit 8f21222
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 0 deletions.
90 changes: 90 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,93 @@ jobs:
with:
name: meteor-admin-sdk--playwright-test-results
path: packages/admin-sdk/playwright-report/

ats:
name: Acceptance tests
timeout-minutes: 20
runs-on: ubuntu-latest
needs:
- circular-dependencies
- unit-tests
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
TZ: Europe/Berlin
steps:
- name: Setup shopware
uses: shopware/setup-shopware@main
with:
path: shopware/
install: "true"
installAdmin: "true"
installStorefront: "true"
shopware-version: "v6.6.6.1"
env: dev

- name: Checkout
uses: actions/checkout@v4
with:
path: meteor/

- uses: pnpm/action-setup@v3
with:
version: 9

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"

- name: Install dependencies
working-directory: meteor/
run: pnpm install --frozen-lockfile --prefer-offline

- name: Build packages
working-directory: meteor/
run: npx turbo run build

- name: Symlink plugin
working-directory: shopware/custom/plugins/
run: ln -s ../../../meteor/examples/TestPlugin

- name: Activate TestPlugin
working-directory: shopware/
run: bin/console plugin:install --refresh --activate TestPlugin

- name: Build assets
working-directory: shopware/
run: |
composer run build:js
bin/console assets:install
- name: Start webserver
working-directory: shopware/
run: symfony server:start --allow-http --no-tls --port=8000 -d

- name: Test
working-directory: shopware/
run: curl $APP_URL

- name: Install playwright
working-directory: meteor/examples/TestPlugin/tests/acceptance/
run: |
pnpm install --frozen-lockfile --prefer-offline
npx playwright install --with-deps
- name: Run Playwrigth
working-directory: meteor/examples/TestPlugin/tests/acceptance/
run: npx playwright test --reporter=github --trace=on-first-retry -- tests/action-button.spec.ts

- uses: actions/upload-artifact@v4
if: always()
with:
name: ats-test-results
path: meteor/examples/TestPlugin/tests/acceptance/test-results/

- uses: actions/upload-artifact@v4
if: always()
with:
name: ats-report
path: meteor/examples/TestPlugin/tests/acceptance/playwright-report/
2 changes: 2 additions & 0 deletions examples/TestPlugin/tests/acceptance/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ if (process.env['ADMIN_URL']) {
process.env['ADMIN_URL'] = process.env['APP_URL'] + 'admin/';
}

console.debug(process.env.CI);

/**
* See https://playwright.dev/docs/test-configuration.
*/
Expand Down

0 comments on commit 8f21222

Please sign in to comment.