mirror of
https://github.com/logos-messaging/logos-delivery.git
synced 2026-07-20 11:40:02 +00:00
Parametrize e2e-api-tests.yml with `subset` (non-docker|docker) and `node_image` inputs, and add a send-api-e2e-docker-tests job that runs the docker_required wrapper tests (S19/S20/S31) against the built node image. The docker job needs both the liblogosdelivery artifact and the container-image build, and skips when no image is available (fork PRs lack the registry secrets). The non-docker subset still needs only `build`, so a docker-image build failure cannot mask its result.
50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
name: e2e-api-tests
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
subset:
|
|
description: "Which wrapper subset to run: 'non-docker' or 'docker'."
|
|
type: string
|
|
required: false
|
|
default: "non-docker"
|
|
node_image:
|
|
description: "Node image used for the docker peers (docker subset only)."
|
|
type: string
|
|
required: false
|
|
default: ""
|
|
|
|
jobs:
|
|
api-e2e:
|
|
runs-on: ubuntu-22.04
|
|
timeout-minutes: 45
|
|
name: api-e2e
|
|
env:
|
|
NODE_1: ${{ inputs.node_image }}
|
|
NODE_2: ${{ inputs.node_image }}
|
|
ADDITIONAL_NODES: ${{ inputs.node_image }}
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
# Consumes the shared library built by ci.yml's `build` job (same run).
|
|
- name: Download liblogosdelivery.so
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: liblogosdelivery
|
|
path: tests-e2e/vendor/logos-delivery-python-bindings/lib
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
cache: 'pip'
|
|
cache-dependency-path: tests-e2e/requirements.txt
|
|
|
|
- name: Install Python deps
|
|
run: pip install -r tests-e2e/requirements.txt
|
|
|
|
- name: Run API/e2e tests (${{ inputs.subset }} subset)
|
|
working-directory: tests-e2e
|
|
run: pytest tests/wrappers_tests -m "${{ inputs.subset == 'docker' && 'docker_required' || 'not docker_required' }}" --reruns 2
|