2014-08-08 02:58:58 -04:00
|
|
|
package graph
|
|
|
|
|
2014-11-11 06:02:14 -05:00
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2015-08-25 17:17:42 -04:00
|
|
|
"github.com/docker/docker/pkg/progressreader"
|
2014-11-11 06:02:14 -05:00
|
|
|
"github.com/docker/docker/pkg/reexec"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
reexec.Init()
|
|
|
|
}
|
2014-08-08 02:58:58 -04:00
|
|
|
|
|
|
|
func TestPools(t *testing.T) {
|
|
|
|
s := &TagStore{
|
2015-08-25 17:17:42 -04:00
|
|
|
pullingPool: make(map[string]*progressreader.ProgressStatus),
|
|
|
|
pushingPool: make(map[string]*progressreader.ProgressStatus),
|
2014-08-08 02:58:58 -04:00
|
|
|
}
|
|
|
|
|
2015-08-11 12:44:50 -04:00
|
|
|
if _, found := s.poolAdd("pull", "test1"); found {
|
|
|
|
t.Fatal("Expected pull test1 not to be in progress")
|
2014-08-08 02:58:58 -04:00
|
|
|
}
|
2015-08-11 12:44:50 -04:00
|
|
|
if _, found := s.poolAdd("pull", "test2"); found {
|
|
|
|
t.Fatal("Expected pull test2 not to be in progress")
|
2014-08-08 02:58:58 -04:00
|
|
|
}
|
2015-08-11 12:44:50 -04:00
|
|
|
if _, found := s.poolAdd("push", "test1"); !found {
|
|
|
|
t.Fatalf("Expected pull test1 to be in progress`")
|
2014-08-08 02:58:58 -04:00
|
|
|
}
|
2015-08-11 12:44:50 -04:00
|
|
|
if _, found := s.poolAdd("pull", "test1"); !found {
|
|
|
|
t.Fatalf("Expected pull test1 to be in progress`")
|
2014-08-08 02:58:58 -04:00
|
|
|
}
|
|
|
|
if err := s.poolRemove("pull", "test2"); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := s.poolRemove("pull", "test2"); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := s.poolRemove("pull", "test1"); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := s.poolRemove("push", "test1"); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|