MON-21973-date-problem-on-storage-ibm-storwize-ssh-plugin-eventlog #386
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: functional-tests | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- '.github/workflows/tests-functional.yml' | |
- 'src/**' | |
- 'tests/functional/**' | |
- 'tests/resources/mockoon/**' | |
- 'tests/resources/snmp/**' | |
jobs: | |
functional-tests-with-robot: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install libs | |
run: | | |
sudo apt update | |
sudo apt-get install -y libcurl4-openssl-dev | |
sudo apt-get install -qqy snmpsim | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install Mockoon CLI | |
run: npm install -g -D @mockoon/[email protected] | |
- name: Install perl dependencies | |
uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: '5.34' | |
install-modules-with: cpm | |
install-modules: | | |
Alien::SNMP | |
DateTime | |
Net::Curl::Easy | |
Paws | |
Net::SNMP | |
URI::Encode | |
XML::LibXML | |
- name: Install Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install Robot Framework | |
run: pip3.11 install robotframework | |
shell: bash | |
- name: Run Robot Framework API tests | |
run: | | |
sudo mkdir -p /var/lib/centreon/centplugins/ | |
sudo chmod 777 /var/lib/centreon/centplugins/ | |
robot tests/functional/api | |
- name: Run Robot Framework SNMP tests | |
run: | | |
sudo useradd snmp | |
sudo mkdir -p /usr/snmpsim/data | |
sudo cp tests/resources/snmp/* /usr/snmpsim/data/ | |
snmpsimd --agent-udpv4-endpoint=127.0.0.1:2024 --process-user=snmp --process-group=snmp & | |
robot tests/functional/snmp |