-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1381 from multiversx/API-72-first-integration-of-…
…cs-in-api-service API-72: first integration of chain simulator
- Loading branch information
Showing
30 changed files
with
1,978 additions
and
60 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Chain simulator e2e tests workflow | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
test-chainsimulator-e2e: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [18.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'npm' | ||
|
||
- name: Build and start chain simulator | ||
run: npm run start-chain-simulator | ||
|
||
- name: Wait for services to be ready | ||
run: | | ||
echo "Waiting for services to be healthy..." | ||
docker ps | ||
docker logs chainsimulator | ||
sleep 20 # Wait for 20 seconds to ensure services are up | ||
- name: Print docker containers | ||
run: docker ps | ||
|
||
- name: Start API Docker containers | ||
run: | | ||
cd . | ||
docker compose up -d | ||
- name: Wait for API docker containers to start | ||
run: | | ||
sleep 20 | ||
docker ps | ||
- run: npm ci | ||
- run: npm run init | ||
|
||
- name: Start API | ||
run: | | ||
npm run start:mainnet:e2e & | ||
sleep 10 # Wait a little more to ensure the API is fully up | ||
- name: Run e2e tests | ||
run: npm run test:cs-e2e | ||
|
||
- name: Stop API after tests | ||
run: | | ||
echo "Stopping the API..." | ||
kill $(lsof -t -i:3001) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
name: Load Tests | ||
|
||
on: | ||
push: | ||
branches: [main, development] | ||
pull_request: | ||
branches: [main, development] | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,4 +41,7 @@ lerna-debug.log* | |
|
||
/src/plugins | ||
|
||
.env | ||
.env | ||
|
||
# CS Environment variables | ||
src/test/chain-simulator/config/.env |
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
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
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
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
Oops, something went wrong.