test use cypher shell from service #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Playwright e2e tests | ||
on: | ||
pull_request: | ||
branches: [master] | ||
workflow_run: | ||
workflows: ['Prettier and linter'] | ||
types: | ||
- completed | ||
concurrency: | ||
group: ${{ github.head_ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
neo4j-movies: | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
services: | ||
neo4j: | ||
image: neo4j:latest | ||
env: | ||
NEO4J_AUTH: neo4j/nothing123 | ||
ports: | ||
- 7687:7687 | ||
- 7474:7474 | ||
options: >- | ||
--health-cmd "wget http://localhost:7474 || exit 1" | ||
steps: | ||
# - name: Install Cypher Shell (Debian Package) | ||
# run: | | ||
# wget -nv https://dist.neo4j.org/cypher-shell/cypher-shell_5.19.0_all.deb | ||
# sudo apt-get update | ||
# sudo apt-get install -y ./cypher-shell_5.19.0_all.deb | ||
- name: Get movies dataset | ||
run: | | ||
wget -O movies.cypher https://raw.githubusercontent.com/neo4j-graph-examples/movies/main/scripts/movies.cypher | ||
# cypher-shell -a neo4j://neo4j:7687 -u "neo4j" -p "nothing123" "MATCH (n) DETACH DELETE n" | ||
# cypher-shell -a neo4j://neo4j:7687 -u "neo4j" -p "nothing123" -f movies.cypher | ||
# Execute cypher-shell directly from the container: | ||
docker exec neo4j cypher-shell \ | ||
-a neo4j://neo4j:7687 -u "neo4j" -p "nothing123" \ | ||
"MATCH (n) DETACH DELETE n" | ||
docker exec neo4j cypher-shell \ | ||
-a neo4j://neo4j:7687 -u "neo4j" -p "nothing123" \ | ||
-f movies.cypher | ||
neo4j-read: | ||
needs: neo4j-movies | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
container: | ||
image: mcr.microsoft.com/playwright:v1.44.0-jammy | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
shardIndex: [1, 2, 3, 4, 5, 6, 7, 8] | ||
shardTotal: [8] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: latest | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Install Playwright Browsers | ||
run: npx playwright install --with-deps chromium | ||
- name: Run Playwright tests (neo4j-read) | ||
run: npx playwright test --grep @neo4j-read --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} | ||
env: | ||
DB_HOSTNAME: 'bolt://neo4j:7687' | ||
DB_USERNAME: 'neo4j' | ||
DB_PASSWORD: 'nothing123' | ||
build: | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
container: | ||
image: mcr.microsoft.com/playwright:v1.44.0-jammy | ||
services: | ||
neo4j: | ||
image: neo4j:latest | ||
env: | ||
NEO4J_AUTH: neo4j/nothing123 | ||
ports: | ||
- 7687:7687 | ||
- 7474:7474 | ||
options: >- | ||
--health-cmd "wget http://localhost:7474 || exit 1" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: latest | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Install Playwright Browsers | ||
run: npx playwright install --with-deps chromium | ||
- name: Build | ||
run: npm run build | ||
- name: Run Playwright tests (build) | ||
run: npx playwright test --grep @build | ||
env: | ||
DB_HOSTNAME: 'bolt://neo4j:7687' | ||
DB_USERNAME: 'neo4j' | ||
DB_PASSWORD: 'nothing123' | ||
neo4j-write: | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
container: | ||
image: mcr.microsoft.com/playwright:v1.44.0-jammy | ||
services: | ||
neo4j: | ||
image: neo4j:latest | ||
env: | ||
NEO4J_AUTH: neo4j/nothing123 | ||
ports: | ||
- 7687:7687 | ||
- 7474:7474 | ||
options: >- | ||
--health-cmd "wget http://localhost:7474 || exit 1" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: latest | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Install Playwright Browsers | ||
run: npx playwright install --with-deps chromium | ||
- name: Run Playwright tests (neo4j-write) | ||
run: npx playwright test --grep @neo4j-write | ||
env: | ||
DB_HOSTNAME: 'bolt://neo4j:7687' | ||
DB_USERNAME: 'neo4j' | ||
DB_PASSWORD: 'nothing123' | ||
neo4j-multidb: | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
container: | ||
image: mcr.microsoft.com/playwright:v1.44.0-jammy | ||
services: | ||
neo4j: | ||
image: neo4j:enterprise | ||
env: | ||
NEO4J_AUTH: neo4j/nothing123 | ||
NEO4J_ACCEPT_LICENSE_AGREEMENT: yes | ||
ports: | ||
- 7687:7687 | ||
- 7474:7474 | ||
options: >- | ||
--health-cmd "wget http://localhost:7474 || exit 1" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: latest | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Install Playwright Browsers | ||
run: npx playwright install --with-deps chromium | ||
- name: Run Playwright tests (neo4j-multidb) | ||
run: npx playwright test --grep @neo4j-multidb | ||
env: | ||
DB_HOSTNAME: 'bolt://neo4j:7687' | ||
DB_USERNAME: 'neo4j' | ||
DB_PASSWORD: 'nothing123' | ||
memgraph: | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
container: | ||
image: mcr.microsoft.com/playwright:v1.44.0-jammy | ||
services: | ||
memgraph: | ||
image: memgraph/memgraph:latest | ||
ports: | ||
- 7687:7687 | ||
options: >- | ||
--health-cmd "echo 'RETURN 0;' | mgconsole || exit 1" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: latest | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Install Playwright Browsers | ||
run: npx playwright install --with-deps chromium | ||
- name: Run Playwright tests (memgraph) | ||
run: npx playwright test --grep @memgraph | ||
env: | ||
DB_HOSTNAME: 'bolt://memgraph:7687' |