mirror of
https://github.com/anchore/syft.git
synced 2026-02-13 11:06:43 +01:00
* internalize majority of cmd package and migrate integration tests Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * add internal api encoder Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * create internal representation of all formats Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * export capability to get default encoders Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * restore test fixtures Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
148 lines
2.7 KiB
Go
148 lines
2.7 KiB
Go
package options
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/anchore/stereoscope/pkg/image"
|
|
)
|
|
|
|
func TestHasNonEmptyCredentials(t *testing.T) {
|
|
tests := []struct {
|
|
username, password, token, cert, key string
|
|
expected bool
|
|
}{
|
|
|
|
{
|
|
"", "", "", "", "",
|
|
false,
|
|
},
|
|
{
|
|
"user", "", "", "", "",
|
|
false,
|
|
},
|
|
{
|
|
"", "pass", "", "", "",
|
|
false,
|
|
},
|
|
{
|
|
"", "pass", "tok", "", "",
|
|
true,
|
|
},
|
|
{
|
|
"user", "", "tok", "", "",
|
|
true,
|
|
},
|
|
{
|
|
"", "", "tok", "", "",
|
|
true,
|
|
},
|
|
{
|
|
"user", "pass", "tok", "", "",
|
|
true,
|
|
},
|
|
|
|
{
|
|
"user", "pass", "", "", "",
|
|
true,
|
|
},
|
|
{
|
|
"", "", "", "cert", "key",
|
|
true,
|
|
},
|
|
{
|
|
"", "", "", "cert", "",
|
|
false,
|
|
},
|
|
{
|
|
"", "", "", "", "key",
|
|
false,
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(fmt.Sprintf("%+v", test), func(t *testing.T) {
|
|
assert.Equal(t, test.expected, hasNonEmptyCredentials(test.username, test.password, test.token, test.cert, test.key))
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_registry_ToOptions(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
input registryConfig
|
|
expected image.RegistryOptions
|
|
}{
|
|
{
|
|
name: "no registry options",
|
|
input: registryConfig{},
|
|
expected: image.RegistryOptions{
|
|
Credentials: []image.RegistryCredentials{},
|
|
},
|
|
},
|
|
{
|
|
name: "set InsecureSkipTLSVerify",
|
|
input: registryConfig{
|
|
InsecureSkipTLSVerify: true,
|
|
},
|
|
expected: image.RegistryOptions{
|
|
InsecureSkipTLSVerify: true,
|
|
Credentials: []image.RegistryCredentials{},
|
|
},
|
|
},
|
|
{
|
|
name: "set InsecureUseHTTP",
|
|
input: registryConfig{
|
|
InsecureUseHTTP: true,
|
|
},
|
|
expected: image.RegistryOptions{
|
|
InsecureUseHTTP: true,
|
|
Credentials: []image.RegistryCredentials{},
|
|
},
|
|
},
|
|
{
|
|
name: "set all bool options",
|
|
input: registryConfig{
|
|
InsecureSkipTLSVerify: true,
|
|
InsecureUseHTTP: true,
|
|
},
|
|
expected: image.RegistryOptions{
|
|
InsecureSkipTLSVerify: true,
|
|
InsecureUseHTTP: true,
|
|
Credentials: []image.RegistryCredentials{},
|
|
},
|
|
},
|
|
{
|
|
name: "provide all tls configuration",
|
|
input: registryConfig{
|
|
CACert: "ca.crt",
|
|
InsecureSkipTLSVerify: true,
|
|
Auth: []RegistryCredentials{
|
|
{
|
|
TLSCert: "client.crt",
|
|
TLSKey: "client.key",
|
|
},
|
|
},
|
|
},
|
|
expected: image.RegistryOptions{
|
|
CAFileOrDir: "ca.crt",
|
|
InsecureSkipTLSVerify: true,
|
|
Credentials: []image.RegistryCredentials{
|
|
{
|
|
ClientCert: "client.crt",
|
|
ClientKey: "client.key",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
assert.Equal(t, &test.expected, test.input.ToOptions())
|
|
})
|
|
}
|
|
}
|