2019-01-12 22:45:25 -06:00
|
|
|
package container
|
|
|
|
|
|
|
|
import (
|
2021-05-05 11:37:17 -05:00
|
|
|
"context"
|
2019-01-12 22:45:25 -06:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
2021-05-05 11:37:17 -05:00
|
|
|
"gotest.tools/v3/assert"
|
2019-01-12 22:45:25 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
log.SetLevel(log.DebugLevel)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCleanImage(t *testing.T) {
|
|
|
|
tables := []struct {
|
|
|
|
imageIn string
|
|
|
|
imageOut string
|
|
|
|
}{
|
|
|
|
{"myhost.com/foo/bar", "myhost.com/foo/bar"},
|
|
|
|
{"ubuntu", "docker.io/library/ubuntu"},
|
|
|
|
{"ubuntu:18.04", "docker.io/library/ubuntu:18.04"},
|
|
|
|
{"cibuilds/hugo:0.53", "docker.io/cibuilds/hugo:0.53"},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, table := range tables {
|
|
|
|
imageOut := cleanImage(table.imageIn)
|
|
|
|
assert.Equal(t, table.imageOut, imageOut)
|
|
|
|
}
|
|
|
|
}
|
2021-05-05 11:37:17 -05:00
|
|
|
|
|
|
|
func TestGetImagePullOptions(t *testing.T) {
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
options, err := getImagePullOptions(ctx, NewDockerPullExecutorInput{})
|
|
|
|
assert.NilError(t, err, "Failed to create ImagePullOptions")
|
|
|
|
assert.Equal(t, options.RegistryAuth, "", "RegistryAuth should be empty if no username or password is set")
|
|
|
|
|
|
|
|
options, err = getImagePullOptions(ctx, NewDockerPullExecutorInput{
|
|
|
|
Image: "",
|
|
|
|
Username: "username",
|
|
|
|
Password: "password",
|
|
|
|
})
|
|
|
|
assert.NilError(t, err, "Failed to create ImagePullOptions")
|
|
|
|
assert.Equal(t, options.RegistryAuth, "eyJ1c2VybmFtZSI6InVzZXJuYW1lIiwicGFzc3dvcmQiOiJwYXNzd29yZCJ9", "Username and Password should be provided")
|
|
|
|
}
|