Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1d62ec1
wip test_tx_run of testkit
p123-stack May 16, 2025
4e6d009
fixed testkit tests for test_tx_func_run class
p123-stack May 19, 2025
dd41be5
Fixed test_tx_func_run
p123-stack May 21, 2025
a253f56
Removed BoltFactoryTest
p123-stack May 21, 2025
1b35a06
fixed testkit tests
p123-stack May 22, 2025
5f3809f
fixed the test for stub -basic-query in testkit
p123-stack Aug 4, 2025
4e3dd50
fixed testkit test for test_Session_run
p123-stack Aug 6, 2025
39484f8
fixed all thr basic-query tests and did a proper cleanup
p123-stack Aug 29, 2025
a7c29ec
Merge branch 'feat/tesktkit-basic-query' into test_tx_run
p123-stack Aug 29, 2025
80d8e2c
temp commit
p123-stack Sep 1, 2025
5fed5eb
fixed all the tx_run and did a proper cleanup
p123-stack Sep 8, 2025
238c52c
resolved merge conflicts
p123-stack Sep 8, 2025
344d28a
resolved the merge conflicts
p123-stack Sep 8, 2025
7dc5243
temp commit
p123-stack Sep 8, 2025
d784312
temp commit
p123-stack Sep 9, 2025
0635271
fixed the test_txrun
p123-stack Sep 9, 2025
23af4aa
remove the cc from the dockerfile
p123-stack Sep 9, 2025
c8dbb60
solved testkit test
p123-stack Sep 10, 2025
051a63f
cleanup code
p123-stack Sep 10, 2025
da41e20
fixed the testkit.sh file
p123-stack Sep 10, 2025
151081c
setup proper testkit configuration for docker
p123-stack Sep 11, 2025
1b69237
Merge branch 'test_tx_run' into test_tx_func_run
p123-stack Sep 11, 2025
1f5e57e
fixed the test_tx_func_run and did cleanup
p123-stack Sep 12, 2025
b8b1cf0
Merge branch 'test_tx_func_run' into feat/tesktkit-session-run
p123-stack Sep 12, 2025
5c86cb8
fixed test_session_run
p123-stack Sep 15, 2025
dad8386
fixed tests
p123-stack Sep 17, 2025
7029117
fixed tests
p123-stack Sep 17, 2025
d91dd45
fixed tests
p123-stack Sep 17, 2025
7604a7c
fixed tests
p123-stack Sep 17, 2025
d7213c2
fixed stub/session_run_tests
p123-stack Sep 17, 2025
85ced5a
removed the commented statements
p123-stack Sep 17, 2025
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: 2 additions & 8 deletions .github/workflows/testkit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,5 @@ jobs:
- name: Run integration tests
run: |
docker compose up -d --remove-orphans --wait --no-build \
server1 \
server2 \
server3 \
server4 \
testkit_backend
docker compose run --rm testkit ./testkit.sh
docker compose up -d --remove-orphans --wait --no-build testkit_backend neo4j
docker compose up testkit
3 changes: 0 additions & 3 deletions Dockerfile.neo4j-okta

This file was deleted.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"psr/http-factory": "^1.0",
"psr/http-client": "^1.0",
"php-http/message": "^1.0",
"stefanak-michal/bolt": "^7.2.4",
"stefanak-michal/bolt": "^7.1.4",
"symfony/polyfill-php80": "^1.2",
"psr/simple-cache": ">=2.0",
"ext-json": "*",
Expand Down
10 changes: 6 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ services:
- .env
neo4j:
<<: *common
image: neo4j:5.23-enterprise
image: neo4j:5-enterprise
hostname: neo4j
networks:
- neo4j
Expand All @@ -62,7 +62,7 @@ services:
- "11474:7474"
environment:
<<: *common-env
NEO4J_ACCEPT_LICENSE_AGREEMENT: 'yes' # Also add this
NEO4J_ACCEPT_LICENSE_AGREEMENT: 'yes'
NEO4J_server_bolt_advertised__address: neo4j:7687
NEO4J_server_http_advertised__address: neo4j:7474

Expand Down Expand Up @@ -119,6 +119,7 @@ services:

testkit:
image: python:3.13
command: ./testkit.sh
volumes:
- .:/opt/project
working_dir: /opt/project/testkit-backend
Expand All @@ -131,6 +132,9 @@ services:
TEST_DRIVER_NAME: php
TEST_DRIVER_REPO: /opt/project
TEST_BACKEND_HOST: testkit_backend
TEST_STUB_HOST: testkit
depends_on:
- testkit_backend

testkit_backend:
<<: *common-php
Expand All @@ -141,7 +145,5 @@ services:
- neo4j
extra_hosts:
- "host.docker.internal:host-gateway"
depends_on:
- neo4j
ports:
- "9876:9876"
Loading