package report import ( "bytes" "os" "path/filepath" "strings" "testing" ) func TestWriteCSV(t *testing.T) { tests := []struct { findings []Finding testReportName string expected string wantEmpty bool }{ { testReportName: "simple", expected: filepath.Join(expectPath, "report", "csv_simple.csv"), findings: []Finding{ { RuleID: "test-rule", Match: "line containing secret", Secret: "a secret", StartLine: 1, EndLine: 2, StartColumn: 1, EndColumn: 2, Message: "opps", File: "auth.py", SymlinkFile: "", Commit: "0000000000000000", Author: "John Doe", Email: "johndoe@gmail.com", Date: "10-19-2003", Fingerprint: "fingerprint", Tags: []string{"tag1", "tag2", "tag3"}, }, }}, { wantEmpty: true, testReportName: "empty", expected: filepath.Join(expectPath, "report", "this_should_not_exist.csv"), findings: []Finding{}}, } for _, test := range tests { tmpfile, err := os.Create(filepath.Join(t.TempDir(), test.testReportName+".csv")) if err != nil { t.Error(err) } err = writeCsv(test.findings, tmpfile) if err != nil { t.Error(err) } got, err := os.ReadFile(tmpfile.Name()) if err != nil { t.Error(err) } if test.wantEmpty { if len(got) > 0 { t.Errorf("Expected empty file, got %s", got) } continue } want, err := os.ReadFile(test.expected) if err != nil { t.Error(err) } if !bytes.Equal(got, want) { err = os.WriteFile(strings.Replace(test.expected, ".csv", ".got.csv", 1), got, 0644) if err != nil { t.Error(err) } t.Errorf("got %s, want %s", string(got), string(want)) } } }