Skip to content

Commit 52fd132

Browse files
committedMay 23, 2024··
refactor: optimize e2e tests
1 parent 1c3c460 commit 52fd132

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+159
-179
lines changed
 

‎.github/workflows/continuous-integration-e2e.yaml

+14-8
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
- name: 🔨 Build
5252
run: |
53-
yarn install --immutable --inline-builds
53+
yarn install --immutable --inline-builds --mode=skip-build
5454
yarn build
5555
docker build --no-cache .
5656
env:
@@ -67,18 +67,24 @@ jobs:
6767
OGMIOS_URL: 'ws://ogmios:1340'
6868
POSTGRES_PORT: '5435'
6969

70-
- name: Wait for some epochs
70+
- name: Wait for network init
7171
run: |
72-
yarn workspace @cardano-sdk/e2e wait-for-network
73-
env:
74-
DB_SYNC_CONNECTION_STRING: 'postgresql://postgres:doNoUseThisSecret!@localhost:5435/cexplorer'
72+
yarn workspace @cardano-sdk/e2e wait-for-network-init
7573
76-
- name: 🔬 Test - e2e - wallet
74+
- name: 🔬 Test - e2e - wallet at epoch 0
7775
run: |
78-
yarn workspace @cardano-sdk/e2e test:wallet
79-
yarn workspace @cardano-sdk/e2e test:providers
76+
yarn workspace @cardano-sdk/e2e test:wallet:epoch0
8077
yarn workspace @cardano-sdk/e2e test:projection
78+
79+
- name: Wait for epoch 3
80+
run: |
81+
yarn workspace @cardano-sdk/e2e wait-for-network-epoch-3
82+
83+
- name: 🔬 Test - e2e - wallet at epoch 3
84+
run: |
85+
yarn workspace @cardano-sdk/e2e test:wallet:epoch3
8186
yarn workspace @cardano-sdk/e2e test:pg-boss
87+
yarn workspace @cardano-sdk/e2e test:providers
8288
env:
8389
STAKE_POOL_PROVIDER_URL: 'http://localhost:4000/'
8490

‎Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ FROM ubuntu-nodejs as nodejs-builder
2020
RUN \
2121
curl --proto '=https' --tlsv1.2 -sSf -L https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - &&\
2222
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list &&\
23-
apt-get update && apt-get install pkg-config libusb-1.0 libudev-dev gcc g++ make gnupg2 yarn -y &&\
24-
yarn global add node-gyp@9.0.0
23+
apt-get update && apt-get install yarn -y
2524
WORKDIR /app
2625
COPY build build
2726
COPY packages/cardano-services/package.json packages/cardano-services/package.json
@@ -118,10 +117,12 @@ WORKDIR /config
118117
COPY compose/schedules.json .
119118
ENV SCHEDULES=/config/schedules.json
120119
WORKDIR /app/packages/cardano-services
120+
HEALTHCHECK CMD curl -s --fail http://localhost:3003/v1.0.0/health
121121
CMD ["node", "dist/cjs/cli.js", "start-pg-boss-worker"]
122122

123123
FROM cardano-services as projector
124124
WORKDIR /
125125
COPY compose/projector/init.* ./
126126
RUN chmod 755 init.sh
127+
HEALTHCHECK CMD test `curl -fs http://localhost:3000/v1.0.0/health | jq -r ".services[0].projectedTip.blockNo"` -gt 1
127128
CMD ["./init.sh"]

0 commit comments

Comments
 (0)
Please sign in to comment.