| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- package report
- import (
- "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",
- },
- }},
- {
- 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(tmpPath, test.testReportName+".csv"))
- if err != nil {
- os.Remove(tmpfile.Name())
- t.Error(err)
- }
- err = writeCsv(test.findings, tmpfile)
- if err != nil {
- os.Remove(tmpfile.Name())
- t.Error(err)
- }
- got, err := os.ReadFile(tmpfile.Name())
- if err != nil {
- os.Remove(tmpfile.Name())
- t.Error(err)
- }
- if test.wantEmpty {
- if len(got) > 0 {
- t.Errorf("Expected empty file, got %s", got)
- }
- os.Remove(tmpfile.Name())
- continue
- }
- want, err := os.ReadFile(test.expected)
- if err != nil {
- os.Remove(tmpfile.Name())
- t.Error(err)
- }
- if string(got) != string(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))
- }
- os.Remove(tmpfile.Name())
- }
- }
|