//go:build search // +build search package common_test import ( "context" "encoding/json" "errors" "fmt" "io" "net/http" "net/url" "os" "path" "strconv" "strings" "testing" "time" dbTypes "github.com/aquasecurity/trivy-db/pkg/types" "github.com/gobwas/glob" regTypes "github.com/google/go-containerregistry/pkg/v1/types" godigest "github.com/opencontainers/go-digest" "github.com/opencontainers/image-spec/specs-go" ispec "github.com/opencontainers/image-spec/specs-go/v1" . "github.com/smartystreets/goconvey/convey" "gopkg.in/resty.v1" zerr "zotregistry.io/zot/errors" "zotregistry.io/zot/pkg/api" "zotregistry.io/zot/pkg/api/config" "zotregistry.io/zot/pkg/api/constants" extconf "zotregistry.io/zot/pkg/extensions/config" "zotregistry.io/zot/pkg/extensions/monitoring" "zotregistry.io/zot/pkg/extensions/search/common" cveinfo "zotregistry.io/zot/pkg/extensions/search/cve" cvemodel "zotregistry.io/zot/pkg/extensions/search/cve/model" "zotregistry.io/zot/pkg/log" "zotregistry.io/zot/pkg/meta/repodb" "zotregistry.io/zot/pkg/storage" "zotregistry.io/zot/pkg/storage/local" . "zotregistry.io/zot/pkg/test" "zotregistry.io/zot/pkg/test/mocks" ) const ( graphqlQueryPrefix = constants.FullSearchPrefix DBFileName = "repo.db" ) var ( ErrTestError = errors.New("test error") ErrPutManifest = errors.New("can't put manifest") ) type RepoWithNewestImageResponse struct { RepoListWithNewestImage RepoListWithNewestImage `json:"data"` Errors []ErrorGQL `json:"errors"` } type DerivedImageListResponse struct { DerivedImageList DerivedImageList `json:"data"` Errors []ErrorGQL `json:"errors"` } type BaseImageListResponse struct { BaseImageList BaseImageList `json:"data"` Errors []ErrorGQL `json:"errors"` } type ImageListResponse struct { ImageList ImageList `json:"data"` Errors []ErrorGQL `json:"errors"` } type ImageList struct { PaginatedImagesResult `json:"imageList"` } type DerivedImageList struct { PaginatedImagesResult `json:"derivedImageList"` } type BaseImageList struct { PaginatedImagesResult `json:"baseImageList"` } type ExpandedRepoInfoResp struct { ExpandedRepoInfo ExpandedRepoInfo `json:"data"` Errors []ErrorGQL `json:"errors"` } type ReferrersResp struct { ReferrersResult ReferrersResult `json:"data"` Errors []ErrorGQL `json:"errors"` } type ReferrersResult struct { Referrers []common.Referrer `json:"referrers"` } type GlobalSearchResultResp struct { GlobalSearchResult GlobalSearchResult `json:"data"` Errors []ErrorGQL `json:"errors"` } type GlobalSearchResult struct { GlobalSearch GlobalSearch `json:"globalSearch"` } type GlobalSearch struct { Images []common.ImageSummary `json:"images"` Repos []common.RepoSummary `json:"repos"` Layers []common.LayerSummary `json:"layers"` Page repodb.PageInfo `json:"page"` } type ExpandedRepoInfo struct { RepoInfo common.RepoInfo `json:"expandedRepoInfo"` } type PaginatedReposResult struct { Results []common.RepoSummary `json:"results"` Page repodb.PageInfo `json:"page"` } type PaginatedImagesResult struct { Results []common.ImageSummary `json:"results"` Page repodb.PageInfo `json:"page"` } //nolint:tagliatelle // graphQL schema type RepoListWithNewestImage struct { PaginatedReposResult `json:"RepoListWithNewestImage"` } type ErrorGQL struct { Message string `json:"message"` Path []string `json:"path"` } type SingleImageSummary struct { ImageSummary common.ImageSummary `json:"Image"` //nolint:tagliatelle } type ImageSummaryResult struct { SingleImageSummary SingleImageSummary `json:"data"` Errors []ErrorGQL `json:"errors"` } func getTags() ([]common.TagInfo, []common.TagInfo) { tags := make([]common.TagInfo, 0) firstTag := common.TagInfo{ Name: "1.0.0", Descriptor: common.Descriptor{ Digest: "sha256:eca04f027f414362596f2632746d8a178362170b9ac9af772011fedcc3877ebb", MediaType: ispec.MediaTypeImageManifest, }, Timestamp: time.Now(), } secondTag := common.TagInfo{ Name: "1.0.1", Descriptor: common.Descriptor{ Digest: "sha256:eca04f027f414362596f2632746d8a179362170b9ac9af772011fedcc3877ebb", MediaType: ispec.MediaTypeImageManifest, }, Timestamp: time.Now(), } thirdTag := common.TagInfo{ Name: "1.0.2", Descriptor: common.Descriptor{ Digest: "sha256:eca04f027f414362596f2632746d8a170362170b9ac9af772011fedcc3877ebb", MediaType: ispec.MediaTypeImageManifest, }, Timestamp: time.Now(), } fourthTag := common.TagInfo{ Name: "1.0.3", Descriptor: common.Descriptor{ Digest: "sha256:eca04f027f414362596f2632746d8a171362170b9ac9af772011fedcc3877ebb", MediaType: ispec.MediaTypeImageManifest, }, Timestamp: time.Now(), } tags = append(tags, firstTag, secondTag, thirdTag, fourthTag) vulnerableTags := make([]common.TagInfo, 0) vulnerableTags = append(vulnerableTags, secondTag) return tags, vulnerableTags } func readFileAndSearchString(filePath string, stringToMatch string, timeout time.Duration) (bool, error) { ctx, cancelFunc := context.WithTimeout(context.Background(), timeout) defer cancelFunc() for { select { case <-ctx.Done(): return false, nil default: content, err := os.ReadFile(filePath) if err != nil { return false, err } if strings.Contains(string(content), stringToMatch) { return true, nil } } } } func verifyRepoSummaryFields(t *testing.T, actualRepoSummary, expectedRepoSummary *common.RepoSummary, ) { t.Helper() t.Logf("Verify RepoSummary \n%v \nmatches fields of \n%v", actualRepoSummary, expectedRepoSummary, ) So(actualRepoSummary.Name, ShouldEqual, expectedRepoSummary.Name) So(actualRepoSummary.LastUpdated, ShouldEqual, expectedRepoSummary.LastUpdated) So(actualRepoSummary.Size, ShouldEqual, expectedRepoSummary.Size) So(len(actualRepoSummary.Vendors), ShouldEqual, len(expectedRepoSummary.Vendors)) for index, vendor := range actualRepoSummary.Vendors { So(vendor, ShouldEqual, expectedRepoSummary.Vendors[index]) } So(len(actualRepoSummary.Platforms), ShouldEqual, len(expectedRepoSummary.Platforms)) for index, platform := range actualRepoSummary.Platforms { So(platform.Os, ShouldEqual, expectedRepoSummary.Platforms[index].Os) So(platform.Arch, ShouldEqual, expectedRepoSummary.Platforms[index].Arch) } So(actualRepoSummary.NewestImage.Tag, ShouldEqual, expectedRepoSummary.NewestImage.Tag) verifyImageSummaryFields(t, &actualRepoSummary.NewestImage, &expectedRepoSummary.NewestImage) } func verifyImageSummaryFields(t *testing.T, actualImageSummary, expectedImageSummary *common.ImageSummary, ) { t.Helper() t.Logf("Verify ImageSummary \n%v \nmatches fields of \n%v", actualImageSummary, expectedImageSummary, ) So(actualImageSummary.Tag, ShouldEqual, expectedImageSummary.Tag) So(actualImageSummary.LastUpdated, ShouldEqual, expectedImageSummary.LastUpdated) So(actualImageSummary.Size, ShouldEqual, expectedImageSummary.Size) So(actualImageSummary.IsSigned, ShouldEqual, expectedImageSummary.IsSigned) So(actualImageSummary.Vendor, ShouldEqual, expectedImageSummary.Vendor) So(actualImageSummary.Title, ShouldEqual, expectedImageSummary.Title) So(actualImageSummary.Description, ShouldEqual, expectedImageSummary.Description) So(actualImageSummary.Source, ShouldEqual, expectedImageSummary.Source) So(actualImageSummary.Documentation, ShouldEqual, expectedImageSummary.Documentation) So(actualImageSummary.Licenses, ShouldEqual, expectedImageSummary.Licenses) So(len(actualImageSummary.Manifests), ShouldEqual, len(expectedImageSummary.Manifests)) for i := range actualImageSummary.Manifests { So(actualImageSummary.Manifests[i].Platform.Os, ShouldEqual, expectedImageSummary.Manifests[i].Platform.Os) So(actualImageSummary.Manifests[i].Platform.Arch, ShouldEqual, expectedImageSummary.Manifests[i].Platform.Arch) So(len(actualImageSummary.Manifests[i].History), ShouldEqual, len(expectedImageSummary.Manifests[i].History)) expectedHistories := expectedImageSummary.Manifests[i].History for index, history := range actualImageSummary.Manifests[i].History { // Digest could be empty string if the history entry is not associated with a layer So(history.Layer.Digest, ShouldEqual, expectedHistories[index].Layer.Digest) So(history.Layer.Size, ShouldEqual, expectedHistories[index].Layer.Size) So( history.HistoryDescription.Author, ShouldEqual, expectedHistories[index].HistoryDescription.Author, ) So( history.HistoryDescription.Created, ShouldEqual, expectedHistories[index].HistoryDescription.Created, ) So( history.HistoryDescription.CreatedBy, ShouldEqual, expectedHistories[index].HistoryDescription.CreatedBy, ) So( history.HistoryDescription.EmptyLayer, ShouldEqual, expectedHistories[index].HistoryDescription.EmptyLayer, ) So( history.HistoryDescription.Comment, ShouldEqual, expectedHistories[index].HistoryDescription.Comment, ) } } } func uploadNewRepoTag(tag string, repoName string, baseURL string, layers [][]byte) error { created := time.Now() config := ispec.Image{ Created: &created, Platform: ispec.Platform{ Architecture: "amd64", OS: "linux", }, RootFS: ispec.RootFS{ Type: "layers", DiffIDs: []godigest.Digest{}, }, Author: "ZotUser", } configBlob, err := json.Marshal(config) So(err, ShouldBeNil) configDigest := godigest.FromBytes(configBlob) manifest := ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, }, } err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: tag, }, baseURL, repoName, ) return err } func getMockCveInfo(repoDB repodb.RepoDB, log log.Logger) cveinfo.CveInfo { // RepoDB loaded with initial data, mock the scanner severities := map[string]int{ "UNKNOWN": 0, "LOW": 1, "MEDIUM": 2, "HIGH": 3, "CRITICAL": 4, } // Setup test CVE data in mock scanner scanner := mocks.CveScannerMock{ ScanImageFn: func(image string) (map[string]cvemodel.CVE, error) { if image == "zot-cve-test:0.0.1" || image == "a/zot-cve-test:0.0.1" { return map[string]cvemodel.CVE{ "CVE1": { ID: "CVE1", Severity: "MEDIUM", Title: "Title CVE1", Description: "Description CVE1", }, "CVE2": { ID: "CVE2", Severity: "HIGH", Title: "Title CVE2", Description: "Description CVE2", }, "CVE3": { ID: "CVE3", Severity: "LOW", Title: "Title CVE3", Description: "Description CVE3", }, }, nil } if image == "zot-test:0.0.1" || image == "a/zot-test:0.0.1" { return map[string]cvemodel.CVE{ "CVE3": { ID: "CVE3", Severity: "LOW", Title: "Title CVE3", Description: "Description CVE3", }, "CVE4": { ID: "CVE4", Severity: "CRITICAL", Title: "Title CVE4", Description: "Description CVE4", }, }, nil } if image == "test-repo:latest" { return map[string]cvemodel.CVE{ "CVE1": { ID: "CVE1", Severity: "MEDIUM", Title: "Title CVE1", Description: "Description CVE1", }, "CVE2": { ID: "CVE2", Severity: "HIGH", Title: "Title CVE2", Description: "Description CVE2", }, "CVE3": { ID: "CVE3", Severity: "LOW", Title: "Title CVE3", Description: "Description CVE3", }, "CVE4": { ID: "CVE4", Severity: "CRITICAL", Title: "Title CVE4", Description: "Description CVE4", }, }, nil } // By default the image has no vulnerabilities return map[string]cvemodel.CVE{}, nil }, CompareSeveritiesFn: func(severity1, severity2 string) int { return severities[severity2] - severities[severity1] }, IsImageFormatScannableFn: func(repo string, reference string) (bool, error) { // Almost same logic compared to actual Trivy specific implementation imageDir := repo inputTag := reference repoMeta, err := repoDB.GetRepoMeta(imageDir) if err != nil { return false, err } manifestDigestStr, ok := repoMeta.Tags[inputTag] if !ok { return false, zerr.ErrTagMetaNotFound } manifestDigest, err := godigest.Parse(manifestDigestStr.Digest) if err != nil { return false, err } manifestData, err := repoDB.GetManifestData(manifestDigest) if err != nil { return false, err } var manifestContent ispec.Manifest err = json.Unmarshal(manifestData.ManifestBlob, &manifestContent) if err != nil { return false, zerr.ErrScanNotSupported } for _, imageLayer := range manifestContent.Layers { switch imageLayer.MediaType { case ispec.MediaTypeImageLayerGzip, ispec.MediaTypeImageLayer, string(regTypes.DockerLayer): return true, nil default: return false, zerr.ErrScanNotSupported } } return false, nil }, } return &cveinfo.BaseCveInfo{ Log: log, Scanner: scanner, RepoDB: repoDB, } } func TestRepoListWithNewestImage(t *testing.T) { Convey("Test repoListWithNewestImage by tag with HTTP", t, func() { subpath := "/a" port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port rootDir := t.TempDir() subRootDir := t.TempDir() conf.Storage.RootDirectory = rootDir conf.Storage.SubPaths = make(map[string]config.StorageConfig) conf.Storage.SubPaths[subpath] = config.StorageConfig{RootDirectory: subRootDir} defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() config, layers, manifest, err := GetImageComponents(100) So(err, ShouldBeNil) err = PushTestImage("zot-cve-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) err = PushTestImage("a/zot-cve-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) err = PushTestImage("zot-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) err = PushTestImage("a/zot-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) resp, err := resty.R().Get(baseURL + "/v2/") So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 422) Convey("Test repoListWithNewestImage with pagination", func() { query := `{ RepoListWithNewestImage(requestedPage:{ limit: 2 offset: 0 sortBy: UPDATE_TIME }){ Page{ ItemCount TotalCount } Results{ Name NewestImage{ Tag } } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) var responseStruct RepoWithNewestImageResponse err = json.Unmarshal(resp.Body(), &responseStruct) So(err, ShouldBeNil) So(len(responseStruct.RepoListWithNewestImage.PaginatedReposResult.Results), ShouldEqual, 2) So(responseStruct.RepoListWithNewestImage.PaginatedReposResult.Page.ItemCount, ShouldEqual, 2) So(responseStruct.RepoListWithNewestImage.PaginatedReposResult.Page.TotalCount, ShouldEqual, 4) }) Convey("Test repoListWithNewestImage with pagination, no limit or offset", func() { query := `{ RepoListWithNewestImage(requestedPage:{ limit: 0 offset: 0 sortBy: UPDATE_TIME }){ Page{ ItemCount TotalCount } Results{ Name NewestImage{ Tag } } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) var responseStruct RepoWithNewestImageResponse err = json.Unmarshal(resp.Body(), &responseStruct) So(err, ShouldBeNil) So(len(responseStruct.RepoListWithNewestImage.PaginatedReposResult.Results), ShouldEqual, 4) So(responseStruct.RepoListWithNewestImage.PaginatedReposResult.Page.ItemCount, ShouldEqual, 4) So(responseStruct.RepoListWithNewestImage.PaginatedReposResult.Page.TotalCount, ShouldEqual, 4) }) Convey("Test repoListWithNewestImage multiple", func() { query := `{RepoListWithNewestImage{ Results{ Name NewestImage{ Tag } } }}` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) var responseStruct RepoWithNewestImageResponse err = json.Unmarshal(resp.Body(), &responseStruct) So(err, ShouldBeNil) So(len(responseStruct.RepoListWithNewestImage.PaginatedReposResult.Results), ShouldEqual, 4) images := responseStruct.RepoListWithNewestImage.PaginatedReposResult.Results So(images[0].NewestImage.Tag, ShouldEqual, "0.0.1") query = `{ RepoListWithNewestImage(requestedPage: { limit: 1 offset: 0 sortBy: UPDATE_TIME }){ Results{ Name NewestImage{ Tag } } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) err = json.Unmarshal(resp.Body(), &responseStruct) So(err, ShouldBeNil) So(len(responseStruct.RepoListWithNewestImage.PaginatedReposResult.Results), ShouldEqual, 1) repos := responseStruct.RepoListWithNewestImage.PaginatedReposResult.Results So(repos[0].NewestImage.Tag, ShouldEqual, "0.0.1") query = `{ RepoListWithNewestImage{ Results{ Name NewestImage{ Tag Vulnerabilities{ MaxSeverity Count } } } } }` // Verify we don't return any vulnerabilities if CVE scanning is disabled resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) err = json.Unmarshal(resp.Body(), &responseStruct) So(err, ShouldBeNil) So(len(responseStruct.RepoListWithNewestImage.PaginatedReposResult.Results), ShouldEqual, 4) images = responseStruct.RepoListWithNewestImage.PaginatedReposResult.Results So(images[0].NewestImage.Tag, ShouldEqual, "0.0.1") So(images[0].NewestImage.Vulnerabilities.Count, ShouldEqual, 0) So(images[0].NewestImage.Vulnerabilities.MaxSeverity, ShouldEqual, "") query = `{ RepoListWithNewestImage{ Results{ Name NewestImage{ Tag } } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) err = os.Chmod(rootDir, 0o000) if err != nil { panic(err) } resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) err = json.Unmarshal(resp.Body(), &responseStruct) So(err, ShouldBeNil) So(responseStruct.Errors, ShouldBeNil) // Even if permissions fail data is coming from the DB err = os.Chmod(rootDir, 0o755) if err != nil { panic(err) } var manifestDigest godigest.Digest var configDigest godigest.Digest manifestDigest, configDigest, _ = GetOciLayoutDigests(path.Join(subRootDir, "a/zot-test")) // Delete config blob and try. err = os.Remove(path.Join(subRootDir, "a/zot-test/blobs/sha256", configDigest.Encoded())) if err != nil { panic(err) } resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) err = os.Remove(path.Join(subRootDir, "a/zot-test/blobs/sha256", manifestDigest.Encoded())) if err != nil { panic(err) } resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) err = os.Remove(path.Join(rootDir, "zot-test/blobs/sha256", configDigest.Encoded())) if err != nil { panic(err) } resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) // Delete manifest blob also and try err = os.Remove(path.Join(rootDir, "zot-test/blobs/sha256", manifestDigest.Encoded())) if err != nil { panic(err) } resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) }) }) Convey("Test repoListWithNewestImage with vulnerability scan enabled", t, func() { subpath := "/a" port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port rootDir := t.TempDir() subRootDir := t.TempDir() conf.Storage.RootDirectory = rootDir conf.Storage.SubPaths = make(map[string]config.StorageConfig) conf.Storage.SubPaths[subpath] = config.StorageConfig{RootDirectory: subRootDir} defaultVal := true updateDuration, _ := time.ParseDuration("1h") trivyConfig := &extconf.TrivyConfig{ DBRepository: "ghcr.io/project-zot/trivy-db", } cveConfig := &extconf.CVEConfig{ UpdateInterval: updateDuration, Trivy: trivyConfig, } searchConfig := &extconf.SearchConfig{ BaseConfig: extconf.BaseConfig{Enable: &defaultVal}, CVE: cveConfig, } conf.Extensions = &extconf.ExtensionConfig{ Search: searchConfig, } // we won't use the logging config feature as we want logs in both // stdout and a file logFile, err := os.CreateTemp(t.TempDir(), "zot-log*.txt") So(err, ShouldBeNil) logPath := logFile.Name() defer os.Remove(logPath) writers := io.MultiWriter(os.Stdout, logFile) ctlr := api.NewController(conf) ctlr.Log.Logger = ctlr.Log.Output(writers) ctx := context.Background() if err := ctlr.Init(ctx); err != nil { panic(err) } ctlr.CveInfo = getMockCveInfo(ctlr.RepoDB, ctlr.Log) go func() { if err := ctlr.Run(ctx); !errors.Is(err, http.ErrServerClosed) { panic(err) } }() defer ctlr.Shutdown() substring := "{\"Search\":{\"Enable\":true,\"CVE\":{\"UpdateInterval\":3600000000000,\"Trivy\":{\"DBRepository\":\"ghcr.io/project-zot/trivy-db\"}}}" //nolint: lll found, err := readFileAndSearchString(logPath, substring, 2*time.Minute) So(found, ShouldBeTrue) So(err, ShouldBeNil) found, err = readFileAndSearchString(logPath, "updating the CVE database", 2*time.Minute) So(found, ShouldBeTrue) So(err, ShouldBeNil) found, err = readFileAndSearchString(logPath, "DB update completed, next update scheduled", 4*time.Minute) So(found, ShouldBeTrue) So(err, ShouldBeNil) WaitTillServerReady(baseURL) resp, err := resty.R().Get(baseURL + graphqlQueryPrefix) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 422) config, layers, manifest, err := GetImageComponents(100) So(err, ShouldBeNil) err = PushTestImage("zot-cve-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) err = PushTestImage("a/zot-cve-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) err = PushTestImage("zot-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) err = PushTestImage("a/zot-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) query := `{ RepoListWithNewestImage{ Results{ Name NewestImage{ Tag Vulnerabilities{ MaxSeverity Count } } } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) var responseStruct RepoWithNewestImageResponse err = json.Unmarshal(resp.Body(), &responseStruct) So(err, ShouldBeNil) So(len(responseStruct.RepoListWithNewestImage.PaginatedReposResult.Results), ShouldEqual, 4) repos := responseStruct.RepoListWithNewestImage.PaginatedReposResult.Results So(repos[0].NewestImage.Tag, ShouldEqual, "0.0.1") for _, repo := range repos { vulnerabilities := repo.NewestImage.Vulnerabilities So(vulnerabilities, ShouldNotBeNil) t.Logf("Found vulnerability summary %v", vulnerabilities) // Depends on test data, but current tested images contain hundreds So(vulnerabilities.Count, ShouldBeGreaterThan, 1) So( dbTypes.CompareSeverityString(dbTypes.SeverityUnknown.String(), vulnerabilities.MaxSeverity), ShouldBeGreaterThan, 0, ) if repo.Name == "zot-cve-test" { // This really depends on the test data, but with the current test image it's HIGH So(vulnerabilities.MaxSeverity, ShouldEqual, "HIGH") } else if repo.Name == "zot-test" { // This really depends on the test data, but with the current test image it's CRITICAL So(vulnerabilities.MaxSeverity, ShouldEqual, "CRITICAL") } } }) } func TestGetReferrersGQL(t *testing.T) { Convey("get referrers", t, func() { port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = t.TempDir() defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, Lint: &extconf.LintConfig{ BaseConfig: extconf.BaseConfig{ Enable: &defaultVal, }, }, } gqlEndpoint := fmt.Sprintf("%s%s?query=", baseURL, graphqlQueryPrefix) conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() // ======================= config, layers, manifest, err := GetImageComponents(1000) So(err, ShouldBeNil) repo := "artifact-ref" err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "1.0", }, baseURL, repo) So(err, ShouldBeNil) manifestBlob, err := json.Marshal(manifest) So(err, ShouldBeNil) manifestDigest := godigest.FromBytes(manifestBlob) manifestSize := int64(len(manifestBlob)) subjectDescriptor := &ispec.Descriptor{ MediaType: "application/vnd.oci.image.manifest.v1+json", Size: manifestSize, Digest: manifestDigest, } artifactContentBlob := []byte("test artifact") artifactContentBlobSize := int64(len(artifactContentBlob)) artifactContentType := "application/octet-stream" artifactContentBlobDigest := godigest.FromBytes(artifactContentBlob) artifactType := "com.artifact.test" err = UploadBlob(baseURL, repo, artifactContentBlob, artifactContentType) So(err, ShouldBeNil) artifact := &ispec.Artifact{ Blobs: []ispec.Descriptor{ { MediaType: artifactContentType, Digest: artifactContentBlobDigest, Size: artifactContentBlobSize, }, }, Subject: subjectDescriptor, ArtifactType: artifactType, MediaType: ispec.MediaTypeArtifactManifest, Annotations: map[string]string{ "com.artifact.format": "test", }, } artifactManifestBlob, err := json.Marshal(artifact) So(err, ShouldBeNil) artifactManifestDigest := godigest.FromBytes(artifactManifestBlob) err = UploadArtifactManifest(artifact, nil, baseURL, repo) So(err, ShouldBeNil) gqlQuery := ` { Referrers( repo: "%s", digest: "%s", type: ""){ ArtifactType, Digest, MediaType, Size, Annotations{ Key Value } } }` strQuery := fmt.Sprintf(gqlQuery, repo, manifestDigest.String()) targetURL := fmt.Sprintf("%s%s", gqlEndpoint, url.QueryEscape(strQuery)) resp, err := resty.R().Get(targetURL) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) So(resp.Body(), ShouldNotBeNil) referrersResp := &ReferrersResp{} err = json.Unmarshal(resp.Body(), referrersResp) So(err, ShouldBeNil) So(referrersResp.Errors, ShouldBeNil) So(referrersResp.ReferrersResult.Referrers[0].ArtifactType, ShouldEqual, artifactType) So(referrersResp.ReferrersResult.Referrers[0].MediaType, ShouldEqual, ispec.MediaTypeArtifactManifest) So(referrersResp.ReferrersResult.Referrers[0].Annotations[0].Key, ShouldEqual, "com.artifact.format") So(referrersResp.ReferrersResult.Referrers[0].Annotations[0].Value, ShouldEqual, "test") So(referrersResp.ReferrersResult.Referrers[0].Digest, ShouldEqual, artifactManifestDigest) }) Convey("referrers for image index", t, func() { port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = t.TempDir() conf.Storage.GC = false defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, Lint: &extconf.LintConfig{ BaseConfig: extconf.BaseConfig{ Enable: &defaultVal, }, }, } gqlEndpoint := fmt.Sprintf("%s%s?query=", baseURL, graphqlQueryPrefix) conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() // ======================= multiarch, err := GetRandomMultiarchImage("multiarch") So(err, ShouldBeNil) repo := "artifact-ref" err = UploadMultiarchImage(multiarch, baseURL, repo) So(err, ShouldBeNil) indexBlob, err := json.Marshal(multiarch.Index) So(err, ShouldBeNil) indexDigest := godigest.FromBytes(indexBlob) indexSize := int64(len(indexBlob)) subjectDescriptor := &ispec.Descriptor{ MediaType: ispec.MediaTypeImageIndex, Size: indexSize, Digest: indexDigest, } artifactContentBlob := []byte("test artifact") artifactContentBlobSize := int64(len(artifactContentBlob)) artifactContentType := "application/octet-stream" artifactContentBlobDigest := godigest.FromBytes(artifactContentBlob) artifactType := "com.artifact.test" configBlob, err := json.Marshal(ispec.Image{}) So(err, ShouldBeNil) artifactManifest := ispec.Manifest{ Layers: []ispec.Descriptor{ { MediaType: artifactContentType, Digest: artifactContentBlobDigest, Size: artifactContentBlobSize, }, }, Subject: subjectDescriptor, Config: ispec.Descriptor{ MediaType: artifactType, Digest: godigest.FromBytes(configBlob), }, MediaType: ispec.MediaTypeImageManifest, Annotations: map[string]string{ "com.artifact.format": "test", }, } artifactManifestBlob, err := json.Marshal(artifactManifest) So(err, ShouldBeNil) artifactManifestDigest := godigest.FromBytes(artifactManifestBlob) err = UploadImage( Image{ Manifest: artifactManifest, Config: ispec.Image{}, Layers: [][]byte{ artifactContentBlob, }, Reference: artifactManifestDigest.String(), }, baseURL, repo) So(err, ShouldBeNil) gqlQuery := ` { Referrers( repo: "%s", digest: "%s", type: "" ){ ArtifactType, Digest, MediaType, Size, Annotations{ Key Value } } }` strQuery := fmt.Sprintf(gqlQuery, repo, indexDigest.String()) targetURL := fmt.Sprintf("%s%s", gqlEndpoint, url.QueryEscape(strQuery)) resp, err := resty.R().Get(targetURL) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) So(resp.Body(), ShouldNotBeNil) referrersResp := &ReferrersResp{} err = json.Unmarshal(resp.Body(), referrersResp) So(err, ShouldBeNil) So(referrersResp.Errors, ShouldBeNil) So(len(referrersResp.ReferrersResult.Referrers), ShouldEqual, 1) So(referrersResp.ReferrersResult.Referrers[0].ArtifactType, ShouldEqual, artifactType) So(referrersResp.ReferrersResult.Referrers[0].MediaType, ShouldEqual, ispec.MediaTypeImageManifest) So(referrersResp.ReferrersResult.Referrers[0].Annotations[0].Key, ShouldEqual, "com.artifact.format") So(referrersResp.ReferrersResult.Referrers[0].Annotations[0].Value, ShouldEqual, "test") So(referrersResp.ReferrersResult.Referrers[0].Digest, ShouldEqual, artifactManifestDigest) }) } func TestExpandedRepoInfo(t *testing.T) { Convey("Filter out manifests with no tag", t, func() { tagToBeRemoved := "3.0" repo1 := "test1" tempDir := t.TempDir() port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = tempDir defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) imageStore := local.NewImageStore(tempDir, false, 0, false, false, log.NewLogger("debug", ""), monitoring.NewMetricsServer(false, log.NewLogger("debug", "")), nil, nil) storeController := storage.StoreController{ DefaultStore: imageStore, } // init storage layout with 3 images for i := 1; i <= 3; i++ { config, layers, manifest, err := GetImageComponents(100) So(err, ShouldBeNil) err = WriteImageToFileSystem( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: fmt.Sprintf("%d.0", i), }, repo1, storeController) So(err, ShouldBeNil) } // remote a tag from index.json indexPath := path.Join(tempDir, repo1, "index.json") indexFile, err := os.Open(indexPath) So(err, ShouldBeNil) buf, err := io.ReadAll(indexFile) So(err, ShouldBeNil) var index ispec.Index if err = json.Unmarshal(buf, &index); err == nil { for _, manifest := range index.Manifests { if val, ok := manifest.Annotations[ispec.AnnotationRefName]; ok && val == tagToBeRemoved { delete(manifest.Annotations, ispec.AnnotationRefName) break } } } buf, err = json.Marshal(index) So(err, ShouldBeNil) err = os.WriteFile(indexPath, buf, 0o600) So(err, ShouldBeNil) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() query := `{ ExpandedRepoInfo(repo:"test1"){ Summary { Name LastUpdated Size Platforms {Os Arch} Vendors } Images { Tag Manifests { Digest Layers {Size Digest} } } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) responseStruct := &ExpandedRepoInfoResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct = &ExpandedRepoInfoResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.ExpandedRepoInfo.RepoInfo.Summary, ShouldNotBeEmpty) So(responseStruct.ExpandedRepoInfo.RepoInfo.Summary.Name, ShouldEqual, "test1") So(len(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries), ShouldEqual, 2) }) Convey("Test expanded repo info", t, func() { subpath := "/a" rootDir := t.TempDir() subRootDir := t.TempDir() port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = rootDir conf.Storage.GC = false conf.Storage.SubPaths = make(map[string]config.StorageConfig) conf.Storage.SubPaths[subpath] = config.StorageConfig{RootDirectory: subRootDir} defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() config, layers, manifest, err := GetImageComponents(100) So(err, ShouldBeNil) manifest.Annotations = make(map[string]string) manifest.Annotations["org.opencontainers.image.vendor"] = "zot" err = PushTestImage("zot-cve-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) err = PushTestImage("a/zot-cve-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) err = PushTestImage("zot-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) err = PushTestImage("a/zot-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) log := log.NewLogger("debug", "") metrics := monitoring.NewMetricsServer(false, log) testStorage := local.NewImageStore(rootDir, false, storage.DefaultGCDelay, false, false, log, metrics, nil, nil) resp, err := resty.R().Get(baseURL + "/v2/") So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 422) query := `{ ExpandedRepoInfo(repo:"zot-cve-test"){ Summary { Name LastUpdated Size } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &ExpandedRepoInfoResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.ExpandedRepoInfo.RepoInfo.Summary, ShouldNotBeEmpty) So(responseStruct.ExpandedRepoInfo.RepoInfo.Summary.Name, ShouldEqual, "zot-cve-test") query = `{ ExpandedRepoInfo(repo:"zot-cve-test"){ Images { Tag Manifests { Digest Layers {Size Digest} } IsSigned } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct = &ExpandedRepoInfoResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(len(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries), ShouldNotEqual, 0) So(len(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries[0].Manifests[0].Layers), ShouldNotEqual, 0) _, testManifestDigest, _, err := testStorage.GetImageManifest("zot-cve-test", "0.0.1") So(err, ShouldBeNil) found := false for _, m := range responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries { if m.Manifests[0].Digest == testManifestDigest.String() { found = true So(m.IsSigned, ShouldEqual, false) } } So(found, ShouldEqual, true) err = SignImageUsingCosign("zot-cve-test:0.0.1", port) So(err, ShouldBeNil) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(len(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries), ShouldNotEqual, 0) So(len(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries[0].Manifests[0].Layers), ShouldNotEqual, 0) _, testManifestDigest, _, err = testStorage.GetImageManifest("zot-cve-test", "0.0.1") So(err, ShouldBeNil) found = false for _, m := range responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries { if m.Manifests[0].Digest == testManifestDigest.String() { found = true So(m.IsSigned, ShouldEqual, true) } } So(found, ShouldEqual, true) query = `{ ExpandedRepoInfo(repo:""){ Images { Tag } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) query = `{ ExpandedRepoInfo(repo:"zot-test"){ Images { RepoName Tag IsSigned Manifests{ Digest Layers {Size Digest} } } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(len(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries), ShouldNotEqual, 0) So(len(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries[0].Manifests[0].Layers), ShouldNotEqual, 0) _, testManifestDigest, _, err = testStorage.GetImageManifest("zot-test", "0.0.1") So(err, ShouldBeNil) found = false for _, m := range responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries { if m.Manifests[0].Digest == testManifestDigest.String() { found = true So(m.IsSigned, ShouldEqual, false) } } So(found, ShouldEqual, true) err = SignImageUsingCosign("zot-test@"+testManifestDigest.String(), port) So(err, ShouldBeNil) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "/query?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(len(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries), ShouldNotEqual, 0) So(len(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries[0].Manifests[0].Layers), ShouldNotEqual, 0) _, testManifestDigest, _, err = testStorage.GetImageManifest("zot-test", "0.0.1") So(err, ShouldBeNil) found = false for _, m := range responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries { if m.Manifests[0].Digest == testManifestDigest.String() { found = true So(m.IsSigned, ShouldEqual, true) } } So(found, ShouldEqual, true) var manifestDigest godigest.Digest manifestDigest, _, _ = GetOciLayoutDigests(path.Join(rootDir, "zot-test")) err = os.Remove(path.Join(rootDir, "zot-test/blobs/sha256", manifestDigest.Encoded())) So(err, ShouldBeNil) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) }) Convey("Test expanded repo info with tagged referrers", t, func() { rootDir := t.TempDir() port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = rootDir conf.Storage.GC = false defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() image, err := GetRandomImage("test") So(err, ShouldBeNil) manifestDigest, err := image.Digest() So(err, ShouldBeNil) err = UploadImage(image, baseURL, "repo") So(err, ShouldBeNil) referrer, err := GetRandomArtifact(&ispec.Descriptor{ Digest: manifestDigest, MediaType: ispec.MediaTypeImageManifest, }) So(err, ShouldBeNil) tag := "test-ref-tag" err = UploadArtifactManifest(&referrer.Manifest, &tag, baseURL, "repo") So(err, ShouldBeNil) // ------- Make the call to GQL and see that it doesn't crash and that the referrer isn't in the list of tags responseStruct := &ExpandedRepoInfoResp{} query := ` { ExpandedRepoInfo(repo:"repo"){ Images { RepoName Tag Manifests { Digest Layers {Size Digest} } } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(len(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries), ShouldEqual, 1) repoInfo := responseStruct.ExpandedRepoInfo.RepoInfo So(repoInfo.ImageSummaries[0].Tag, ShouldEqual, "test") }) Convey("Test image tags order", t, func() { port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = t.TempDir() defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() resp, err := resty.R().Get(baseURL + "/v2/") So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 422) // create test images repoName := "test-repo" //nolint:goconst layers := [][]byte{ {10, 11, 10, 11}, } err = uploadNewRepoTag("1.0", repoName, baseURL, layers) So(err, ShouldBeNil) err = uploadNewRepoTag("2.0", repoName, baseURL, layers) So(err, ShouldBeNil) err = uploadNewRepoTag("3.0", repoName, baseURL, layers) So(err, ShouldBeNil) responseStruct := &ExpandedRepoInfoResp{} query := ` { ExpandedRepoInfo(repo:"test-repo"){ Images { RepoName Tag Manifests { Digest Layers {Size Digest} } } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(len(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries), ShouldNotEqual, 0) So(len(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries[0].Manifests[0].Layers), ShouldNotEqual, 0) So(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries[0].Tag, ShouldEqual, "3.0") So(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries[1].Tag, ShouldEqual, "2.0") So(responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries[2].Tag, ShouldEqual, "1.0") }) Convey("With Multiarch Images", t, func() { conf := config.New() conf.HTTP.Port = GetFreePort() baseURL := GetBaseURL(conf.HTTP.Port) conf.Storage.RootDirectory = t.TempDir() defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) imageStore := local.NewImageStore(conf.Storage.RootDirectory, false, 0, false, false, log.NewLogger("debug", ""), monitoring.NewMetricsServer(false, log.NewLogger("debug", "")), nil, nil) storeController := storage.StoreController{ DefaultStore: imageStore, } // ------- Create test images indexSubImage11, err := GetImageWithConfig(ispec.Image{ Platform: ispec.Platform{ OS: "os11", Architecture: "arch11", }, }) So(err, ShouldBeNil) indexSubImage12, err := GetImageWithConfig(ispec.Image{ Platform: ispec.Platform{ OS: "os12", Architecture: "arch12", }, }) So(err, ShouldBeNil) multiImage1 := GetMultiarchImageForImages("1.0.0", []Image{indexSubImage11, indexSubImage12}) indexSubImage21, err := GetImageWithConfig(ispec.Image{ Platform: ispec.Platform{ OS: "os21", Architecture: "arch21", }, }) So(err, ShouldBeNil) indexSubImage22, err := GetImageWithConfig(ispec.Image{ Platform: ispec.Platform{ OS: "os22", Architecture: "arch22", }, }) So(err, ShouldBeNil) indexSubImage23, err := GetImageWithConfig(ispec.Image{ Platform: ispec.Platform{ OS: "os23", Architecture: "arch23", }, }) So(err, ShouldBeNil) multiImage2 := GetMultiarchImageForImages("2.0.0", []Image{indexSubImage21, indexSubImage22, indexSubImage23}, ) // ------- Write test Images err = WriteMultiArchImageToFileSystem(multiImage1, "repo", storeController) So(err, ShouldBeNil) err = WriteMultiArchImageToFileSystem(multiImage2, "repo", storeController) So(err, ShouldBeNil) // ------- Start Server /tmp/TestExpandedRepoInfo4021254039/005 ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(conf.HTTP.Port) defer ctlrManager.StopServer() // ------- Test ExpandedRepoInfo responseStruct := &ExpandedRepoInfoResp{} query := ` { ExpandedRepoInfo(repo:"repo"){ Images { RepoName Tag Manifests { Digest Layers {Size Digest} } } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(len(responseStruct.ExpandedRepoInfo.RepoInfo.Summary.Platforms), ShouldNotEqual, 5) found := false for _, is := range responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries { if is.Tag == "1.0.0" { found = true So(len(is.Manifests), ShouldEqual, 2) } } So(found, ShouldBeTrue) found = false for _, is := range responseStruct.ExpandedRepoInfo.RepoInfo.ImageSummaries { if is.Tag == "2.0.0" { found = true So(len(is.Manifests), ShouldEqual, 3) } } So(found, ShouldBeTrue) }) } func TestUtilsMethod(t *testing.T) { Convey("Test utils", t, func() { // Test GetRepo method repo := common.GetRepo("test") So(repo, ShouldEqual, "test") repo = common.GetRepo(":") So(repo, ShouldEqual, "") repo = common.GetRepo("") So(repo, ShouldEqual, "") repo = common.GetRepo("test:123") So(repo, ShouldEqual, "test") repo = common.GetRepo("a/test:123") So(repo, ShouldEqual, "a/test") repo = common.GetRepo("a/test:123:456") So(repo, ShouldEqual, "a/test") // Test various labels labels := make(map[string]string) desc := common.GetDescription(labels) So(desc, ShouldEqual, "") license := common.GetLicenses(labels) So(license, ShouldEqual, "") vendor := common.GetVendor(labels) So(vendor, ShouldEqual, "") categories := common.GetCategories(labels) So(categories, ShouldEqual, "") labels[ispec.AnnotationVendor] = "zot" labels[ispec.AnnotationDescription] = "zot-desc" labels[ispec.AnnotationLicenses] = "zot-license" labels[common.AnnotationLabels] = "zot-labels" desc = common.GetDescription(labels) So(desc, ShouldEqual, "zot-desc") license = common.GetLicenses(labels) So(license, ShouldEqual, "zot-license") vendor = common.GetVendor(labels) So(vendor, ShouldEqual, "zot") categories = common.GetCategories(labels) So(categories, ShouldEqual, "zot-labels") labels = make(map[string]string) // Use diff key labels[common.LabelAnnotationVendor] = "zot-vendor" labels[common.LabelAnnotationDescription] = "zot-label-desc" labels[ispec.AnnotationLicenses] = "zot-label-license" desc = common.GetDescription(labels) So(desc, ShouldEqual, "zot-label-desc") license = common.GetLicenses(labels) So(license, ShouldEqual, "zot-label-license") vendor = common.GetVendor(labels) So(vendor, ShouldEqual, "zot-vendor") routePrefix := common.GetRoutePrefix("test:latest") So(routePrefix, ShouldEqual, "/") routePrefix = common.GetRoutePrefix("a/test:latest") So(routePrefix, ShouldEqual, "/a") routePrefix = common.GetRoutePrefix("a/b/test:latest") So(routePrefix, ShouldEqual, "/a") allTags, vulnerableTags := getTags() latestTag := common.GetLatestTag(allTags) So(latestTag.Name, ShouldEqual, "1.0.3") fixedTags := common.GetFixedTags(allTags, vulnerableTags) So(len(fixedTags), ShouldEqual, 2) fixedTags = common.GetFixedTags(allTags, append(vulnerableTags, common.TagInfo{ Name: "taginfo", Descriptor: common.Descriptor{}, Timestamp: time.Date(2000, time.July, 20, 10, 10, 10, 10, time.UTC), })) So(len(fixedTags), ShouldEqual, 3) log := log.NewLogger("debug", "") rootDir := t.TempDir() subRootDir := t.TempDir() conf := config.New() conf.Extensions = &extconf.ExtensionConfig{} conf.Extensions.Lint = &extconf.LintConfig{} metrics := monitoring.NewMetricsServer(false, log) defaultStore := local.NewImageStore(rootDir, false, storage.DefaultGCDelay, false, false, log, metrics, nil, nil) subStore := local.NewImageStore(subRootDir, false, storage.DefaultGCDelay, false, false, log, metrics, nil, nil) subStoreMap := make(map[string]storage.ImageStore) subStoreMap["/b"] = subStore storeController := storage.StoreController{DefaultStore: defaultStore, SubStore: subStoreMap} dir := common.GetRootDir("a/zot-cve-test", storeController) So(dir, ShouldEqual, rootDir) dir = common.GetRootDir("b/zot-cve-test", storeController) So(dir, ShouldEqual, subRootDir) repo, digest := common.GetImageDirAndDigest("image") So(repo, ShouldResemble, "image") So(digest, ShouldResemble, "") }) } func TestDerivedImageList(t *testing.T) { rootDir := t.TempDir() port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = rootDir defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() Convey("Test dependency list for image working", t, func() { // create test images config := ispec.Image{ Platform: ispec.Platform{ Architecture: "amd64", OS: "linux", }, RootFS: ispec.RootFS{ Type: "layers", DiffIDs: []godigest.Digest{}, }, Author: "ZotUser", } configBlob, err := json.Marshal(config) So(err, ShouldBeNil) configDigest := godigest.FromBytes(configBlob) layers := [][]byte{ {10, 11, 10, 11}, {11, 11, 11, 11}, {10, 10, 10, 11}, } manifest := ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[1]), Size: int64(len(layers[1])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[2]), Size: int64(len(layers[2])), }, }, } repoName := "test-repo" //nolint:goconst err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, repoName, ) So(err, ShouldBeNil) // create image with the same layers manifest = ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[1]), Size: int64(len(layers[1])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[2]), Size: int64(len(layers[2])), }, }, } repoName = "same-layers" //nolint:goconst err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, repoName, ) So(err, ShouldBeNil) // create image with missing layer layers = [][]byte{ {10, 11, 10, 11}, {10, 10, 10, 11}, } manifest = ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[1]), Size: int64(len(layers[1])), }, }, } repoName = "missing-layer" err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, repoName, ) So(err, ShouldBeNil) // create image with more layers than the original layers = [][]byte{ {10, 11, 10, 11}, {11, 11, 11, 11}, {10, 10, 10, 10}, {10, 10, 10, 11}, {11, 11, 10, 10}, {11, 10, 10, 10}, } manifest = ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[1]), Size: int64(len(layers[1])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[2]), Size: int64(len(layers[2])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[3]), Size: int64(len(layers[3])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[4]), Size: int64(len(layers[4])), }, }, } repoName = "more-layers" err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, repoName, ) So(err, ShouldBeNil) manifest = ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[1]), Size: int64(len(layers[1])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[2]), Size: int64(len(layers[2])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[3]), Size: int64(len(layers[3])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[4]), Size: int64(len(layers[4])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[5]), Size: int64(len(layers[5])), }, }, } repoName = "all-layers" err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, repoName, ) So(err, ShouldBeNil) Convey("non paginated query", func() { query := ` { DerivedImageList(image:"test-repo:latest"){ Results{ RepoName Tag Manifests { Digest ConfigDigest LastUpdated Size } Size } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(strings.Contains(string(resp.Body()), "same-layers"), ShouldBeFalse) //nolint:goconst So(strings.Contains(string(resp.Body()), "missing-layers"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "more-layers"), ShouldBeTrue) So(strings.Contains(string(resp.Body()), "all-layers"), ShouldBeTrue) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) }) Convey("paginated query", func() { query := ` { DerivedImageList(image:"test-repo:latest", requestedPage:{limit: 1, offset: 0, sortBy:ALPHABETIC_ASC}){ Results{ RepoName Tag Manifests { Digest ConfigDigest LastUpdated Size } Size } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(strings.Contains(string(resp.Body()), "same-layers"), ShouldBeFalse) //nolint:goconst So(strings.Contains(string(resp.Body()), "missing-layers"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "more-layers"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "all-layers"), ShouldBeTrue) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) }) }) Convey("Inexistent repository", t, func() { query := ` { DerivedImageList(image:"inexistent-image:latest"){ Results{ RepoName Tag Manifests { Digest ConfigDigest LastUpdated Size } Size } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(strings.Contains(string(resp.Body()), "repository: not found"), ShouldBeTrue) So(err, ShouldBeNil) }) Convey("Invalid query, no reference provided", t, func() { query := ` { DerivedImageList(image:"inexistent-image"){ Results{ RepoName Tag Manifests { Digest ConfigDigest LastUpdated Size } Size } } }` responseStruct := &DerivedImageListResponse{} contains := false resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(err, ShouldBeNil) err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) for _, err := range responseStruct.Errors { result := strings.Contains(err.Message, "no reference provided") if result { contains = result } } So(contains, ShouldBeTrue) }) } //nolint:dupl func TestDerivedImageListNoRepos(t *testing.T) { Convey("No repositories found", t, func() { port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = t.TempDir() defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() query := ` { DerivedImageList(image:"test-image:latest"){ Results{ RepoName Tag Manifests { Digest ConfigDigest LastUpdated Size } Size } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) So(strings.Contains(string(resp.Body()), "repository: not found"), ShouldBeTrue) So(err, ShouldBeNil) }) } func TestGetImageManifest(t *testing.T) { Convey("Test nonexistent image", t, func() { mockImageStore := mocks.MockedImageStore{} storeController := storage.StoreController{ DefaultStore: mockImageStore, } olu := NewBaseOciLayoutUtils(storeController, log.NewLogger("debug", "")) _, _, err := olu.GetImageManifest("nonexistent-repo", "latest") So(err, ShouldNotBeNil) }) Convey("Test nonexistent image", t, func() { mockImageStore := mocks.MockedImageStore{ GetImageManifestFn: func(repo string, reference string) ([]byte, godigest.Digest, string, error) { return []byte{}, "", "", ErrTestError }, } storeController := storage.StoreController{ DefaultStore: mockImageStore, } olu := NewBaseOciLayoutUtils(storeController, log.NewLogger("debug", "")) _, _, err := olu.GetImageManifest("test-repo", "latest") //nolint:goconst So(err, ShouldNotBeNil) }) } func TestBaseImageList(t *testing.T) { rootDir := t.TempDir() port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = rootDir defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() Convey("Test base image list for image working", t, func() { // create test images config := ispec.Image{ Platform: ispec.Platform{ Architecture: "amd64", OS: "linux", }, RootFS: ispec.RootFS{ Type: "layers", DiffIDs: []godigest.Digest{}, }, Author: "ZotUser", } configBlob, err := json.Marshal(config) So(err, ShouldBeNil) configDigest := godigest.FromBytes(configBlob) layers := [][]byte{ {10, 11, 10, 11}, {11, 11, 11, 11}, {10, 10, 10, 11}, {10, 10, 10, 10}, } manifest := ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[1]), Size: int64(len(layers[1])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[2]), Size: int64(len(layers[2])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[3]), Size: int64(len(layers[3])), }, }, } repoName := "test-repo" //nolint:goconst err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, repoName, ) So(err, ShouldBeNil) // create image with the same layers manifest = ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[1]), Size: int64(len(layers[1])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[2]), Size: int64(len(layers[2])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[3]), Size: int64(len(layers[3])), }, }, } repoName = "same-layers" //nolint:goconst err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, repoName, ) So(err, ShouldBeNil) // create image with less layers than the given image, but which are in the given image layers = [][]byte{ {10, 11, 10, 11}, {10, 10, 10, 11}, } manifest = ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[1]), Size: int64(len(layers[1])), }, }, } repoName = "less-layers" err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, repoName, ) So(err, ShouldBeNil) // create image with one layer, which is also present in the given image layers = [][]byte{ {10, 11, 10, 11}, } manifest = ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, }, } err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, "one-layer", ) So(err, ShouldBeNil) // create image with one layer, which is also present in the given image layers = [][]byte{ {10, 11, 10, 11}, } manifest = ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, }, } err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, "one-layer", ) So(err, ShouldBeNil) // create image with one layer, which is also present in the given image layers = [][]byte{ {10, 11, 10, 11}, } manifest = ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, }, } repoName = "one-layer" err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, repoName, ) So(err, ShouldBeNil) // create image with one layer, which is also present in the given image layers = [][]byte{ {10, 11, 10, 11}, } manifest = ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, }, } repoName = "one-layer" err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, repoName, ) So(err, ShouldBeNil) // create image with less layers than the given image, but one layer isn't in the given image layers = [][]byte{ {10, 11, 10, 11}, {11, 10, 10, 11}, } manifest = ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[1]), Size: int64(len(layers[1])), }, }, } repoName = "less-layers-false" err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, repoName, ) So(err, ShouldBeNil) // create image with more layers than the original layers = [][]byte{ {10, 11, 10, 11}, {11, 11, 11, 11}, {10, 10, 10, 10}, {10, 10, 10, 11}, {11, 11, 10, 10}, } manifest = ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[1]), Size: int64(len(layers[1])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[2]), Size: int64(len(layers[2])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[3]), Size: int64(len(layers[3])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[4]), Size: int64(len(layers[4])), }, }, } repoName = "more-layers" err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, repoName, ) So(err, ShouldBeNil) // create image with no shared layers with the given image layers = [][]byte{ {12, 12, 12, 12}, {12, 10, 10, 12}, } manifest = ispec.Manifest{ Versioned: specs.Versioned{ SchemaVersion: 2, }, Config: ispec.Descriptor{ MediaType: "application/vnd.oci.image.config.v1+json", Digest: configDigest, Size: int64(len(configBlob)), }, Layers: []ispec.Descriptor{ { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[0]), Size: int64(len(layers[0])), }, { MediaType: "application/vnd.oci.image.layer.v1.tar", Digest: godigest.FromBytes(layers[1]), Size: int64(len(layers[1])), }, }, } repoName = "diff-layers" err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, repoName, ) So(err, ShouldBeNil) Convey("non paginated query", func() { query := ` { BaseImageList(image:"test-repo:latest"){ Results{ RepoName Tag IsSigned Manifests { Digest ConfigDigest LastUpdated Size } Size } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(strings.Contains(string(resp.Body()), "less-layers"), ShouldBeTrue) So(strings.Contains(string(resp.Body()), "one-layer"), ShouldBeTrue) So(strings.Contains(string(resp.Body()), "same-layers"), ShouldBeFalse) //nolint:goconst So(strings.Contains(string(resp.Body()), "less-layers-false"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "more-layers"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "diff-layers"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "test-repo"), ShouldBeFalse) //nolint:goconst // should not list given image So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) }) Convey("paginated query", func() { query := ` { BaseImageList(image:"test-repo:latest", requestedPage:{limit: 1, offset: 0, sortBy:RELEVANCE}){ Results{ RepoName Tag Manifests { Digest ConfigDigest LastUpdated Size } Size } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(strings.Contains(string(resp.Body()), "less-layers"), ShouldBeTrue) So(strings.Contains(string(resp.Body()), "one-layer"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "same-layers"), ShouldBeFalse) //nolint:goconst So(strings.Contains(string(resp.Body()), "less-layers-false"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "more-layers"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "diff-layers"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "test-repo"), ShouldBeFalse) //nolint:goconst // should not list given image So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) }) }) Convey("Nonexistent repository", t, func() { query := ` { BaseImageList(image:"nonexistent-image:latest"){ Results{ RepoName Tag Manifests { Digest ConfigDigest LastUpdated Size } Size } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(strings.Contains(string(resp.Body()), "repository: not found"), ShouldBeTrue) So(err, ShouldBeNil) }) Convey("Invalid query, no reference provided", t, func() { query := ` { BaseImageList(image:"nonexistent-image"){ Results{ RepoName Tag Manifests { Digest ConfigDigest LastUpdated Size } Size } } }` responseStruct := &BaseImageListResponse{} contains := false resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(err, ShouldBeNil) err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) for _, err := range responseStruct.Errors { result := strings.Contains(err.Message, "no reference provided") if result { contains = result } } So(contains, ShouldBeTrue) }) } //nolint:dupl func TestBaseImageListNoRepos(t *testing.T) { Convey("No repositories found", t, func() { port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = t.TempDir() defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() query := ` { BaseImageList(image:"test-image"){ Results{ RepoName Tag Manifests { Digest ConfigDigest LastUpdated Size } IsSigned Size } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(strings.Contains(string(resp.Body()), "no reference provided"), ShouldBeTrue) So(err, ShouldBeNil) }) } func TestGetRepositories(t *testing.T) { Convey("Test getting the repositories list", t, func() { mockImageStore := mocks.MockedImageStore{ GetRepositoriesFn: func() ([]string, error) { return []string{}, ErrTestError }, } storeController := storage.StoreController{ DefaultStore: mockImageStore, SubStore: map[string]storage.ImageStore{"test": mockImageStore}, } olu := NewBaseOciLayoutUtils(storeController, log.NewLogger("debug", "")) repoList, err := olu.GetRepositories() So(repoList, ShouldBeEmpty) So(err, ShouldNotBeNil) storeController = storage.StoreController{ DefaultStore: mocks.MockedImageStore{}, SubStore: map[string]storage.ImageStore{"test": mockImageStore}, } olu = NewBaseOciLayoutUtils(storeController, log.NewLogger("debug", "")) repoList, err = olu.GetRepositories() So(repoList, ShouldBeEmpty) So(err, ShouldNotBeNil) }) } func TestGlobalSearchImageAuthor(t *testing.T) { port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port tempDir := t.TempDir() conf.Storage.RootDirectory = tempDir defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() Convey("Test global search with author in manifest's annotations", t, func() { cfg, layers, manifest, err := GetImageComponents(10000) So(err, ShouldBeNil) manifest.Annotations = make(map[string]string) manifest.Annotations["org.opencontainers.image.authors"] = "author name" err = UploadImage( Image{ Config: cfg, Layers: layers, Manifest: manifest, Reference: "latest", }, baseURL, "repowithauthor") So(err, ShouldBeNil) query := ` { GlobalSearch(query:"repowithauthor:latest"){ Images { RepoName Tag LastUpdated Size IsSigned Authors } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStructImages := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStructImages) So(err, ShouldBeNil) So(responseStructImages.GlobalSearchResult.GlobalSearch.Images[0].Authors, ShouldEqual, "author name") query = ` { GlobalSearch(query:"repowithauthor"){ Repos { Name LastUpdated Size Platforms { Os Arch } Vendors NewestImage { RepoName Tag LastUpdated Size IsSigned Authors } } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStructRepos := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStructRepos) So(err, ShouldBeNil) So(responseStructRepos.GlobalSearchResult.GlobalSearch.Repos[0].NewestImage.Authors, ShouldEqual, "author name") }) Convey("Test global search with author in manifest's config", t, func() { cfg, layers, manifest, err := GetImageComponents(10000) So(err, ShouldBeNil) err = UploadImage( Image{ Config: cfg, Layers: layers, Manifest: manifest, Reference: "latest", }, baseURL, "repowithauthorconfig") So(err, ShouldBeNil) query := ` { GlobalSearch(query:"repowithauthorconfig:latest"){ Images { RepoName Tag LastUpdated Size IsSigned Authors } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStructImages := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStructImages) So(err, ShouldBeNil) So(responseStructImages.GlobalSearchResult.GlobalSearch.Images[0].Authors, ShouldEqual, "ZotUser") query = ` { GlobalSearch(query:"repowithauthorconfig"){ Repos { Name LastUpdated Size Platforms { Os Arch } Vendors NewestImage { RepoName Tag LastUpdated Size IsSigned Authors } } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStructRepos := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStructRepos) So(err, ShouldBeNil) So(responseStructRepos.GlobalSearchResult.GlobalSearch.Repos[0].NewestImage.Authors, ShouldEqual, "ZotUser") }) } func TestGlobalSearch(t *testing.T) { Convey("Test searching for repos with vulnerabitity scanning disabled", t, func() { subpath := "/a" dir := t.TempDir() subDir := t.TempDir() subRootDir := path.Join(subDir, subpath) port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = dir conf.Storage.SubPaths = make(map[string]config.StorageConfig) conf.Storage.SubPaths[subpath] = config.StorageConfig{RootDirectory: subRootDir} defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() // push test images to repo 1 image 1 _, layers1, manifest1, err := GetImageComponents(100) So(err, ShouldBeNil) createdTime := time.Date(2010, 1, 1, 12, 0, 0, 0, time.UTC) createdTimeL2 := time.Date(2010, 2, 1, 12, 0, 0, 0, time.UTC) config1 := ispec.Image{ Created: &createdTimeL2, Platform: ispec.Platform{ Architecture: "amd64", OS: "linux", }, RootFS: ispec.RootFS{ Type: "layers", DiffIDs: []godigest.Digest{}, }, Author: "ZotUser", } config1.History = append( config1.History, ispec.History{ Created: &createdTime, CreatedBy: "go test data", Author: "ZotUser", Comment: "Test history comment", EmptyLayer: true, }, ispec.History{ Created: &createdTimeL2, CreatedBy: "go test data 2", Author: "ZotUser", Comment: "Test history comment2", EmptyLayer: false, }, ) manifest1, err = updateManifestConfig(manifest1, config1) So(err, ShouldBeNil) layersSize1 := 0 for _, l := range layers1 { layersSize1 += len(l) } err = UploadImage( Image{ Manifest: manifest1, Config: config1, Layers: layers1, Reference: "1.0.1", }, baseURL, "repo1", ) So(err, ShouldBeNil) // push test images to repo 1 image 2 config2, layers2, manifest2, err := GetImageComponents(200) So(err, ShouldBeNil) createdTime2 := time.Date(2009, 1, 1, 12, 0, 0, 0, time.UTC) createdTimeL2 = time.Date(2009, 2, 1, 12, 0, 0, 0, time.UTC) config2.History = append( config2.History, ispec.History{ Created: &createdTime2, CreatedBy: "go test data", Author: "ZotUser", Comment: "Test history comment", EmptyLayer: true, }, ispec.History{ Created: &createdTimeL2, CreatedBy: "go test data 2", Author: "ZotUser", Comment: "Test history comment2", EmptyLayer: false, }, ) manifest2, err = updateManifestConfig(manifest2, config2) So(err, ShouldBeNil) layersSize2 := 0 for _, l := range layers2 { layersSize2 += len(l) } err = UploadImage( Image{ Manifest: manifest2, Config: config2, Layers: layers2, Reference: "1.0.2", }, baseURL, "repo1", ) So(err, ShouldBeNil) // push test images to repo 2 image 1 config3, layers3, manifest3, err := GetImageComponents(300) So(err, ShouldBeNil) createdTime3 := time.Date(2009, 2, 1, 12, 0, 0, 0, time.UTC) config3.History = append(config3.History, ispec.History{Created: &createdTime3}) manifest3, err = updateManifestConfig(manifest3, config3) So(err, ShouldBeNil) layersSize3 := 0 for _, l := range layers3 { layersSize3 += len(l) } err = UploadImage( Image{ Manifest: manifest3, Config: config3, Layers: layers3, Reference: "1.0.0", }, baseURL, "repo2", ) So(err, ShouldBeNil) olu := NewBaseOciLayoutUtils(ctlr.StoreController, log.NewLogger("debug", "")) // Initialize the objects containing the expected data repos, err := olu.GetRepositories() So(err, ShouldBeNil) allExpectedRepoInfoMap := make(map[string]common.RepoInfo) allExpectedImageSummaryMap := make(map[string]common.ImageSummary) for _, repo := range repos { repoInfo, err := olu.GetExpandedRepoInfo(repo) So(err, ShouldBeNil) allExpectedRepoInfoMap[repo] = repoInfo for _, image := range repoInfo.ImageSummaries { imageName := fmt.Sprintf("%s:%s", repo, image.Tag) allExpectedImageSummaryMap[imageName] = image } } query := ` { GlobalSearch(query:"repo"){ Images { RepoName Tag LastUpdated Size IsSigned Manifests { LastUpdated Size Platform { Os Arch } History { Layer { Size Digest } HistoryDescription { Author Comment Created CreatedBy EmptyLayer } } Vulnerabilities { Count MaxSeverity } } Vendor Vulnerabilities { Count MaxSeverity } } Repos { Name LastUpdated Size Platforms { Os Arch } Vendors NewestImage { RepoName Tag LastUpdated Size Manifests{ LastUpdated Size Platform { Os Arch } History { Layer { Size Digest } HistoryDescription { Author Comment Created CreatedBy EmptyLayer } } } Vulnerabilities { Count MaxSeverity } } } Layers { Digest Size } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) // Make sure the repo/image counts match before comparing actual content So(responseStruct.GlobalSearchResult.GlobalSearch.Images, ShouldNotBeNil) t.Logf("returned images: %v", responseStruct.GlobalSearchResult.GlobalSearch.Images) So(responseStruct.GlobalSearchResult.GlobalSearch.Images, ShouldBeEmpty) t.Logf("returned repos: %v", responseStruct.GlobalSearchResult.GlobalSearch.Repos) So(len(responseStruct.GlobalSearchResult.GlobalSearch.Repos), ShouldEqual, 2) t.Logf("returned layers: %v", responseStruct.GlobalSearchResult.GlobalSearch.Layers) So(responseStruct.GlobalSearchResult.GlobalSearch.Layers, ShouldBeEmpty) newestImageMap := make(map[string]common.ImageSummary) actualRepoMap := make(map[string]common.RepoSummary) for _, repo := range responseStruct.GlobalSearchResult.GlobalSearch.Repos { newestImageMap[repo.Name] = repo.NewestImage actualRepoMap[repo.Name] = repo } // Tag 1.0.2 has a history entry which is older compare to 1.0.1 So(newestImageMap["repo1"].Tag, ShouldEqual, "1.0.1") So(newestImageMap["repo1"].LastUpdated, ShouldEqual, time.Date(2010, 2, 1, 12, 0, 0, 0, time.UTC)) So(newestImageMap["repo2"].Tag, ShouldEqual, "1.0.0") So(newestImageMap["repo2"].LastUpdated, ShouldEqual, time.Date(2009, 2, 1, 12, 0, 0, 0, time.UTC)) for repoName, repoSummary := range actualRepoMap { repoSummary := repoSummary // Check if data in NewestImage is consistent with the data in RepoSummary So(repoName, ShouldEqual, repoSummary.NewestImage.RepoName) So(repoSummary.Name, ShouldEqual, repoSummary.NewestImage.RepoName) So(repoSummary.LastUpdated, ShouldEqual, repoSummary.NewestImage.LastUpdated) // The data in the RepoSummary returned from the request matches the data returned from the disk repoInfo := allExpectedRepoInfoMap[repoName] t.Logf("Validate repo summary returned by global search with vulnerability scanning disabled") verifyRepoSummaryFields(t, &repoSummary, &repoInfo.Summary) // RepoInfo object does not provide vulnerability information so we need to check differently // No vulnerabilities should be detected since trivy is disabled t.Logf("Found vulnerability summary %v", repoSummary.NewestImage.Vulnerabilities) So(repoSummary.NewestImage.Vulnerabilities.Count, ShouldEqual, 0) So(repoSummary.NewestImage.Vulnerabilities.MaxSeverity, ShouldEqual, "") } query = ` { GlobalSearch(query:"repo1:1.0.1"){ Images { RepoName Tag LastUpdated Size Manifests { LastUpdated Size Platform { Os Arch } History { Layer { Size Digest } HistoryDescription { Author Comment Created CreatedBy EmptyLayer } } } Vulnerabilities { Count MaxSeverity } } Repos { Name LastUpdated Size Platforms { Os Arch } Vendors NewestImage { RepoName Tag LastUpdated Size Manifests { LastUpdated Size Platform { Os Arch } History { Layer { Size Digest } HistoryDescription { Author Comment Created CreatedBy EmptyLayer } } } Vulnerabilities { Count MaxSeverity } } } Layers { Digest Size } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct = &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images, ShouldNotBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Repos, ShouldBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Layers, ShouldBeEmpty) So(len(responseStruct.GlobalSearchResult.GlobalSearch.Images), ShouldEqual, 1) actualImageSummary := responseStruct.GlobalSearchResult.GlobalSearch.Images[0] So(actualImageSummary.Tag, ShouldEqual, "1.0.1") expectedImageSummary, ok := allExpectedImageSummaryMap["repo1:1.0.1"] So(ok, ShouldEqual, true) t.Logf("Validate image summary returned by global search with vulnerability scanning disabled") verifyImageSummaryFields(t, &actualImageSummary, &expectedImageSummary) // RepoInfo object does not provide vulnerability information so we need to check differently // 0 vulnerabilities should be detected since trivy is disabled t.Logf("Found vulnerability summary %v", actualImageSummary.Vulnerabilities) So(actualImageSummary.Vulnerabilities.Count, ShouldEqual, 0) So(actualImageSummary.Vulnerabilities.MaxSeverity, ShouldEqual, "") }) Convey("Test global search with real images and vulnerabitity scanning enabled", t, func() { subpath := "/a" dir := t.TempDir() subDir := t.TempDir() subRootDir := path.Join(subDir, subpath) port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = dir conf.Storage.SubPaths = make(map[string]config.StorageConfig) conf.Storage.SubPaths[subpath] = config.StorageConfig{RootDirectory: subRootDir} defaultVal := true updateDuration, _ := time.ParseDuration("1h") trivyConfig := &extconf.TrivyConfig{ DBRepository: "ghcr.io/project-zot/trivy-db", } cveConfig := &extconf.CVEConfig{ UpdateInterval: updateDuration, Trivy: trivyConfig, } searchConfig := &extconf.SearchConfig{ BaseConfig: extconf.BaseConfig{Enable: &defaultVal}, CVE: cveConfig, } conf.Extensions = &extconf.ExtensionConfig{ Search: searchConfig, } // we won't use the logging config feature as we want logs in both // stdout and a file logFile, err := os.CreateTemp(t.TempDir(), "zot-log*.txt") So(err, ShouldBeNil) logPath := logFile.Name() defer os.Remove(logPath) writers := io.MultiWriter(os.Stdout, logFile) ctlr := api.NewController(conf) ctlr.Log.Logger = ctlr.Log.Output(writers) ctx := context.Background() if err := ctlr.Init(ctx); err != nil { panic(err) } ctlr.CveInfo = getMockCveInfo(ctlr.RepoDB, ctlr.Log) go func() { if err := ctlr.Run(ctx); !errors.Is(err, http.ErrServerClosed) { panic(err) } }() defer ctlr.Shutdown() // Wait for trivy db to download substring := "{\"Search\":{\"Enable\":true,\"CVE\":{\"UpdateInterval\":3600000000000,\"Trivy\":{\"DBRepository\":\"ghcr.io/project-zot/trivy-db\"}}}" //nolint: lll found, err := readFileAndSearchString(logPath, substring, 2*time.Minute) So(found, ShouldBeTrue) So(err, ShouldBeNil) found, err = readFileAndSearchString(logPath, "updating the CVE database", 2*time.Minute) So(found, ShouldBeTrue) So(err, ShouldBeNil) found, err = readFileAndSearchString(logPath, "DB update completed, next update scheduled", 4*time.Minute) So(found, ShouldBeTrue) So(err, ShouldBeNil) WaitTillServerReady(baseURL) // push test images to repo 1 image 1 config1, layers1, manifest1, err := GetImageComponents(100) So(err, ShouldBeNil) createdTime := time.Date(2010, 1, 1, 12, 0, 0, 0, time.UTC) config1.History = append(config1.History, ispec.History{Created: &createdTime}) manifest1, err = updateManifestConfig(manifest1, config1) So(err, ShouldBeNil) layersSize1 := 0 for _, l := range layers1 { layersSize1 += len(l) } err = UploadImage( Image{ Manifest: manifest1, Config: config1, Layers: layers1, Reference: "1.0.1", }, baseURL, "repo1", ) So(err, ShouldBeNil) // push test images to repo 1 image 2 config2, layers2, manifest2, err := GetImageComponents(200) So(err, ShouldBeNil) createdTime2 := time.Date(2009, 1, 1, 12, 0, 0, 0, time.UTC) config2.History = append(config2.History, ispec.History{Created: &createdTime2}) manifest2, err = updateManifestConfig(manifest2, config2) So(err, ShouldBeNil) layersSize2 := 0 for _, l := range layers2 { layersSize2 += len(l) } err = UploadImage( Image{ Manifest: manifest2, Config: config2, Layers: layers2, Reference: "1.0.2", }, baseURL, "repo1", ) So(err, ShouldBeNil) // push test images to repo 2 image 1 config3, layers3, manifest3, err := GetImageComponents(300) So(err, ShouldBeNil) createdTime3 := time.Date(2009, 2, 1, 12, 0, 0, 0, time.UTC) config3.History = append(config3.History, ispec.History{Created: &createdTime3}) manifest3, err = updateManifestConfig(manifest3, config3) So(err, ShouldBeNil) layersSize3 := 0 for _, l := range layers3 { layersSize3 += len(l) } err = UploadImage( Image{ Manifest: manifest3, Config: config3, Layers: layers3, Reference: "1.0.0", }, baseURL, "repo2", ) So(err, ShouldBeNil) olu := NewBaseOciLayoutUtils(ctlr.StoreController, log.NewLogger("debug", "")) // Initialize the objects containing the expected data repos, err := olu.GetRepositories() So(err, ShouldBeNil) allExpectedRepoInfoMap := make(map[string]common.RepoInfo) allExpectedImageSummaryMap := make(map[string]common.ImageSummary) for _, repo := range repos { repoInfo, err := olu.GetExpandedRepoInfo(repo) So(err, ShouldBeNil) allExpectedRepoInfoMap[repo] = repoInfo for _, image := range repoInfo.ImageSummaries { imageName := fmt.Sprintf("%s:%s", repo, image.Tag) allExpectedImageSummaryMap[imageName] = image } } query := ` { GlobalSearch(query:"repo"){ Images { RepoName Tag LastUpdated Size Manifests { LastUpdated Size Platform { Os Arch } History { Layer { Size Digest } HistoryDescription { Author Comment Created CreatedBy EmptyLayer } } } Vulnerabilities { Count MaxSeverity } } Repos { Name LastUpdated Size Platforms { Os Arch } Vendors NewestImage { RepoName Tag LastUpdated Size Manifests { LastUpdated Size Platform { Os Arch } History { Layer { Size Digest } HistoryDescription { Author Comment Created CreatedBy EmptyLayer } } } Vulnerabilities { Count MaxSeverity } } } Layers { Digest Size } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) // Make sure the repo/image counts match before comparing actual content So(responseStruct.GlobalSearchResult.GlobalSearch.Images, ShouldNotBeNil) t.Logf("returned images: %v", responseStruct.GlobalSearchResult.GlobalSearch.Images) So(responseStruct.GlobalSearchResult.GlobalSearch.Images, ShouldBeEmpty) t.Logf("returned repos: %v", responseStruct.GlobalSearchResult.GlobalSearch.Repos) So(len(responseStruct.GlobalSearchResult.GlobalSearch.Repos), ShouldEqual, 2) t.Logf("returned layers: %v", responseStruct.GlobalSearchResult.GlobalSearch.Layers) So(responseStruct.GlobalSearchResult.GlobalSearch.Layers, ShouldBeEmpty) newestImageMap := make(map[string]common.ImageSummary) actualRepoMap := make(map[string]common.RepoSummary) for _, repo := range responseStruct.GlobalSearchResult.GlobalSearch.Repos { newestImageMap[repo.Name] = repo.NewestImage actualRepoMap[repo.Name] = repo } // Tag 1.0.2 has a history entry which is older compare to 1.0.1 So(newestImageMap["repo1"].Tag, ShouldEqual, "1.0.1") So(newestImageMap["repo1"].LastUpdated, ShouldEqual, time.Date(2010, 1, 1, 12, 0, 0, 0, time.UTC)) So(newestImageMap["repo2"].Tag, ShouldEqual, "1.0.0") So(newestImageMap["repo2"].LastUpdated, ShouldEqual, time.Date(2009, 2, 1, 12, 0, 0, 0, time.UTC)) for repoName, repoSummary := range actualRepoMap { repoSummary := repoSummary // Check if data in NewestImage is consistent with the data in RepoSummary So(repoName, ShouldEqual, repoSummary.NewestImage.RepoName) So(repoSummary.Name, ShouldEqual, repoSummary.NewestImage.RepoName) So(repoSummary.LastUpdated, ShouldEqual, repoSummary.NewestImage.LastUpdated) // The data in the RepoSummary returned from the request matches the data returned from the disk repoInfo := allExpectedRepoInfoMap[repoName] t.Logf("Validate repo summary returned by global search with vulnerability scanning enabled") verifyRepoSummaryFields(t, &repoSummary, &repoInfo.Summary) // RepoInfo object does not provide vulnerability information so we need to check differently t.Logf("Found vulnerability summary %v", repoSummary.NewestImage.Vulnerabilities) So(repoSummary.NewestImage.Vulnerabilities.Count, ShouldEqual, 0) // There are 0 vulnerabilities this data used in tests So(repoSummary.NewestImage.Vulnerabilities.MaxSeverity, ShouldEqual, "NONE") } query = ` { GlobalSearch(query:"repo1:1.0.1"){ Images { RepoName Tag LastUpdated Size Manifests { LastUpdated Size Platform { Os Arch } History { Layer { Size Digest } HistoryDescription { Author Comment Created CreatedBy EmptyLayer } } } Vulnerabilities { Count MaxSeverity } } Repos { Name LastUpdated Size Platforms { Os Arch } Vendors NewestImage { RepoName Tag LastUpdated Size Manifests { LastUpdated Size Platform { Os Arch } History { Layer { Size Digest } HistoryDescription { Author Comment Created CreatedBy EmptyLayer } } } Vulnerabilities { Count MaxSeverity } } } Layers { Digest Size } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct = &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images, ShouldNotBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Repos, ShouldBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Layers, ShouldBeEmpty) So(len(responseStruct.GlobalSearchResult.GlobalSearch.Images), ShouldEqual, 1) actualImageSummary := responseStruct.GlobalSearchResult.GlobalSearch.Images[0] So(actualImageSummary.Tag, ShouldEqual, "1.0.1") expectedImageSummary, ok := allExpectedImageSummaryMap["repo1:1.0.1"] So(ok, ShouldEqual, true) t.Logf("Validate image summary returned by global search with vulnerability scanning enable") verifyImageSummaryFields(t, &actualImageSummary, &expectedImageSummary) // RepoInfo object does not provide vulnerability information so we need to check differently t.Logf("Found vulnerability summary %v", actualImageSummary.Vulnerabilities) // There are 0 vulnerabilities this data used in tests So(actualImageSummary.Vulnerabilities.Count, ShouldEqual, 0) So(actualImageSummary.Vulnerabilities.MaxSeverity, ShouldEqual, "NONE") }) } func TestCleaningFilteringParamsGlobalSearch(t *testing.T) { Convey("Test cleaning filtering parameters for global search", t, func() { dir := t.TempDir() port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = dir defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() image, err := GetImageWithConfig(ispec.Image{ Platform: ispec.Platform{ OS: "windows", Architecture: "amd64", }, }) So(err, ShouldBeNil) err = UploadImage( image, baseURL, "repo1", ) So(err, ShouldBeNil) image, err = GetImageWithConfig(ispec.Image{ Platform: ispec.Platform{ OS: "linux", Architecture: "amd64", }, }) So(err, ShouldBeNil) err = UploadImage( image, baseURL, "repo2", ) So(err, ShouldBeNil) query := ` { GlobalSearch(query:"repo", requestedPage:{limit: 3, offset: 0, sortBy:RELEVANCE}, filter:{Os:[" linux", "Windows ", " "], Arch:["","aMd64 "]}) { Repos { Name } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) }) } func TestGlobalSearchFiltering(t *testing.T) { Convey("Global search HasToBeSigned filtering", t, func() { dir := t.TempDir() port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = dir defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() config, layers, manifest, err := GetRandomImageComponents(100) So(err, ShouldBeNil) err = UploadImage( Image{ Config: config, Layers: layers, Manifest: manifest, Reference: "test", }, baseURL, "unsigned-repo", ) So(err, ShouldBeNil) config, layers, manifest, err = GetRandomImageComponents(100) So(err, ShouldBeNil) err = UploadImage( Image{ Config: config, Layers: layers, Manifest: manifest, Reference: "test", }, baseURL, "signed-repo", ) So(err, ShouldBeNil) err = SignImageUsingCosign("signed-repo:test", port) So(err, ShouldBeNil) query := `{ GlobalSearch(query:"repo", filter:{HasToBeSigned:true}) { Repos { Name } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Repos, ShouldNotBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Repos[0].Name, ShouldResemble, "signed-repo") }) } func TestGlobalSearchWithInvalidInput(t *testing.T) { Convey("Global search with invalid input", t, func() { dir := t.TempDir() port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = dir defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() longString := RandomString(1000) query := fmt.Sprintf(` { GlobalSearch(query:"%s", requestedPage:{limit: 3, offset: 4, sortBy:RELEVANCE}, filter:{Os:["linux", "Windows", ""], Arch:["","amd64"]}) { Repos { Name } } }`, longString) resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.Errors, ShouldNotBeEmpty) query = fmt.Sprintf(` { GlobalSearch(query:"repo", requestedPage:{limit: 3, offset: 4, sortBy:RELEVANCE}, filter:{Os:["%s", "Windows", ""], Arch:["","amd64"]}) { Repos { Name } } }`, longString) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct = &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.Errors, ShouldNotBeEmpty) query = fmt.Sprintf(` { GlobalSearch(query:"repo", requestedPage:{limit: 3, offset: 4, sortBy:RELEVANCE}, filter:{Os:["", "Windows", ""], Arch:["","%s"]}) { Repos { Name } } }`, longString) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct = &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.Errors, ShouldNotBeEmpty) }) } func TestImageList(t *testing.T) { Convey("Test ImageList", t, func() { rootDir := t.TempDir() port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = rootDir defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() config, layers, manifest, err := GetImageComponents(100) So(err, ShouldBeNil) createdTime := time.Date(2010, 1, 1, 12, 0, 0, 0, time.UTC) createdTimeL2 := time.Date(2010, 2, 1, 12, 0, 0, 0, time.UTC) config.History = append( config.History, ispec.History{ Created: &createdTime, CreatedBy: "go test data", Author: "ZotUser", Comment: "Test history comment", EmptyLayer: true, }, ispec.History{ Created: &createdTimeL2, CreatedBy: "go test data 2", Author: "ZotUser", Comment: "Test history comment2", EmptyLayer: false, }, ) manifest, err = updateManifestConfig(manifest, config) So(err, ShouldBeNil) err = PushTestImage("zot-cve-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) err = PushTestImage("a/zot-cve-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) err = PushTestImage("zot-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) err = PushTestImage("a/zot-test", "0.0.1", baseURL, manifest, config, layers) So(err, ShouldBeNil) imageStore := ctlr.StoreController.DefaultStore repos, err := imageStore.GetRepositories() So(err, ShouldBeNil) tags, err := imageStore.GetImageTags(repos[0]) So(err, ShouldBeNil) buf, _, _, err := imageStore.GetImageManifest(repos[0], tags[0]) So(err, ShouldBeNil) var imageManifest ispec.Manifest err = json.Unmarshal(buf, &imageManifest) So(err, ShouldBeNil) var imageConfigInfo ispec.Image imageConfigBuf, err := imageStore.GetBlobContent(repos[0], imageManifest.Config.Digest) So(err, ShouldBeNil) err = json.Unmarshal(imageConfigBuf, &imageConfigInfo) So(err, ShouldBeNil) Convey("without pagination, valid response", func() { query := fmt.Sprintf(`{ ImageList(repo:"%s"){ Results { Manifests { History{ HistoryDescription{ Author Comment Created CreatedBy EmptyLayer }, Layer{ Digest Size } } } } } }`, repos[0]) resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) So(resp, ShouldNotBeNil) var responseStruct ImageListResponse err = json.Unmarshal(resp.Body(), &responseStruct) So(err, ShouldBeNil) So(len(responseStruct.ImageList.Results), ShouldEqual, len(tags)) So(len(responseStruct.ImageList.Results[0].Manifests[0].History), ShouldEqual, len(imageConfigInfo.History)) }) Convey("Pagination with valid params", func() { limit := 1 query := fmt.Sprintf(`{ ImageList(repo:"%s", requestedPage:{limit: %d, offset: 0, sortBy:RELEVANCE}){ Results{ Manifests { History{ HistoryDescription{ Author Comment Created CreatedBy EmptyLayer }, Layer{ Digest Size } } } } } }`, repos[0], limit) resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) So(resp, ShouldNotBeNil) var responseStruct ImageListResponse err = json.Unmarshal(resp.Body(), &responseStruct) So(err, ShouldBeNil) So(len(responseStruct.ImageList.Results), ShouldEqual, limit) }) }) } func TestGlobalSearchPagination(t *testing.T) { Convey("Test global search pagination", t, func() { dir := t.TempDir() port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = dir defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() for i := 0; i < 3; i++ { config, layers, manifest, err := GetImageComponents(10) So(err, ShouldBeNil) err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "0.0.1", }, baseURL, fmt.Sprintf("repo%d", i), ) So(err, ShouldBeNil) } Convey("Limit is bigger than the repo count", func() { query := ` { GlobalSearch(query:"repo", requestedPage:{limit: 9, offset: 0, sortBy:RELEVANCE}){ Repos { Name } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images, ShouldBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Repos, ShouldNotBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Layers, ShouldBeEmpty) So(len(responseStruct.GlobalSearchResult.GlobalSearch.Repos), ShouldEqual, 3) }) Convey("Limit is lower than the repo count", func() { query := ` { GlobalSearch(query:"repo", requestedPage:{limit: 2, offset: 0, sortBy:RELEVANCE}){ Repos { Name } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images, ShouldBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Repos, ShouldNotBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Layers, ShouldBeEmpty) So(len(responseStruct.GlobalSearchResult.GlobalSearch.Repos), ShouldEqual, 2) }) Convey("PageInfo returned proper response", func() { query := ` { GlobalSearch(query:"repo", requestedPage:{limit: 2, offset: 0, sortBy:RELEVANCE}){ Repos { Name } Page{ ItemCount TotalCount } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images, ShouldBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Repos, ShouldNotBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Layers, ShouldBeEmpty) So(len(responseStruct.GlobalSearchResult.GlobalSearch.Repos), ShouldEqual, 2) So(responseStruct.GlobalSearchResult.GlobalSearch.Page.TotalCount, ShouldEqual, 3) So(responseStruct.GlobalSearchResult.GlobalSearch.Page.ItemCount, ShouldEqual, 2) }) Convey("PageInfo when limit is bigger than the repo count", func() { query := ` { GlobalSearch(query:"repo", requestedPage:{limit: 9, offset: 0, sortBy:RELEVANCE}){ Repos { Name } Page{ ItemCount TotalCount } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images, ShouldBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Repos, ShouldNotBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Layers, ShouldBeEmpty) So(len(responseStruct.GlobalSearchResult.GlobalSearch.Repos), ShouldEqual, 3) So(responseStruct.GlobalSearchResult.GlobalSearch.Page.TotalCount, ShouldEqual, 3) So(responseStruct.GlobalSearchResult.GlobalSearch.Page.ItemCount, ShouldEqual, 3) }) Convey("PageInfo when limit and offset have 0 value", func() { query := ` { GlobalSearch(query:"repo", requestedPage:{limit: 0, offset: 0, sortBy:RELEVANCE}){ Repos { Name } Page{ ItemCount TotalCount } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images, ShouldBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Repos, ShouldNotBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Layers, ShouldBeEmpty) So(len(responseStruct.GlobalSearchResult.GlobalSearch.Repos), ShouldEqual, 3) So(responseStruct.GlobalSearchResult.GlobalSearch.Page.TotalCount, ShouldEqual, 3) So(responseStruct.GlobalSearchResult.GlobalSearch.Page.ItemCount, ShouldEqual, 3) }) }) } func TestRepoDBWhenSigningImages(t *testing.T) { Convey("SigningImages", t, func() { subpath := "/a" dir := t.TempDir() subDir := t.TempDir() subRootDir := path.Join(subDir, subpath) port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = dir conf.Storage.SubPaths = make(map[string]config.StorageConfig) conf.Storage.SubPaths[subpath] = config.StorageConfig{RootDirectory: subRootDir} defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() // push test images to repo 1 image 1 createdTime := time.Date(2010, 1, 1, 12, 0, 0, 0, time.UTC) image1, err := GetImageWithConfig(ispec.Image{ History: []ispec.History{ { Created: &createdTime, }, }, }) So(err, ShouldBeNil) err = UploadImage( Image{ Manifest: image1.Manifest, Config: image1.Config, Layers: image1.Layers, Reference: "1.0.1", }, baseURL, "repo1", ) So(err, ShouldBeNil) err = UploadImage( Image{ Manifest: image1.Manifest, Config: image1.Config, Layers: image1.Layers, Reference: "2.0.2", }, baseURL, "repo1", ) So(err, ShouldBeNil) manifestBlob, err := json.Marshal(image1.Manifest) So(err, ShouldBeNil) manifestDigest := godigest.FromBytes(manifestBlob) multiArch, err := GetRandomMultiarchImage("index") So(err, ShouldBeNil) err = UploadMultiarchImage( multiArch, baseURL, "repo1", ) So(err, ShouldBeNil) queryImage1 := ` { GlobalSearch(query:"repo1:1.0"){ Images { RepoName Tag LastUpdated Size IsSigned Manifests{ LastUpdated Size } } } }` queryImage2 := ` { GlobalSearch(query:"repo1:2.0"){ Images { RepoName Tag LastUpdated Size IsSigned Manifests { LastUpdated Size Platform { Os Arch } } } } }` queryIndex := ` { GlobalSearch(query:"repo1:index"){ Images { RepoName Tag LastUpdated Size IsSigned Manifests { LastUpdated Size Platform { Os Arch } } } } } ` Convey("Sign with cosign", func() { err = SignImageUsingCosign("repo1:1.0.1", port) So(err, ShouldBeNil) resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(queryImage1)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images[0].IsSigned, ShouldBeTrue) // check image 2 is signed also because it has the same manifest resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(queryImage2)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct = &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images[0].IsSigned, ShouldBeTrue) // delete the signature resp, err = resty.R().Delete(baseURL + "/v2/" + "repo1" + "/manifests/" + fmt.Sprintf("sha256-%s.sig", manifestDigest.Encoded())) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusAccepted) // check image 2 is not signed anymore resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(queryImage2)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct = &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images[0].IsSigned, ShouldBeFalse) }) Convey("Cover errors when signing with cosign", func() { Convey("imageIsSignature fails", func() { // make image store ignore the wrong format of the input ctlr.StoreController.DefaultStore = mocks.MockedImageStore{ PutImageManifestFn: func(repo, reference, mediaType string, body []byte) (godigest.Digest, error) { return "", nil }, DeleteImageManifestFn: func(repo, reference string, dc bool) error { return ErrTestError }, } // push bad manifest blob resp, err := resty.R(). SetHeader("Content-type", "application/vnd.oci.image.manifest.v1+json"). SetBody([]byte("unmashable manifest blob")). Put(baseURL + "/v2/" + "repo" + "/manifests/" + "tag") So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusInternalServerError) }) Convey("image is a signature, AddManifestSignature fails", func() { ctlr.RepoDB = mocks.RepoDBMock{ AddManifestSignatureFn: func(repo string, signedManifestDigest godigest.Digest, sm repodb.SignatureMetadata, ) error { return ErrTestError }, } err := SignImageUsingCosign("repo1:1.0.1", port) So(err, ShouldNotBeNil) }) }) Convey("Sign with notation", func() { err = SignImageUsingNotary("repo1:1.0.1", port) So(err, ShouldBeNil) resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(queryImage1)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images[0].IsSigned, ShouldBeTrue) }) Convey("Sign with notation index", func() { err = SignImageUsingNotary("repo1:index", port) So(err, ShouldBeNil) resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(queryIndex)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images[0].IsSigned, ShouldBeTrue) }) Convey("Sign with cosign index", func() { err = SignImageUsingCosign("repo1:index", port) So(err, ShouldBeNil) resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(queryIndex)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images[0].IsSigned, ShouldBeTrue) }) }) } func TestRepoDBWhenPushingImages(t *testing.T) { Convey("Cover errors when pushing", t, func() { dir := t.TempDir() port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = dir defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() Convey("SetManifestMeta fails", func() { ctlr.RepoDB = mocks.RepoDBMock{ SetManifestDataFn: func(manifestDigest godigest.Digest, mm repodb.ManifestData) error { return ErrTestError }, } config1, layers1, manifest1, err := GetImageComponents(100) So(err, ShouldBeNil) configBlob, err := json.Marshal(config1) So(err, ShouldBeNil) ctlr.StoreController.DefaultStore = mocks.MockedImageStore{ NewBlobUploadFn: ctlr.StoreController.DefaultStore.NewBlobUpload, PutBlobChunkFn: ctlr.StoreController.DefaultStore.PutBlobChunk, GetBlobContentFn: func(repo string, digest godigest.Digest) ([]byte, error) { return configBlob, nil }, DeleteImageManifestFn: func(repo, reference string, dc bool) error { return ErrTestError }, } err = UploadImage( Image{ Manifest: manifest1, Config: config1, Layers: layers1, Reference: "1.0.1", }, baseURL, "repo1", ) So(err, ShouldNotBeNil) }) Convey("SetManifestMeta succeeds but SetRepoReference fails", func() { ctlr.RepoDB = mocks.RepoDBMock{ SetRepoReferenceFn: func(repo, reference string, manifestDigest godigest.Digest, mediaType string) error { return ErrTestError }, } config1, layers1, manifest1, err := GetImageComponents(100) So(err, ShouldBeNil) configBlob, err := json.Marshal(config1) So(err, ShouldBeNil) ctlr.StoreController.DefaultStore = mocks.MockedImageStore{ NewBlobUploadFn: ctlr.StoreController.DefaultStore.NewBlobUpload, PutBlobChunkFn: ctlr.StoreController.DefaultStore.PutBlobChunk, GetBlobContentFn: func(repo string, digest godigest.Digest) ([]byte, error) { return configBlob, nil }, } err = UploadImage( Image{ Manifest: manifest1, Config: config1, Layers: layers1, Reference: "1.0.1", }, baseURL, "repo1", ) So(err, ShouldBeNil) }) }) } func TestRepoDBIndexOperations(t *testing.T) { Convey("Idex Operations BoltDB", t, func() { dir := t.TempDir() port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = dir conf.Storage.GC = false defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() RunRepoDBIndexTests(baseURL, port) }) } func RunRepoDBIndexTests(baseURL, port string) { Convey("Push test index", func() { repo := "repo" multiarchImage, err := GetRandomMultiarchImage("tag1") So(err, ShouldBeNil) indexBlob, err := json.Marshal(multiarchImage.Index) So(err, ShouldBeNil) indexDigest := godigest.FromBytes(indexBlob) err = UploadMultiarchImage(multiarchImage, baseURL, repo) So(err, ShouldBeNil) query := ` { GlobalSearch(query:"repo:tag1"){ Images { RepoName Tag DownloadCount IsSigned Manifests { Digest ConfigDigest Platform {Os Arch} Layers {Size Digest} LastUpdated Size } } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusOK) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) responseImages := responseStruct.GlobalSearchResult.GlobalSearch.Images So(responseImages, ShouldNotBeEmpty) responseImage := responseImages[0] So(len(responseImage.Manifests), ShouldEqual, 3) err = SignImageUsingCosign(fmt.Sprintf("repo@%s", indexDigest), port) So(err, ShouldBeNil) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusOK) responseStruct = &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) responseImages = responseStruct.GlobalSearchResult.GlobalSearch.Images So(responseImages, ShouldNotBeEmpty) responseImage = responseImages[0] So(responseImage.IsSigned, ShouldBeTrue) // remove signature cosignTag := "sha256-" + indexDigest.Encoded() + ".sig" _, err = resty.R().Delete(baseURL + "/v2/" + "repo" + "/manifests/" + cosignTag) So(err, ShouldBeNil) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusOK) responseStruct = &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) responseImages = responseStruct.GlobalSearchResult.GlobalSearch.Images So(responseImages, ShouldNotBeEmpty) responseImage = responseImages[0] So(responseImage.IsSigned, ShouldBeFalse) }) Convey("Index base images", func() { // ---------------- BASE IMAGE ------------------- imageAMD64, err := GetImageWithComponents( ispec.Image{ Platform: ispec.Platform{ OS: "linux", Architecture: "amd64", }, }, [][]byte{ {10, 20, 30}, {11, 21, 31}, }) So(err, ShouldBeNil) imageSomeArch, err := GetImageWithComponents( ispec.Image{ Platform: ispec.Platform{ OS: "linux", Architecture: "someArch", }, }, [][]byte{ {18, 28, 38}, {12, 22, 32}, }) So(err, ShouldBeNil) multiImage := GetMultiarchImageForImages("latest", []Image{ imageAMD64, imageSomeArch, }) err = UploadMultiarchImage(multiImage, baseURL, "test-repo") So(err, ShouldBeNil) // ---------------- BASE IMAGE ------------------- // ---------------- SAME LAYERS ------------------- image1, err := GetImageWithComponents( imageSomeArch.Config, [][]byte{ {0, 0, 2}, }, ) So(err, ShouldBeNil) image2, err := GetImageWithComponents( imageAMD64.Config, imageAMD64.Layers, ) So(err, ShouldBeNil) multiImage = GetMultiarchImageForImages("index-one-arch-same-layers", []Image{ image1, image2, }) err = UploadMultiarchImage(multiImage, baseURL, "index-one-arch-same-layers") So(err, ShouldBeNil) // ---------------- SAME LAYERS ------------------- // ---------------- LESS LAYERS ------------------- image1, err = GetImageWithComponents( imageSomeArch.Config, [][]byte{ {3, 2, 2}, {5, 2, 5}, }, ) So(err, ShouldBeNil) image2, err = GetImageWithComponents( imageAMD64.Config, [][]byte{imageAMD64.Layers[0]}, ) So(err, ShouldBeNil) multiImage = GetMultiarchImageForImages("index-one-arch-less-layers", []Image{ image1, image2, }) err = UploadMultiarchImage(multiImage, baseURL, "index-one-arch-less-layers") So(err, ShouldBeNil) // ---------------- LESS LAYERS ------------------- // ---------------- LESS LAYERS FALSE ------------------- image1, err = GetImageWithComponents( imageSomeArch.Config, [][]byte{ {3, 2, 2}, {5, 2, 5}, }, ) So(err, ShouldBeNil) auxLayer := imageAMD64.Layers[0] auxLayer[0] = 20 image2, err = GetImageWithComponents( imageAMD64.Config, [][]byte{auxLayer}, ) So(err, ShouldBeNil) multiImage = GetMultiarchImageForImages("index-one-arch-less-layers-false", []Image{ image1, image2, }) err = UploadMultiarchImage(multiImage, baseURL, "index-one-arch-less-layers-false") So(err, ShouldBeNil) // ---------------- LESS LAYERS FALSE ------------------- // ---------------- MORE LAYERS ------------------- image1, err = GetImageWithComponents( imageSomeArch.Config, [][]byte{ {0, 0, 2}, {3, 0, 2}, }, ) So(err, ShouldBeNil) image2, err = GetImageWithComponents( imageAMD64.Config, append(imageAMD64.Layers, []byte{1, 3, 55}), ) So(err, ShouldBeNil) multiImage = GetMultiarchImageForImages("index-one-arch-more-layers", []Image{ image1, image2, }) err = UploadMultiarchImage(multiImage, baseURL, "index-one-arch-more-layers") So(err, ShouldBeNil) // ---------------- MORE LAYERS ------------------- query := ` { BaseImageList(image:"test-repo:latest"){ Results{ RepoName Tag Manifests { Digest ConfigDigest LastUpdated Size } Size } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(strings.Contains(string(resp.Body()), "index-one-arch-less-layers"), ShouldBeTrue) So(strings.Contains(string(resp.Body()), "index-one-arch-same-layers"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "index-one-arch-less-layers-false"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "index-one-arch-more-layers"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "test-repo"), ShouldBeFalse) }) Convey("Index base images for digest", func() { // ---------------- BASE IMAGE ------------------- imageAMD64, err := GetImageWithComponents( ispec.Image{ Platform: ispec.Platform{ OS: "linux", Architecture: "amd64", }, }, [][]byte{ {10, 20, 30}, {11, 21, 31}, }) So(err, ShouldBeNil) baseLinuxAMD64Digest, err := imageAMD64.Digest() So(err, ShouldBeNil) imageSomeArch, err := GetImageWithComponents( ispec.Image{ Platform: ispec.Platform{ OS: "linux", Architecture: "someArch", }, }, [][]byte{ {18, 28, 38}, {12, 22, 32}, }) So(err, ShouldBeNil) baseLinuxSomeArchDigest, err := imageSomeArch.Digest() So(err, ShouldBeNil) multiImage := GetMultiarchImageForImages("index", []Image{ imageAMD64, imageSomeArch, }) err = UploadMultiarchImage(multiImage, baseURL, "test-repo") So(err, ShouldBeNil) // ---------------- BASE IMAGE FOR LINUX AMD64 ------------------- image, err := GetImageWithComponents( imageAMD64.Config, [][]byte{imageAMD64.Layers[0]}, ) So(err, ShouldBeNil) image.Reference = "less-layers-linux-amd64" err = UploadImage(image, baseURL, "test-repo") So(err, ShouldBeNil) // ---------------- BASE IMAGE FOR LINUX SOMEARCH ------------------- image, err = GetImageWithComponents( imageAMD64.Config, [][]byte{imageSomeArch.Layers[0]}, ) So(err, ShouldBeNil) image.Reference = "less-layers-linux-somearch" err = UploadImage(image, baseURL, "test-repo") So(err, ShouldBeNil) // ------- TEST query := ` { BaseImageList(image:"test-repo:index", digest:"%s"){ Results{ RepoName Tag Manifests { Digest ConfigDigest LastUpdated Size } Size } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape( fmt.Sprintf(query, baseLinuxAMD64Digest.String()), ), ) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(strings.Contains(string(resp.Body()), "less-layers-linux-amd64"), ShouldEqual, true) So(strings.Contains(string(resp.Body()), "less-layers-linux-somearch"), ShouldEqual, false) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape( fmt.Sprintf(query, baseLinuxSomeArchDigest.String()), ), ) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(strings.Contains(string(resp.Body()), "less-layers-linux-amd64"), ShouldEqual, false) So(strings.Contains(string(resp.Body()), "less-layers-linux-somearch"), ShouldEqual, true) }) Convey("Index derived images", func() { // ---------------- BASE IMAGE ------------------- imageAMD64, err := GetImageWithComponents( ispec.Image{ Platform: ispec.Platform{ OS: "linux", Architecture: "amd64", }, }, [][]byte{ {10, 20, 30}, {11, 21, 31}, }) So(err, ShouldBeNil) imageSomeArch, err := GetImageWithComponents( ispec.Image{ Platform: ispec.Platform{ OS: "linux", Architecture: "someArch", }, }, [][]byte{ {18, 28, 38}, {12, 22, 32}, }) So(err, ShouldBeNil) multiImage := GetMultiarchImageForImages("latest", []Image{ imageAMD64, imageSomeArch, }) err = UploadMultiarchImage(multiImage, baseURL, "test-repo") So(err, ShouldBeNil) // ---------------- BASE IMAGE ------------------- // ---------------- SAME LAYERS ------------------- image1, err := GetImageWithComponents( imageSomeArch.Config, [][]byte{ {0, 0, 2}, }, ) So(err, ShouldBeNil) image2, err := GetImageWithComponents( imageAMD64.Config, imageAMD64.Layers, ) So(err, ShouldBeNil) multiImage = GetMultiarchImageForImages("index-one-arch-same-layers", []Image{ image1, image2, }) err = UploadMultiarchImage(multiImage, baseURL, "index-one-arch-same-layers") So(err, ShouldBeNil) // ---------------- SAME LAYERS ------------------- // ---------------- LESS LAYERS ------------------- image1, err = GetImageWithComponents( imageSomeArch.Config, [][]byte{ {3, 2, 2}, {5, 2, 5}, }, ) So(err, ShouldBeNil) image2, err = GetImageWithComponents( imageAMD64.Config, [][]byte{imageAMD64.Layers[0]}, ) So(err, ShouldBeNil) multiImage = GetMultiarchImageForImages("index-one-arch-less-layers", []Image{ image1, image2, }) err = UploadMultiarchImage(multiImage, baseURL, "index-one-arch-less-layers") So(err, ShouldBeNil) // ---------------- LESS LAYERS ------------------- // ---------------- LESS LAYERS FALSE ------------------- image1, err = GetImageWithComponents( imageSomeArch.Config, [][]byte{ {3, 2, 2}, {5, 2, 5}, }, ) So(err, ShouldBeNil) image2, err = GetImageWithComponents( imageAMD64.Config, [][]byte{{99, 100, 102}}, ) So(err, ShouldBeNil) multiImage = GetMultiarchImageForImages("index-one-arch-less-layers-false", []Image{ image1, image2, }) err = UploadMultiarchImage(multiImage, baseURL, "index-one-arch-less-layers-false") So(err, ShouldBeNil) // ---------------- LESS LAYERS FALSE ------------------- // ---------------- MORE LAYERS ------------------- image1, err = GetImageWithComponents( imageSomeArch.Config, [][]byte{ {0, 0, 2}, {3, 0, 2}, }, ) So(err, ShouldBeNil) image2, err = GetImageWithComponents( imageAMD64.Config, [][]byte{ imageAMD64.Layers[0], imageAMD64.Layers[1], {1, 3, 55}, }, ) So(err, ShouldBeNil) multiImage = GetMultiarchImageForImages("index-one-arch-more-layers", []Image{ image1, image2, }) err = UploadMultiarchImage(multiImage, baseURL, "index-one-arch-more-layers") So(err, ShouldBeNil) // ---------------- MORE LAYERS ------------------- query := ` { DerivedImageList(image:"test-repo:latest"){ Results{ RepoName Tag Manifests { Digest ConfigDigest LastUpdated Size } Size } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(strings.Contains(string(resp.Body()), "index-one-arch-less-layers"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "index-one-arch-same-layers"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "index-one-arch-less-layers-false"), ShouldBeFalse) So(strings.Contains(string(resp.Body()), "index-one-arch-more-layers"), ShouldBeTrue) So(strings.Contains(string(resp.Body()), "test-repo"), ShouldBeFalse) }) Convey("Index derived images for digest", func() { // ---------------- BASE IMAGE ------------------- imageAMD64, err := GetImageWithComponents( ispec.Image{ Platform: ispec.Platform{ OS: "linux", Architecture: "amd64", }, }, [][]byte{ {10, 20, 30}, {11, 21, 31}, }) So(err, ShouldBeNil) baseLinuxAMD64Digest, err := imageAMD64.Digest() So(err, ShouldBeNil) imageSomeArch, err := GetImageWithComponents( ispec.Image{ Platform: ispec.Platform{ OS: "linux", Architecture: "someArch", }, }, [][]byte{ {18, 28, 38}, {12, 22, 32}, }) So(err, ShouldBeNil) baseLinuxSomeArchDigest, err := imageSomeArch.Digest() So(err, ShouldBeNil) multiImage := GetMultiarchImageForImages("index", []Image{ imageAMD64, imageSomeArch, }) err = UploadMultiarchImage(multiImage, baseURL, "test-repo") So(err, ShouldBeNil) // ---------------- BASE IMAGE FOR LINUX AMD64 ------------------- image, err := GetImageWithComponents( imageAMD64.Config, [][]byte{ imageAMD64.Layers[0], imageAMD64.Layers[1], {0, 0, 0, 0}, {1, 1, 1, 1}, }, ) So(err, ShouldBeNil) image.Reference = "more-layers-linux-amd64" err = UploadImage(image, baseURL, "test-repo") So(err, ShouldBeNil) // ---------------- BASE IMAGE FOR LINUX SOMEARCH ------------------- image, err = GetImageWithComponents( imageAMD64.Config, [][]byte{ imageSomeArch.Layers[0], imageSomeArch.Layers[1], {3, 3, 3, 3}, {2, 2, 2, 2}, }, ) So(err, ShouldBeNil) image.Reference = "more-layers-linux-somearch" err = UploadImage(image, baseURL, "test-repo") So(err, ShouldBeNil) // ------- TEST query := ` { DerivedImageList(image:"test-repo:index", digest:"%s"){ Results{ RepoName Tag Manifests { Digest ConfigDigest LastUpdated Size } Size } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape( fmt.Sprintf(query, baseLinuxAMD64Digest.String()), ), ) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(strings.Contains(string(resp.Body()), "more-layers-linux-amd64"), ShouldEqual, true) So(strings.Contains(string(resp.Body()), "more-layers-linux-somearch"), ShouldEqual, false) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape( fmt.Sprintf(query, baseLinuxSomeArchDigest.String()), ), ) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(strings.Contains(string(resp.Body()), "more-layers-linux-amd64"), ShouldEqual, false) So(strings.Contains(string(resp.Body()), "more-layers-linux-somearch"), ShouldEqual, true) }) } func TestRepoDBWhenReadingImages(t *testing.T) { Convey("Push test image", t, func() { dir := t.TempDir() port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = dir defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() config1, layers1, manifest1, err := GetImageComponents(100) So(err, ShouldBeNil) err = UploadImage( Image{ Manifest: manifest1, Config: config1, Layers: layers1, Reference: "1.0.1", }, baseURL, "repo1", ) So(err, ShouldBeNil) Convey("Download 3 times", func() { resp, err := resty.R().Get(baseURL + "/v2/" + "repo1" + "/manifests/" + "1.0.1") So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusOK) resp, err = resty.R().Get(baseURL + "/v2/" + "repo1" + "/manifests/" + "1.0.1") So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusOK) resp, err = resty.R().Get(baseURL + "/v2/" + "repo1" + "/manifests/" + "1.0.1") So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusOK) query := ` { GlobalSearch(query:"repo1:1.0"){ Images { RepoName Tag DownloadCount } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusOK) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images, ShouldNotBeEmpty) So(responseStruct.GlobalSearchResult.GlobalSearch.Images[0].DownloadCount, ShouldEqual, 3) }) Convey("Error when incrementing", func() { ctlr.RepoDB = mocks.RepoDBMock{ IncrementImageDownloadsFn: func(repo string, tag string) error { return ErrTestError }, } resp, err := resty.R().Get(baseURL + "/v2/" + "repo1" + "/manifests/" + "1.0.1") So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusInternalServerError) }) }) } func TestRepoDBWhenDeletingImages(t *testing.T) { Convey("Setting up zot repo with test images", t, func() { dir := t.TempDir() port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = dir conf.Storage.GC = false defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() // push test images to repo 1 image 1 image1, err := GetRandomImage("1.0.1") So(err, ShouldBeNil) err = UploadImage( image1, baseURL, "repo1", ) So(err, ShouldBeNil) // push test images to repo 1 image 2 createdTime2 := time.Date(2009, 1, 1, 12, 0, 0, 0, time.UTC) image2, err := GetImageWithConfig(ispec.Image{ Created: &createdTime2, History: []ispec.History{ { Created: &createdTime2, }, }, }) So(err, ShouldBeNil) image2.Reference = "1.0.2" err = UploadImage( image2, baseURL, "repo1", ) So(err, ShouldBeNil) query := ` { GlobalSearch(query:"repo1:1.0"){ Images { RepoName Tag LastUpdated Size IsSigned Manifests{ Platform { Os Arch } LastUpdated Size } } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusOK) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(len(responseStruct.GlobalSearchResult.GlobalSearch.Images), ShouldEqual, 2) Convey("Delete a normal tag", func() { resp, err := resty.R().Delete(baseURL + "/v2/" + "repo1" + "/manifests/" + "1.0.1") So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusAccepted) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusOK) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(len(responseStruct.GlobalSearchResult.GlobalSearch.Images), ShouldEqual, 1) So(responseStruct.GlobalSearchResult.GlobalSearch.Images[0].Tag, ShouldEqual, "1.0.2") }) Convey("Delete a cosign signature", func() { repo := "repo1" err := SignImageUsingCosign("repo1:1.0.1", port) So(err, ShouldBeNil) query := ` { GlobalSearch(query:"repo1:1.0.1"){ Images { RepoName Tag LastUpdated Size IsSigned Manifests{ Platform { Os Arch } LastUpdated Size } } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images[0].IsSigned, ShouldBeTrue) // get signatur digest log := log.NewLogger("debug", "") metrics := monitoring.NewMetricsServer(false, log) storage := local.NewImageStore(dir, false, storage.DefaultGCDelay, false, false, log, metrics, nil, nil) indexBlob, err := storage.GetIndexContent(repo) So(err, ShouldBeNil) var indexContent ispec.Index err = json.Unmarshal(indexBlob, &indexContent) So(err, ShouldBeNil) signatureTag := "" for _, manifest := range indexContent.Manifests { tag := manifest.Annotations[ispec.AnnotationRefName] cosignTagRule := glob.MustCompile("sha256-*.sig") if cosignTagRule.Match(tag) { signatureTag = tag } } // delete the signature using the digest resp, err = resty.R().Delete(baseURL + "/v2/" + "repo1" + "/manifests/" + signatureTag) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusAccepted) // verify isSigned again and it should be false resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct = &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images[0].IsSigned, ShouldBeFalse) }) Convey("Delete a notary signature", func() { repo := "repo1" err := SignImageUsingNotary("repo1:1.0.1", port) So(err, ShouldBeNil) query := ` { GlobalSearch(query:"repo1:1.0.1"){ Images { RepoName Tag LastUpdated Size IsSigned Manifests{ Platform { Os Arch } LastUpdated Size } } } }` // test if it's signed resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images[0].IsSigned, ShouldBeTrue) // get signatur digest log := log.NewLogger("debug", "") metrics := monitoring.NewMetricsServer(false, log) storage := local.NewImageStore(dir, false, storage.DefaultGCDelay, false, false, log, metrics, nil, nil) indexBlob, err := storage.GetIndexContent(repo) So(err, ShouldBeNil) var indexContent ispec.Index err = json.Unmarshal(indexBlob, &indexContent) So(err, ShouldBeNil) signatureReference := "" var sigManifestContent ispec.Artifact for _, manifest := range indexContent.Manifests { if manifest.MediaType == ispec.MediaTypeArtifactManifest { signatureReference = manifest.Digest.String() manifestBlob, _, _, err := storage.GetImageManifest(repo, signatureReference) So(err, ShouldBeNil) err = json.Unmarshal(manifestBlob, &sigManifestContent) So(err, ShouldBeNil) } } So(sigManifestContent, ShouldNotBeZeroValue) // check notation signature manifest1Blob, err := json.Marshal(image1.Manifest) So(err, ShouldBeNil) manifest1Digest := godigest.FromBytes(manifest1Blob) So(sigManifestContent.Subject, ShouldNotBeNil) So(sigManifestContent.Subject.Digest.String(), ShouldEqual, manifest1Digest.String()) // delete the signature using the digest resp, err = resty.R().Delete(baseURL + "/v2/" + "repo1" + "/manifests/" + signatureReference) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusAccepted) // verify isSigned again and it should be false resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct = &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(responseStruct.GlobalSearchResult.GlobalSearch.Images[0].IsSigned, ShouldBeFalse) }) Convey("Delete a referrer", func() { referredImageDigest, err := image1.Digest() So(err, ShouldBeNil) referrerImage, err := GetImageWithSubject(referredImageDigest, ispec.MediaTypeImageManifest) So(err, ShouldBeNil) err = UploadImage( referrerImage, baseURL, "repo1", ) So(err, ShouldBeNil) // ------- check referrers for this image query := fmt.Sprintf(` { Referrers(repo:"repo1", digest:"%s"){ MediaType Digest } }`, referredImageDigest.String()) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct := &ReferrersResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(len(responseStruct.ReferrersResult.Referrers), ShouldEqual, 1) So(responseStruct.ReferrersResult.Referrers[0].Digest, ShouldResemble, referrerImage.Reference) statusCode, err := DeleteImage("repo1", referrerImage.Reference, "badURL") So(err, ShouldNotBeNil) So(statusCode, ShouldEqual, -1) // ------- Delete the referrer and see if it disappears from repoDB also statusCode, err = DeleteImage("repo1", referrerImage.Reference, baseURL) So(err, ShouldBeNil) So(statusCode, ShouldEqual, http.StatusAccepted) resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) responseStruct = &ReferrersResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(len(responseStruct.ReferrersResult.Referrers), ShouldEqual, 0) }) Convey("Deleting causes errors", func() { Convey("error while backing up the manifest", func() { ctlr.StoreController.DefaultStore = mocks.MockedImageStore{ GetImageManifestFn: func(repo, reference string) ([]byte, godigest.Digest, string, error) { return []byte{}, "", "", zerr.ErrRepoNotFound }, } resp, err = resty.R().Delete(baseURL + "/v2/" + "repo1" + "/manifests/" + "signatureReference") So(resp, ShouldNotBeNil) So(err, ShouldBeNil) ctlr.StoreController.DefaultStore = mocks.MockedImageStore{ GetImageManifestFn: func(repo, reference string) ([]byte, godigest.Digest, string, error) { return []byte{}, "", "", zerr.ErrBadManifest }, } resp, err = resty.R().Delete(baseURL + "/v2/" + "repo1" + "/manifests/" + "signatureReference") So(resp, ShouldNotBeNil) So(err, ShouldBeNil) ctlr.StoreController.DefaultStore = mocks.MockedImageStore{ GetImageManifestFn: func(repo, reference string) ([]byte, godigest.Digest, string, error) { return []byte{}, "", "", zerr.ErrRepoNotFound }, } resp, err = resty.R().Delete(baseURL + "/v2/" + "repo1" + "/manifests/" + "signatureReference") So(resp, ShouldNotBeNil) So(err, ShouldBeNil) }) Convey("imageIsSignature fails", func() { ctlr.StoreController.DefaultStore = mocks.MockedImageStore{ PutImageManifestFn: func(repo, reference, mediaType string, body []byte) (godigest.Digest, error) { return "", nil }, DeleteImageManifestFn: func(repo, reference string, dc bool) error { return nil }, } resp, err = resty.R().Delete(baseURL + "/v2/" + "repo1" + "/manifests/" + "signatureReference") So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusInternalServerError) }) Convey("image is a signature, DeleteSignature fails", func() { ctlr.StoreController.DefaultStore = mocks.MockedImageStore{ NewBlobUploadFn: ctlr.StoreController.DefaultStore.NewBlobUpload, PutBlobChunkFn: ctlr.StoreController.DefaultStore.PutBlobChunk, GetBlobContentFn: func(repo string, digest godigest.Digest) ([]byte, error) { configBlob, err := json.Marshal(ispec.Image{}) So(err, ShouldBeNil) return configBlob, nil }, PutImageManifestFn: func(repo, reference, mediaType string, body []byte) (godigest.Digest, error) { return "", nil }, DeleteImageManifestFn: func(repo, reference string, dc bool) error { return nil }, GetImageManifestFn: func(repo, reference string) ([]byte, godigest.Digest, string, error) { return []byte("{}"), "1", "1", nil }, } resp, err = resty.R().Delete(baseURL + "/v2/" + "repo1" + "/manifests/" + "sha256-343ebab94a7674da181c6ea3da013aee4f8cbe357870f8dcaf6268d5343c3474.sig") So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusInternalServerError) }) Convey("image is a signature, PutImageManifest fails", func() { ctlr.StoreController.DefaultStore = mocks.MockedImageStore{ NewBlobUploadFn: ctlr.StoreController.DefaultStore.NewBlobUpload, PutBlobChunkFn: ctlr.StoreController.DefaultStore.PutBlobChunk, GetBlobContentFn: func(repo string, digest godigest.Digest) ([]byte, error) { configBlob, err := json.Marshal(ispec.Image{}) So(err, ShouldBeNil) return configBlob, nil }, PutImageManifestFn: func(repo, reference, mediaType string, body []byte) (godigest.Digest, error) { return "", ErrTestError }, DeleteImageManifestFn: func(repo, reference string, dc bool) error { return nil }, GetImageManifestFn: func(repo, reference string) ([]byte, godigest.Digest, string, error) { return []byte("{}"), "1", "1", nil }, } ctlr.RepoDB = mocks.RepoDBMock{ DeleteRepoTagFn: func(repo, tag string) error { return ErrTestError }, } resp, err = resty.R().Delete(baseURL + "/v2/" + "repo1" + "/manifests/" + "343ebab94a7674da181c6ea3da013aee4f8cbe357870f8dcaf6268d5343c3474.sig") So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusInternalServerError) }) }) }) } func updateManifestConfig(manifest ispec.Manifest, config ispec.Image) (ispec.Manifest, error) { configBlob, err := json.Marshal(config) configDigest := godigest.FromBytes(configBlob) configSize := len(configBlob) manifest.Config.Digest = configDigest manifest.Config.Size = int64(configSize) return manifest, err } func TestSearchSize(t *testing.T) { Convey("Repo sizes", t, func() { port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port tr := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &tr}}, } ctlr := api.NewController(conf) dir := t.TempDir() ctlr.Config.Storage.RootDirectory = dir ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() repoName := "testrepo" config, layers, manifest, err := GetImageComponents(10000) So(err, ShouldBeNil) configBlob, err := json.Marshal(config) So(err, ShouldBeNil) configSize := len(configBlob) layersSize := 0 for _, l := range layers { layersSize += len(l) } manifestBlob, err := json.Marshal(manifest) So(err, ShouldBeNil) manifestSize := len(manifestBlob) err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "latest", }, baseURL, repoName, ) So(err, ShouldBeNil) query := ` { GlobalSearch(query:"testrepo:"){ Images { RepoName Tag LastUpdated Size Vendor Manifests{ Platform { Os Arch } LastUpdated Size } } Repos { Name LastUpdated Size NewestImage { Manifests{ Platform { Os Arch } LastUpdated Size } } } } }` resp, err := resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusOK) So(configSize+layersSize+manifestSize, ShouldNotBeZeroValue) responseStruct := &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) image := responseStruct.GlobalSearchResult.GlobalSearch.Images[0] So(image.Tag, ShouldResemble, "latest") size, err := strconv.Atoi(image.Size) So(err, ShouldBeNil) So(size, ShouldEqual, configSize+layersSize+manifestSize) query = ` { GlobalSearch(query:"testrepo"){ Images { RepoName Tag LastUpdated Size Manifests{ Platform { Os Arch } LastUpdated Size } } Repos { Name LastUpdated Size NewestImage { Manifests{ Platform { Os Arch } LastUpdated Size } } } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusOK) So(configSize+layersSize+manifestSize, ShouldNotBeZeroValue) responseStruct = &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) repo := responseStruct.GlobalSearchResult.GlobalSearch.Repos[0] size, err = strconv.Atoi(repo.Size) So(err, ShouldBeNil) So(size, ShouldEqual, configSize+layersSize+manifestSize) // add the same image with different tag err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: "10.2.14", }, baseURL, repoName, ) So(err, ShouldBeNil) // query for images query = ` { GlobalSearch(query:"testrepo:"){ Images { RepoName Tag LastUpdated Size Manifests{ Platform { Os Arch } LastUpdated Size } } Repos { Name LastUpdated Size NewestImage { Manifests{ Platform { Os Arch } LastUpdated Size } } } Layers { Digest Size } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusOK) So(configSize+layersSize+manifestSize, ShouldNotBeZeroValue) responseStruct = &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) So(len(responseStruct.GlobalSearchResult.GlobalSearch.Images), ShouldEqual, 2) // check that the repo size is the same // query for repos query = ` { GlobalSearch(query:"testrepo"){ Images { RepoName Tag LastUpdated Size Manifests{ Platform { Os Arch } LastUpdated Size } } Repos { Name LastUpdated Size NewestImage { Manifests{ Platform { Os Arch } LastUpdated Size } } } Layers { Digest Size } } }` resp, err = resty.R().Get(baseURL + graphqlQueryPrefix + "?query=" + url.QueryEscape(query)) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, http.StatusOK) So(configSize+layersSize+manifestSize, ShouldNotBeZeroValue) responseStruct = &GlobalSearchResultResp{} err = json.Unmarshal(resp.Body(), responseStruct) So(err, ShouldBeNil) repo = responseStruct.GlobalSearchResult.GlobalSearch.Repos[0] size, err = strconv.Atoi(repo.Size) So(err, ShouldBeNil) So(size, ShouldEqual, configSize+layersSize+manifestSize) }) } func TestImageSummary(t *testing.T) { Convey("GraphQL query ImageSummary", t, func() { port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = t.TempDir() conf.Storage.GC = false defaultVal := true conf.Extensions = &extconf.ExtensionConfig{ Search: &extconf.SearchConfig{BaseConfig: extconf.BaseConfig{Enable: &defaultVal}}, } conf.Extensions.Search.CVE = nil ctlr := api.NewController(conf) gqlQuery := ` { Image(image:"%s:%s"){ RepoName Tag Digest MediaType Manifests { Digest ConfigDigest LastUpdated Size Platform { Os Arch } Layers { Digest Size } Vulnerabilities { Count MaxSeverity } History { HistoryDescription { Created } Layer { Digest Size } } } LastUpdated Size Vulnerabilities { Count MaxSeverity } Referrers {MediaType ArtifactType Digest Annotations {Key Value}} } }` noTagQuery := ` { Image(image:"%s"){ RepoName, Tag, Digest, MediaType, Manifests { Digest ConfigDigest LastUpdated Size Platform { Os Arch } Layers { Digest Size } Vulnerabilities { Count MaxSeverity } History { HistoryDescription { Created } Layer { Digest Size } } }, Size } }` gqlEndpoint := fmt.Sprintf("%s%s?query=", baseURL, graphqlQueryPrefix) ctlrManager := NewControllerManager(ctlr) ctlrManager.StartAndWait(port) defer ctlrManager.StopServer() repoName := "test-repo" //nolint:goconst tagTarget := "latest" createdTime := time.Date(2010, 1, 1, 12, 0, 0, 0, time.UTC) image, err := GetImageWithConfig( ispec.Image{ History: []ispec.History{{Created: &createdTime}}, Platform: ispec.Platform{ Architecture: "amd64", OS: "linux", }, }, ) So(err, ShouldBeNil) image.Reference = tagTarget manifestDigest, err := image.Digest() So(err, ShouldBeNil) err = UploadImage(image, baseURL, repoName) So(err, ShouldBeNil) // ------ Add a referrer referrerImage, err := GetImageWithConfig(ispec.Image{}) So(err, ShouldBeNil) referrerImage.Manifest.Subject = &ispec.Descriptor{ Digest: manifestDigest, MediaType: ispec.MediaTypeImageManifest, } referrerImage.Manifest.Config.MediaType = "test.artifact.type" referrerImage.Manifest.Annotations = map[string]string{"testAnnotationKey": "testAnnotationValue"} referrerManifestDigest, err := referrerImage.Digest() So(err, ShouldBeNil) referrerImage.Reference = referrerManifestDigest.String() err = UploadImage(referrerImage, baseURL, repoName) So(err, ShouldBeNil) var ( imgSummaryResponse ImageSummaryResult strQuery string targetURL string resp *resty.Response ) t.Log("starting test to retrieve image without reference") strQuery = fmt.Sprintf(noTagQuery, repoName) targetURL = fmt.Sprintf("%s%s", gqlEndpoint, url.QueryEscape(strQuery)) contains := false resp, err = resty.R().Get(targetURL) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) So(resp.Body(), ShouldNotBeNil) err = json.Unmarshal(resp.Body(), &imgSummaryResponse) So(err, ShouldBeNil) for _, err := range imgSummaryResponse.Errors { result := strings.Contains(err.Message, "no reference provided") if result { contains = result } } So(contains, ShouldBeTrue) t.Log("starting Test retrieve image based on image identifier") // gql is parametrized with the repo. strQuery = fmt.Sprintf(gqlQuery, repoName, tagTarget) targetURL = fmt.Sprintf("%s%s", gqlEndpoint, url.QueryEscape(strQuery)) resp, err = resty.R().Get(targetURL) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) So(resp.Body(), ShouldNotBeNil) err = json.Unmarshal(resp.Body(), &imgSummaryResponse) So(err, ShouldBeNil) So(imgSummaryResponse, ShouldNotBeNil) So(imgSummaryResponse.SingleImageSummary, ShouldNotBeNil) So(imgSummaryResponse.SingleImageSummary.ImageSummary, ShouldNotBeNil) imgSummary := imgSummaryResponse.SingleImageSummary.ImageSummary So(imgSummary.RepoName, ShouldContainSubstring, repoName) So(imgSummary.Tag, ShouldContainSubstring, tagTarget) So(imgSummary.Digest, ShouldContainSubstring, manifestDigest.Encoded()) So(imgSummary.MediaType, ShouldContainSubstring, ispec.MediaTypeImageManifest) So(imgSummary.Manifests[0].ConfigDigest, ShouldContainSubstring, image.Manifest.Config.Digest.Encoded()) So(imgSummary.Manifests[0].Digest, ShouldContainSubstring, manifestDigest.Encoded()) So(len(imgSummary.Manifests[0].Layers), ShouldEqual, 1) So(imgSummary.Manifests[0].Layers[0].Digest, ShouldContainSubstring, image.Manifest.Layers[0].Digest.Encoded()) So(imgSummary.LastUpdated, ShouldEqual, createdTime) So(imgSummary.IsSigned, ShouldEqual, false) So(imgSummary.Manifests[0].Platform.Os, ShouldEqual, "linux") So(imgSummary.Manifests[0].Platform.Arch, ShouldEqual, "amd64") So(len(imgSummary.Manifests[0].History), ShouldEqual, 1) So(imgSummary.Manifests[0].History[0].HistoryDescription.Created, ShouldEqual, createdTime) // No vulnerabilities should be detected since trivy is disabled So(imgSummary.Vulnerabilities.Count, ShouldEqual, 0) So(imgSummary.Vulnerabilities.MaxSeverity, ShouldEqual, "") So(len(imgSummary.Referrers), ShouldEqual, 1) So(imgSummary.Referrers[0], ShouldResemble, common.Referrer{ MediaType: ispec.MediaTypeImageManifest, ArtifactType: "test.artifact.type", Digest: referrerManifestDigest.String(), Annotations: []common.Annotation{{Key: "testAnnotationKey", Value: "testAnnotationValue"}}, }) t.Log("starting Test retrieve duplicated image same layers based on image identifier") // gqlEndpoint strQuery = fmt.Sprintf(gqlQuery, "wrong-repo-does-not-exist", "latest") targetURL = fmt.Sprintf("%s%s", gqlEndpoint, url.QueryEscape(strQuery)) resp, err = resty.R().Get(targetURL) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) So(resp.Body(), ShouldNotBeNil) err = json.Unmarshal(resp.Body(), &imgSummaryResponse) So(err, ShouldBeNil) So(imgSummaryResponse, ShouldNotBeNil) So(imgSummaryResponse.SingleImageSummary, ShouldNotBeNil) So(imgSummaryResponse.SingleImageSummary.ImageSummary, ShouldNotBeNil) So(len(imgSummaryResponse.Errors), ShouldEqual, 1) So(imgSummaryResponse.Errors[0].Message, ShouldContainSubstring, "repodb: repo metadata not found for given repo name") t.Log("starting Test retrieve image with bad tag") // gql is parametrized with the repo. strQuery = fmt.Sprintf(gqlQuery, repoName, "nonexisttag") targetURL = fmt.Sprintf("%s%s", gqlEndpoint, url.QueryEscape(strQuery)) resp, err = resty.R().Get(targetURL) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) So(resp.Body(), ShouldNotBeNil) err = json.Unmarshal(resp.Body(), &imgSummaryResponse) So(err, ShouldBeNil) So(imgSummaryResponse, ShouldNotBeNil) So(imgSummaryResponse.SingleImageSummary, ShouldNotBeNil) So(imgSummaryResponse.SingleImageSummary.ImageSummary, ShouldNotBeNil) So(len(imgSummaryResponse.Errors), ShouldEqual, 1) So(imgSummaryResponse.Errors[0].Message, ShouldContainSubstring, "can't find image: test-repo:nonexisttag") }) Convey("GraphQL query ImageSummary with Vulnerability scan enabled", t, func() { port := GetFreePort() baseURL := GetBaseURL(port) conf := config.New() conf.HTTP.Port = port conf.Storage.RootDirectory = t.TempDir() defaultVal := true updateDuration, _ := time.ParseDuration("1h") trivyConfig := &extconf.TrivyConfig{ DBRepository: "ghcr.io/project-zot/trivy-db", } cveConfig := &extconf.CVEConfig{ UpdateInterval: updateDuration, Trivy: trivyConfig, } searchConfig := &extconf.SearchConfig{ BaseConfig: extconf.BaseConfig{Enable: &defaultVal}, CVE: cveConfig, } conf.Extensions = &extconf.ExtensionConfig{ Search: searchConfig, } ctlr := api.NewController(conf) gqlQuery := ` { Image(image:"%s:%s"){ RepoName Tag Manifests { Digest ConfigDigest LastUpdated Size Platform { Os Arch } Layers { Digest Size } Vulnerabilities { Count MaxSeverity } History { HistoryDescription { Created } Layer { Digest Size } } } LastUpdated Size Vulnerabilities { Count MaxSeverity } } }` gqlEndpoint := fmt.Sprintf("%s%s?query=", baseURL, graphqlQueryPrefix) config, layers, manifest, err := GetImageComponents(100) So(err, ShouldBeNil) createdTime := time.Date(2010, 1, 1, 12, 0, 0, 0, time.UTC) config.History = append(config.History, ispec.History{Created: &createdTime}) manifest, err = updateManifestConfig(manifest, config) So(err, ShouldBeNil) configBlob, errConfig := json.Marshal(config) configDigest := godigest.FromBytes(configBlob) So(errConfig, ShouldBeNil) // marshall success, config is valid JSON ctx := context.Background() if err := ctlr.Init(ctx); err != nil { panic(err) } ctlr.CveInfo = getMockCveInfo(ctlr.RepoDB, ctlr.Log) go func() { if err := ctlr.Run(ctx); !errors.Is(err, http.ErrServerClosed) { panic(err) } }() defer ctlr.Shutdown() WaitTillServerReady(baseURL) manifestBlob, errMarsal := json.Marshal(manifest) So(errMarsal, ShouldBeNil) So(manifestBlob, ShouldNotBeNil) manifestDigest := godigest.FromBytes(manifestBlob) repoName := "test-repo" //nolint:goconst tagTarget := "latest" err = UploadImage( Image{ Manifest: manifest, Config: config, Layers: layers, Reference: tagTarget, }, baseURL, repoName, ) So(err, ShouldBeNil) var ( imgSummaryResponse ImageSummaryResult strQuery string targetURL string resp *resty.Response ) t.Log("starting Test retrieve image based on image identifier") // gql is parametrized with the repo. strQuery = fmt.Sprintf(gqlQuery, repoName, tagTarget) targetURL = fmt.Sprintf("%s%s", gqlEndpoint, url.QueryEscape(strQuery)) resp, err = resty.R().Get(targetURL) So(resp, ShouldNotBeNil) So(err, ShouldBeNil) So(resp.StatusCode(), ShouldEqual, 200) So(resp.Body(), ShouldNotBeNil) err = json.Unmarshal(resp.Body(), &imgSummaryResponse) So(err, ShouldBeNil) So(imgSummaryResponse, ShouldNotBeNil) So(imgSummaryResponse.SingleImageSummary, ShouldNotBeNil) So(imgSummaryResponse.SingleImageSummary.ImageSummary, ShouldNotBeNil) imgSummary := imgSummaryResponse.SingleImageSummary.ImageSummary So(imgSummary.RepoName, ShouldContainSubstring, repoName) So(imgSummary.Tag, ShouldContainSubstring, tagTarget) So(imgSummary.Manifests[0].ConfigDigest, ShouldContainSubstring, configDigest.Encoded()) So(imgSummary.Manifests[0].Digest, ShouldContainSubstring, manifestDigest.Encoded()) So(len(imgSummary.Manifests[0].Layers), ShouldEqual, 1) So(imgSummary.Manifests[0].Layers[0].Digest, ShouldContainSubstring, godigest.FromBytes(layers[0]).Encoded()) So(imgSummary.LastUpdated, ShouldEqual, createdTime) So(imgSummary.IsSigned, ShouldEqual, false) So(imgSummary.Manifests[0].Platform.Os, ShouldEqual, "linux") So(imgSummary.Manifests[0].Platform.Arch, ShouldEqual, "amd64") So(len(imgSummary.Manifests[0].History), ShouldEqual, 1) So(imgSummary.Manifests[0].History[0].HistoryDescription.Created, ShouldEqual, createdTime) So(imgSummary.Vulnerabilities.Count, ShouldEqual, 4) // There are 0 vulnerabilities this data used in tests So(imgSummary.Vulnerabilities.MaxSeverity, ShouldEqual, "CRITICAL") }) }