FIX 3001_mqtt_alarms removing dependency on external MQTT broker #3872
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: Functional Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
- '!checkvalgrind**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
TEST_IMAGE_NAME: telefonicaiot/fiware-orion:ci | |
jobs: | |
functional: | |
runs-on: ubuntu-22.04 | |
continue-on-error: true | |
services: | |
mongodb: | |
image: mongo:6.0 | |
ports: | |
- 27017:27017 | |
#mosquitto: | |
# # Needed by MQTT notification tests | |
# image: eclipse-mosquitto:1.6.15 | |
# ports: | |
# - 1883:1883 | |
# volumes: | |
# - ${{ github.workspace}}/test/functionalTest/mosquitto_conf_for_tests.conf:/mosquitto/config/mosquitto.conf | |
# - ${{ github.workspace}}/test/functionalTest/mosquitto_passwd:/mosquitto/config/passwd | |
mosquitto-extra: | |
# Needed by MQTT notification tests (multi broker) | |
image: eclipse-mosquitto:1.6.15 | |
ports: | |
- 1884:1883 | |
name: functional - ${{ matrix.payload.name }} | |
strategy: | |
matrix: | |
payload: | |
- { name: 'batch 1 - cache', range: '-e FT_FROM_IX=0 -e FT_TO_IX=300' } | |
- { name: 'batch 2 - cache', range: '-e FT_FROM_IX=301 -e FT_TO_IX=600' } | |
- { name: 'batch 3 - cache', range: '-e FT_FROM_IX=601 -e FT_TO_IX=900' } | |
- { name: 'batch 4 - cache', range: '-e FT_FROM_IX=901 -e FT_TO_IX=1200' } | |
- { name: 'batch 5 - cache', range: '-e FT_FROM_IX=1201' } | |
- { name: 'batch 1 - no cache', range: '-e CB_NO_CACHE=ON -e FT_FROM_IX=0 -e FT_TO_IX=300' } | |
- { name: 'batch 2 - no cache', range: '-e CB_NO_CACHE=ON -e FT_FROM_IX=301 -e FT_TO_IX=600' } | |
- { name: 'batch 3 - no cache', range: '-e CB_NO_CACHE=ON -e FT_FROM_IX=601 -e FT_TO_IX=900' } | |
- { name: 'batch 4 - no cache', range: '-e CB_NO_CACHE=ON -e FT_FROM_IX=901 -e FT_TO_IX=1200' } | |
- { name: 'batch 5 - no cache', range: '-e CB_NO_CACHE=ON -e FT_FROM_IX=1201' } | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Start Mosquitto | |
uses: namoshek/mosquitto-github-action@v1 | |
with: | |
version: '1.6' | |
ports: '1883:1883' | |
config: ${{ github.workspace }}/test/functionalTest/mosquitto_conf_for_tests.conf | |
password-file: ${{ github.workspace}}/test/functionalTest/mosquitto_passwd:/mosquitto/config/passwd | |
container-name: 'mqtt' | |
- name: Run functional test | |
run: | | |
docker run --network host -t --rm -e REPO_ACCESS_TOKEN=${{ secrets.REPO_ACCESS_TOKEN }} ${{ matrix.payload.range }} -v $(pwd):/opt/fiware-orion ${{ env.TEST_IMAGE_NAME }} build -miqts functional |