Skip to content
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

Integrity sync test flaky behavior #4368

Closed
roronoasins opened this issue Jul 26, 2023 · 5 comments · Fixed by #4406
Closed

Integrity sync test flaky behavior #4368

roronoasins opened this issue Jul 26, 2023 · 5 comments · Fixed by #4406
Assignees
Labels

Comments

@roronoasins
Copy link
Contributor

Description

During the Pre-Alpha 1 system tests, it was found that the test_cluster/test_integrity_sync/test_integrity_sync.py system test for the agentless_cluster environment has a flaky behavior.

Sometimes a timeout error appears, and in other cases, a file that should be created is missing.

Evidences

integrity_sync_reports.zip

@pro-akim
Copy link
Member

pro-akim commented Aug 1, 2023

Update

Moved to framework team.

@GGP1
Copy link
Member

GGP1 commented Aug 1, 2023

Update

This issue could be a duplicate of wazuh/wazuh#18123.

There is one extra test failing in the artifacts uploaded here (test_jwt_invalidation/test_revoke_endpoint.py) so we should wait for the other issue to be resolved and double-check before closing this one.

@EduLeon12 EduLeon12 self-assigned this Aug 4, 2023
@EduLeon12
Copy link
Contributor

Issue Update

After running the test multiple times, it was found that the error is consistent and the message is always the same:

    def check_result(self):
        """Check if a TimeoutError occurred."""
        logger.debug(f'Checking results...')
        while not self._queue.empty():
            result = self._queue.get(block=True)
            for host, msg in result.items():
                if isinstance(msg, TimeoutError):
>                   raise msg
E                   TimeoutError: Did not found the expected callback in wazuh-master: .*Command received: b'cancel_task'.*

The error occurs on the test_zip_size_limit.

After reviewing the cluster.log of all components no error messages are found and after debugging the test it was found that the error occurs on the HostMonitor class when executing the run method.

And After debugging the Run method it was found that the Timeout occurs because it can't find an available handler for the file monitor, the loop gets stuck there until a timeout occurs.

The next step would be to replicate the behavior of the test locally to ensure where is the error if it's an error on the test or the cluster.

@EduLeon12
Copy link
Contributor

EduLeon12 commented Aug 7, 2023

Issue Update

After further debugging the tests it was confirmed that the cluster.json changes when running the tests as expected

Default config found inside cluster.json before the tests:

        "communication": {
            "timeout_cluster_request": 20,
            "timeout_dapi_request": 200,
            "timeout_receiving_file": 120,
            "max_zip_size": 1073741824,
            "min_zip_size": 31457280,
            "compress_level": 1,
            "zip_limit_tolerance": 0.2
        }

During the tests:

 "communication": {
            "timeout_cluster_request": 20,
            "timeout_dapi_request": 200,
            "timeout_receiving_file": 1,
            "max_zip_size": 52428800,
            "min_zip_size": 15728640,
            "compress_level": 0,
            "zip_limit_tolerance": 0.2
        }

As defined in the test config:

---
timeout_receiving_file: 1
max_zip_size: 52428800    # 50 MB
min_zip_size: 15728640    # 15 MB
compress_level: 0

And trying to find the expected message cancel_task in the manager cluster.log only returns information from another module.

root@wazuh-master: /var/ossec/logs# grep 'cancel_task' cluster.log
2023/08/07 19:07:30 DEBUG: [Worker wazuh-worker1] [SendSync] Received request: b'wazuh-worker1*494570 {"daemon_name":"task-manager","message":{"origin":{"name":"wazuh-worker1","module":"upgrade_module"},"command":"upgrade_cancel_tasks","parameters":{}}}'
2023/08/07 19:07:52 DEBUG: [Worker wazuh-worker2] [SendSync] Received request: b'wazuh-worker2*104217 {"daemon_name":"task-manager","message":{"origin":{"name":"wazuh-worker2","module":"upgrade_module"},"command":"upgrade_cancel_tasks","parameters":{}}}'
2023/08/07 19:12:07 DEBUG: [Worker wazuh-worker1] [SendSync] Received request: b'wazuh-worker1*523620 {"daemon_name":"task-manager","message":{"origin":{"name":"wazuh-worker1","module":"upgrade_module"},"command":"upgrade_cancel_tasks","parameters":{}}}'
2023/08/07 19:12:28 DEBUG: [Worker wazuh-worker2] [SendSync] Received request: b'wazuh-worker2*926534 {"daemon_name":"task-manager","message":{"origin":{"name":"wazuh-worker2","module":"upgrade_module"},"command":"upgrade_cancel_tasks","parameters":{}}}'

