2022-07-12 07:58:04 -05:00
|
|
|
package mocks
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
v1 "github.com/google/go-containerregistry/pkg/v1"
|
|
|
|
godigest "github.com/opencontainers/go-digest"
|
|
|
|
ispec "github.com/opencontainers/image-spec/specs-go/v1"
|
|
|
|
"zotregistry.io/zot/pkg/extensions/search/common"
|
|
|
|
)
|
|
|
|
|
|
|
|
type OciLayoutUtilsMock struct {
|
|
|
|
GetImageManifestsFn func(image string) ([]ispec.Descriptor, error)
|
|
|
|
GetImageBlobManifestFn func(imageDir string, digest godigest.Digest) (v1.Manifest, error)
|
|
|
|
GetImageInfoFn func(imageDir string, hash v1.Hash) (ispec.Image, error)
|
|
|
|
GetImageTagsWithTimestampFn func(repo string) ([]common.TagInfo, error)
|
2022-07-19 08:16:15 -05:00
|
|
|
GetImageLastUpdatedFn func(imageInfo ispec.Image) time.Time
|
|
|
|
GetImagePlatformFn func(imageInfo ispec.Image) (string, string)
|
|
|
|
GetImageVendorFn func(imageInfo ispec.Image) string
|
2022-07-12 07:58:04 -05:00
|
|
|
GetImageManifestSizeFn func(repo string, manifestDigest godigest.Digest) int64
|
|
|
|
GetImageConfigSizeFn func(repo string, manifestDigest godigest.Digest) int64
|
2022-07-22 15:01:38 -05:00
|
|
|
GetRepoLastUpdatedFn func(repo string) (common.TagInfo, error)
|
2022-07-12 07:58:04 -05:00
|
|
|
GetExpandedRepoInfoFn func(name string) (common.RepoInfo, error)
|
2022-07-19 08:16:15 -05:00
|
|
|
GetImageConfigInfoFn func(repo string, manifestDigest godigest.Digest) (ispec.Image, error)
|
2022-08-02 10:58:30 -05:00
|
|
|
CheckManifestSignatureFn func(name string, digest godigest.Digest) bool
|
2022-09-22 14:08:58 -05:00
|
|
|
GetRepositoriesFn func() ([]string, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (olum OciLayoutUtilsMock) GetRepositories() ([]string, error) {
|
2022-09-28 13:39:54 -05:00
|
|
|
if olum.GetRepositoriesFn != nil {
|
2022-09-22 14:08:58 -05:00
|
|
|
return olum.GetRepositoriesFn()
|
|
|
|
}
|
|
|
|
|
|
|
|
return []string{}, nil
|
2022-07-12 07:58:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (olum OciLayoutUtilsMock) GetImageManifests(image string) ([]ispec.Descriptor, error) {
|
2022-08-02 10:58:30 -05:00
|
|
|
if olum.GetImageManifestsFn != nil {
|
2022-07-12 07:58:04 -05:00
|
|
|
return olum.GetImageManifestsFn(image)
|
|
|
|
}
|
|
|
|
|
|
|
|
return []ispec.Descriptor{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (olum OciLayoutUtilsMock) GetImageBlobManifest(imageDir string, digest godigest.Digest) (v1.Manifest, error) {
|
|
|
|
if olum.GetImageBlobManifestFn != nil {
|
|
|
|
return olum.GetImageBlobManifestFn(imageDir, digest)
|
|
|
|
}
|
|
|
|
|
|
|
|
return v1.Manifest{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (olum OciLayoutUtilsMock) GetImageInfo(imageDir string, hash v1.Hash) (ispec.Image, error) {
|
|
|
|
if olum.GetImageInfoFn != nil {
|
|
|
|
return olum.GetImageInfoFn(imageDir, hash)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ispec.Image{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (olum OciLayoutUtilsMock) GetImageTagsWithTimestamp(repo string) ([]common.TagInfo, error) {
|
|
|
|
if olum.GetImageTagsWithTimestampFn != nil {
|
|
|
|
return olum.GetImageTagsWithTimestampFn(repo)
|
|
|
|
}
|
|
|
|
|
|
|
|
return []common.TagInfo{}, nil
|
|
|
|
}
|
|
|
|
|
2022-07-19 08:16:15 -05:00
|
|
|
func (olum OciLayoutUtilsMock) GetImageLastUpdated(imageInfo ispec.Image) time.Time {
|
2022-07-12 07:58:04 -05:00
|
|
|
if olum.GetImageLastUpdatedFn != nil {
|
2022-07-19 08:16:15 -05:00
|
|
|
return olum.GetImageLastUpdatedFn(imageInfo)
|
2022-07-12 07:58:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return time.Time{}
|
|
|
|
}
|
|
|
|
|
2022-07-19 08:16:15 -05:00
|
|
|
func (olum OciLayoutUtilsMock) GetImagePlatform(imageInfo ispec.Image) (string, string) {
|
2022-07-12 07:58:04 -05:00
|
|
|
if olum.GetImagePlatformFn != nil {
|
2022-07-19 08:16:15 -05:00
|
|
|
return olum.GetImagePlatformFn(imageInfo)
|
2022-07-12 07:58:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return "", ""
|
|
|
|
}
|
|
|
|
|
2022-07-19 08:16:15 -05:00
|
|
|
func (olum OciLayoutUtilsMock) GetImageVendor(imageInfo ispec.Image) string {
|
2022-07-12 07:58:04 -05:00
|
|
|
if olum.GetImageVendorFn != nil {
|
2022-07-19 08:16:15 -05:00
|
|
|
return olum.GetImageVendorFn(imageInfo)
|
2022-07-12 07:58:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (olum OciLayoutUtilsMock) GetImageManifestSize(repo string, manifestDigest godigest.Digest) int64 {
|
|
|
|
if olum.GetImageManifestSizeFn != nil {
|
|
|
|
return olum.GetImageManifestSizeFn(repo, manifestDigest)
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (olum OciLayoutUtilsMock) GetImageConfigSize(repo string, manifestDigest godigest.Digest) int64 {
|
|
|
|
if olum.GetImageConfigSizeFn != nil {
|
|
|
|
return olum.GetImageConfigSizeFn(repo, manifestDigest)
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2022-07-22 15:01:38 -05:00
|
|
|
func (olum OciLayoutUtilsMock) GetRepoLastUpdated(repo string) (common.TagInfo, error) {
|
2022-07-12 07:58:04 -05:00
|
|
|
if olum.GetRepoLastUpdatedFn != nil {
|
|
|
|
return olum.GetRepoLastUpdatedFn(repo)
|
|
|
|
}
|
|
|
|
|
2022-07-22 15:01:38 -05:00
|
|
|
return common.TagInfo{}, nil
|
2022-07-12 07:58:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (olum OciLayoutUtilsMock) GetExpandedRepoInfo(name string) (common.RepoInfo, error) {
|
|
|
|
if olum.GetExpandedRepoInfoFn != nil {
|
|
|
|
return olum.GetExpandedRepoInfoFn(name)
|
|
|
|
}
|
|
|
|
|
|
|
|
return common.RepoInfo{}, nil
|
|
|
|
}
|
2022-07-19 08:16:15 -05:00
|
|
|
|
|
|
|
func (olum OciLayoutUtilsMock) GetImageConfigInfo(repo string, manifestDigest godigest.Digest) (ispec.Image, error) {
|
|
|
|
if olum.GetImageConfigInfoFn != nil {
|
|
|
|
return olum.GetImageConfigInfoFn(repo, manifestDigest)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ispec.Image{}, nil
|
|
|
|
}
|
2022-08-02 10:58:30 -05:00
|
|
|
|
|
|
|
func (olum OciLayoutUtilsMock) CheckManifestSignature(name string, digest godigest.Digest) bool {
|
|
|
|
if olum.CheckManifestSignatureFn != nil {
|
|
|
|
return olum.CheckManifestSignatureFn(name, digest)
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|