package azurefunctionkey import ( "context" "testing" "github.com/google/go-cmp/cmp" "github.com/stretchr/testify/require" "github.com/trufflesecurity/trufflehog/v3/pkg/detectors" "github.com/trufflesecurity/trufflehog/v3/pkg/engine/ahocorasick" ) func TestAzureFunctionKey_Pattern(t *testing.T) { d := Scanner{} ahoCorasickCore := ahocorasick.NewAhoCorasickCore([]detectors.Detector{d}) tests := []struct { name string input string want []string }{ { name: "valid pattern", input: ` azure: azureURL: https://z1dUSi5T.azurewebsites.net/api/W8anB5J4uQi-v3Dcd6p7ySE0E azureFunctionkey: B8sm0KyfL1y8vPH3IDTdefevHBCGK33-= `, want: []string{ "azurewebsites.net/api/W8anB5J4uQi-v3Dcd6p7ySE0Ehttps://z1dUSi5T.azurewebsites.net/api/W8anB5J4uQi-v3Dcd6p7ySE0E", "B8sm0KyfL1y8vPH3IDTdefevHBCGK33https://z1dUSi5T.azurewebsites.net/api/W8anB5J4uQi-v3Dcd6p7ySE0E", }, }, { name: "valid pattern - xml", input: ` GLOBAL {https://yaeuxPA9-H.azurewebsites.net/api/Hwy5K} {azure AQAAABAAA Ijbql3DKRyIZNQIddzCYKICr} configuration for production 2023-05-18T14:32:10Z jenkins-admin `, want: []string{"Ijbql3DKRyIZNQIddzCYKICrhttps://yaeuxPA9-H.azurewebsites.net/api/Hwy5K"}, }, { name: "invalid pattern", input: ` azure: azureURL: http://invalid.azurecr.io.azure.com azureFunctionkey: BXIMbhBlC3=5hIbqCEKvq7op!V2ZfO0XWbcnasZmPm/AJfQqdcnt/+2Ytxc1hDq1m/ `, 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("test %q failed: expected keywords %v to be found in the input", test.name, d.Keywords()) return } results, err := d.FromData(context.Background(), false, []byte(test.input)) require.NoError(t, err) if len(results) != len(test.want) { t.Errorf("mismatch in result count: expected %d, got %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) } }) } }