The cancel_task is nowhere to be found meaning the signal is not being properly sent.

@EduLeon12
Copy link
Contributor

EduLeon12 commented Aug 8, 2023

Issue Update

After further testing and debugging, it was found that the test fails due to the sync succeding instead of failing as the test expects, this can happen because of the re
sources allocated when running locally.

Increasing the configuration max size limit from 50 MB --> 100 MB and increasing the number of files created from 5 --> 10. the timeout occurs and the cancel_task is being properly sent from workers and received from master.

  • configuration.yaml:
---
timeout_receiving_file: 1
max_zip_size: 104857600    # 100 MB
min_zip_size: 15728640    # 15 MB
compress_level: 0
  • test_integrity_sync number of files increase to 10:
big_filenames = {file_prefix + str(i) for i in range(10)}
  • Manager cluster.log
2023/08/08 12:58:21 DEBUG: [Worker wazuh-worker2] [Main] Command received: b'cancel_task'
2023/08/08 12:58:25 DEBUG: [Worker wazuh-worker1] [Main] Command received: b'cancel_task'
  • Testing results
(system-test-env) eduardoleon@pop-os:~/git/wazuh-qa/tests/system/test_cluster$ pytest test_integrity_sync/
==================================== test session starts =====================================
platform linux -- Python 3.9.16, pytest-6.2.2, py-1.10.0, pluggy-0.13.1
rootdir: /home/eduardoleon/git/wazuh-qa/tests/system, configfile: pytest.ini
plugins: testinfra-5.0.0, metadata-2.0.4, html-3.1.1
collected 1 item

test_integrity_sync/test_integrity_sync.py .                                           [100%]

=============================== 1 passed in 244.11s (0:04:04) ================================
(system-test-env) eduardoleon@pop-os:~/git/wazuh-qa/tests/system/test_cluster$ pytest test_integrity_sync/
==================================== test session starts =====================================
platform linux -- Python 3.9.16, pytest-6.2.2, py-1.10.0, pluggy-0.13.1
rootdir: /home/eduardoleon/git/wazuh-qa/tests/system, configfile: pytest.ini
plugins: testinfra-5.0.0, metadata-2.0.4, html-3.1.1
collected 1 item

test_integrity_sync/test_integrity_sync.py .                                           [100%]

=============================== 1 passed in 260.82s (0:04:20) ================================
(system-test-env) eduardoleon@pop-os:~/git/wazuh-qa/tests/system/test_cluster$ pytest test_integrity_sync/
==================================== test session starts =====================================
platform linux -- Python 3.9.16, pytest-6.2.2, py-1.10.0, pluggy-0.13.1
rootdir: /home/eduardoleon/git/wazuh-qa/tests/system, configfile: pytest.ini
plugins: testinfra-5.0.0, metadata-2.0.4, html-3.1.1
collected 1 item

test_integrity_sync/test_integrity_sync.py .                                           [100%]

=============================== 1 passed in 250.99s (0:04:10) ================================

