-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IT - WDB - 2532- Test sync_agent_groups_get WDB command #2626
Merged
Merged
Changes from 10 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
3aa5a25
Add: add cases to check sync_status
CamiRomero f701b42
Add: add new test cases to check sync_agent_groups
CamiRomero 3268e62
Add: add invalid test cases
CamiRomero 19e96b2
Rf: Refactor test to accept more than one preinput
CamiRomero a8acac8
merge wazuh db into sync command
CamiRomero 899d96b
rf: Applied new structure
CamiRomero bd02bce
fix typo
CamiRomero bbbb7e5
Rf: Apply changes in comments
CamiRomero 7cf071b
Rf: Modify test cases
CamiRomero eafb47b
Merge branch '2532-wazuh-db-commands' into sync-agent-groups-get
CamiRomero 2c5809c
Add: add new blank lines
CamiRomero aa34904
Rf: changes in pytest marks
CamiRomero bfcc353
rf: Changes to addapt pip8 style
CamiRomero File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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']}]}]" |
136 changes: 136 additions & 0 deletions
136
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,136 @@ | ||
''' | ||
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 yaml | ||
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 | ||
|
||
# Marks | ||
pytestmark = [pytest.mark.linux, pytest.mark.tier(level=0), pytest.mark.server] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you use marks defined on There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done in commit aa349 |
||
|
||
# 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"] | ||
damarisg marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
# Check if it requires any special configuration | ||
if 'pre_input' in case_data: | ||
for command in case_data['pre_input']: | ||
query_wdb(command) | ||
results = query_wdb(command) | ||
damarisg marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
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'] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done in commit 2c5809