multi tags test
parent
39206de9c6
commit
8c3b56fe09
|
@ -14,10 +14,15 @@ type fakeRegistryClient struct {
|
|||
opts registry.Opts // opts set if anything called Digest(opts Opts)
|
||||
|
||||
digestToReturn string
|
||||
|
||||
tagsToReturn []string
|
||||
}
|
||||
|
||||
func (c *fakeRegistryClient) Get(opts registry.Opts) (*registry.Repository, error) {
|
||||
return nil, nil
|
||||
return ®istry.Repository{
|
||||
Name: opts.Name,
|
||||
Tags: c.tagsToReturn,
|
||||
}, nil
|
||||
}
|
||||
|
||||
func (c *fakeRegistryClient) Digest(opts registry.Opts) (digest string, err error) {
|
||||
|
@ -62,7 +67,7 @@ func TestWatchTagJob(t *testing.T) {
|
|||
|
||||
submitted := fp.submitted[0]
|
||||
|
||||
if submitted.Repository.Name != "index.docker.io/foo/bar:1.1" {
|
||||
if submitted.Repository.Name != "index.docker.io/foo/bar" {
|
||||
t.Errorf("unexpected event repository name: %s", submitted.Repository.Name)
|
||||
}
|
||||
|
||||
|
@ -105,7 +110,7 @@ func TestWatchTagJobLatest(t *testing.T) {
|
|||
|
||||
submitted := fp.submitted[0]
|
||||
|
||||
if submitted.Repository.Name != "index.docker.io/foo/bar:latest" {
|
||||
if submitted.Repository.Name != "index.docker.io/foo/bar" {
|
||||
t.Errorf("unexpected event repository name: %s", submitted.Repository.Name)
|
||||
}
|
||||
|
||||
|
@ -123,3 +128,35 @@ func TestWatchTagJobLatest(t *testing.T) {
|
|||
t.Errorf("job details digest wasn't updated")
|
||||
}
|
||||
}
|
||||
|
||||
func TestWatchAllTagsJob(t *testing.T) {
|
||||
|
||||
fp := &fakeProvider{}
|
||||
providers := provider.New([]provider.Provider{fp})
|
||||
|
||||
frc := &fakeRegistryClient{
|
||||
tagsToReturn: []string{"1.1.2", "1.1.3", "0.9.1"},
|
||||
}
|
||||
|
||||
reference, _ := image.Parse("foo/bar:1.1.0")
|
||||
|
||||
details := &watchDetails{
|
||||
imageRef: reference,
|
||||
}
|
||||
|
||||
job := NewWatchRepositoryTagsJob(providers, frc, details)
|
||||
|
||||
job.Run()
|
||||
|
||||
// checking whether new job was submitted
|
||||
|
||||
submitted := fp.submitted[0]
|
||||
|
||||
if submitted.Repository.Name != "index.docker.io/foo/bar" {
|
||||
t.Errorf("unexpected event repository name: %s", submitted.Repository.Name)
|
||||
}
|
||||
|
||||
if submitted.Repository.Tag != "1.1.3" {
|
||||
t.Errorf("expected event repository tag 1.1.3, but got: %s", submitted.Repository.Tag)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue