mirror of https://github.com/daffainfo/nuclei.git
21 lines
501 B
Go
21 lines
501 B
Go
package authx
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestSecretsUnmarshal(t *testing.T) {
|
|
loc := "testData/example-auth.yaml"
|
|
data, err := GetAuthDataFromFile(loc)
|
|
require.Nil(t, err, "could not read secrets file")
|
|
require.NotNil(t, data, "could not read secrets file")
|
|
for _, s := range data.Secrets {
|
|
require.Nil(t, s.Validate(), "could not validate secret")
|
|
}
|
|
for _, d := range data.Dynamic {
|
|
require.Nil(t, d.Validate(), "could not validate dynamic")
|
|
}
|
|
}
|