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

Test Integration - fix vulnerability validate feed content test #3299

Merged
merged 2 commits into from
Sep 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ Release report: TBD

### Fixed

- Fix Vulnerability Detector IT: test_validate_feed_content yaml cases had wrong extension. ([#3299](https://github.com/wazuh/wazuh-qa/pull/3299)) \- (Tests)
- Fix Analysisd IT: test_syscollector_events failure on wait_for_analysisd_startup. ([#3110](https://github.com/wazuh/wazuh-qa/pull/3110)) \- (Tests)
- Fix GCloud IT: test_max_messages error not received expected messages - ([#3083](https://github.com/wazuh/wazuh-qa/pull/3083)) \- (Tests)
- Fix Solaris and Macos FIM integration tests failures ([#2976](https://github.com/wazuh/wazuh-qa/pull/2976)) \- (Framework + Tests)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
configuration_parameters:
metadata:
provider_name: Red Hat Enterprise Linux 5
expected_format: application/x-bzip
expected_format: application/x-bzip2
path: /tmp/com.redhat.rhsa-RHEL5.xml.bz2
extension: bz2
decompressed_file: /tmp/rhel5.xml
Expand All @@ -14,7 +14,7 @@
configuration_parameters:
metadata:
provider_name: Red Hat Enterprise Linux 6
expected_format: application/x-bzip
expected_format: application/x-bzip2
path: /tmp/rhel-6-including-unpatched.oval.xml.bz2
extension: bz2
decompressed_file: /tmp/rhel6.xml
Expand All @@ -25,7 +25,7 @@
configuration_parameters:
metadata:
provider_name: Red Hat Enterprise Linux 7
expected_format: application/x-bzip
expected_format: application/x-bzip2
path: /tmp/rhel-7-including-unpatched.oval.xml.bz2
extension: bz2
decompressed_file: /tmp/rhel7.xml
Expand All @@ -36,7 +36,7 @@
configuration_parameters:
metadata:
provider_name: Red Hat Enterprise Linux 8
expected_format: application/x-bzip
expected_format: application/x-bzip2
path: /tmp/rhel-8-including-unpatched.oval.xml.bz2
extension: bz2
decompressed_file: /tmp/rhel8.xml
Expand All @@ -47,7 +47,7 @@
configuration_parameters:
metadata:
provider_name: Ubuntu Jammy
expected_format: application/x-bzip
expected_format: application/x-bzip2
path: /tmp/com.ubuntu.jammy.cve.oval.xml.bz2
extension: bz2
decompressed_file: /tmp/jammy.xml
Expand All @@ -58,7 +58,7 @@
configuration_parameters:
metadata:
provider_name: Ubuntu Focal
expected_format: application/x-bzip
expected_format: application/x-bzip2
path: /tmp/com.ubuntu.focal.cve.oval.xml.bz2
extension: bz2
decompressed_file: /tmp/focal.xml
Expand All @@ -69,7 +69,7 @@
configuration_parameters:
metadata:
provider_name: Ubuntu Bionic
expected_format: application/x-bzip
expected_format: application/x-bzip2
path: /tmp/com.ubuntu.bionic.cve.oval.xml.bz2
extension: bz2
decompressed_file: /tmp/bionic.xml
Expand All @@ -80,7 +80,7 @@
configuration_parameters:
metadata:
provider_name: Ubuntu Xenial
expected_format: application/x-bzip
expected_format: application/x-bzip2
path: /tmp/com.ubuntu.xenial.cve.oval.xml.bz2
extension: bz2
decompressed_file: /tmp/xenial.xml
Expand All @@ -91,7 +91,7 @@
configuration_parameters:
metadata:
provider_name: Ubuntu Trusty
expected_format: application/x-bzip
expected_format: application/x-bzip2
path: /tmp/com.ubuntu.trusty.cve.oval.xml.bz2
extension: bz2
decompressed_file: /tmp/trusty.xml
Expand Down