Modified image_enc_test to use a different image from other tests

Signed-off-by: Brandon Lum <lumjjb@gmail.com>
This commit is contained in:
Brandon Lum 2019-07-22 16:06:16 -04:00
parent c118c45f89
commit d531e78499

View File

@ -31,12 +31,12 @@ import (
ocispec "github.com/opencontainers/image-spec/specs-go/v1" ocispec "github.com/opencontainers/image-spec/specs-go/v1"
) )
func setupBusyboxImage(t *testing.T) { func setupNginxImage(t *testing.T) {
if runtime.GOOS == "windows" { if runtime.GOOS == "windows" {
t.Skip() t.Skip()
} }
const imageName = "docker.io/library/busybox:latest" const imageName = "docker.io/library/nginx:latest"
ctx, cancel := testContext(t) ctx, cancel := testContext(t)
defer cancel() defer cancel()
@ -65,15 +65,15 @@ func setupBusyboxImage(t *testing.T) {
} }
func TestImageEncryption(t *testing.T) { func TestImageEncryption(t *testing.T) {
setupBusyboxImage(t) setupNginxImage(t)
publicKey, privateKey, err := utils.CreateRSATestKey(2048, nil, true) publicKey, privateKey, err := utils.CreateRSATestKey(2048, nil, true)
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
const imageName = "docker.io/library/busybox:latest" const imageName = "docker.io/library/nginx:latest"
const encImageName = "docker.io/library/busybox:enc" const encImageName = "docker.io/library/nginx:enc"
ctx, cancel := testContext(t) ctx, cancel := testContext(t)
defer cancel() defer cancel()
@ -165,7 +165,7 @@ func TestImageEncryption(t *testing.T) {
// properly deleted // properly deleted
defer func() { defer func() {
done(ctx) done(ctx)
client.ImageService().Delete(ctx, imageName, images.SynchronousDelete()) client.ImageService().Delete(ctx, imageName)
client.ImageService().Delete(ctx, encImageName, images.SynchronousDelete()) client.ImageService().Delete(ctx, encImageName, images.SynchronousDelete())
}() }()