-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2626 from wazuh/sync-agent-groups-get
IT - WDB - 2532- Test sync_agent_groups_get WDB command
- Loading branch information
Showing
4 changed files
with
352 additions
and
1 deletion.
There are no files selected for viewing
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
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
171 changes: 171 additions & 0 deletions
171
tests/integration/test_wazuh_db/data/global/sync_agent_groups_get.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,171 @@ | ||
--- | ||
- | ||
name: "Test sync_status with response" | ||
test_case: | ||
- | ||
input: 'global sync-agent-groups-get {"condition":"sync_status"}' | ||
output: "[{'data': [{'id': 1, 'groups': ['Test_group1']}, {'id': 2, 'groups': ['Test_group2']}]}]" | ||
|
||
- | ||
name: "Test sync_status without response" | ||
test_case: | ||
- | ||
pre_input: ['global sql UPDATE agent SET group_sync_status="synced"'] | ||
input: 'global sync-agent-groups-get {"condition":"sync_status"}' | ||
output: "[{'data': []}]" | ||
|
||
- | ||
name: "Test 'all' condition when agent groups are in 'sync_req'" | ||
test_case: | ||
- | ||
input: 'global sync-agent-groups-get {"condition":"all"}' | ||
output: "[{'data': [{'id': 1, 'groups': ['Test_group1']}, {'id': 2, 'groups': ['Test_group2']}]}]" | ||
|
||
- | ||
name: "Test 'all' condition when agent groups are in 'synced'" | ||
test_case: | ||
- | ||
pre_input: ['global sql UPDATE agent SET group_sync_status="synced"'] | ||
input: 'global sync-agent-groups-get {"condition":"all"}' | ||
output: "[{'data': [{'id': 1, 'groups': ['Test_group1']}, {'id': 2, 'groups': ['Test_group2']}]}]" | ||
|
||
- | ||
name: "Test 'sync_status' condition when one agent groups are in 'synced'" | ||
test_case: | ||
- | ||
pre_input: ['global sql UPDATE agent SET group_sync_status="synced" WHERE id = 2'] | ||
input: 'global sync-agent-groups-get {"condition":"sync_status"}' | ||
output: "[{'data': [{'id': 1, 'groups': ['Test_group1']}]}]" | ||
|
||
- | ||
name: "Test 'all' condition when one agent groups are in 'synced'" | ||
test_case: | ||
- | ||
pre_input: ['global sql UPDATE agent SET group_sync_status="synced" WHERE id = 2'] | ||
input: 'global sync-agent-groups-get {"condition":"all"}' | ||
output: "[{'data': [{'id': 1, 'groups': ['Test_group1']}, {'id': 2, 'groups': ['Test_group2']}]}]" | ||
|
||
- | ||
name: "Test with and invalid filter in condition" | ||
test_case: | ||
- | ||
input: 'global sync-agent-groups-get {"condition":"testinvalid"}' | ||
output: 'err Could not obtain a response from wdb_global_sync_agent_groups_get' | ||
|
||
- | ||
name: "Test without condition" | ||
test_case: | ||
- | ||
input: 'global sync-agent-groups-get {"last_id":0}' | ||
output: "err Invalid JSON data, missing required 'condition' field" | ||
|
||
- | ||
name: "Test set_synced in True" | ||
test_case: | ||
- | ||
input: 'global sync-agent-groups-get {"condition":"sync_status", "set_synced":true}' | ||
output: "[{'data': [{'id': 1, 'groups': ['Test_group1']}, {'id': 2, 'groups': ['Test_group2']}]}]" | ||
new_status: "synced" | ||
agent_id: "[1,2]" | ||
|
||
- | ||
name: "Test set_synced with invalid value - false" | ||
test_case: | ||
- | ||
input: 'global sync-agent-groups-get {"condition":"sync_status", "set_synced":false}' | ||
output: "[{'data': [{'id': 1, 'groups': ['Test_group1']}, {'id': 2, 'groups': ['Test_group2']}]}]" | ||
new_status: "syncreq" | ||
agent_id: "[1,2]" | ||
|
||
- | ||
name: "Test set_synced with invalid value - String" | ||
test_case: | ||
- | ||
input: 'global sync-agent-groups-get {"condition":"sync_status", "set_synced":"set"}' | ||
output: "err Invalid JSON data, invalid alternative fields data type" | ||
new_status: "syncreq" | ||
agent_id: "[1,2]" | ||
|
||
- | ||
name: "Test get_global_hash in true" | ||
test_case: | ||
- | ||
pre_input: ['global sql UPDATE agent SET group_hash = "DUMMY"'] | ||
input: 'global sync-agent-groups-get {"last_id":0, "condition":"sync_status", "get_global_hash":true}' | ||
output: "[{'data': [{'id': 1, 'groups': ['Test_group1']}, {'id': 2, 'groups': ['Test_group2']}], 'hash': '49087946dd7a587ae30ae89cbc8084cad2cb0bfd'}]" | ||
|
||
- | ||
name: "Test get_global_hash in false" | ||
test_case: | ||
- | ||
pre_input: ['global sql UPDATE agent SET group_hash = "DUMMY"'] | ||
input: 'global sync-agent-groups-get {"last_id":0, "condition":"sync_status", "get_global_hash":false}' | ||
output: "[{'data': [{'id': 1, 'groups': ['Test_group1']}, {'id': 2, 'groups': ['Test_group2']}]}]" | ||
|
||
- | ||
name: "Test get_global_hash with invalid value" | ||
test_case: | ||
- | ||
pre_input: ['global sql UPDATE agent SET group_hash = "DUMMY"'] | ||
input: 'global sync-agent-groups-get {"last_id":0, "condition":"sync_status", "get_global_hash":"set"}' | ||
output: "err Invalid JSON data, invalid alternative fields data type" | ||
|
||
- | ||
name: "Test 'agent_registration_delta' in 0 and sync_status" | ||
test_case: | ||
- | ||
input: 'global sync-agent-groups-get {"condition":"sync_status", "agent_registration_delta":0}' | ||
output: "[{'data': [{'id': 1, 'groups': ['Test_group1']}, {'id': 2, 'groups': ['Test_group2']}]}]" | ||
|
||
- | ||
name: "Test 'agent_registration_delta' in 0 and all condition " | ||
test_case: | ||
- | ||
input: 'global sync-agent-groups-get {"condition":"all", "agent_registration_delta":0}' | ||
output: "[{'data': [{'id': 1, 'groups': ['Test_group1']}, {'id': 2, 'groups': ['Test_group2']}]}]" | ||
|
||
- | ||
name: "Test 'agent_registration_delta' with delta in 10000 and sync_status" | ||
test_case: | ||
- | ||
pre_input: ['global insert-agent {"id":5,"name":"Agent-test5","date_add":1545753642}', 'global set-agent-groups {"mode":"append","sync_status":"syncreq", | ||
"source":"remote","data":[{"id":5,"groups":["Test_group5"]}]}'] | ||
input: 'global sync-agent-groups-get {"condition":"sync_status", "agent_registration_delta":10000}' | ||
output: "[{'data': [{'id': 5, 'groups': ['Test_group5']}]}]" | ||
|
||
- | ||
name: "Test 'agent_registration_delta' with delta in 10000 and all" | ||
test_case: | ||
- | ||
pre_input: ['global insert-agent {"id":6,"name":"Agent-test6","date_add":1545753642}', 'global set-agent-groups {"mode":"append","sync_status":"syncreq", | ||
"source":"remote","data":[{"id":6,"groups":["Test_group6"]}]}'] | ||
input: 'global sync-agent-groups-get {"condition":"all", "agent_registration_delta":10000}' | ||
output: "[{'data': [{'id': 6, 'groups': ['Test_group6']}]}]" | ||
|
||
- | ||
name: "Test last_id - by default" | ||
test_case: | ||
- | ||
input: 'global sync-agent-groups-get {"last_id":0, "condition":"sync_status"}' | ||
output: "[{'data': [{'id': 1, 'groups': ['Test_group1']}, {'id': 2, 'groups': ['Test_group2']}]}]" | ||
|
||
- | ||
name: "Test last_id - obtain from second group" | ||
test_case: | ||
- | ||
input: 'global sync-agent-groups-get {"last_id":1, "condition":"sync_status"}' | ||
output: "[{'data': [{'id': 2, 'groups': ['Test_group2']}]}]" | ||
|
||
- | ||
name: "Test last_id - with not exist id" | ||
test_case: | ||
- | ||
input: 'global sync-agent-groups-get {"last_id":3, "condition":"sync_status"}' | ||
output: "[{'data': []}]" | ||
|
||
- | ||
name: "Test last_id - with negative value" | ||
test_case: | ||
- | ||
input: 'global sync-agent-groups-get {"last_id":-3, "condition":"sync_status"}' | ||
output: "[{'data': [{'id': 1, 'groups': ['Test_group1']}, {'id': 2, 'groups': ['Test_group2']}]}]" |
138 changes: 138 additions & 0 deletions
138
tests/integration/test_wazuh_db/test_sync_agent_groups_get.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
''' | ||
copyright: Copyright (C) 2015-2022, Wazuh Inc. | ||
Created by Wazuh, Inc. <info@wazuh.com>. | ||
This program is free software; you can redistribute it and/or modify it under the terms of GPLv2 | ||
type: integration | ||
brief: Wazuh-db is the daemon in charge of the databases with all the Wazuh persistent information, exposing a socket | ||
to receive requests and provide information. The Wazuh core uses list-based databases to store information | ||
related to agent keys, and FIM/Rootcheck event data. | ||
This test checks the usage of the sync-agent-groups-get command used to allow the cluster getting the | ||
information to be synchronized.. | ||
tier: 0 | ||
modules: | ||
- wazuh_db | ||
components: | ||
- manager | ||
daemons: | ||
- wazuh-db | ||
os_platform: | ||
- linux | ||
os_version: | ||
- Arch Linux | ||
- Amazon Linux 2 | ||
- Amazon Linux 1 | ||
- CentOS 8 | ||
- CentOS 7 | ||
- CentOS 6 | ||
- Ubuntu Focal | ||
- Ubuntu Bionic | ||
- Ubuntu Xenial | ||
- Ubuntu Trusty | ||
- Debian Buster | ||
- Debian Stretch | ||
- Debian Jessie | ||
- Debian Wheezy | ||
- Red Hat 8 | ||
- Red Hat 7 | ||
- Red Hat 6 | ||
references: | ||
- https://documentation.wazuh.com/current/user-manual/reference/daemons/wazuh-db.html | ||
tags: | ||
- wazuh_db | ||
''' | ||
import os | ||
|
||
import time | ||
import pytest | ||
import json | ||
|
||
from wazuh_testing.tools import WAZUH_PATH | ||
from wazuh_testing.wazuh_db import (query_wdb, insert_agent_into_group, clean_agents_from_db, | ||
clean_groups_from_db, clean_belongs) | ||
from wazuh_testing.tools.file import get_list_of_content_yml | ||
from wazuh_testing.modules import TIER0, SERVER, LINUX | ||
|
||
# Marks | ||
pytestmark = [LINUX, TIER0, SERVER] | ||
|
||
# Configurations | ||
test_data_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'data') | ||
messages_file = os.path.join(os.path.join(test_data_path, 'global'), 'sync_agent_groups_get.yaml') | ||
module_tests = get_list_of_content_yml(messages_file, ".split('_')[0]") | ||
|
||
log_monitor_paths = [] | ||
wdb_path = os.path.join(os.path.join(WAZUH_PATH, 'queue', 'db', 'wdb')) | ||
receiver_sockets_params = [(wdb_path, 'AF_UNIX', 'TCP')] | ||
monitored_sockets_params = [('wazuh-db', None, True)] | ||
receiver_sockets = None # Set in the fixtures | ||
|
||
|
||
# Fixtures | ||
|
||
# Insert agents into DB and assign them into a group | ||
@pytest.fixture(scope='function') | ||
def pre_insert_agents_into_group(): | ||
insert_agent_into_group(2) | ||
|
||
yield | ||
clean_agents_from_db() | ||
clean_groups_from_db() | ||
clean_belongs() | ||
|
||
|
||
# Tests | ||
@pytest.mark.parametrize('test_case', | ||
[case['test_case'] for module_data in module_tests for case in module_data[0]], | ||
ids=[f"{module_name}: {case['name']}" | ||
for module_data, module_name in module_tests | ||
for case in module_data] | ||
) | ||
def test_sync_agent_groups(configure_sockets_environment, connect_to_sockets_module, | ||
test_case, pre_insert_agents_into_group): | ||
''' | ||
description: Check that commands about sync_aget_groups_get works properly. | ||
wazuh_min_version: 4.4.0 | ||
parameters: | ||
- configure_sockets_environment: | ||
type: fixture | ||
brief: Configure environment for sockets and MITM. | ||
- connect_to_sockets_module: | ||
type: fixture | ||
brief: Module scope version of 'connect_to_sockets' fixture. | ||
- test_case: | ||
type: fixture | ||
brief: List of test_case stages (dicts with input, output and agent_id and expected_groups keys). | ||
- pre_insert_agents_into_group: | ||
type: fixture | ||
brief: fixture in charge of insert agents and groups into DB. | ||
assertions: | ||
- Verify that the socket response matches the expected output. | ||
input_description: | ||
- Test cases are defined in the sync_agent_groups_get.yaml file. | ||
expected_output: | ||
- an array with all the agents that match with the search criteria | ||
tags: | ||
- wazuh_db | ||
- wdb_socket | ||
''' | ||
# Set each case | ||
case_data = test_case[0] | ||
output = case_data["output"] | ||
|
||
# Check if it requires any special configuration | ||
if 'pre_input' in case_data: | ||
for command in case_data['pre_input']: | ||
query_wdb(command) | ||
|
||
time.sleep(1) | ||
response = query_wdb(case_data["input"]) | ||
|
||
# Validate response | ||
assert str(response) == output | ||
|
||
# Validate if the status of the group has change | ||
if "new_status" in case_data: | ||
agent_id = json.loads(case_data["agent_id"]) | ||
for id in agent_id: | ||
response = query_wdb(f'global get-agent-info {id}') | ||
assert case_data["new_status"] == response[0]['group_sync_status'] |