mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 07:04:24 +00:00
b1675194ca
* Implement EndpointCustomizer Add the EndpointCustomizer interface and EndpointSetter convenience struct, implement EndpointCustomizer for github and gitlab detectors, and add parsing, verification, and applying user-supplied configuration. * Check error from SetEndpoints * Rename variable for clarity
16 lines
384 B
Go
16 lines
384 B
Go
package detectors
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestEmbeddedEndpointSetter(t *testing.T) {
|
|
type Scanner struct{ EndpointSetter }
|
|
var s Scanner
|
|
assert.Equal(t, []string{"baz"}, s.Endpoints("baz"))
|
|
assert.NoError(t, s.SetEndpoints("foo", "bar"))
|
|
assert.Error(t, s.SetEndpoints())
|
|
assert.Equal(t, []string{"foo", "bar"}, s.Endpoints("baz"))
|
|
}
|