2023-06-29 13:45:56 +00:00
|
|
|
package engine
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2023-07-11 20:48:00 +00:00
|
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/decoders"
|
2023-06-29 13:45:56 +00:00
|
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/detectors"
|
|
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/sources"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestFragmentLineOffset(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
chunk *sources.Chunk
|
|
|
|
result *detectors.Result
|
|
|
|
expectedLine int64
|
|
|
|
ignore bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "ignore found on same line",
|
|
|
|
chunk: &sources.Chunk{
|
|
|
|
Data: []byte("line1\nline2\nsecret here trufflehog:ignore\nline4"),
|
|
|
|
},
|
|
|
|
result: &detectors.Result{
|
|
|
|
Raw: []byte("secret here"),
|
|
|
|
},
|
|
|
|
expectedLine: 2,
|
|
|
|
ignore: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no ignore",
|
|
|
|
chunk: &sources.Chunk{
|
|
|
|
Data: []byte("line1\nline2\nsecret here\nline4"),
|
|
|
|
},
|
|
|
|
result: &detectors.Result{
|
|
|
|
Raw: []byte("secret here"),
|
|
|
|
},
|
|
|
|
expectedLine: 2,
|
|
|
|
ignore: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "ignore on different line",
|
|
|
|
chunk: &sources.Chunk{
|
|
|
|
Data: []byte("line1\nline2\ntrufflehog:ignore\nline4\nsecret here\nline6"),
|
|
|
|
},
|
|
|
|
result: &detectors.Result{
|
|
|
|
Raw: []byte("secret here"),
|
|
|
|
},
|
|
|
|
expectedLine: 4,
|
|
|
|
ignore: false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
lineOffset, isIgnored := FragmentLineOffset(tt.chunk, tt.result)
|
|
|
|
if lineOffset != tt.expectedLine {
|
|
|
|
t.Errorf("Expected line offset to be %d, got %d", tt.expectedLine, lineOffset)
|
|
|
|
}
|
|
|
|
if isIgnored != tt.ignore {
|
|
|
|
t.Errorf("Expected isIgnored to be %v, got %v", tt.ignore, isIgnored)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2023-07-11 20:48:00 +00:00
|
|
|
|
|
|
|
// Test to make sure that DefaultDecoders always returns the UTF8 decoder first.
|
|
|
|
// Technically a decoder test but we want this to run and fail in CI
|
|
|
|
func TestDefaultDecoders(t *testing.T) {
|
|
|
|
ds := decoders.DefaultDecoders()
|
|
|
|
if _, ok := ds[0].(*decoders.UTF8); !ok {
|
|
|
|
t.Errorf("DefaultDecoders() = %v, expected UTF8 decoder to be first", ds)
|
|
|
|
}
|
|
|
|
}
|