Add agent files from wazuh/wazuh #2
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: Integration tests for MsGraph on Linux - Tier 0 and 1 | |
on: | |
workflow_dispatch: | |
inputs: | |
base_branch: | |
description: 'Base branch' | |
required: true | |
default: 'main' | |
pull_request: | |
paths: | |
- ".github/workflows/integration-tests-msgraph-tier-0-1-lin.yml" | |
- "src/config/wmodules-ms-graph.c" | |
- "src/wazuh_modules/wm_ms_graph.h" | |
- "src/wazuh_modules/wm_ms_graph.c" | |
- "src/Makefile" | |
- "tests/integration/conftest.py" | |
- "tests/integration/test_msgraph/**" | |
jobs: | |
build: | |
env: | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
BRANCH_BASE: ${{ github.base_ref || inputs.base_branch }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version-file: ".github/workflows/.python-version" | |
architecture: x64 | |
# Setup MSGraph Proxy | |
- name: Download m365proxy and config http for msgraph module | |
run: | | |
sed -i 's/https:\/\/%s\/%s/http:\/\/%s\/%s/g' src/wazuh_modules/wm_ms_graph.h | |
curl -L http://packages.wazuh.com/utils/m365proxy/m365proxy.tar.gz | \ | |
tar zvx -C /tmp/ | |
# Build wazuh agent for linux. | |
- name: Build wazuh agent for linux | |
run: | | |
make deps -C src TARGET=agent -j2 | |
make -C src TARGET=agent -j2 | |
# Install wazuh agent for linux. | |
- name: Install wazuh agent for linux | |
run: | | |
echo 'USER_LANGUAGE="en"' > ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
echo 'USER_AGENT_SERVER_IP="127.0.0.1"' >> ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
echo 'USER_NO_STOP="y"' >> ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
echo 'USER_INSTALL_TYPE="agent"' >> ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
echo "USER_DIR=/var/ossec" >> ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
echo 'USER_ENABLE_EMAIL="n"' >> ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
echo 'USER_ENABLE_SYSCHECK="n"' >> ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
echo 'USER_ENABLE_ROOTCHECK="n"' >> ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
echo 'USER_ENABLE_OPENSCAP="n"' >> ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
echo 'USER_ENABLE_SYSCOLLECTOR="n"' >> ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
echo 'USER_ENABLE_SCA="n"' >> ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
echo 'USER_WHITE_LIST="n"' >> ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
echo 'USER_ENABLE_SYSLOG="n"' >> ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
echo 'USER_ENABLE_AUTHD="n"' >> ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
echo 'USER_AUTO_START="y"' >> ./etc/preloaded-vars.conf | |
echo "" >> ./etc/preloaded-vars.conf | |
sudo sh install.sh | |
rm ./etc/preloaded-vars.conf | |
# Download and install integration tests framework. | |
- name: Download and install integration tests framework | |
run: | | |
if [ "X`git ls-remote https://github.com/wazuh/qa-integration-framework.git ${BRANCH_NAME}`" != "X" ]; then | |
QA_BRANCH=${BRANCH_NAME} | |
elif [ "X`git ls-remote https://github.com/wazuh/qa-integration-framework.git ${BRANCH_BASE}`" != "X" ]; then | |
QA_BRANCH=${BRANCH_BASE} | |
else | |
QA_BRANCH="main" | |
fi | |
git clone -b ${QA_BRANCH} --single-branch https://github.com/wazuh/qa-integration-framework.git | |
sudo pip install qa-integration-framework/ | |
sudo rm -rf qa-integration-framework/ | |
# Run msgraph integration tests. | |
- name: Run msgraph integration tests | |
run: | | |
cd tests/integration | |
sudo python -m pytest --tier 0 --tier 1 test_msgraph/ |