chore: Address UX comments and improve responsiveness #5224
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: Containers - Build, Test | |
on: | |
push: | |
branches: [ v2.x.x ] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: [ v2.x.x ] | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: | |
env: | |
JOB_ID: ${{ github.run_id }}-${{ github.run_number }} | |
jobs: | |
PublishJibContainers: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Build with Gradle | |
run: > | |
./gradlew clean jib -Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} -Pzowe.docker.password=${{ secrets.PERSONAL_JB_TOKEN }} -Pzowe.docker.username=balhar-jakub -Pzowe.docker.container=ghcr.io/balhar-jakub/ -Pzowe.docker.tag=${{ env.JOB_ID }} | |
- name: Standalone Catalog | |
run: > | |
./gradlew :api-catalog-services:jib -Pzowe.jib.image.suffix=standalone -Pzowe.jib.image.javaAgentPort=6305 -Pzowe.jib.image.debugPort=5125 -Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} -Pzowe.docker.password=${{ secrets.PERSONAL_JB_TOKEN }} -Pzowe.docker.username=balhar-jakub -Pzowe.docker.container=ghcr.io/balhar-jakub/ -Pzowe.docker.tag=${{ env.JOB_ID }} | |
- uses: ./.github/actions/teardown | |
CITests: | |
needs: PublishJibContainers | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services-2: | |
image: ghcr.io/balhar-jakub/api-catalog-services-standalone:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
caching-service: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
discovery-service-2: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_SERVICE_HOSTNAME: discovery-service-2 | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SECURITY_AUTH_JWT_CUSTOMAUTHHEADER: customJwtHeader | |
APIML_SECURITY_AUTH_PASSTICKET_CUSTOMUSERHEADER: customUserHeader | |
APIML_SECURITY_AUTH_PASSTICKET_CUSTOMAUTHHEADER: customPassticketHeader | |
APIML_SERVICE_CENTRALREGISTRYURLS: https://discovery-service-2:10011/eureka | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
metrics-service: | |
image: ghcr.io/balhar-jakub/metrics-service:${{ github.run_id }}-${{ github.run_number }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Run CI Tests | |
run: > | |
./gradlew :integration-tests:runContainerTests --info | |
-Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} | |
- uses: ./.github/actions/dump-jacoco | |
if: always() | |
- name: Store results | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: ContainerCITests-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
results/** | |
- uses: ./.github/actions/teardown | |
Oauth2Integration: | |
needs: PublishJibContainers | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
timeout-minutes: 10 | |
services: | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SECURITY_OIDC_CLIENTID: ${{ secrets.OKTA_CLIENT_ID }} | |
APIML_SECURITY_OIDC_CLIENTSECRET: ${{ secrets.OKTA_CLIENT_PASSWORD }} | |
APIML_SECURITY_OIDC_INTROSPECTURL: ${{ secrets.OKTA_INTROSPECT_URL }} | |
APIML_SECURITY_OIDC_ENABLED: true | |
APIML_SECURITY_OIDC_REGISTRY: zowe.okta.com | |
APIML_SECURITY_OIDC_IDENTITYMAPPERUSER: APIMTST | |
APIML_SECURITY_OIDC_IDENTITYMAPPERURL: https://gateway-service:10010/zss/api/v1/certificate/dn | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Run CI Tests | |
run: > | |
./gradlew :integration-tests:runOidcTests --info -Denvironment.config=-docker -Denvironment.offPlatform=true -Dokta.client.id=${{ secrets.OKTA_CLIENT_ID }} | |
-Doidc.test.user=${{ secrets.OIDC_TEST_USER }} -Doidc.test.pass=${{ secrets.OIDC_TEST_PASS }} | |
-Doidc.test.alt_user=${{ secrets.OKTA_WINNIE_USER }} -Doidc.test.alt_pass=${{ secrets.OKTA_WINNIE_PASS }} | |
-Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} | |
- uses: ./.github/actions/teardown | |
CloudGatewayProxy: | |
needs: PublishJibContainers | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
timeout-minutes: 10 | |
services: | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SECURITY_X509_ACCEPTFORWARDEDCERT: true | |
APIML_SECURITY_X509_CERTIFICATESURL: https://cloud-gateway-service:10023/gateway/certificates | |
gateway-service-2: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_HOSTNAME: gateway-service-2 | |
APIML_SERVICE_APIMLID: apiml2 | |
SERVER_INTERNAL_PORT: 10027 | |
cloud-gateway-service: | |
image: ghcr.io/balhar-jakub/cloud-gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_GATEWAY_TIMEOUT: 2 | |
APIML_SERVICE_FORWARDCLIENTCERTENABLED: true | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Run CI Tests | |
run: > | |
./gradlew :integration-tests:runCloudGatewayProxyTest --info -Denvironment.config=-docker -Denvironment.offPlatform=true | |
-Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} | |
- name: Dump CGW jacoco data | |
run: > | |
java -jar ./scripts/jacococli.jar dump --address cloud-gateway-service --port 6310 --destfile ./results/cloud-gateway-service.exec | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: CloudGatewayProxy-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
results/** | |
- uses: ./.github/actions/teardown | |
CloudGatewayServiceRouting: | |
needs: PublishJibContainers | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
timeout-minutes: 10 | |
services: | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
cloud-gateway-service: | |
image: ghcr.io/balhar-jakub/cloud-gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Run CI Tests | |
run: > | |
./gradlew :integration-tests:runCloudGatewayServiceRoutingTest --info -Denvironment.config=-docker -Denvironment.offPlatform=true | |
-Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} | |
- name: Dump CGW jacoco data | |
run: > | |
java -jar ./scripts/jacococli.jar dump --address cloud-gateway-service --port 6310 --destfile ./results/cloud-gateway-service.exec | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: CloudGatewayServiceRouting-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
results/** | |
- uses: ./.github/actions/teardown | |
CITestsRegistration: | |
needs: PublishJibContainers | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
caching-service: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Run CI Tests | |
run: > | |
./gradlew :integration-tests:runRegistrationTests --info -Denvironment.config=-docker -Denvironment.offPlatform=true | |
-Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} | |
# Coverage results are not stored in this job as it would not provide much additional data | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: ContainerCITestsRegistration-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
- uses: ./.github/actions/teardown | |
CITestsZosmfRsu2012: | |
needs: PublishJibContainers | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
caching-service: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SECURITY_AUTH_JWT_CUSTOMAUTHHEADER: customJwtHeader | |
APIML_SECURITY_AUTH_PASSTICKET_CUSTOMUSERHEADER: customUserHeader | |
APIML_SECURITY_AUTH_PASSTICKET_CUSTOMAUTHHEADER: customPassticketHeader | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
ZOSMF_APPLIEDAPARS: PH12143,RSU2012 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Build with Gradle | |
run: > | |
./gradlew :integration-tests:runZosmfAuthTest --info -Denvironment.config=-docker -Denvironment.offPlatform=true | |
-Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} | |
- uses: ./.github/actions/dump-jacoco | |
if: always() | |
- name: Store results | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: ContainerCITestsZosmfRsu2012-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
results/** | |
- uses: ./.github/actions/teardown | |
CITestsZosmfPH34201: | |
needs: PublishJibContainers | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
caching-service: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SECURITY_AUTH_JWT_CUSTOMAUTHHEADER: customJwtHeader | |
APIML_SECURITY_AUTH_PASSTICKET_CUSTOMUSERHEADER: customUserHeader | |
APIML_SECURITY_AUTH_PASSTICKET_CUSTOMAUTHHEADER: customPassticketHeader | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
ZOSMF_APPLIEDAPARS: PH12143,RSU2012,PH34201 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Build with Gradle | |
run: > | |
./gradlew :integration-tests:runZosmfAuthTest --info -Denvironment.config=-docker -Denvironment.offPlatform=true | |
-Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} | |
# Coverage results are not stored in this job as it would not provide much additional data | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: CITestsZosmfPH34201-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
- uses: ./.github/actions/teardown | |
CITestsZosmfWithoutJwt: | |
needs: PublishJibContainers | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
caching-service: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SECURITY_AUTH_JWT_CUSTOMAUTHHEADER: customJwtHeader | |
APIML_SECURITY_AUTH_PASSTICKET_CUSTOMUSERHEADER: customUserHeader | |
APIML_SECURITY_AUTH_PASSTICKET_CUSTOMAUTHHEADER: customPassticketHeader | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
ZOSMF_APPLIEDAPARS: '' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Build with Gradle | |
run: > | |
./gradlew :integration-tests:runZosmfAuthTest --info -Denvironment.config=-docker -Denvironment.offPlatform=true | |
-Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} | |
# Coverage results are not stored in this job as it would not provide much additional data | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: ContainerCITestsZosmfWithoutJwt-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
- uses: ./.github/actions/teardown | |
CITestsZosmfWithoutJwtWithAuthenticateEndpoint: | |
needs: PublishJibContainers | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
caching-service: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SECURITY_AUTH_JWT_CUSTOMAUTHHEADER: customJwtHeader | |
APIML_SECURITY_AUTH_PASSTICKET_CUSTOMUSERHEADER: customUserHeader | |
APIML_SECURITY_AUTH_PASSTICKET_CUSTOMAUTHHEADER: customPassticketHeader | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
ZOSMF_APPLIEDAPARS: AuthenticateApar | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Build with Gradle | |
run: > | |
./gradlew :integration-tests:runZosmfAuthTest --info -Denvironment.config=-docker -Denvironment.offPlatform=true | |
-Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} | |
# Coverage results are not stored in this job as it would not provide much additional data | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: ContainerCITestsZosmfWithoutJwtWithAuthenticateEndpoint-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
- uses: ./.github/actions/teardown | |
CITestsInternalPort: | |
needs: PublishJibContainers | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
caching-service: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SECURITY_AUTH_JWT_CUSTOMAUTHHEADER: customJwtHeader | |
APIML_SECURITY_AUTH_PASSTICKET_CUSTOMUSERHEADER: customUserHeader | |
APIML_SECURITY_AUTH_PASSTICKET_CUSTOMAUTHHEADER: customPassticketHeader | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
metrics-service: | |
image: ghcr.io/balhar-jakub/metrics-service:${{ github.run_id }}-${{ github.run_number }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Build with Gradle | |
run: > | |
./gradlew :integration-tests:runBaseTestsInternalPort --info -Denvironment.config=-docker -Denvironment.offPlatform=true | |
-Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} | |
- uses: ./.github/actions/dump-jacoco | |
if: always() | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: ContainerCITestsInternalPort-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
results/** | |
- uses: ./.github/actions/teardown | |
CITestsWithRedisReplica: | |
needs: PublishJibContainers | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Run APIML and Redis Containers | |
run: | | |
cd docker/redis | |
chmod +x run-redis.sh | |
./run-redis.sh -l -t -a ${{ env.JOB_ID }} | |
- uses: ./.github/actions/validate-apiml-healthy | |
with: | |
caching-service: "true" | |
- name: Run Caching Service tests | |
run: > | |
./gradlew :integration-tests:runCachingServiceTests --info -Denvironment.offPlatform=true | |
-DtlsConfiguration.clientKeyStore=../docker/redis/redis-containers/keystore/all-services.keystore.p12 | |
-DtlsConfiguration.keyAlias=apimtst | |
-DtlsConfiguration.keyStore=../docker/redis/redis-containers/keystore/all-services.keystore.p12 | |
-DtlsConfiguration.trustStore=../docker/redis/redis-containers/keystore/all-services.truststore.p12 | |
-Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} | |
- name: Output Redis logs | |
if: always() | |
run: | | |
echo "Redis Master" | |
docker logs redis-master | |
echo "Redis Replica" | |
docker logs redis-replica | |
- name: Output Caching Service container logs | |
if: always() | |
run: docker logs caching-service | |
- name: Output Gateway container logs | |
if: always() | |
run: docker logs gateway-service | |
- name: Output Discovery container logs | |
if: always() | |
run: docker logs discovery-service | |
# Coverage results are not stored in this job as it would not provide much additional data | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: ContainerCITestsWithRedisReplica-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
results/** | |
- uses: ./.github/actions/teardown | |
CITestsWithRedisSentinel: | |
needs: PublishJibContainers | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Run APIML and Redis Containers | |
run: | | |
cd docker/redis | |
chmod +x run-redis.sh | |
./run-redis.sh -l -s -t -a ${{ env.JOB_ID }} | |
- uses: ./.github/actions/validate-apiml-healthy | |
with: | |
caching-service: "true" | |
- name: Run Caching Service tests | |
run: > | |
./gradlew :integration-tests:runCachingServiceTests --info -Denvironment.offPlatform=true | |
-DtlsConfiguration.clientKeyStore=../docker/redis/redis-containers/keystore/all-services.keystore.p12 | |
-DtlsConfiguration.keyAlias=apimtst | |
-DtlsConfiguration.keyStore=../docker/redis/redis-containers/keystore/all-services.keystore.p12 | |
-DtlsConfiguration.trustStore=../docker/redis/redis-containers/keystore/all-services.truststore.p12 | |
-Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} | |
- name: Output Redis logs | |
if: always() | |
run: | | |
echo "Redis Master" | |
docker logs redis-master | |
echo "Redis Replica" | |
docker logs redis-replica | |
echo "Redis Sentinel 1" | |
docker logs redis-sentinel-1 | |
echo "Redis Sentinel 2" | |
docker logs redis-sentinel-2 | |
echo "Redis Sentinel 3" | |
docker logs redis-sentinel-3 | |
- name: Output Caching Service container logs | |
if: always() | |
run: docker logs caching-service | |
- name: Output Gateway container logs | |
if: always() | |
run: docker logs gateway-service | |
- name: Output Discovery container logs | |
if: always() | |
run: docker logs discovery-service | |
# Coverage results are not stored in this job as it would not provide much additional data | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: ContainerCITestsWithRedisSentinel-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
results/** | |
- uses: ./.github/actions/teardown | |
CITestsHA: | |
needs: PublishJibContainers | |
container: ubuntu:latest | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
api-catalog-services-2: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_SERVICE_HOSTNAME: api-catalog-services-2 | |
caching-service: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client-2: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_HOSTNAME: discoverable-client-2 | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_DISCOVERY_ALLPEERSURLS: https://discovery-service:10011/eureka,https://discovery-service-2:10011/eureka | |
discovery-service-2: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_SERVICE_HOSTNAME: discovery-service-2 | |
APIML_DISCOVERY_ALLPEERSURLS: https://discovery-service-2:10011/eureka,https://discovery-service:10011/eureka | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_DISCOVERYSERVICEURLS: https://discovery-service:10011/eureka/,https://discovery-service-2:10011/eureka/ | |
gateway-service-2: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_HOSTNAME: gateway-service-2 | |
SERVER_INTERNAL_PORT: 10027 | |
APIML_SERVICE_DISCOVERYSERVICEURLS: https://discovery-service:10011/eureka/,https://discovery-service-2:10011/eureka/ | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Run HA Tests | |
run: > | |
./gradlew runHATests --info -Denvironment.config=-ha -Denvironment.offPlatform=true | |
-Partifactory_user=$ARTIFACTORY_USERNAME -Partifactory_password=$ARTIFACTORY_PASSWORD | |
env: | |
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | |
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
- name: Correct Permisions | |
run: | | |
chmod 755 -R .gradle | |
# Coverage results are not stored in this job as it would not provide much additional data | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: CITestsHA-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
- uses: ./.github/actions/teardown | |
HALoadBalancing: | |
needs: PublishJibContainers | |
container: ubuntu:latest | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
caching-service: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_CUSTOMMETADATA_APIML_LB_TYPE: authentication | |
discoverable-client-2: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_HOSTNAME: discoverable-client-2 | |
APIML_SERVICE_CUSTOMMETADATA_APIML_LB_TYPE: authentication | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_DISCOVERY_ALLPEERSURLS: https://discovery-service:10011/eureka,https://discovery-service-2:10011/eureka | |
discovery-service-2: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_SERVICE_HOSTNAME: discovery-service-2 | |
APIML_DISCOVERY_ALLPEERSURLS: https://discovery-service-2:10011/eureka,https://discovery-service:10011/eureka | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_DISCOVERYSERVICEURLS: https://discovery-service:10011/eureka/,https://discovery-service-2:10011/eureka/ | |
APIML_ROUTING_INSTANCEIDHEADER: true | |
APIML_LOADBALANCER_DISTRIBUTE: true | |
gateway-service-2: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_HOSTNAME: gateway-service-2 | |
SERVER_INTERNAL_PORT: 10027 | |
APIML_SERVICE_DISCOVERYSERVICEURLS: https://discovery-service:10011/eureka/,https://discovery-service-2:10011/eureka/ | |
APIML_ROUTING_INSTANCEIDHEADER: true | |
APIML_LOADBALANCER_DISTRIBUTE: true | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Setup Docker | |
if: ${{ false }} # Debug of containers | |
run: | | |
apt update | |
apt install -y apt-transport-https ca-certificates curl software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - | |
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" | |
apt update | |
apt-cache policy docker-ce | |
apt install -y docker-ce | |
- name: Run HA Tests | |
run: > | |
./gradlew runLbHaTests --info -Denvironment.config=-ha -Denvironment.offPlatform=true | |
-Partifactory_user=$ARTIFACTORY_USERNAME -Partifactory_password=$ARTIFACTORY_PASSWORD | |
env: | |
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | |
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
- name: Get Container Logs | |
if: ${{ false }} # Debug of containers | |
run: | | |
docker ps -a | |
docker ps -q | xargs -L 1 docker logs | |
- name: Correct Permisions | |
run: | | |
chmod 755 -R .gradle | |
# Coverage results are not stored in this job as it would not provide much additional data | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: LbHaTests-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
- uses: ./.github/actions/teardown | |
CITestsDiscoveryChaoticHA: | |
needs: PublishJibContainers | |
container: ubuntu:latest | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
caching-service: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_DISCOVERY_ALLPEERSURLS: https://discovery-service:10011/eureka,https://discovery-service-2:10011/eureka | |
discovery-service-2: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_SERVICE_HOSTNAME: discovery-service-2 | |
APIML_DISCOVERY_ALLPEERSURLS: https://discovery-service-2:10011/eureka,https://discovery-service:10011/eureka | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_DISCOVERYSERVICEURLS: https://discovery-service:10011/eureka/,https://discovery-service-2:10011/eureka/ | |
gateway-service-2: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_HOSTNAME: gateway-service-2 | |
SERVER_INTERNAL_PORT: 10027 | |
APIML_SERVICE_DISCOVERYSERVICEURLS: https://discovery-service:10011/eureka/,https://discovery-service-2:10011/eureka/ | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Run Discovery Service Chaotic HA Tests | |
run: > | |
./gradlew :integration-tests:runChaoticHATests --tests org.zowe.apiml.integration.ha.DiscoveryChaoticTest | |
--info -Denvironment.config=-ha -Denvironment.offPlatform=true | |
-Partifactory_user=$ARTIFACTORY_USERNAME -Partifactory_password=$ARTIFACTORY_PASSWORD | |
env: | |
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | |
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
- name: Correct Permisions | |
run: | | |
chmod 755 -R .gradle | |
# Coverage results are not stored in this job as it would not provide much additional data | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: CITestsDiscoveryChaoticHA-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
- uses: ./.github/actions/teardown | |
CITestsGatewayChaoticHA: | |
needs: PublishJibContainers | |
container: ubuntu:latest | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
caching-service: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_DISCOVERY_ALLPEERSURLS: https://discovery-service:10011/eureka,https://discovery-service-2:10011/eureka | |
discovery-service-2: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_SERVICE_HOSTNAME: discovery-service-2 | |
APIML_DISCOVERY_ALLPEERSURLS: https://discovery-service-2:10011/eureka,https://discovery-service:10011/eureka | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_DISCOVERYSERVICEURLS: https://discovery-service:10011/eureka/,https://discovery-service-2:10011/eureka/ | |
gateway-service-2: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_HOSTNAME: gateway-service-2 | |
SERVER_INTERNAL_PORT: 10027 | |
APIML_SERVICE_DISCOVERYSERVICEURLS: https://discovery-service:10011/eureka/,https://discovery-service-2:10011/eureka/ | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Run Gateway Service Chaotic HA Tests | |
run: > | |
./gradlew :integration-tests:runChaoticHATests --tests org.zowe.apiml.integration.ha.GatewayChaoticTest | |
--info -Denvironment.config=-ha -Denvironment.offPlatform=true | |
-Partifactory_user=$ARTIFACTORY_USERNAME -Partifactory_password=$ARTIFACTORY_PASSWORD | |
env: | |
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | |
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
- name: Correct Permisions | |
run: | | |
chmod 755 -R .gradle | |
# Coverage results are not stored in this job as it would not provide much additional data | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: CITestsGatewayChaoticHA-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
- uses: ./.github/actions/teardown | |
CITestsDicoverableClientChaoticHA: | |
needs: PublishJibContainers | |
container: ubuntu:latest | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
caching-service: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client-2: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_HOSTNAME: discoverable-client-2 | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_DISCOVERY_ALLPEERSURLS: https://discovery-service:10011/eureka,https://discovery-service-2:10011/eureka | |
discovery-service-2: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_SERVICE_HOSTNAME: discovery-service-2 | |
APIML_DISCOVERY_ALLPEERSURLS: https://discovery-service-2:10011/eureka,https://discovery-service:10011/eureka | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_DISCOVERYSERVICEURLS: https://discovery-service:10011/eureka/,https://discovery-service-2:10011/eureka/ | |
gateway-service-2: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_HOSTNAME: gateway-service-2 | |
SERVER_INTERNAL_PORT: 10027 | |
APIML_SERVICE_DISCOVERYSERVICEURLS: https://discovery-service:10011/eureka/,https://discovery-service-2:10011/eureka/ | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Run Discoverable Client Chaotic HA Tests | |
run: > | |
./gradlew :integration-tests:runChaoticHATests --tests org.zowe.apiml.integration.ha.SouthboundServiceChaoticTest | |
--info -Denvironment.config=-ha -Denvironment.offPlatform=true | |
-Partifactory_user=$ARTIFACTORY_USERNAME -Partifactory_password=$ARTIFACTORY_PASSWORD | |
env: | |
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | |
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
- name: Correct Permisions | |
run: | | |
chmod 755 -R .gradle | |
# Coverage results are not stored in this job as it would not provide much additional data | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: CITestsDicoverableClientChaoticHA-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
- uses: ./.github/actions/teardown | |
CITestsWebSocketChaoticHA: | |
needs: PublishJibContainers | |
container: ubuntu:latest | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
caching-service: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
discoverable-client-2: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_HOSTNAME: discoverable-client-2 | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_DISCOVERY_ALLPEERSURLS: https://discovery-service:10011/eureka,https://discovery-service-2:10011/eureka | |
discovery-service-2: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_SERVICE_HOSTNAME: discovery-service-2 | |
APIML_DISCOVERY_ALLPEERSURLS: https://discovery-service-2:10011/eureka,https://discovery-service:10011/eureka | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_DISCOVERYSERVICEURLS: https://discovery-service:10011/eureka/,https://discovery-service-2:10011/eureka/ | |
gateway-service-2: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
APIML_SERVICE_HOSTNAME: gateway-service-2 | |
SERVER_INTERNAL_PORT: 10027 | |
APIML_SERVICE_DISCOVERYSERVICEURLS: https://discovery-service:10011/eureka/,https://discovery-service-2:10011/eureka/ | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Run WebSocket Chaotic HA Tests | |
run: > | |
./gradlew :integration-tests:runChaoticHATests --tests org.zowe.apiml.integration.ha.WebSocketChaoticTest | |
--info -Denvironment.config=-ha -Denvironment.offPlatform=true | |
-Partifactory_user=$ARTIFACTORY_USERNAME -Partifactory_password=$ARTIFACTORY_PASSWORD | |
env: | |
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | |
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
- uses: ./.github/actions/dump-jacoco | |
if: always() | |
- name: Dump DC jacoco data | |
run: > | |
java -jar ./scripts/jacococli.jar dump --address discoverable-client --port 6302 --destfile ./results/discoverable-client.exec | |
- name: Correct Permisions | |
run: | | |
chmod 755 -R .gradle | |
# Coverage results are not stored in this job as it would not provide much additional data | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: CITestsWebSocketChaoticHA-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
results/** | |
- uses: ./.github/actions/teardown | |
CITestsWithInfinispan: | |
needs: PublishJibContainers | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
caching-service: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
ZWE_CACHING_SERVICE_PERSISTENT: 'infinispan' | |
JGROUPS_BIND_PORT: "7099" | |
SERVER_SSL_KEYSTORETYPE: "PKCS12" | |
CACHING_STORAGE_INFINISPAN_PERSISTENCE_DATALOCATION: "data_replica" | |
CACHING_STORAGE_INFINISPAN_INITIALHOSTS: "caching-service-2[7098]" | |
CACHING_STORAGE_MODE: "infinispan" | |
APIML_SERVICE_PORT: "10022" | |
JGROUPS_BIND_ADDRESS: "caching-service" | |
caching-service-2: | |
image: ghcr.io/balhar-jakub/caching-service:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
ZWE_CACHING_SERVICE_PERSISTENT: 'infinispan' | |
JGROUPS_BIND_PORT: "7098" | |
SERVER_SSL_KEYSTORETYPE: "PKCS12" | |
CACHING_STORAGE_INFINISPAN_PERSISTENCE_DATALOCATION: "data" | |
CACHING_STORAGE_INFINISPAN_INITIALHOSTS: "caching-service[7099]" | |
CACHING_STORAGE_MODE: "infinispan" | |
JGROUPS_BIND_ADDRESS: "caching-service-2" | |
APIML_SERVICE_HOSTNAME: "caching-service-2" | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
env: | |
ZOSMF_APPLIEDAPARS: AuthenticateApar | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Build with Gradle | |
run: > | |
./gradlew :integration-tests:runInfinispanServiceTests --info -Denvironment.config=-docker -Denvironment.offPlatform=true | |
-Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} | |
- uses: ./.github/actions/dump-jacoco | |
if: always() | |
- name: Store results | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: CITestsWithInfinispan-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
results/** | |
- uses: ./.github/actions/teardown | |
E2EUITests: | |
needs: PublishJibContainers | |
runs-on: ubuntu-latest | |
container: cypress/browsers:node14.17.0-chrome91-ff89 | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Install npm dependencies | |
uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: api-catalog-ui/frontend | |
- name: Cache NPM and Cypress 📦 | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cache/Cypress | |
node_modules | |
key: my-cache-${{ runner.os }}-${{ hashFiles('package-lock.json') }} | |
- name: Cypress run | |
run: | | |
cd api-catalog-ui/frontend | |
npm run cy:e2e:ci | |
- name: Upload screenshots | |
uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: cypress-snapshots | |
path: api-catalog-ui/frontend/cypress/screenshots | |
- uses: ./.github/actions/teardown | |
CITestsServicePrefixReplacer: | |
needs: PublishJibContainers | |
container: ubuntu:latest | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
services: | |
api-catalog-services: | |
image: ghcr.io/balhar-jakub/api-catalog-services:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
discoverable-client: | |
image: ghcr.io/balhar-jakub/discoverable-client:${{ github.run_id }}-${{ github.run_number }} | |
discovery-service: | |
image: ghcr.io/balhar-jakub/discovery-service:${{ github.run_id }}-${{ github.run_number }} | |
volumes: | |
- /api-defs:/api-defs | |
env: | |
APIML_DISCOVERY_SERVICEIDPREFIXREPLACER: "discoverable*,sample" | |
gateway-service: | |
image: ghcr.io/balhar-jakub/gateway-service:${{ github.run_id }}-${{ github.run_number }} | |
mock-services: | |
image: ghcr.io/balhar-jakub/mock-services:${{ github.run_id }}-${{ github.run_number }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
- name: Run Service ID Prefix Replacer Tests | |
run: > | |
./gradlew :integration-tests:runIdPrefixReplacerTests --info -Denvironment.config=-docker -Denvironment.offPlatform=true | |
-Partifactory_user=${{ secrets.ARTIFACTORY_USERNAME }} -Partifactory_password=${{ secrets.ARTIFACTORY_PASSWORD }} | |
- name: Store results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: CITestsServicePrefixReplacer-${{ env.JOB_ID }} | |
path: | | |
integration-tests/build/reports/** | |
results/** | |
- uses: ./.github/actions/teardown | |
PublishResults: | |
needs: [CITests,CITestsWithInfinispan,CITestsZosmfRsu2012,CITestsWithRedisReplica,CITestsWithRedisSentinel,CITestsInternalPort,CloudGatewayProxy,CloudGatewayServiceRouting] | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/setup | |
with: | |
jdkVersion: 11 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: ContainerCITests-${{ env.JOB_ID }} | |
path: containercitests | |
- uses: actions/download-artifact@v3 | |
with: | |
name: CITestsWithInfinispan-${{ env.JOB_ID }} | |
path: citestswithinfinispan | |
- uses: actions/download-artifact@v3 | |
with: | |
name: ContainerCITestsZosmfRsu2012-${{ env.JOB_ID }} | |
path: containercitestszosmfrsu2012 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: ContainerCITestsWithRedisReplica-${{ env.JOB_ID }} | |
path: ContainerCITestsWithRedisReplica | |
- uses: actions/download-artifact@v3 | |
with: | |
name: ContainerCITestsWithRedisSentinel-${{ env.JOB_ID }} | |
path: ContainerCITestsWithRedisSentinel | |
- uses: actions/download-artifact@v3 | |
with: | |
name: ContainerCITestsInternalPort-${{ env.JOB_ID }} | |
path: containercitestsinternalport | |
- uses: actions/download-artifact@v3 | |
with: | |
name: CloudGatewayProxy-${{ env.JOB_ID }} | |
path: cloudgatewayproxy | |
- uses: actions/download-artifact@v3 | |
with: | |
name: CITestsWebSocketChaoticHA-${{ env.JOB_ID }} | |
path: citestswebsocketchaoticha | |
- uses: actions/download-artifact@v3 | |
with: | |
name: CloudGatewayServiceRouting-${{ env.JOB_ID }} | |
path: cloudgatewayservicerouting | |
- name: Code coverage and publish results | |
run: > | |
./gradlew --info coverage sonar -Dresults="containercitests/results,citestswithinfinispan/results,containercitestszosmfrsu2012/results,ContainerCITestsWithRedisReplica/results,ContainerCITestsWithRedisSentinel/results,containercitestsinternalport/results,cloudgatewayproxy/results,citestswebsocketchaoticha/results,cloudgatewayservicerouting/results" | |
-Psonar.host.url=$SONAR_HOST_URL -Dsonar.login=$SONAR_TOKEN | |
-Partifactory_user=$ARTIFACTORY_USERNAME -Partifactory_password=$ARTIFACTORY_PASSWORD | |
env: | |
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | |
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: ./.github/actions/teardown |