Files
ko-build/pkg/internal/testing/fixed_test.go
T

86 lines
2.6 KiB
Go
Raw Normal View History

2019-03-14 14:23:47 -04:00
// Copyright 2018 Google LLC All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package testing
2019-03-14 14:23:47 -04:00
import (
2019-11-10 01:23:09 +08:00
"context"
2019-03-14 14:23:47 -04:00
"testing"
"github.com/google/go-containerregistry/pkg/name"
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/google/go-containerregistry/pkg/v1/random"
2020-09-24 15:58:08 -07:00
"github.com/google/ko/pkg/build"
2019-03-14 14:23:47 -04:00
)
func TestFixedPublish(t *testing.T) {
hex1 := "deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef"
hex2 := "baadf00dbaadf00dbaadf00dbaadf00dbaadf00dbaadf00dbaadf00dbaadf00d"
fixedBaseRepo, _ := name.NewRepository("gcr.io/asdf")
f := NewFixedPublish(fixedBaseRepo, map[string]v1.Hash{
2019-03-14 14:23:47 -04:00
"foo": {
Algorithm: "sha256",
Hex: hex1,
},
"bar": {
Algorithm: "sha256",
Hex: hex2,
},
})
2020-12-21 11:47:05 -08:00
fooDigest, err := f.Publish(context.Background(), nil, "foo")
2019-03-14 14:23:47 -04:00
if err != nil {
t.Errorf("Publish(foo) = %v", err)
}
if got, want := fooDigest.String(), "gcr.io/asdf/foo@sha256:"+hex1; got != want {
t.Errorf("Publish(foo) = %q, want %q", got, want)
}
2020-12-21 11:47:05 -08:00
barDigest, err := f.Publish(context.Background(), nil, "bar")
2019-03-14 14:23:47 -04:00
if err != nil {
t.Errorf("Publish(bar) = %v", err)
}
if got, want := barDigest.String(), "gcr.io/asdf/bar@sha256:"+hex2; got != want {
t.Errorf("Publish(bar) = %q, want %q", got, want)
}
2020-12-21 11:47:05 -08:00
d, err := f.Publish(context.Background(), nil, "baz")
2019-03-14 14:23:47 -04:00
if err == nil {
t.Errorf("Publish(baz) = %v, want error", d)
}
}
func TestFixedBuild(t *testing.T) {
testImage, _ := random.Image(1024, 5)
2020-09-24 15:58:08 -07:00
f := NewFixedBuild(map[string]build.Result{
2019-03-14 14:23:47 -04:00
"asdf": testImage,
})
if got := f.IsSupportedReference("asdf"); got != nil {
t.Errorf("IsSupportedReference(asdf) = (%v), want nil", got)
2019-03-14 14:23:47 -04:00
}
2019-11-10 01:23:09 +08:00
if got, err := f.Build(context.Background(), "asdf"); err != nil {
2019-03-14 14:23:47 -04:00
t.Errorf("Build(asdf) = %v, want %v", err, testImage)
} else if got != testImage {
t.Errorf("Build(asdf) = %v, want %v", got, testImage)
}
if got := f.IsSupportedReference("blah"); got == nil {
t.Error("IsSupportedReference(blah) = nil, want error")
2019-03-14 14:23:47 -04:00
}
2019-11-10 01:23:09 +08:00
if got, err := f.Build(context.Background(), "blah"); err == nil {
2019-03-14 14:23:47 -04:00
t.Errorf("Build(blah) = %v, want error", got)
}
}