diff --git a/.fmf/version b/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/.gitignore b/.gitignore index dd76e18..1227c7d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,12 @@ /openscap-report-0.1.2.tar.gz /openscap-report-0.1.3.tar.gz +/openscap-report-0.2.0.tar.gz +/openscap-report-0.2.1.tar.gz +/openscap-report-0.2.2.tar.gz +/openscap-report-0.2.3.tar.gz +/openscap-report-0.2.4.tar.gz +/openscap-report-0.2.5.tar.gz +/openscap-report-0.2.6.tar.gz +/openscap-report-0.2.7.tar.gz +/openscap_report-0.2.9.tar.gz +/openscap_report-1.0.0.tar.gz diff --git a/.packit.yaml b/.packit.yaml index e3874f3..1412932 100644 --- a/.packit.yaml +++ b/.packit.yaml @@ -6,6 +6,12 @@ specfile_path: openscap-report.spec # add or remove files that should be synced files_to_sync: - .packit.yaml + - src: plans/ + dest: plans/ + - src: .fmf/ + dest: .fmf/ + - src: generate_arf.sh + dest: generate_arf.sh # name in upstream package repository or registry (e.g. in PyPI) upstream_package_name: openscap-report @@ -14,6 +20,15 @@ downstream_package_name: openscap-report # version tag template upstream_tag_template: v{version} +srpm_build_deps: + - python3-devel + - python3-sphinx + - python3-sphinx_rtd_theme + - python3-jinja2 + - python3-lxml + - redhat-display-fonts + - redhat-text-fonts + actions: get-current-version: - python3 setup.py --version @@ -21,16 +36,49 @@ actions: jobs: - job: propose_downstream trigger: release + identifier: release-rawhide dist_git_branches: - fedora-rawhide -- job: copr_build - targets: - - fedora-all-x86_64 - - epel-9-x86_64 - trigger: pull_request +- job: propose_downstream + trigger: release + identifier: release-epel8 + specfile_path: spec/rhel8/openscap-report.spec + dist_git_branches: + - epel-8 - job: tests - targets: - - fedora-all-x86_64 trigger: pull_request + identifier: tests-all + tmt_plan: smoke + targets: + - fedora-all + - epel-9 + +- job: copr_build + trigger: pull_request + identifier: build-all + targets: + - fedora-all + - epel-9 + +# Until Packit has implicit builds +# for tests we can't enable epel-8 +# as it messes with test jobs. +# The skip_build: true doesn't really +# solve the proplem. + +#- job: tests +# trigger: pull_request +# identifier: epel-tests +# skip_build: true +# targets: +# - epel-9 +# - epel-8 + +#- job: copr_build +# trigger: pull_request +# specfile_path: spec/rhel8/openscap-report.spec +# identifier: epel8 +# targets: +# - epel-8 diff --git a/README.packit b/README.packit index 101dc78..766e300 100644 --- a/README.packit +++ b/README.packit @@ -1,3 +1,3 @@ This repository is maintained by packit. https://packit.dev/ -The file was generated using packit 0.58.1.dev2+g43b2b1f. +The file was generated using packit 0.101.1.post1.dev8+ge78e9e3b. diff --git a/generate_arf.sh b/generate_arf.sh new file mode 100755 index 0000000..9aed4e0 --- /dev/null +++ b/generate_arf.sh @@ -0,0 +1,111 @@ +#!/usr/bin/env bash +# This script generates ARF results. +# Supported OS: +# - Fedora +# - RHEL8/9 +# - Centos8/9 +# Requirements: +# - cmake +# - make +# - openscap-utils +# - openscap-scanner +# - python3-pyyaml +# - python3-jinja2 +# - python3-setuptools +# - git +# - scap-security-guide +# Usage: ./generate_arf MODE FETCH PRODUCT ARF_FILE SKIP_BUILD +# MODE [latest, ssg] use scap-security-guide or latest content from github +# FETCH [yes, no] scanner fetch remote resources +# ARF_FILE Writes results to a given ARF_FILE. +# SKIP_BUILD [yes] Skip build of latest content(Have affect with mode latest). + + +set -e -o pipefail + + +build_content() { + product=$1 + + echo "Build - Start" + + git clone https://github.com/ComplianceAsCode/content.git + cd content/ + git checkout master + + cd build/ + cmake ../ + make -j4 "${product}" + + cd ../../ + echo "Build - Done" +} + +run_oscap_scan() { + ds=$1 + fetch=$2 + file=$3 + echo "Scans - Start" + oscap xccdf eval ${fetch} --profile "(all)" --results-arf ${file} ${ds} || EXIT_CODE=$? + echo $EXIT_CODE + if [ ! -f "$file" ]; then + echo "$file does not exist." >&2 + exit 2 + fi +} + +get_product() { + cpe_name=$(grep "CPE_NAME=" < /etc/os-release | sed 's/CPE_NAME=//g' | sed 's/["]//g') + if [[ "${cpe_name}" =~ fedora ]]; then + echo "fedora" + elif [[ "${cpe_name}" =~ redhat ]]; then + version=$(grep VERSION_ID /etc/os-release | grep -o "[0-9]\+" | head -n1) + echo "rhel${version}" + elif [[ "${cpe_name}" =~ centos.*8 ]]; then + echo "centos8" + elif [[ "${cpe_name}" =~ centos ]]; then + version=$(grep VERSION_ID /etc/os-release | grep -o "[0-9]\+") + echo "cs${version}" + else + echo $cpe_name + echo "ERROR: Not supported OS!" >&2 + exit 1 + fi +} + +if [ "$1" = "" ]; then + echo "ERROR: Missing MODE parameter!" >&2 + exit 1 +fi + + +if [ "$2" = "" ]; then + echo "ERROR: Missing FETCH parameter!" >&2 + exit 1 +fi + + +if [ "$3" = "" ]; then + echo "ERROR: Missing ARF_FILE parameter!" >&2 + exit 1 +fi +file=$3 + +product=$(get_product) + +fetch="--fetch-remote-resources" +if [ "$2" = "no" ]; then + fetch="" +fi + + +if [ "$1" = "latest" ]; then + if [ "$4" != "yes" ]; then + build_content "${product}" + fi + run_oscap_scan "./content/build/ssg-${product}-ds.xml" "${fetch}" "${file}" +fi + +if [ "$1" = "ssg" ]; then + run_oscap_scan "/usr/share/xml/scap/ssg/content/ssg-${product}-ds.xml" "${fetch}" "${file}" +fi diff --git a/openscap-report.spec b/openscap-report.spec index b5dc8ff..bf867d2 100644 --- a/openscap-report.spec +++ b/openscap-report.spec @@ -1,25 +1,29 @@ %global pymodule_name openscap_report Name: openscap-report -Version: 0.1.3 -Release: 0%{?dist} +Version: 1.0.0 +Release: 6%{?dist} Summary: A tool for generating human-readable reports from (SCAP) XCCDF and ARF results # The entire source code is LGPL-2.1+ and GPL-2.0+ and MIT except schemas/ and assets/, which are Public Domain License: LGPLv2+ and GPLv2+ and MIT and Public Domain URL: https://github.com/OpenSCAP/%{name} -Source0: https://github.com/OpenSCAP/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz +Source0: https://github.com/OpenSCAP/%{name}/releases/download/v%{version}/%{pymodule_name}-%{version}.tar.gz BuildArch: noarch + BuildRequires: python3-devel +BuildRequires: python3-pytest BuildRequires: python3-sphinx BuildRequires: python3-sphinx_rtd_theme Provides: bundled(patternfly) = 4 Requires: python3-lxml -Requires: redhat-display-fonts -Requires: redhat-text-fonts +Recommends: redhat-display-fonts +Recommends: redhat-text-fonts + +Obsoletes: oval-graph %global _description %{expand: This package provides a command-line tool for generating @@ -29,11 +33,13 @@ human-readable reports from SCAP XCCDF and ARF results.} %prep -%autosetup -p1 -n %{name}-%{version} +%autosetup -p1 -n %{pymodule_name}-%{version} %generate_buildrequires -%pyproject_buildrequires -t +%pyproject_buildrequires +# test requirement listed only in tox.ini +echo "%{py3_dist jsonschema}" %build @@ -49,7 +55,8 @@ install -m 0644 -Dt %{buildroot}%{_mandir}/man1 _build_docs/oscap-report.1 %check -%tox +# test_store_file fails with FileNotFoundError: [Errno 2] No such file or directory: '/tmp/oscap-report-tests_result.html' +%pytest -k "not test_store_file" %files -f %{pyproject_files} %{_mandir}/man1/oscap-report.* @@ -59,6 +66,352 @@ install -m 0644 -Dt %{buildroot}%{_mandir}/man1 _build_docs/oscap-report.1 %changelog +* Fri Sep 19 2025 Python Maint - 1.0.0-6 +- Rebuilt for Python 3.14.0rc3 bytecode + +* Fri Aug 15 2025 Python Maint - 1.0.0-5 +- Rebuilt for Python 3.14.0rc2 bytecode + +* Thu Jul 24 2025 Fedora Release Engineering - 1.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Wed Jun 04 2025 Python Maint - 1.0.0-3 +- Rebuilt for Python 3.14 + +* Fri Jan 17 2025 Fedora Release Engineering - 1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Fri Oct 04 2024 Packit - 1.0.0-1 +- Update to version 1.0.0 + +* Thu Jul 18 2024 Fedora Release Engineering - 0.2.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Sat Jun 08 2024 Python Maint - 0.2.9-2 +- Rebuilt for Python 3.13 + +* Tue Apr 23 2024 Packit - 0.2.9-1 +- Update to version 0.2.9 + +* Mon Jan 29 2024 Yaakov Selkowitz - 0.2.7-2 +- Avoid tox dependency + +* Fri Jan 26 2024 Packit - 0.2.7-1 +- 0.2.7 (Jan Rodak) +- Add tool tip to search bar (Jan Rodak) +- Enable search by reference (Jan Rodak) +- Add generation search infromation (Jan Rodak) +- Use macro for generation of list items (Jan Rodak) +- Create two-tier display of Evaluation Characteristics (Jan Rodak) +- Add title (Jan Rodak) +- Reduce complexity of function generate_referenced_endpoints (Jan Rodak) +- Use default dict (Jan Rodak) +- Fix JSON schema (Jan Rodak) +- Use correct orthography of addresses types acronyms (Jan Rodak) +- Add function to update known references (Jan Rodak) +- Change the presentation of referenced endpoints (Jan Rodak) +- Add new elements (Jan Rodak) +- Add onclick function (Jan Rodak) +- Add map of OVAL endpoints (Jan Rodak) +- Add target addresses to report (Jan Rodak) +- Add target addresses to model (Jan Rodak) +- Fix width of pre element (Jan Rodak) + +* Thu Jan 25 2024 Fedora Release Engineering - 0.2.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 0.2.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Dec 20 2023 Packit - 0.2.6-1 +- 0.2.6 (Jan Rodak) +- Extend the condition to account empty strings in href (Jan Černý) +- Add comments for the pylint tool (Jan Černý) +- Add special classes to table element (Jan Černý) +- Account for missing reference href attribute (Jan Černý) +- Add pragmas to avoid PEP8 warnings (Jan Černý) +- Present references in a table (Jan Černý) +- Collapse CPE tree when is true (Jan Rodak) +- Fix typo (Jan Rodak) +- Add titles (Jan Rodak) +- Fix performace of generation of graphs (Jan Rodak) +- Rearrange fields of rule detail and OVAL definition detail (Jan Rodak) +- Fix bugs in html (Jan Rodak) + +* Mon Sep 11 2023 Packit - 0.2.5-1 +- 0.2.5 (Jan Rodak) +- Show referenced OVAL State (Jan Rodak) +- Parse reference in filter (Jan Rodak) +- Show OVAL Variables and referenced OVAL endpoints in report (Jan Rodak) +- Remove UUID from headings (Jan Rodak) +- Move function (Jan Rodak) +- Display in report OVAL object that references to other OVAL Objects (Jan Rodak) +- Resolve parsing of referenced OVAL Objects and OVAL Variables (Jan Rodak) +- Add OVAL Variable structure and parser (Jan Rodak) +- Rework OVAL Object and State (Jan Rodak) +- Parse mapping between OVAL var and values and propagate them (Jan Rodak) +- Remove namesapace for attributes (Jan Rodak) +- Show OVAL states in report (Jan Rodak) +- Parse attributes of elements in OVAL state and Parse all OVAL states in OVAL test (Jan Rodak) +- Show OVAL objects in report (Jan Rodak) +- Parse attributes of elements in OVAL object (Jan Rodak) +- Removing the processing of collected objects (Jan Rodak) +- Use an empty string instead of None when the text of the set-value element is empty (Jan Rodak) +- Fix deprecation warning (Jan Rodak) +- Remove product detection from the tmt plan (Jan Rodak) +- Increase vm memory (Jan Rodak) +- Add python3 dependency (Jan Rodak) +- Adjust the build of content (Jan Rodak) +- Automatic product detection to build content by CPE identifier (Jan Rodak) +- Remove whitespaces (Jan Rodak) +- Show explanation of score computation in report (Jan Rodak) +- Add explanation of score computation (Jan Rodak) +- Parse system attribute from score element (Jan Rodak) + +* Thu Jul 20 2023 Fedora Release Engineering - 0.2.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Wed Jul 05 2023 Python Maint - 0.2.4-2 +- Rebuilt for Python 3.12 + +* Wed Jul 05 2023 Packit - 0.2.4-1 +- 0.2.4 (Jan Rodak) +- Rename field Result explained to Class explained (Jan Rodak) +- Add button back to top (Jan Rodak) +- Generate tooltip when hover the mouse over the OVAL operator (Jan Rodak) +- Fix persistance of checkboxes after refresh browser (Jan Rodak) +- Add functionality to buttons (Jan Rodak) +- Add buttons (Jan Rodak) +- Set logging severity from warning to info for missing fonts problem (Jan Rodak) +- Change fonts to week dependency (Jan Rodak) +- Disable scrollbar (Jan Rodak) +- Show tooltip for NOT (Jan Rodak) +- Add explanations (Jan Rodak) +- Generate tooltip (Jan Rodak) +- Set tooltip position for OVAL and CPE AL operators (Jan Rodak) +- Add new tooltip when user click on copy to clipboard (Jan Rodak) +- Rename tooltip class (Jan Rodak) +- Add new lines on end of file (Jan Rodak) +- Update eslint config (Jan Rodak) +- Implement clear button for search bar (Jan Rodak) +- Change title (Jan Rodak) +- Use the same title for the page title and report title (Jan Rodak) +- Using span element instead of link element when href is not available (Jan Rodak) +- Add non-breaking space (Jan Rodak) +- Add missing package (Jan Rodak) +- Update modules docs (Jan Rodak) +- Add documentation on how to run the test suite (Jan Rodak) +- Add usage from source (Jan Rodak) +- Add installation from source and PyPi (Jan Rodak) +- Update README (Jan Rodak) +- Sync generate_arf.sh (Jan Rodak) +- Remove execution of integration test on push to main (Jan Rodak) + +* Thu Jun 15 2023 Python Maint - 0.2.3-2 +- Rebuilt for Python 3.12 + +* Fri Apr 14 2023 Packit - 0.2.3-1 +- 0.2.3 (Jan Rodak) +- Determine which product use (Jan Rodak) +- Discover upstream (Jan Rodak) +- Run only smoke test in Testing Farm (Jan Rodak) +- Add weekly execution of integration test (Jan Rodak) +- Add tmt tests (Jan Rodak) +- Add tmt plan (Jan Rodak) +- Modify the smoke test to use different ARF reports (Jan Rodak) +- Add script for generation of ARF report (Jan Rodak) +- Add filter for rule id (Jan Rodak) +- Select new multi-check rules (Jan Rodak) +- Create copy of multi-check rule for every OVAL definition (Jan Rodak) +- Make method _get_applicable_cpe_ids_for_machine part of ProfileInfo and rename the method to get_list_of_cpe_platforms_that_satisfy_evaluation_target (Jan Rodak) +- Adapt input of oval_cpe_definiton in test (Jan Rodak) +- Adapt the mapping of OVAL definitions to the new OVAL definition analysis system and specify which OVAL result report is for CPE (Jan Rodak) +- Parse all OVAL definition from all OVAL result reports (Jan Rodak) +- Add parsing of OVAL refence to OVAL report (Jan Rodak) +- Load all oval reports present in ARF report (Jan Rodak) +- Fix typo in link (Jan Rodak) +- Sync tests with downstream (Jan Rodak) +- Add required parameter (Jan Rodak) +- Move unit tests from interation_tests direcory (Jan Rodak) +- Move function get_fake_args to test utils (Jan Rodak) +- Create separate job propose_downstream for EPEL8 (Jan Rodak) +- Sort chapters (Jan Rodak) +- Add manual about report content (Jan Rodak) +- Add assets (Jan Rodak) +- Fix typo (Jan Rodak) +- Add license tag (Jan Rodak) +- Add explanation of result of OVAL definition (Jan Rodak) +- Parse class of OVAL definition (Jan Rodak) +- Add tests for CPE AL (Jan Rodak) +- Fix negation of logical test (Jan Rodak) +- Add support for check-fact-ref element in CPE-AL (Jan Rodak) + +* Tue Mar 28 2023 Packit - 0.2.2-0 +- 0.2.2 (Jan Rodak) +- Clean up CI jobs titles (Evgeny Kolesnikov) +- Fix RHEL8/EPEL8 build and test integration (Evgeny Kolesnikov) +- Show message for OVAL object (Jan Rodak) +- Parse message of collected OVAL object (Jan Rodak) +- Create OvalObjectMessage (Jan Rodak) +- Create a clickable rule title to show rule detail (Jan Rodak) +- Add a copy remediation to the clipboard (Jan Rodak) +- Uderline remediation summary (Jan Rodak) +- Replace word search with filter (Jan Rodak) +- Fix compatibility issue with python3.8 in the test suite (Jan Rodak) +- Execute test suite with python3.8 and the latest python (Jan Rodak) +- Create package dependency test for centos stream 8 (Jan Rodak) +- Create copr build for rhel8 (Jan Rodak) +- Fix TypeError: 'type' object is not subscriptable coused by downgrade (Jan Rodak) +- Downgrade the minimum version of python (Jan Rodak) +- Add spec file for rhel8 (Jan Rodak) +- Fix W3601 (Jan Rodak) + +* Mon Mar 13 2023 Packit - 0.2.1-1 +- 0.2.1 (Jan Rodak) +- Add rule weight attribute to report (Jan Rodak) +- Parse rule weight attribute (Jan Rodak) +- Add weight attribute to rule datastructure (Jan Rodak) + +* Wed Mar 08 2023 Packit - 0.2.0-0 +- 0.2.0 (Jan Rodak) +- Add JSON validator tool (Jan Rodak) +- Create tests (Jan Rodak) +- Update issue templates (Jan Rodák) +- Impruve run time of unit tests (Jan Rodak) +- Add funtion for filtering JSON (Jan Rodak) +- Filter JSON keys (Jan Rodak) +- Adapt the tests and create a new test that tests the validation (Jan Rodak) +- Add an unsupported XML format to the result (Jan Rodak) +- Create validation of XCCDF files (Jan Rodak) +- Add XCCDF schemas (Jan Rodak) +- Fix typo in variable name (Jan Rodak) +- Fix problem that was spotted with new test and create test case (Jan Rodak) +- Add testcase of the crash when is used XCCDF result (Jan Rodak) +- Impruve raised expection info (Jan Rodak) +- Hide empty info about profile when isnt anvalible (Jan Rodak) +- Add missing else branch for if condition if is cpe_platform not defined in jinja (Jan Rodak) +- Add unit tests for SharedStaticMethodsOfParser (Jan Rodak) +- Add check and check_existence atributes to report (Jan Rodak) +- Add information about OVAL state to report (Jan Rodak) +- Decompose OVALTestInfoParser class (Jan Rodak) +- Parse OVAL state (Jan Rodak) +- Add OVAL state class (Jan Rodak) +- Add info about comparison of endpoint values in OVAL test (Jan Rodak) +- Ignore deprecated settings of pylint (Jan Rodak) +- Update tests (Jan Rodak) +- Add category to report (Jan Rodak) +- Parse category of warning (Jan Rodak) +- Add Warning dataclass (Jan Rodak) +- Update pylint config (Jan Rodak) +- Reduce external dependencies of test suite (Jan Rodak) +- Fix data type (Jan Rodak) +- Change label of OVAL definition for CPE (Jan Rodak) +- Add HTML generation of CPE AL trees (Jan Rodak) +- Add css for CPE AL (Jan Rodak) +- Create place for graph with CPE AL (Jan Rodak) +- Integrate CPE AL parser (Jan Rodak) +- Create CPE AL parser (Jan Rodak) +- Add expection (Jan Rodak) +- Add imports to __init__ (Jan Rodak) +- Create cpe platform (Jan Rodak) +- Add cpe logical test (Jan Rodak) +- Create evaluation of CPE logical test (Jan Rodak) +- Use a more elegant way to copy dictionary (Jan Rodak) +- Disable automatic character escaping in jinja (Jan Rodak) +- Remove duplicite CPE trees for fedora platforms (Jan Rodak) +- Fix the classification of tests (Jan Rodak) +- Present new infromation in HTML report (Jan Rodak) +- Update test suite (Jan Rodak) +- Update jinja macros for new dataclasses (Jan Rodak) +- Replace jinja filter with methode call that use diffrent informations (Jan Rodak) +- Implement usage of TestResultOfScan and ProfileInfo dataclasses (Jan Rodak) +- Add parser of performed scan information (Jan Rodak) +- Create parser of profile information (Jan Rodak) +- Use new dataclasses in Report (Jan Rodak) +- Create ProfileInfo and TestResultOfScan dataclasses (Jan Rodak) +- Regenerate docs modules (Jan Rodak) +- Ignore old xslt codes for generating old style report for backwards compatibility (Jan Rodak) +- Fix CWE-79 (Jan Rodak) +- Fix overwrite attribute get_report_dict, which was previously defined in superclass (Jan Rodak) +- Explicitly import stdout, stdin with prefix sys (Jan Rodak) +- Close file after usage (Jan Rodak) +- Fix empty expections (Jan Rodak) +- Fix missing OVAL definitions in reports when is not present OVAL CPE checks (Jan Rodak) +- Fix key error platfrom without OVAL definition (Jan Rodak) +- Fix missing CPE checks (Jan Rodak) +- Update README.md (Evgeny Kolesnikov) +- Update README.md (Evgeny Kolesnikov) +- Fix parsing of checking engine result (Jan Rodak) +- Rename master branch to main in github action configs TODO : LINKS IN README etc. (Jan Rodak) +- Rename master branch to main in realase script (Jan Rodak) +- Move comment of OVAL nodes behind result label (Jan Rodak) +- Display OVAL definitions details in the HTML report (Jan Rodak) +- Display comments in OVAL graphs (Jan Rodak) +- Replace the empty rule title with the rule id (Jan Rodak) +- Add srpm_build_deps (Jan Rodak) +- Update nodejs actions (Jan Rodak) +- Add CodeQL workflow for GitHub code scanning (LGTM Migrator) +- Add tests for oval definition (Jan Rodak) +- Reduce run time of test suite (Jan Rodak) +- Switch using oval_tree to oval_definition (Jan Rodak) +- Implement usage of OVAL definition parser (Jan Rodak) +- Create OVAL definition parser (Jan Rodak) +- Create OVAL reference (Jan Rodak) +- Create OVAL definition (Jan Rodak) +- Rename clases TestInfoParser to OVALTestInfoParser and OVALDefinitionParser to OVALResultParser (Jan Rodak) +- Add Read the Docs configuration file (Jan Rodak) +- Improve readme (Jan Rodak) +- Update chapter layout (Jan Rodak) +- Add usage chapter to documentation (Jan Rodak) +- Add installation chapter to documentation (Jan Rodak) +- Regenerate modules (Jan Rodak) +- Add link to readthedocs (Jan Rodak) +- Fix typo (Jan Rodak) +- Add instalation and basic usage to readme (Jan Rodak) +- Fix mixing of Rule class and rule XML element (Jan Rodak) +- Rename groupe_parser to group_parser and info_of_test_parser to test_info_parser (Jan Rodak) +- Create output format JSON-EVERYTHING (Jan Rodak) +- Use filter for generation JSON (Jan Rodak) +- Rename directory (Jan Rodak) +- Break methodes to smaller methods (Jan Rodak) +- Fix tests according to change of structure of SCAPResultsParser class (Jan Rodak) +- Rework structure SCAPResultsParser class (Jan Rodak) +- Rework assembly of OVAL and CPE trees (Jan Rodak) +- Remove None comment (Jan Rodak) +- Remove None value from definition ID (Jan Rodak) +- Fix test of remediation (Jan Rodak) +- Specify data types of Rule (Jan Rodak) +- Specify data types of Report (Jan Rodak) +- Remove default id of Remediation (Jan Rodak) +- Specify data types of OvalTest (Jan Rodak) +- Specify data types of OvalObject (Jan Rodak) +- Specify data types of OvalNode (Jan Rodak) +- Specify data types of Group (Jan Rodak) +- Create objects Identifier and Reference (Jan Rodak) +- Use buildin function asdict (Jan Rodak) +- Generate json output from report structure (Jan Rodak) +- Ignore generated JSON reports (Jan Rodak) +- Create tests (Jan Rodak) +- Use report_generators sub package (Jan Rodak) +- Create a JSON generator shell (Jan Rodak) +- Create report_generators sub package (Jan Rodak) +- Add format JSON to cli (Jan Rodak) +- Fix W1514 (Jan Rodak) +- Update pylint config (Jan Rodak) +- Add a copy to the clipboard for the rule ID field (Jan Rodak) +- Fix problem with the formatting of command line options (Jan Rodak) +- Replace default value TextIOWrapper with name of file in man page (Jan Rodak) +- Remove enumerte of choices for alternative options (Jan Rodak) +- Format lists of descriptions of choices (Jan Rodak) +- Fix FIRST_HIDDEN_ELEMENT is null (Jan Rodak) +- Remove unused template file (Jan Rodak) +- Move CSS style to separate file (Jan Rodak) +- Minimalize the usage of inline styles (Jan Rodak) +- Add footer to report (Jan Rodak) + +* Thu Jan 19 2023 Fedora Release Engineering - 0.1.3-1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Tue Aug 23 2022 Packit - 0.1.3-0 - 0.1.3 (Jan Rodak) - Change license tag (Jan Rodak) diff --git a/plans/integration.fmf b/plans/integration.fmf new file mode 100644 index 0000000..eaebd17 --- /dev/null +++ b/plans/integration.fmf @@ -0,0 +1,29 @@ +summary: Test integration with latest versions of content +discover+: + filter: tag:integration +provision: + memory: 4096 +prepare: + - name: Install packages require for generation ARF files + how: install + package: + - cmake + - make + - openscap-utils + - openscap-scanner + - python3 + - python3-pyyaml + - python3-jinja2 + - python3-setuptools + - git + - scap-security-guide + - name: Generate ARF files + how: shell + script: + - ./generate_arf.sh ssg no ${TMT_PLAN_DATA}/arf.xml + - ./generate_arf.sh ssg yes ${TMT_PLAN_DATA}/arf_fetch-remote-resources.xml + - ./generate_arf.sh latest no ${TMT_PLAN_DATA}/arf-latest.xml + - ./generate_arf.sh latest yes ${TMT_PLAN_DATA}/arf_fetch-remote-resources-latest.xml yes + +execute: + how: tmt diff --git a/plans/main.fmf b/plans/main.fmf new file mode 100644 index 0000000..9c5456f --- /dev/null +++ b/plans/main.fmf @@ -0,0 +1,5 @@ +execute: + how: tmt +discover: + how: fmf + url: https://github.com/OpenSCAP/openscap-report.git diff --git a/plans/smoke.fmf b/plans/smoke.fmf new file mode 100644 index 0000000..c67e52c --- /dev/null +++ b/plans/smoke.fmf @@ -0,0 +1,3 @@ +summary: Basic simple tests +discover+: + filter: tier:0 diff --git a/sources b/sources index 8699ea5..8d874ae 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (openscap-report-0.1.3.tar.gz) = bbc5b9a2fef409a1033d7939780b2143cb473b32d23d02300d76130d098ac54b2fdeeba5b8e4fca67739818262028410e43f1b761745ba1fbacd89d88720f7b1 +SHA512 (openscap_report-1.0.0.tar.gz) = 6ca5a24798961cfc50112e9da9157f582732574fef4592a7fe5c8a98b4ed4b9aa3f7221427bd5e95a799a82468a22a2eddfb2262c6fc22cd2e4262540913db03