-
Notifications
You must be signed in to change notification settings - Fork 277
73 lines (61 loc) · 1.9 KB
/
tests-functional.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
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 -r 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