@EduLeon12 EduLeon12 linked a pull request Aug 8, 2023 that will close this issue
EduLeon12 pushed a commit that referenced this issue Aug 9, 2023
EduLeon12 pushed a commit that referenced this issue Aug 9, 2023
EduLeon12 pushed a commit that referenced this issue Aug 9, 2023
EduLeon12 pushed a commit that referenced this issue Aug 9, 2023
EduLeon12 pushed a commit that referenced this issue Aug 9, 2023
EduLeon12 pushed a commit that referenced this issue Aug 9, 2023
@Rebits Rebits closed this as completed Aug 14, 2023
damarisg added a commit that referenced this issue Aug 24, 2023
* docs(#3786): update changelog.md

* feat(#3786): new event_monitors

* fix(#3786): recursive_directory_creation perms

* feat(#3786): new fixture

* fix(#3786): configuration imports

* feat(#3786): new test module

* docs(#3786): update changelog.md

* style(#3786): fix indentation and whitelines

* style(#3786): fix indentation

* feat(#3693): add cases and configuration files

* feat(#3693): add test_registry_wildcards module

* feat(#3693): add new callbacks and event_monitor

* docs(#3693): update changelog.md

* style(#3693): fix whitelines

* feat(#4281): New invalid decoder test case for wazuh-logtest

* fix(#4281): Fix invalid_decoder_syntax.yaml file line lengths

* feat(#4325): upgrade pyyaml to 6.0.1

* feat: bump version 4.5.2

* fix(#4275): modified year field in test_update_from_year

* fix(#4275): update custom feeds to NVD 2.0 structure

* fix(#4275): deprecate NVD update_from_year option and related changes

* fix(#4275): NVD feed must be in one line

* fix(#4275): more NVD feed one line fix

* style(#4275): fix quoted errors in YAML file

* style(#4275): added changelog entry and fixed indexing problems

* Merge 4.5.2 into 4.6.0 (#4348)

* feat(#4281): New invalid decoder test case for wazuh-logtest

* fix(#4281): Fix invalid_decoder_syntax.yaml file line lengths

* feat(#4325): upgrade pyyaml to 6.0.1

* feat: bump version 4.5.2

* refactor(#4344): Add space to version json

* feat(#4344): add Release section

---------

Co-authored-by: Vikman Fernandez-Castro <[email protected]>
Co-authored-by: Victor M. Fernandez-Castro <[email protected]>
Co-authored-by: jnasselle <[email protected]>
Co-authored-by: Julia <[email protected]>
Co-authored-by: Julia Magán <[email protected]>
Co-authored-by: David Jose Iglesias Lopez <[email protected]>
Co-authored-by: Víctor Rebollo Pérez <[email protected]>

* Move 4.5.0 `CHANGELOG.md` changes to 4.6.0 (#4331)

* Fix registry wildcards path (#4357)

* fix(#4356): fix configuration_templates path

* docs(#4356): update test wazuh_min_version

* fix(#3786): imports and paths

* fix: delete update_from_year for nvd

* Added new test to verify every check tag in configuration

* feat(#3723): Adds custom AlmaLinux OVAL feed

* feat(#3723): Adds AlmaLinux to test_providers vd tests

* feat(#3723): Adds AlmaLinux to test_scan_results vd tests

* feat(#3723): Adds AlmaLinux to test_feeds vd tests

* feat(#3723): Adds AlmaLinux to the remaining vd tests description

* feat(#3723): Adds AlmaLinux init configurations

* style(#3723): minor fixes

* style(#3723): Formatting .yaml files according to linting test

* fix: renamed syscollector wmodules prefix

* fix(#4336): fix flaky test.

* style(#4336): add missing line

* fix(#4336): fix test logic

* docs: include 4382 to changelog

* fix(#4231): fix canonical tests

* style(#3723): Fixing formatting for AlmaLinux .yaml config file

* docs: include affected component to changelog

Co-Authored-By: Juan Nicolas Asselle <[email protected]>

* Fix FIM framework to validate path in event correctly

* docs: update changelog

* docs: update changelog

* refactor: rename discard cases files

* feat: add cloudwatch and inspector discard regex tests and cases

* docs: add changelog entry

* fix(#4368): Change test and config file

* docs(#4368): update changelog

* Fixed error related to logs format in reliability test (#4387)

* fix(#4365): Adds new logs validations for Agent-groups_recv.yaml

* fix(#4635): Remove single quotes

* fix(#4635): Updates log messages

* fix(#4635): Adds new line at end of Agent-groups_recv.yaml

* fix(#4635): Adds PR to changelog.

* fix(#4365): Update to changelog

* fix(#4365): Update changelog.

---------

Co-authored-by: GGP1 <[email protected]>
Co-authored-by: mauromalara <[email protected]>

* docs: modify changelog and test cases descriptions

* fix(#4423): fix NVD custom feed

* Merge 4.5.2 into 4.6.0 (#4458)

* refactor: bump revision

* Fix package name in one_manager_agent system test environment

* Add fix to changelog

* Update CHANGELOG.md

Co-authored-by: Víctor Rebollo Pérez <[email protected]>

* Update CHANGELOG.md

Co-authored-by: Víctor Rebollo Pérez <[email protected]>

* Merge 4.5.1 into 4.5.2 (#4457)

* fix: update VD validate xml test RHEL url

* docs: include 4424 in changelog

* fix(#4231): fix canonical tests

* docs: change changelog line to include all changes

* fix(#4411): Upgrading integration test dependencies for python in Mac (#4427)

* docs: update changelog

* docs: update changelog

* docs: delete extra number sign

* refactor: bump revision

* Change revision to 4.5.1-rc2 (#4435)

* Update Changelog

---------

Co-authored-by: Víctor Rebollo Pérez <[email protected]>
Co-authored-by: BelenValdivia <[email protected]>
Co-authored-by: Jorge Marino <[email protected]>
Co-authored-by: Julia Magán <[email protected]>
Co-authored-by: Julia <[email protected]>

---------

Co-authored-by: Julia <[email protected]>
Co-authored-by: Julia Magán <[email protected]>
Co-authored-by: Miguel Verdaguer Velázquez <[email protected]>
Co-authored-by: Víctor Rebollo Pérez <[email protected]>
Co-authored-by: BelenValdivia <[email protected]>
Co-authored-by: Jorge Marino <[email protected]>

---------

Co-authored-by: Deblintrake09 <[email protected]>
Co-authored-by: Vikman Fernandez-Castro <[email protected]>
Co-authored-by: Victor M. Fernandez-Castro <[email protected]>
Co-authored-by: jnasselle <[email protected]>
Co-authored-by: Julia <[email protected]>
Co-authored-by: Julia Magán <[email protected]>
Co-authored-by: David Jose Iglesias Lopez <[email protected]>
Co-authored-by: lsayanes <[email protected]>
Co-authored-by: Leonardo Quiceno <[email protected]>
Co-authored-by: Mateo Cervilla <[email protected]>
Co-authored-by: lsayanes <[email protected]>
Co-authored-by: Marcel Kemp <[email protected]>
Co-authored-by: Víctor Rebollo Pérez <[email protected]>
Co-authored-by: Octavio Valle <[email protected]>
Co-authored-by: Jose Luis Carreras Marin <[email protected]>
Co-authored-by: Matias Pereyra <[email protected]>
Co-authored-by: mauromalara <[email protected]>
Co-authored-by: BelenValdivia <[email protected]>
Co-authored-by: Facundo Dalmau <[email protected]>
Co-authored-by: Selutario <[email protected]>
Co-authored-by: Eduardo <[email protected]>
Co-authored-by: Javier Castro <[email protected]>
Co-authored-by: Federico Ramos <[email protected]>
Co-authored-by: GGP1 <[email protected]>
Co-authored-by: Miguel Verdaguer Velázquez <[email protected]>
Co-authored-by: Jorge Marino <[email protected]>
damarisg added a commit that referenced this issue Aug 24, 2023
* Merge 4.6.0 into 4.7.0 (#4349)

* feat(#3693): add cases and configuration files

* feat(#3693): add test_registry_wildcards module

* feat(#3693): add new callbacks and event_monitor

* docs(#3693): update changelog.md

* style(#3693): fix whitelines

* Merge 4.5.2 into 4.6.0 (#4348)

* feat(#4281): New invalid decoder test case for wazuh-logtest

* fix(#4281): Fix invalid_decoder_syntax.yaml file line lengths

* feat(#4325): upgrade pyyaml to 6.0.1

* feat: bump version 4.5.2

* refactor(#4344): Add space to version json

* feat(#4344): add Release section

---------

Co-authored-by: Vikman Fernandez-Castro <[email protected]>
Co-authored-by: Victor M. Fernandez-Castro <[email protected]>
Co-authored-by: jnasselle <[email protected]>
Co-authored-by: Julia <[email protected]>
Co-authored-by: Julia Magán <[email protected]>
Co-authored-by: David Jose Iglesias Lopez <[email protected]>
Co-authored-by: Víctor Rebollo Pérez <[email protected]>

* Move 4.5.0 `CHANGELOG.md` changes to 4.6.0 (#4331)

* Move changes of 4.5.0 in CHANGELOG.md

---------

Co-authored-by: Deblintrake09 <[email protected]>
Co-authored-by: Victor M. Fernandez-Castro <[email protected]>
Co-authored-by: Vikman Fernandez-Castro <[email protected]>
Co-authored-by: jnasselle <[email protected]>
Co-authored-by: Julia <[email protected]>
Co-authored-by: Julia Magán <[email protected]>
Co-authored-by: David Jose Iglesias Lopez <[email protected]>
Co-authored-by: Víctor Rebollo Pérez <[email protected]>

* feat(#4045): add custom feed

* feat(#4045): add test cases and configuration

* feat(#4045): add test module

* docs(#4045): case name and description

* style(#4045): rename feed file name

* style(#4045): fix description indentation

* fix(#4356): fix configuration_templates path

* docs(#4356): update test wazuh_min_version

* refactor(#4404): update database version

* refactor(#4404): updated changelog

* Merge 4.6.0 into 4.7.0 (#4421)

* docs(#3786): update changelog.md

* feat(#3786): new event_monitors

* fix(#3786): recursive_directory_creation perms

* feat(#3786): new fixture

* fix(#3786): configuration imports

* feat(#3786): new test module

* docs(#3786): update changelog.md

* style(#3786): fix indentation and whitelines

* style(#3786): fix indentation

* feat(#3693): add cases and configuration files

* feat(#3693): add test_registry_wildcards module

* feat(#3693): add new callbacks and event_monitor

* docs(#3693): update changelog.md

* style(#3693): fix whitelines

* feat(#4281): New invalid decoder test case for wazuh-logtest

* fix(#4281): Fix invalid_decoder_syntax.yaml file line lengths

* feat(#4325): upgrade pyyaml to 6.0.1

* feat: bump version 4.5.2

* fix(#4275): modified year field in test_update_from_year

* fix(#4275): update custom feeds to NVD 2.0 structure

* fix(#4275): deprecate NVD update_from_year option and related changes

* fix(#4275): NVD feed must be in one line

* fix(#4275): more NVD feed one line fix

* style(#4275): fix quoted errors in YAML file

* style(#4275): added changelog entry and fixed indexing problems

* Merge 4.5.2 into 4.6.0 (#4348)

* feat(#4281): New invalid decoder test case for wazuh-logtest

* fix(#4281): Fix invalid_decoder_syntax.yaml file line lengths

* feat(#4325): upgrade pyyaml to 6.0.1

* feat: bump version 4.5.2

* refactor(#4344): Add space to version json

* feat(#4344): add Release section

---------

Co-authored-by: Vikman Fernandez-Castro <[email protected]>
Co-authored-by: Victor M. Fernandez-Castro <[email protected]>
Co-authored-by: jnasselle <[email protected]>
Co-authored-by: Julia <[email protected]>
Co-authored-by: Julia Magán <[email protected]>
Co-authored-by: David Jose Iglesias Lopez <[email protected]>
Co-authored-by: Víctor Rebollo Pérez <[email protected]>

* Move 4.5.0 `CHANGELOG.md` changes to 4.6.0 (#4331)

* Fix registry wildcards path (#4357)

* fix(#4356): fix configuration_templates path

* docs(#4356): update test wazuh_min_version

* fix(#3786): imports and paths

* fix: delete update_from_year for nvd

* Added new test to verify every check tag in configuration

* feat(#3723): Adds custom AlmaLinux OVAL feed

* feat(#3723): Adds AlmaLinux to test_providers vd tests

* feat(#3723): Adds AlmaLinux to test_scan_results vd tests

* feat(#3723): Adds AlmaLinux to test_feeds vd tests

* feat(#3723): Adds AlmaLinux to the remaining vd tests description

* feat(#3723): Adds AlmaLinux init configurations

* style(#3723): minor fixes

* style(#3723): Formatting .yaml files according to linting test

* fix: renamed syscollector wmodules prefix

* fix(#4336): fix flaky test.

* style(#4336): add missing line

* fix(#4336): fix test logic

* docs: include 4382 to changelog

* fix(#4231): fix canonical tests

* style(#3723): Fixing formatting for AlmaLinux .yaml config file

* docs: include affected component to changelog

Co-Authored-By: Juan Nicolas Asselle <[email protected]>

* Fix FIM framework to validate path in event correctly

* docs: update changelog

* docs: update changelog

---------

Co-authored-by: Deblintrake09 <[email protected]>
Co-authored-by: Vikman Fernandez-Castro <[email protected]>
Co-authored-by: Victor M. Fernandez-Castro <[email protected]>
Co-authored-by: damarisg <[email protected]>
Co-authored-by: jnasselle <[email protected]>
Co-authored-by: Julia <[email protected]>
Co-authored-by: Julia Magán <[email protected]>
Co-authored-by: David Jose Iglesias Lopez <[email protected]>
Co-authored-by: lsayanes <[email protected]>
Co-authored-by: Leonardo Quiceno <[email protected]>
Co-authored-by: Mateo Cervilla <[email protected]>
Co-authored-by: lsayanes <[email protected]>
Co-authored-by: Marcel Kemp <[email protected]>
Co-authored-by: Seyla Dámaris Gomez <[email protected]>
Co-authored-by: Octavio Valle <[email protected]>
Co-authored-by: Jose Luis Carreras Marin <[email protected]>
Co-authored-by: Matias Pereyra <[email protected]>
Co-authored-by: mauromalara <[email protected]>
Co-authored-by: BelenValdivia <[email protected]>
Co-authored-by: Javier Castro <[email protected]>

* Merge 4.6.0 into 4.7.0 (#4459)

* docs(#3786): update changelog.md

* feat(#3786): new event_monitors

* fix(#3786): recursive_directory_creation perms

* feat(#3786): new fixture

* fix(#3786): configuration imports

* feat(#3786): new test module

* docs(#3786): update changelog.md

* style(#3786): fix indentation and whitelines

* style(#3786): fix indentation

* feat(#3693): add cases and configuration files

* feat(#3693): add test_registry_wildcards module

* feat(#3693): add new callbacks and event_monitor

* docs(#3693): update changelog.md

* style(#3693): fix whitelines

* feat(#4281): New invalid decoder test case for wazuh-logtest

* fix(#4281): Fix invalid_decoder_syntax.yaml file line lengths

* feat(#4325): upgrade pyyaml to 6.0.1

* feat: bump version 4.5.2

* fix(#4275): modified year field in test_update_from_year

* fix(#4275): update custom feeds to NVD 2.0 structure

* fix(#4275): deprecate NVD update_from_year option and related changes

* fix(#4275): NVD feed must be in one line

* fix(#4275): more NVD feed one line fix

* style(#4275): fix quoted errors in YAML file

* style(#4275): added changelog entry and fixed indexing problems

* Merge 4.5.2 into 4.6.0 (#4348)

* feat(#4281): New invalid decoder test case for wazuh-logtest

* fix(#4281): Fix invalid_decoder_syntax.yaml file line lengths

* feat(#4325): upgrade pyyaml to 6.0.1

* feat: bump version 4.5.2

* refactor(#4344): Add space to version json

* feat(#4344): add Release section

---------

Co-authored-by: Vikman Fernandez-Castro <[email protected]>
Co-authored-by: Victor M. Fernandez-Castro <[email protected]>
Co-authored-by: jnasselle <[email protected]>
Co-authored-by: Julia <[email protected]>
Co-authored-by: Julia Magán <[email protected]>
Co-authored-by: David Jose Iglesias Lopez <[email protected]>
Co-authored-by: Víctor Rebollo Pérez <[email protected]>

* Move 4.5.0 `CHANGELOG.md` changes to 4.6.0 (#4331)

* Fix registry wildcards path (#4357)

* fix(#4356): fix configuration_templates path

* docs(#4356): update test wazuh_min_version

* fix(#3786): imports and paths

* fix: delete update_from_year for nvd

* Added new test to verify every check tag in configuration

* feat(#3723): Adds custom AlmaLinux OVAL feed

* feat(#3723): Adds AlmaLinux to test_providers vd tests

* feat(#3723): Adds AlmaLinux to test_scan_results vd tests

* feat(#3723): Adds AlmaLinux to test_feeds vd tests

* feat(#3723): Adds AlmaLinux to the remaining vd tests description

* feat(#3723): Adds AlmaLinux init configurations

* style(#3723): minor fixes

* style(#3723): Formatting .yaml files according to linting test

* fix: renamed syscollector wmodules prefix

* fix(#4336): fix flaky test.

* style(#4336): add missing line

* fix(#4336): fix test logic

* docs: include 4382 to changelog

* fix(#4231): fix canonical tests

* style(#3723): Fixing formatting for AlmaLinux .yaml config file

* docs: include affected component to changelog

Co-Authored-By: Juan Nicolas Asselle <[email protected]>

* Fix FIM framework to validate path in event correctly

* docs: update changelog

* docs: update changelog

* refactor: rename discard cases files

* feat: add cloudwatch and inspector discard regex tests and cases

* docs: add changelog entry

* fix(#4368): Change test and config file

* docs(#4368): update changelog

* Fixed error related to logs format in reliability test (#4387)

* fix(#4365): Adds new logs validations for Agent-groups_recv.yaml

* fix(#4635): Remove single quotes

* fix(#4635): Updates log messages

* fix(#4635): Adds new line at end of Agent-groups_recv.yaml

* fix(#4635): Adds PR to changelog.

* fix(#4365): Update to changelog

* fix(#4365): Update changelog.

---------

Co-authored-by: GGP1 <[email protected]>
Co-authored-by: mauromalara <[email protected]>

* docs: modify changelog and test cases descriptions

* fix(#4423): fix NVD custom feed

* Merge 4.5.2 into 4.6.0 (#4458)

* refactor: bump revision

* Fix package name in one_manager_agent system test environment

* Add fix to changelog

* Update CHANGELOG.md

Co-authored-by: Víctor Rebollo Pérez <[email protected]>

* Update CHANGELOG.md

Co-authored-by: Víctor Rebollo Pérez <[email protected]>

* Merge 4.5.1 into 4.5.2 (#4457)

* fix: update VD validate xml test RHEL url

* docs: include 4424 in changelog

* fix(#4231): fix canonical tests

* docs: change changelog line to include all changes

* fix(#4411): Upgrading integration test dependencies for python in Mac (#4427)

* docs: update changelog

* docs: update changelog

* docs: delete extra number sign

* refactor: bump revision

* Change revision to 4.5.1-rc2 (#4435)

* Update Changelog

---------

Co-authored-by: Víctor Rebollo Pérez <[email protected]>
Co-authored-by: BelenValdivia <[email protected]>
Co-authored-by: Jorge Marino <[email protected]>
Co-authored-by: Julia Magán <[email protected]>
Co-authored-by: Julia <[email protected]>

---------

Co-authored-by: Julia <[email protected]>
Co-authored-by: Julia Magán <[email protected]>
Co-authored-by: Miguel Verdaguer Velázquez <[email protected]>
Co-authored-by: Víctor Rebollo Pérez <[email protected]>
Co-authored-by: BelenValdivia <[email protected]>
Co-authored-by: Jorge Marino <[email protected]>

---------

Co-authored-by: Deblintrake09 <[email protected]>
Co-authored-by: Vikman Fernandez-Castro <[email protected]>
Co-authored-by: Victor M. Fernandez-Castro <[email protected]>
Co-authored-by: jnasselle <[email protected]>
Co-authored-by: Julia <[email protected]>
Co-authored-by: Julia Magán <[email protected]>
Co-authored-by: David Jose Iglesias Lopez <[email protected]>
Co-authored-by: lsayanes <[email protected]>
Co-authored-by: Leonardo Quiceno <[email protected]>
Co-authored-by: Mateo Cervilla <[email protected]>
Co-authored-by: lsayanes <[email protected]>
Co-authored-by: Marcel Kemp <[email protected]>
Co-authored-by: Víctor Rebollo Pérez <[email protected]>
Co-authored-by: Octavio Valle <[email protected]>
Co-authored-by: Jose Luis Carreras Marin <[email protected]>
Co-authored-by: Matias Pereyra <[email protected]>
Co-authored-by: mauromalara <[email protected]>
Co-authored-by: BelenValdivia <[email protected]>
Co-authored-by: Facundo Dalmau <[email protected]>
Co-authored-by: Selutario <[email protected]>
Co-authored-by: Eduardo <[email protected]>
Co-authored-by: Javier Castro <[email protected]>
Co-authored-by: Federico Ramos <[email protected]>
Co-authored-by: GGP1 <[email protected]>
Co-authored-by: Miguel Verdaguer Velázquez <[email protected]>
Co-authored-by: Jorge Marino <[email protected]>

* Update Changelog

---------

Co-authored-by: Deblintrake09 <[email protected]>
Co-authored-by: Victor M. Fernandez-Castro <[email protected]>
Co-authored-by: Vikman Fernandez-Castro <[email protected]>
Co-authored-by: jnasselle <[email protected]>
Co-authored-by: Julia <[email protected]>
Co-authored-by: Julia Magán <[email protected]>
Co-authored-by: David Jose Iglesias Lopez <[email protected]>
Co-authored-by: Víctor Rebollo Pérez <[email protected]>
Co-authored-by: Dwordcito <[email protected]>
Co-authored-by: lsayanes <[email protected]>
Co-authored-by: Leonardo Quiceno <[email protected]>
Co-authored-by: Mateo Cervilla <[email protected]>
Co-authored-by: lsayanes <[email protected]>
Co-authored-by: Marcel Kemp <[email protected]>
Co-authored-by: Jose Luis Carreras Marin <[email protected]>
Co-authored-by: Matias Pereyra <[email protected]>
Co-authored-by: mauromalara <[email protected]>
Co-authored-by: BelenValdivia <[email protected]>
Co-authored-by: Javier Castro <[email protected]>
Co-authored-by: Facundo Dalmau <[email protected]>
Co-authored-by: Selutario <[email protected]>
Co-authored-by: Eduardo <[email protected]>
Co-authored-by: Federico Ramos <[email protected]>
Co-authored-by: GGP1 <[email protected]>
Co-authored-by: Miguel Verdaguer Velázquez <[email protected]>
Co-authored-by: Jorge Marino <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
No open projects
Status: Done
Development

Successfully merging a pull request may close this issue.

5 participants