46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func teardownTest(t *testing.T) {
|
|
if err := registryHelper.RefillRegistry("busybox:glibc"); err != nil {
|
|
t.Fatalf("adding image after remove failed: +%v", err)
|
|
}
|
|
}
|
|
|
|
func TestRemove(t *testing.T) {
|
|
defer teardownTest(t)
|
|
// Make sure we have busybox in list.
|
|
out, err := run("ls", domain)
|
|
if err != nil {
|
|
t.Fatalf("output: %s, error: %v", out, err)
|
|
}
|
|
expected := `REPO TAGS
|
|
alpine 3.5, latest
|
|
busybox glibc, latest, musl`
|
|
if !strings.HasSuffix(strings.TrimSpace(out), expected) {
|
|
t.Fatalf("expected to contain: %s\ngot: %s", expected, out)
|
|
}
|
|
|
|
// Remove busybox image.
|
|
if out, err := run("rm", fmt.Sprintf("%s/busybox:glibc", domain)); err != nil {
|
|
t.Fatalf("output: %s, error: %v", out, err)
|
|
}
|
|
|
|
// Make sure we have removed busybox:glibc.
|
|
out, err = run("ls", domain)
|
|
if err != nil {
|
|
t.Fatalf("output: %s, error: %v", out, err)
|
|
}
|
|
expected = `REPO TAGS
|
|
alpine 3.5, latest
|
|
busybox latest, musl`
|
|
if !strings.HasSuffix(strings.TrimSpace(out), expected) {
|
|
t.Fatalf("expected to contain: %s\ngot: %s", expected, out)
|
|
}
|
|
|
|
}
|