Files
trufflehog/pkg/detectors/fastlypersonaltoken/fastlypersonaltoken_test.go
Kashif Khan bc32592066 Updated Fastly Personal Token Detector (#3386)
* Updated verification API and enhanced the code for fastly personal token detector

* fixed integration test cases and resolved comments

* pass secret to SetVerificationError
2024-10-10 07:50:30 -05:00

95 lines
2.4 KiB
Go

package fastlypersonaltoken
import (
"context"
"testing"
"github.com/google/go-cmp/cmp"
"github.com/trufflesecurity/trufflehog/v3/pkg/detectors"
"github.com/trufflesecurity/trufflehog/v3/pkg/engine/ahocorasick"
)
var (
// example picked from: https://github.com/ryan-miller/learn-go-with-tests/blob/181467c9e512f7e68d3f3cbcea89f0050982416c/fastly/users.go#L22
validPattern = `
// headers and header values
const fastlyKeyToken string = "Fastly-Key"
const fastlyKey string = "TVAWji0p7uDI6OP9DyWvmV-vgoUoXIuf"
const contentTypeToken string = "Content-Type"
const appJsonContentType = "application/json"`
validPatternToken = "TVAWji0p7uDI6OP9DyWvmV-vgoUoXIuf"
invalidPattern = `
// headers and header values
const fastlyKeyToken string = "Fastly-Key"
const fastlyKey string = "$FASTLY_KEY"
const contentTypeToken string = "Content-Type"
const appJsonContentType = "application/json"`
)
func TestFastlyPersonalToken_Pattern(t *testing.T) {
d := Scanner{}
ahoCorasickCore := ahocorasick.NewAhoCorasickCore([]detectors.Detector{d})
tests := []struct {
name string
input string
want []string
}{
{
name: "valid pattern",
input: validPattern,
want: []string{validPatternToken},
},
{
name: "invalid pattern",
input: invalidPattern,
want: nil,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
matchedDetectors := ahoCorasickCore.FindDetectorMatches([]byte(test.input))
if len(matchedDetectors) == 0 {
t.Errorf("keywords '%v' not matched by: %s", d.Keywords(), test.input)
return
}
results, err := d.FromData(context.Background(), false, []byte(test.input))
if err != nil {
t.Errorf("error = %v", err)
return
}
if len(results) != len(test.want) {
if len(results) == 0 {
t.Errorf("did not receive result")
} else {
t.Errorf("expected %d results, only received %d", len(test.want), len(results))
}
return
}
actual := make(map[string]struct{}, len(results))
for _, r := range results {
if len(r.RawV2) > 0 {
actual[string(r.RawV2)] = struct{}{}
} else {
actual[string(r.Raw)] = struct{}{}
}
}
expected := make(map[string]struct{}, len(test.want))
for _, v := range test.want {
expected[v] = struct{}{}
}
if diff := cmp.Diff(expected, actual); diff != "" {
t.Errorf("%s diff: (-want +got)\n%s", test.name, diff)
}
})
}
}