mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
111 lines
2.1 KiB
Go
111 lines
2.1 KiB
Go
package docker
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestServerListOrderedImagesByCreationDate(t *testing.T) {
|
|
runtime := mkRuntime(t)
|
|
defer nuke(runtime)
|
|
|
|
archive, err := fakeTar()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
_, err = runtime.graph.Create(archive, nil, "Testing", "", nil)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
srv := &Server{runtime: runtime}
|
|
|
|
images, err := srv.Images(true, "")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if images[0].Created < images[1].Created {
|
|
t.Error("Expected []APIImges to be ordered by most recent creation date.")
|
|
}
|
|
}
|
|
|
|
func TestServerListOrderedImagesByCreationDateAndTag(t *testing.T) {
|
|
runtime := mkRuntime(t)
|
|
defer nuke(runtime)
|
|
|
|
err := generateImage("bar", runtime)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
err = generateImage("zed", runtime)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
srv := &Server{runtime: runtime}
|
|
images, err := srv.Images(true, "")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if images[0].RepoTags[0] != "repo:zed" && images[0].RepoTags[0] != "repo:bar" {
|
|
t.Errorf("Expected []APIImges to be ordered by most recent creation date. %s", images)
|
|
}
|
|
}
|
|
|
|
func generateImage(name string, runtime *Runtime) error {
|
|
|
|
archive, err := fakeTar()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
image, err := runtime.graph.Create(archive, nil, "Testing", "", nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
srv := &Server{runtime: runtime}
|
|
srv.ContainerTag(image.ID, "repo", name, false)
|
|
|
|
return nil
|
|
}
|
|
|
|
func TestSortUniquePorts(t *testing.T) {
|
|
ports := []Port{
|
|
Port("6379/tcp"),
|
|
Port("22/tcp"),
|
|
}
|
|
|
|
sortPorts(ports, func(ip, jp Port) bool {
|
|
return ip.Int() < jp.Int() || (ip.Int() == jp.Int() && ip.Proto() == "tcp")
|
|
})
|
|
|
|
first := ports[0]
|
|
if fmt.Sprint(first) != "22/tcp" {
|
|
t.Log(fmt.Sprint(first))
|
|
t.Fail()
|
|
}
|
|
}
|
|
|
|
func TestSortSamePortWithDifferentProto(t *testing.T) {
|
|
ports := []Port{
|
|
Port("8888/tcp"),
|
|
Port("8888/udp"),
|
|
Port("6379/tcp"),
|
|
Port("6379/udp"),
|
|
}
|
|
|
|
sortPorts(ports, func(ip, jp Port) bool {
|
|
return ip.Int() < jp.Int() || (ip.Int() == jp.Int() && ip.Proto() == "tcp")
|
|
})
|
|
|
|
first := ports[0]
|
|
if fmt.Sprint(first) != "6379/tcp" {
|
|
t.Fail()
|
|
}
|
|
}
|