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

Add merge reports option in report command #10

Merged
merged 16 commits into from
Sep 14, 2023

Conversation

AleksandarSavchev
Copy link
Member

@AleksandarSavchev AleksandarSavchev commented Sep 8, 2023

What this PR does / why we need it:
This PR add a new functionality to the diki report command which allows the merge of multiple json reports into a single html report. To use this feature the distinct-by flag should be set with unique attributes which would be used for each provider to distinct the different reports.

TODO: write documentation

Which issue(s) this PR fixes:
Fixes #

Special notes for your reviewer:

Release note:

The `diki report` command can now be used to merge multiple reports into a single report by setting the `--distinct-by` flag.

@gardener-robot gardener-robot added needs/review Needs review size/l Size of pull request is large (see gardener-robot robot/bots/size.py) needs/second-opinion Needs second review by someone else labels Sep 8, 2023
@gardener-robot-ci-1 gardener-robot-ci-1 added the reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) label Sep 8, 2023
@gardener-robot-ci-2 gardener-robot-ci-2 added needs/ok-to-test Needs approval for testing (check PR in detail before setting this label because PR is run on CI/CD) and removed reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) labels Sep 8, 2023
@gardener-robot gardener-robot added size/xl Size of pull request is huge (see gardener-robot robot/bots/size.py) and removed size/l Size of pull request is large (see gardener-robot robot/bots/size.py) labels Sep 11, 2023
@gardener-robot-ci-1 gardener-robot-ci-1 added the reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) label Sep 11, 2023
@gardener-robot-ci-3 gardener-robot-ci-3 removed the reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) label Sep 11, 2023
@gardener-robot-ci-1 gardener-robot-ci-1 added the reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) label Sep 11, 2023
@gardener-robot-ci-3 gardener-robot-ci-3 removed the reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) label Sep 11, 2023
@AleksandarSavchev AleksandarSavchev marked this pull request as ready for review September 11, 2023 12:08
@AleksandarSavchev AleksandarSavchev requested a review from a team as a code owner September 11, 2023 12:08
Copy link
Member

@dimityrmirchev dimityrmirchev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! I left some comments. Also it would be nice if we can have a simple test for the MergeReport function

if len(args) != 1 {
return errors.New("report requires a single filepath argument")
if len(args) == 0 {
return errors.New("report requires a minimum of one filepath arguments")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return errors.New("report requires a minimum of one filepath arguments")
return errors.New("report command requires a minimum of one filepath argument")

}

if len(args) > 1 && len(opts.distinctBy) == 0 {
return errors.New("report requires a single filepath argument when flag distinct-by is not set ")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return errors.New("report requires a single filepath argument when flag distinct-by is not set ")
return errors.New("report command requires a single filepath argument when the distinct-by flag is not set ")

README.md Outdated
@@ -38,11 +38,18 @@ diki run --config=config.yaml --provider=gardener --ruleset-id=disa-kubernetes-s

#### Report

Generate an html report
Diki report generates a human readable html report from the .json output of a `diki run` execution. Merged reports can be generated using the `distinct-by` flag, the value of this flag is a list of key:value pairs where the keys are the IDs of the providers we want to include in the merged report and the values are the unique metadata fields to be used for IDs of the different reports.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Diki report generates a human readable html report from the .json output of a `diki run` execution. Merged reports can be generated using the `distinct-by` flag, the value of this flag is a list of key:value pairs where the keys are the IDs of the providers we want to include in the merged report and the values are the unique metadata fields to be used for IDs of the different reports.
Diki can generate a human readable report from the output files of a `diki run` execution. Merged reports can be produced by setting the `distinct-by` flag. The value of this flag is a list of `key=value` pairs where the keys are the IDs of the providers we want to include in the merged report and the values are the unique metadata fields to be used as distinction values between different provider runs.

for _, arg := range args {
fileData, err := os.ReadFile(filepath.Clean(arg))
if err != nil {
return fmt.Errorf("failed to read file %s:%w", arg, err)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return fmt.Errorf("failed to read file %s:%w", arg, err)
return fmt.Errorf("failed to read file %s: %w", arg, err)

return r.templates["report"].Execute(w, rep)
return r.templates[tmplReportName].Execute(w, rep)
case *MergedReport:
return r.templates[tmplMergedReportName].Execute(w, rep)
default:
return fmt.Errorf("unsupported report type: %T", rep)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return fmt.Errorf("unsupported report type: %T", rep)
return fmt.Errorf("unsupported report type: %T", report)

}

if _, ok := mergedProvider.Metadata[uniqueAttr]; ok {
return &MergedReport{}, fmt.Errorf("distinct attribute %s is not unique", mergedProvider.DistinctBy)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return &MergedReport{}, fmt.Errorf("distinct attribute %s is not unique", mergedProvider.DistinctBy)
return nil, fmt.Errorf("distinct attribute %s is not unique", mergedProvider.DistinctBy)

}

mergedProvider.Metadata[uniqueAttr] = report.Providers[idx].Metadata
mergedProvider.Metadata[uniqueAttr]["time"] = report.Time.Format("01-02-2006")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we also add the time of the report?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That would be a good addition for a more detailed report. I have added HH-MM-SS now as well.

func numOfMergedRulesWithStatus(ruleset *MergedRuleset, status rule.Status) int {
num := 0
for _, rule := range ruleset.Rules {
for _, check := range rule.Checks {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we can use slices.ContainsFunc here?

}

func metadataTextForMergedProvider(mp MergedProvider) map[string]string {
metadataTexts := map[string]string{}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
metadataTexts := map[string]string{}
metadataTexts := make(map[string]string, len(mp.Metadata))

func metadataTextForMergedProvider(mp MergedProvider) map[string]string {
metadataTexts := map[string]string{}
for id, metadata := range mp.Metadata {
metadataText := "("
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is a good place to use strings.Builder

@gardener-robot gardener-robot added the needs/changes Needs (more) changes label Sep 12, 2023
@gardener-robot-ci-2 gardener-robot-ci-2 added the reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) label Sep 13, 2023
@gardener-robot-ci-3 gardener-robot-ci-3 removed the reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) label Sep 13, 2023
for key := range distinctByAttrs {
distinctByAttrsProviders = append(distinctByAttrsProviders, key)
}
sort.Strings(distinctByAttrsProviders)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please use slices.Sort

Comment on lines 19 to 21
handler := slog.NewJSONHandler(os.Stdout, &slog.HandlerOptions{Level: slog.LevelInfo})
logger := slog.New(handler)
testLogger = logger
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not used

@gardener-robot-ci-2 gardener-robot-ci-2 added reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) and removed reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) labels Sep 14, 2023
Copy link
Member

@dimityrmirchev dimityrmirchev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!
/lgtm

@gardener-robot gardener-robot added reviewed/lgtm Has approval for merging and removed needs/changes Needs (more) changes needs/review Needs review needs/second-opinion Needs second review by someone else labels Sep 14, 2023
@dimityrmirchev dimityrmirchev merged commit 9a49947 into gardener:main Sep 14, 2023
@gardener-robot gardener-robot added the status/closed Issue is closed (either delivered or triaged) label Sep 14, 2023
@gardener-robot-ci-1 gardener-robot-ci-1 added the reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) label Sep 14, 2023
@AleksandarSavchev AleksandarSavchev deleted the add-merged-reports branch February 7, 2024 07:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs/ok-to-test Needs approval for testing (check PR in detail before setting this label because PR is run on CI/CD) reviewed/lgtm Has approval for merging reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) size/xl Size of pull request is huge (see gardener-robot robot/bots/size.py) status/closed Issue is closed (either delivered or triaged)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants