forked from genuinetools/img
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pull_test.go
50 lines (39 loc) · 1.04 KB
/
pull_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package main
import (
"encoding/json"
"strings"
"testing"
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
)
func TestPullFromDefaultRegistry(t *testing.T) {
// Test a user repo on docker hub.
run(t, "pull", "jess/stress")
}
func TestPullFromSelfHostedRegistry(t *testing.T) {
// Test a repo on a private registry.
run(t, "pull", "r.j3ss.co/stress")
}
func TestPullOfficialImage(t *testing.T) {
// Test an official image,
run(t, "pull", "alpine")
}
func TestPullIsInListOutput(t *testing.T) {
// Test an official image,
run(t, "pull", "busybox")
out := run(t, "ls")
if !strings.Contains(out, "busybox:latest") {
t.Fatalf("expected busybox:latest in ls output, got: %s", out)
}
}
func TestPullRetainsConfig(t *testing.T) {
// Test an official image,
run(t, "pull", "alpine")
out := run(t, "inspect", "alpine")
var image ocispec.Image
if err := json.Unmarshal([]byte(out), &image); err != nil {
t.Fatalf("error decoding JSON: %s", err)
}
if len(image.Config.Cmd) == 0 {
t.Fatal("image config should be populated")
}
}