Skip to content
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

feat: add devcontainers #7

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Image tag should match package.json > @playwright/test
FROM mcr.microsoft.com/playwright:v1.49.1-jammy

RUN apt update && \
apt install sudo && \
usermod -aG sudo pwuser && \
echo "%sudo ALL=(ALL) NOPASSWD:ALL" | tee -a /etc/sudoers > /dev/null

RUN chown pwuser:pwuser -R /home/pwuser
USER pwuser
41 changes: 41 additions & 0 deletions .devcontainer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Devcontainers

Use [Devcontainers](https://code.visualstudio.com/docs/devcontainers/containers) to prepare a fully automated working environment.

Generate the `devcontainer.json` executing:

```shell
.devcontainer/generate_devcontainer.sh
```

Now you should see the file `.devcontainer/devcontainer.json`. At this point you can use your favorite IDE to run Devcontainers

## VSCode

Install the extension https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers

To open the repository with DevContainers do `Ctrl + Shift + P` and enter `Dev Containers: Rebuild and Reopen in Container`. For more options see the Extension documentations.

### Docker

Docker defaults should work fine therefore there is nothing to do.

### Podman

Start Podman service for a regular user (rootless) and make it listen to a socket:

```shell
systemctl --user enable --now podman.socket
```

Restart your OS if necessary and verify that podman listens:

```shell
systemctl --user status podman.socket
```

Go to the Extension Settings:

- `Dev › Containers: Docker Compose Path` set `podman-compose`
- `Dev › Containers: Docker Path` set `podman`
- `Dev › Containers: Docker Socket Path` set `/run/podman/podman.sock`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please add a step on running a devcontainer in vscode like "ctrl+shift+p" to open command palette and enter "Dev Containers: Rebuild and Reopen in Container"

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added, thanks

Binary file added .devcontainer/demo/codegen.mp4
Binary file not shown.
Binary file added .devcontainer/demo/test.mp4
Binary file not shown.
Binary file added .devcontainer/demo/ui.mp4
Binary file not shown.
4 changes: 4 additions & 0 deletions .devcontainer/generate_devcontainer.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

HOSTNAME=$(hostname)
envsubst '${HOSTNAME}' < template.json > devcontainer.json
44 changes: 44 additions & 0 deletions .devcontainer/template.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "trustify-ui-tests",
"build": {
"dockerfile": "Dockerfile"
},
"runArgs": [
"--privileged",
"--userns=keep-id",
"--network=host",
"--add-host=${HOSTNAME}:127.0.0.1",
"-e DISPLAY=:2"
],
"remoteUser": "pwuser",
"features": {
"ghcr.io/devcontainers/features/desktop-lite:1": {
"VNC_RESOLUTION": "1920x1200x16"
}
},
"forwardPorts": [6080, 5901],
"portsAttributes": {
"6080": {
"label": "browser vnc"
},
"5901": {
"label": "real vnc"
}
},
"onCreateCommand": "npx playwright install-deps && npx playwright install",
"postCreateCommand": "npm ci",
"customizations": {
"vscode": {
"extensions": [
"k--kato.intellij-idea-keybindings",
"vadimcn.vscode-lldb",
"ms-playwright.playwright",
"github.vscode-pull-request-github",
"GitHub.github-vscode-theme",
"esbenp.prettier-vscode",
"oderwat.indent-rainbow",
"eamodio.gitlens"
]
}
}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ node_modules/
/playwright-report/
/blob-report/
/playwright/.cache/

.devcontainer/devcontainer.json
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# End-to-end tests for trustify-ui

### Devcontainers

Read our docs for [Devcontainers](./.devcontainer/README.md) if you would like to use it.

### Requirements

- NodeJS 21
Expand Down Expand Up @@ -28,5 +32,5 @@ npx playwright test
- Or if you prefer to run the tests and see the Playwright UI use:

```shell
npm run test
npx playwright test --ui
```
28 changes: 16 additions & 12 deletions package-lock.json

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

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@
"description": "",
"main": "index.js",
"scripts": {
"codegen": "npx playwright codegen http://localhost:8080/",
"test": "npx playwright test --ui --trace on",
"codegen": "npx playwright codegen",
"test": "npx playwright test",
"ui": "npx playwright test --ui --trace on",
"ui-host": "npx playwright test --ui-host=0.0.0.0 --trace on",
"check": "prettier --check './**/*.{ts,js,json}'",
"format": "prettier --write './**/*.{ts,js,json}'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.45.3",
"@playwright/test": "^1.49.1",
"@types/node": "^22.0.2",
"prettier": "^3.3.3"
}
Expand Down
Loading