2023-01-09 15:37:44 -05:00
|
|
|
package dynamo_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go-v2/aws"
|
|
|
|
"github.com/aws/aws-sdk-go-v2/config"
|
|
|
|
"github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue"
|
|
|
|
"github.com/aws/aws-sdk-go-v2/service/dynamodb"
|
|
|
|
"github.com/aws/aws-sdk-go-v2/service/dynamodb/types"
|
2023-01-16 09:01:35 -05:00
|
|
|
guuid "github.com/gofrs/uuid"
|
2023-02-27 14:23:18 -05:00
|
|
|
"github.com/opencontainers/go-digest"
|
|
|
|
ispec "github.com/opencontainers/image-spec/specs-go/v1"
|
2023-01-09 15:37:44 -05:00
|
|
|
"github.com/rs/zerolog"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
|
|
|
|
|
|
"zotregistry.io/zot/pkg/log"
|
|
|
|
"zotregistry.io/zot/pkg/meta/repodb"
|
|
|
|
dynamo "zotregistry.io/zot/pkg/meta/repodb/dynamodb-wrapper"
|
|
|
|
"zotregistry.io/zot/pkg/meta/repodb/dynamodb-wrapper/iterator"
|
|
|
|
dynamoParams "zotregistry.io/zot/pkg/meta/repodb/dynamodb-wrapper/params"
|
2023-02-27 14:23:18 -05:00
|
|
|
"zotregistry.io/zot/pkg/test"
|
2023-01-09 15:37:44 -05:00
|
|
|
)
|
|
|
|
|
2023-03-10 13:37:29 -05:00
|
|
|
const badTablename = "bad tablename"
|
|
|
|
|
2023-01-09 15:37:44 -05:00
|
|
|
func TestIterator(t *testing.T) {
|
|
|
|
const (
|
|
|
|
endpoint = "http://localhost:4566"
|
|
|
|
region = "us-east-2"
|
|
|
|
)
|
|
|
|
|
2023-01-16 09:01:35 -05:00
|
|
|
uuid, err := guuid.NewV4()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
repoMetaTablename := "RepoMetadataTable" + uuid.String()
|
|
|
|
manifestDataTablename := "ManifestDataTable" + uuid.String()
|
|
|
|
versionTablename := "Version" + uuid.String()
|
2023-02-27 14:23:18 -05:00
|
|
|
indexDataTablename := "IndexDataTable" + uuid.String()
|
2023-03-10 13:37:29 -05:00
|
|
|
artifactDataTablename := "ArtifactDataTable" + uuid.String()
|
2023-01-16 09:01:35 -05:00
|
|
|
|
2023-01-09 15:37:44 -05:00
|
|
|
Convey("TestIterator", t, func() {
|
|
|
|
dynamoWrapper, err := dynamo.NewDynamoDBWrapper(dynamoParams.DBDriverParameters{
|
|
|
|
Endpoint: endpoint,
|
|
|
|
Region: region,
|
2023-01-16 09:01:35 -05:00
|
|
|
RepoMetaTablename: repoMetaTablename,
|
|
|
|
ManifestDataTablename: manifestDataTablename,
|
2023-02-27 14:23:18 -05:00
|
|
|
IndexDataTablename: indexDataTablename,
|
2023-03-10 13:37:29 -05:00
|
|
|
ArtifactDataTablename: artifactDataTablename,
|
2023-01-16 09:01:35 -05:00
|
|
|
VersionTablename: versionTablename,
|
2023-01-09 15:37:44 -05:00
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
So(dynamoWrapper.ResetManifestDataTable(), ShouldBeNil)
|
|
|
|
So(dynamoWrapper.ResetRepoMetaTable(), ShouldBeNil)
|
|
|
|
|
2023-03-09 13:41:48 -05:00
|
|
|
err = dynamoWrapper.SetRepoReference("repo1", "tag1", "manifestType", "manifestDigest1")
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-03-09 13:41:48 -05:00
|
|
|
err = dynamoWrapper.SetRepoReference("repo2", "tag2", "manifestType", "manifestDigest2")
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-03-09 13:41:48 -05:00
|
|
|
err = dynamoWrapper.SetRepoReference("repo3", "tag3", "manifestType", "manifestDigest3")
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
repoMetaAttributeIterator := iterator.NewBaseDynamoAttributesIterator(
|
|
|
|
dynamoWrapper.Client,
|
2023-01-16 09:01:35 -05:00
|
|
|
repoMetaTablename,
|
2023-01-09 15:37:44 -05:00
|
|
|
"RepoMetadata",
|
|
|
|
1,
|
|
|
|
log.Logger{Logger: zerolog.New(os.Stdout)},
|
|
|
|
)
|
|
|
|
|
|
|
|
attribute, err := repoMetaAttributeIterator.First(context.Background())
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
So(attribute, ShouldNotBeNil)
|
|
|
|
|
|
|
|
attribute, err = repoMetaAttributeIterator.Next(context.Background())
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
So(attribute, ShouldNotBeNil)
|
|
|
|
|
|
|
|
attribute, err = repoMetaAttributeIterator.Next(context.Background())
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
So(attribute, ShouldNotBeNil)
|
|
|
|
|
|
|
|
attribute, err = repoMetaAttributeIterator.Next(context.Background())
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
So(attribute, ShouldBeNil)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestIteratorErrors(t *testing.T) {
|
|
|
|
Convey("errors", t, func() {
|
|
|
|
customResolver := aws.EndpointResolverWithOptionsFunc(
|
|
|
|
func(service, region string, options ...interface{}) (aws.Endpoint, error) {
|
|
|
|
return aws.Endpoint{
|
|
|
|
PartitionID: "aws",
|
|
|
|
URL: "endpoint",
|
|
|
|
SigningRegion: region,
|
|
|
|
}, nil
|
|
|
|
})
|
|
|
|
|
|
|
|
cfg, err := config.LoadDefaultConfig(context.Background(), config.WithRegion("region"),
|
|
|
|
config.WithEndpointResolverWithOptions(customResolver))
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
repoMetaAttributeIterator := iterator.NewBaseDynamoAttributesIterator(
|
|
|
|
dynamodb.NewFromConfig(cfg),
|
|
|
|
"RepoMetadataTable",
|
|
|
|
"RepoMetadata",
|
|
|
|
1,
|
|
|
|
log.Logger{Logger: zerolog.New(os.Stdout)},
|
|
|
|
)
|
|
|
|
|
|
|
|
_, err = repoMetaAttributeIterator.First(context.Background())
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWrapperErrors(t *testing.T) {
|
|
|
|
const (
|
|
|
|
endpoint = "http://localhost:4566"
|
|
|
|
region = "us-east-2"
|
|
|
|
)
|
|
|
|
|
2023-01-16 09:01:35 -05:00
|
|
|
uuid, err := guuid.NewV4()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
repoMetaTablename := "RepoMetadataTable" + uuid.String()
|
|
|
|
manifestDataTablename := "ManifestDataTable" + uuid.String()
|
|
|
|
versionTablename := "Version" + uuid.String()
|
2023-02-27 14:23:18 -05:00
|
|
|
indexDataTablename := "IndexDataTable" + uuid.String()
|
2023-03-10 13:37:29 -05:00
|
|
|
artifactDataTablename := "ArtifactData" + uuid.String()
|
2023-01-16 09:01:35 -05:00
|
|
|
|
2023-01-09 15:37:44 -05:00
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
Convey("Errors", t, func() {
|
|
|
|
dynamoWrapper, err := dynamo.NewDynamoDBWrapper(dynamoParams.DBDriverParameters{ //nolint:contextcheck
|
|
|
|
Endpoint: endpoint,
|
|
|
|
Region: region,
|
2023-01-16 09:01:35 -05:00
|
|
|
RepoMetaTablename: repoMetaTablename,
|
|
|
|
ManifestDataTablename: manifestDataTablename,
|
2023-02-27 14:23:18 -05:00
|
|
|
IndexDataTablename: indexDataTablename,
|
2023-03-10 13:37:29 -05:00
|
|
|
ArtifactDataTablename: artifactDataTablename,
|
2023-01-16 09:01:35 -05:00
|
|
|
VersionTablename: versionTablename,
|
2023-01-09 15:37:44 -05:00
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
So(dynamoWrapper.ResetManifestDataTable(), ShouldBeNil) //nolint:contextcheck
|
|
|
|
So(dynamoWrapper.ResetRepoMetaTable(), ShouldBeNil) //nolint:contextcheck
|
|
|
|
|
|
|
|
Convey("SetManifestData", func() {
|
2023-02-27 14:23:18 -05:00
|
|
|
dynamoWrapper.ManifestDataTablename = "WRONG tables"
|
2023-01-09 15:37:44 -05:00
|
|
|
|
|
|
|
err := dynamoWrapper.SetManifestData("dig", repodb.ManifestData{})
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("GetManifestData", func() {
|
|
|
|
dynamoWrapper.ManifestDataTablename = "WRONG table"
|
|
|
|
|
|
|
|
_, err := dynamoWrapper.GetManifestData("dig")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("GetManifestData unmarshal error", func() {
|
2023-01-16 09:01:35 -05:00
|
|
|
err := setBadManifestData(dynamoWrapper.Client, manifestDataTablename, "dig")
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, err = dynamoWrapper.GetManifestData("dig")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
Convey("GetIndexData", func() {
|
|
|
|
dynamoWrapper.IndexDataTablename = "WRONG table"
|
|
|
|
|
|
|
|
_, err := dynamoWrapper.GetIndexData("dig")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("GetIndexData unmarshal error", func() {
|
|
|
|
err := setBadIndexData(dynamoWrapper.Client, indexDataTablename, "dig")
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, err = dynamoWrapper.GetManifestData("dig")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
2023-01-09 15:37:44 -05:00
|
|
|
Convey("SetManifestMeta GetRepoMeta error", func() {
|
2023-01-16 09:01:35 -05:00
|
|
|
err := setBadRepoMeta(dynamoWrapper.Client, repoMetaTablename, "repo1")
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.SetManifestMeta("repo1", "dig", repodb.ManifestMetadata{})
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("GetManifestMeta GetManifestData not found error", func() {
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag", "dig", "")
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, err = dynamoWrapper.GetManifestMeta("repo", "dig")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("GetManifestMeta GetRepoMeta Not Found error", func() {
|
|
|
|
err := dynamoWrapper.SetManifestData("dig", repodb.ManifestData{})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, err = dynamoWrapper.GetManifestMeta("repoNotFound", "dig")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("GetManifestMeta GetRepoMeta error", func() {
|
|
|
|
err := dynamoWrapper.SetManifestData("dig", repodb.ManifestData{})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-01-16 09:01:35 -05:00
|
|
|
err = setBadRepoMeta(dynamoWrapper.Client, repoMetaTablename, "repo")
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, err = dynamoWrapper.GetManifestMeta("repo", "dig")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
2023-03-10 13:37:29 -05:00
|
|
|
Convey("GetArtifactData", func() {
|
|
|
|
dynamoWrapper.ArtifactDataTablename = badTablename
|
|
|
|
_, err = dynamoWrapper.GetArtifactData("dig")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("GetArtifactData unmarhsal error", func() {
|
|
|
|
err = setBadArtifactData(dynamoWrapper.Client, artifactDataTablename, "dig")
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, err = dynamoWrapper.GetArtifactData("dig")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("SetReferrer client error", func() {
|
|
|
|
dynamoWrapper.RepoMetaTablename = badTablename
|
2023-03-20 11:14:17 -05:00
|
|
|
err := dynamoWrapper.SetReferrer("repo", "", repodb.ReferrerInfo{})
|
2023-03-10 13:37:29 -05:00
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("SetReferrer bad repoMeta", func() {
|
|
|
|
err := setBadRepoMeta(dynamoWrapper.Client, repoMetaTablename, "repo")
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-03-20 11:14:17 -05:00
|
|
|
err = dynamoWrapper.SetReferrer("repo", "", repodb.ReferrerInfo{})
|
2023-03-10 13:37:29 -05:00
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("GetReferrers client error", func() {
|
|
|
|
dynamoWrapper.RepoMetaTablename = badTablename
|
|
|
|
_, err := dynamoWrapper.GetReferrers("repo", "")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("GetReferrers bad repoMeta", func() {
|
|
|
|
err := setBadRepoMeta(dynamoWrapper.Client, repoMetaTablename, "repo")
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, err = dynamoWrapper.GetReferrers("repo", "")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("DeleteReferrer client error", func() {
|
|
|
|
dynamoWrapper.RepoMetaTablename = badTablename
|
|
|
|
err := dynamoWrapper.DeleteReferrer("repo", "", "")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("DeleteReferrer bad repoMeta", func() {
|
|
|
|
err := setBadRepoMeta(dynamoWrapper.Client, repoMetaTablename, "repo")
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.DeleteReferrer("repo", "", "")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
2023-03-20 11:14:17 -05:00
|
|
|
Convey("GetReferrersInfo GetReferrers errors", func() {
|
2023-03-10 13:37:29 -05:00
|
|
|
dynamoWrapper.RepoMetaTablename = badTablename
|
2023-03-20 11:14:17 -05:00
|
|
|
_, err := dynamoWrapper.GetReferrersInfo("repo", "", nil)
|
2023-03-10 13:37:29 -05:00
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
2023-03-20 11:14:17 -05:00
|
|
|
Convey("GetReferrersInfo getData fails", func() {
|
2023-03-10 13:37:29 -05:00
|
|
|
dynamoWrapper.ManifestDataTablename = badTablename
|
|
|
|
dynamoWrapper.ArtifactDataTablename = badTablename
|
2023-03-20 11:14:17 -05:00
|
|
|
err = dynamoWrapper.SetReferrer("repo", "rf", repodb.ReferrerInfo{
|
2023-03-10 13:37:29 -05:00
|
|
|
Digest: "dig1",
|
|
|
|
MediaType: ispec.MediaTypeImageManifest,
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-03-20 11:14:17 -05:00
|
|
|
err = dynamoWrapper.SetReferrer("repo", "rf", repodb.ReferrerInfo{
|
2023-03-10 13:37:29 -05:00
|
|
|
Digest: "dig2",
|
|
|
|
MediaType: ispec.MediaTypeArtifactManifest,
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-03-20 11:14:17 -05:00
|
|
|
_, err := dynamoWrapper.GetReferrersInfo("repo", "rf", nil)
|
2023-03-10 13:37:29 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
})
|
|
|
|
|
2023-03-20 11:14:17 -05:00
|
|
|
Convey("GetReferrersInfo bad descriptor blob", func() {
|
2023-03-10 13:37:29 -05:00
|
|
|
err = dynamoWrapper.SetArtifactData("dig2", repodb.ArtifactData{
|
|
|
|
ManifestBlob: []byte("bad json"),
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.SetManifestData("dig3", repodb.ManifestData{
|
|
|
|
ManifestBlob: []byte("bad json"),
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-03-20 11:14:17 -05:00
|
|
|
err = dynamoWrapper.SetReferrer("repo", "rf", repodb.ReferrerInfo{
|
2023-03-10 13:37:29 -05:00
|
|
|
Digest: "dig2",
|
|
|
|
MediaType: ispec.MediaTypeArtifactManifest,
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-03-20 11:14:17 -05:00
|
|
|
err = dynamoWrapper.SetReferrer("repo", "rf", repodb.ReferrerInfo{
|
2023-03-10 13:37:29 -05:00
|
|
|
Digest: "dig3",
|
|
|
|
MediaType: ispec.MediaTypeImageManifest,
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-03-20 11:14:17 -05:00
|
|
|
_, err := dynamoWrapper.GetReferrersInfo("repo", "rf", nil)
|
2023-03-10 13:37:29 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
})
|
|
|
|
|
2023-01-09 15:37:44 -05:00
|
|
|
Convey("IncrementRepoStars GetRepoMeta error", func() {
|
|
|
|
err = dynamoWrapper.IncrementRepoStars("repo")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("DecrementRepoStars GetRepoMeta error", func() {
|
|
|
|
err = dynamoWrapper.DecrementRepoStars("repo")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("DeleteRepoTag Client.GetItem error", func() {
|
|
|
|
strSlice := make([]string, 10000)
|
|
|
|
repoName := strings.Join(strSlice, ".")
|
|
|
|
|
|
|
|
err = dynamoWrapper.DeleteRepoTag(repoName, "tag")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("DeleteRepoTag unmarshal error", func() {
|
2023-01-16 09:01:35 -05:00
|
|
|
err = setBadRepoMeta(dynamoWrapper.Client, repoMetaTablename, "repo")
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.DeleteRepoTag("repo", "tag")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("GetRepoMeta Client.GetItem error", func() {
|
|
|
|
strSlice := make([]string, 10000)
|
|
|
|
repoName := strings.Join(strSlice, ".")
|
|
|
|
|
|
|
|
_, err = dynamoWrapper.GetRepoMeta(repoName)
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("GetRepoMeta unmarshal error", func() {
|
2023-01-16 09:01:35 -05:00
|
|
|
err = setBadRepoMeta(dynamoWrapper.Client, repoMetaTablename, "repo")
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, err = dynamoWrapper.GetRepoMeta("repo")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("IncrementImageDownloads GetRepoMeta error", func() {
|
|
|
|
err = dynamoWrapper.IncrementImageDownloads("repoNotFound", "")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("IncrementImageDownloads tag not found error", func() {
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag", "dig", "")
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.IncrementImageDownloads("repo", "notFoundTag")
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("AddManifestSignature GetRepoMeta error", func() {
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag", "dig", "")
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.AddManifestSignature("repoNotFound", "tag", repodb.SignatureMetadata{})
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("AddManifestSignature ManifestSignatures signedManifestDigest not found error", func() {
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag", "dig", "")
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.AddManifestSignature("repo", "tagNotFound", repodb.SignatureMetadata{})
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("AddManifestSignature SignatureType repodb.NotationType", func() {
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag", "dig", "")
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.AddManifestSignature("repo", "tagNotFound", repodb.SignatureMetadata{
|
|
|
|
SignatureType: "notation",
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("DeleteSignature GetRepoMeta error", func() {
|
|
|
|
err = dynamoWrapper.DeleteSignature("repoNotFound", "tagNotFound", repodb.SignatureMetadata{})
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("DeleteSignature sigDigest.SignatureManifestDigest != sigMeta.SignatureDigest true", func() {
|
2023-01-16 09:01:35 -05:00
|
|
|
err := setRepoMeta(dynamoWrapper.Client, repoMetaTablename, repodb.RepoMetadata{
|
2023-01-09 15:37:44 -05:00
|
|
|
Name: "repo",
|
|
|
|
Signatures: map[string]repodb.ManifestSignatures{
|
|
|
|
"tag1": {
|
|
|
|
"cosign": []repodb.SignatureInfo{
|
|
|
|
{SignatureManifestDigest: "dig1"},
|
|
|
|
{SignatureManifestDigest: "dig2"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.DeleteSignature("repo", "tag1", repodb.SignatureMetadata{
|
|
|
|
SignatureDigest: "dig2",
|
|
|
|
SignatureType: "cosign",
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("GetMultipleRepoMeta unmarshal error", func() {
|
2023-01-16 09:01:35 -05:00
|
|
|
err = setBadRepoMeta(dynamoWrapper.Client, repoMetaTablename, "repo") //nolint:contextcheck
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, err = dynamoWrapper.GetMultipleRepoMeta(ctx, func(repoMeta repodb.RepoMetadata) bool { return true },
|
|
|
|
repodb.PageInput{})
|
|
|
|
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("SearchRepos repoMeta unmarshal error", func() {
|
2023-01-16 09:01:35 -05:00
|
|
|
err = setBadRepoMeta(dynamoWrapper.Client, repoMetaTablename, "repo") //nolint:contextcheck
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
_, _, _, _, err = dynamoWrapper.SearchRepos(ctx, "", repodb.Filter{}, repodb.PageInput{})
|
2023-01-09 15:37:44 -05:00
|
|
|
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("SearchRepos GetManifestMeta error", func() {
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", "notFoundDigest", //nolint:contextcheck
|
|
|
|
ispec.MediaTypeImageManifest)
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
_, _, _, _, err = dynamoWrapper.SearchRepos(ctx, "", repodb.Filter{}, repodb.PageInput{})
|
2023-01-09 15:37:44 -05:00
|
|
|
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("SearchRepos config unmarshal error", func() {
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", "dig1", ispec.MediaTypeImageManifest) //nolint:contextcheck
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.SetManifestData("dig1", repodb.ManifestData{ //nolint:contextcheck
|
|
|
|
ManifestBlob: []byte("{}"),
|
|
|
|
ConfigBlob: []byte("bad json"),
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
_, _, _, _, err = dynamoWrapper.SearchRepos(ctx, "", repodb.Filter{}, repodb.PageInput{})
|
|
|
|
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("Unsuported type", func() {
|
|
|
|
digest := digest.FromString("digest")
|
|
|
|
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", digest, "invalid type") //nolint:contextcheck
|
2023-02-27 14:23:18 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, _, _, _, err = dynamoWrapper.SearchRepos(ctx, "", repodb.Filter{}, repodb.PageInput{})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, _, _, _, err = dynamoWrapper.SearchTags(ctx, "repo:", repodb.Filter{}, repodb.PageInput{})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, _, _, _, err = dynamoWrapper.FilterTags(
|
|
|
|
ctx,
|
|
|
|
func(repoMeta repodb.RepoMetadata, manifestMeta repodb.ManifestMetadata) bool { return true },
|
|
|
|
repodb.PageInput{},
|
|
|
|
)
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("SearchRepos bad index data", func() {
|
|
|
|
indexDigest := digest.FromString("indexDigest")
|
|
|
|
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", indexDigest, ispec.MediaTypeImageIndex) //nolint:contextcheck
|
2023-02-27 14:23:18 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = setBadIndexData(dynamoWrapper.Client, indexDataTablename, indexDigest.String()) //nolint:contextcheck
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, _, _, _, err = dynamoWrapper.SearchRepos(ctx, "", repodb.Filter{}, repodb.PageInput{})
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("SearchRepos bad indexBlob in IndexData", func() {
|
|
|
|
indexDigest := digest.FromString("indexDigest")
|
|
|
|
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", indexDigest, ispec.MediaTypeImageIndex) //nolint:contextcheck
|
2023-02-27 14:23:18 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.SetIndexData(indexDigest, repodb.IndexData{ //nolint:contextcheck
|
|
|
|
IndexBlob: []byte("bad json"),
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, _, _, _, err = dynamoWrapper.SearchRepos(ctx, "", repodb.Filter{}, repodb.PageInput{})
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("SearchRepos good index data, bad manifest inside index", func() {
|
|
|
|
var (
|
|
|
|
indexDigest = digest.FromString("indexDigest")
|
|
|
|
manifestDigestFromIndex1 = digest.FromString("manifestDigestFromIndex1")
|
|
|
|
manifestDigestFromIndex2 = digest.FromString("manifestDigestFromIndex2")
|
|
|
|
)
|
|
|
|
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", indexDigest, ispec.MediaTypeImageIndex) //nolint:contextcheck
|
2023-02-27 14:23:18 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
indexBlob, err := test.GetIndexBlobWithManifests([]digest.Digest{
|
|
|
|
manifestDigestFromIndex1, manifestDigestFromIndex2,
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.SetIndexData(indexDigest, repodb.IndexData{ //nolint:contextcheck
|
|
|
|
IndexBlob: indexBlob,
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.SetManifestData(manifestDigestFromIndex1, repodb.ManifestData{ //nolint:contextcheck
|
|
|
|
ManifestBlob: []byte("Bad Manifest"),
|
|
|
|
ConfigBlob: []byte("Bad Manifest"),
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
2023-01-09 15:37:44 -05:00
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
err = dynamoWrapper.SetManifestData(manifestDigestFromIndex2, repodb.ManifestData{ //nolint:contextcheck
|
|
|
|
ManifestBlob: []byte("Bad Manifest"),
|
|
|
|
ConfigBlob: []byte("Bad Manifest"),
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, _, _, _, err = dynamoWrapper.SearchRepos(ctx, "", repodb.Filter{}, repodb.PageInput{})
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("SearchTags repoMeta unmarshal error", func() {
|
2023-01-16 09:01:35 -05:00
|
|
|
err = setBadRepoMeta(dynamoWrapper.Client, repoMetaTablename, "repo") //nolint:contextcheck
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
_, _, _, _, err = dynamoWrapper.SearchTags(ctx, "repo:", repodb.Filter{}, repodb.PageInput{})
|
2023-01-09 15:37:44 -05:00
|
|
|
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("SearchTags GetManifestMeta error", func() {
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", "manifestNotFound", //nolint:contextcheck
|
2023-02-27 14:23:18 -05:00
|
|
|
ispec.MediaTypeImageManifest)
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
_, _, _, _, err = dynamoWrapper.SearchTags(ctx, "repo:", repodb.Filter{}, repodb.PageInput{})
|
2023-01-09 15:37:44 -05:00
|
|
|
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("SearchTags config unmarshal error", func() {
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", "dig1", ispec.MediaTypeImageManifest) //nolint:contextcheck
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.SetManifestData( //nolint:contextcheck
|
|
|
|
"dig1",
|
|
|
|
repodb.ManifestData{
|
|
|
|
ManifestBlob: []byte("{}"),
|
|
|
|
ConfigBlob: []byte("bad json"),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
_, _, _, _, err = dynamoWrapper.SearchTags(ctx, "repo:", repodb.Filter{}, repodb.PageInput{})
|
|
|
|
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("SearchTags bad index data", func() {
|
|
|
|
indexDigest := digest.FromString("indexDigest")
|
|
|
|
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", indexDigest, ispec.MediaTypeImageIndex) //nolint:contextcheck
|
2023-02-27 14:23:18 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = setBadIndexData(dynamoWrapper.Client, indexDataTablename, indexDigest.String()) //nolint:contextcheck
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, _, _, _, err = dynamoWrapper.SearchTags(ctx, "repo:", repodb.Filter{}, repodb.PageInput{})
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
2023-01-09 15:37:44 -05:00
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
Convey("SearchTags bad indexBlob in IndexData", func() {
|
|
|
|
indexDigest := digest.FromString("indexDigest")
|
|
|
|
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", indexDigest, ispec.MediaTypeImageIndex) //nolint:contextcheck
|
2023-02-27 14:23:18 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.SetIndexData(indexDigest, repodb.IndexData{ //nolint:contextcheck
|
|
|
|
IndexBlob: []byte("bad json"),
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, _, _, _, err = dynamoWrapper.SearchTags(ctx, "repo:", repodb.Filter{}, repodb.PageInput{})
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("SearchTags good index data, bad manifest inside index", func() {
|
|
|
|
var (
|
|
|
|
indexDigest = digest.FromString("indexDigest")
|
|
|
|
manifestDigestFromIndex1 = digest.FromString("manifestDigestFromIndex1")
|
|
|
|
manifestDigestFromIndex2 = digest.FromString("manifestDigestFromIndex2")
|
|
|
|
)
|
|
|
|
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", indexDigest, ispec.MediaTypeImageIndex) //nolint:contextcheck
|
2023-02-27 14:23:18 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
indexBlob, err := test.GetIndexBlobWithManifests([]digest.Digest{
|
|
|
|
manifestDigestFromIndex1, manifestDigestFromIndex2,
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.SetIndexData(indexDigest, repodb.IndexData{ //nolint:contextcheck
|
|
|
|
IndexBlob: indexBlob,
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.SetManifestData(manifestDigestFromIndex1, repodb.ManifestData{ //nolint:contextcheck
|
|
|
|
ManifestBlob: []byte("Bad Manifest"),
|
|
|
|
ConfigBlob: []byte("Bad Manifest"),
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.SetManifestData(manifestDigestFromIndex2, repodb.ManifestData{ //nolint:contextcheck
|
|
|
|
ManifestBlob: []byte("Bad Manifest"),
|
|
|
|
ConfigBlob: []byte("Bad Manifest"),
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, _, _, _, err = dynamoWrapper.SearchTags(ctx, "repo:", repodb.Filter{}, repodb.PageInput{})
|
2023-01-09 15:37:44 -05:00
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
2023-01-17 17:31:54 -05:00
|
|
|
|
|
|
|
Convey("FilterTags repoMeta unmarshal error", func() {
|
|
|
|
err = setBadRepoMeta(dynamoWrapper.Client, repoMetaTablename, "repo") //nolint:contextcheck
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
_, _, _, _, err = dynamoWrapper.FilterTags(
|
2023-01-17 17:31:54 -05:00
|
|
|
ctx,
|
|
|
|
func(repoMeta repodb.RepoMetadata, manifestMeta repodb.ManifestMetadata) bool {
|
|
|
|
return true
|
|
|
|
},
|
|
|
|
repodb.PageInput{},
|
|
|
|
)
|
|
|
|
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("FilterTags manifestMeta not found", func() {
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", "manifestNotFound", //nolint:contextcheck
|
2023-02-27 14:23:18 -05:00
|
|
|
ispec.MediaTypeImageManifest)
|
2023-01-17 17:31:54 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
_, _, _, _, err = dynamoWrapper.FilterTags(
|
2023-01-17 17:31:54 -05:00
|
|
|
ctx,
|
|
|
|
func(repoMeta repodb.RepoMetadata, manifestMeta repodb.ManifestMetadata) bool {
|
|
|
|
return true
|
|
|
|
},
|
|
|
|
repodb.PageInput{},
|
|
|
|
)
|
|
|
|
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("FilterTags manifestMeta unmarshal error", func() {
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", "dig", ispec.MediaTypeImageManifest) //nolint:contextcheck
|
2023-01-17 17:31:54 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = setBadManifestData(dynamoWrapper.Client, manifestDataTablename, "dig") //nolint:contextcheck
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
_, _, _, _, err = dynamoWrapper.FilterTags(
|
2023-01-17 17:31:54 -05:00
|
|
|
ctx,
|
|
|
|
func(repoMeta repodb.RepoMetadata, manifestMeta repodb.ManifestMetadata) bool {
|
|
|
|
return true
|
|
|
|
},
|
|
|
|
repodb.PageInput{},
|
|
|
|
)
|
|
|
|
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
Convey("FilterTags bad IndexData", func() {
|
|
|
|
indexDigest := digest.FromString("indexDigest")
|
|
|
|
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", indexDigest, ispec.MediaTypeImageIndex) //nolint:contextcheck
|
2023-01-17 17:31:54 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
err = setBadIndexData(dynamoWrapper.Client, indexDataTablename, indexDigest.String()) //nolint:contextcheck
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, _, _, _, err = dynamoWrapper.FilterTags(ctx,
|
|
|
|
func(repoMeta repodb.RepoMetadata, manifestMeta repodb.ManifestMetadata) bool { return true },
|
|
|
|
repodb.PageInput{},
|
|
|
|
)
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("FilterTags bad indexBlob in IndexData", func() {
|
|
|
|
indexDigest := digest.FromString("indexDigest")
|
|
|
|
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", indexDigest, ispec.MediaTypeImageIndex) //nolint:contextcheck
|
2023-02-27 14:23:18 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.SetIndexData(indexDigest, repodb.IndexData{ //nolint:contextcheck
|
|
|
|
IndexBlob: []byte("bad json"),
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, _, _, _, err = dynamoWrapper.FilterTags(ctx,
|
|
|
|
func(repoMeta repodb.RepoMetadata, manifestMeta repodb.ManifestMetadata) bool { return true },
|
|
|
|
repodb.PageInput{},
|
|
|
|
)
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("FilterTags didn't match any index manifest", func() {
|
|
|
|
var (
|
|
|
|
indexDigest = digest.FromString("indexDigest")
|
|
|
|
manifestDigestFromIndex1 = digest.FromString("manifestDigestFromIndex1")
|
|
|
|
manifestDigestFromIndex2 = digest.FromString("manifestDigestFromIndex2")
|
|
|
|
)
|
|
|
|
|
2023-03-09 13:41:48 -05:00
|
|
|
err := dynamoWrapper.SetRepoReference("repo", "tag1", indexDigest, ispec.MediaTypeImageIndex) //nolint:contextcheck
|
2023-02-27 14:23:18 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
indexBlob, err := test.GetIndexBlobWithManifests([]digest.Digest{
|
|
|
|
manifestDigestFromIndex1, manifestDigestFromIndex2,
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.SetIndexData(indexDigest, repodb.IndexData{ //nolint:contextcheck
|
|
|
|
IndexBlob: indexBlob,
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
err = dynamoWrapper.SetManifestData(manifestDigestFromIndex1, repodb.ManifestData{ //nolint:contextcheck
|
2023-01-17 17:31:54 -05:00
|
|
|
ManifestBlob: []byte("{}"),
|
2023-02-27 14:23:18 -05:00
|
|
|
ConfigBlob: []byte("{}"),
|
2023-01-17 17:31:54 -05:00
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
err = dynamoWrapper.SetManifestData(manifestDigestFromIndex2, repodb.ManifestData{ //nolint:contextcheck
|
|
|
|
ManifestBlob: []byte("{}"),
|
|
|
|
ConfigBlob: []byte("{}"),
|
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
_, _, _, _, err = dynamoWrapper.FilterTags(ctx,
|
|
|
|
func(repoMeta repodb.RepoMetadata, manifestMeta repodb.ManifestMetadata) bool { return false },
|
2023-01-17 17:31:54 -05:00
|
|
|
repodb.PageInput{},
|
|
|
|
)
|
2023-02-27 14:23:18 -05:00
|
|
|
So(err, ShouldBeNil)
|
|
|
|
})
|
|
|
|
})
|
2023-01-17 17:31:54 -05:00
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
Convey("NewDynamoDBWrapper errors", t, func() {
|
|
|
|
_, err := dynamo.NewDynamoDBWrapper(dynamoParams.DBDriverParameters{ //nolint:contextcheck
|
|
|
|
Endpoint: endpoint,
|
|
|
|
Region: region,
|
|
|
|
RepoMetaTablename: "",
|
|
|
|
ManifestDataTablename: manifestDataTablename,
|
|
|
|
IndexDataTablename: indexDataTablename,
|
2023-03-10 13:37:29 -05:00
|
|
|
ArtifactDataTablename: artifactDataTablename,
|
2023-02-27 14:23:18 -05:00
|
|
|
VersionTablename: versionTablename,
|
2023-01-17 17:31:54 -05:00
|
|
|
})
|
2023-02-27 14:23:18 -05:00
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
|
|
|
|
_, err = dynamo.NewDynamoDBWrapper(dynamoParams.DBDriverParameters{ //nolint:contextcheck
|
|
|
|
Endpoint: endpoint,
|
|
|
|
Region: region,
|
|
|
|
RepoMetaTablename: repoMetaTablename,
|
|
|
|
ManifestDataTablename: "",
|
|
|
|
IndexDataTablename: indexDataTablename,
|
2023-03-10 13:37:29 -05:00
|
|
|
ArtifactDataTablename: artifactDataTablename,
|
2023-02-27 14:23:18 -05:00
|
|
|
VersionTablename: versionTablename,
|
|
|
|
})
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
|
|
|
|
_, err = dynamo.NewDynamoDBWrapper(dynamoParams.DBDriverParameters{ //nolint:contextcheck
|
|
|
|
Endpoint: endpoint,
|
|
|
|
Region: region,
|
|
|
|
RepoMetaTablename: repoMetaTablename,
|
|
|
|
ManifestDataTablename: manifestDataTablename,
|
|
|
|
IndexDataTablename: "",
|
2023-03-10 13:37:29 -05:00
|
|
|
ArtifactDataTablename: artifactDataTablename,
|
2023-02-27 14:23:18 -05:00
|
|
|
VersionTablename: versionTablename,
|
|
|
|
})
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
|
|
|
|
_, err = dynamo.NewDynamoDBWrapper(dynamoParams.DBDriverParameters{ //nolint:contextcheck
|
|
|
|
Endpoint: endpoint,
|
|
|
|
Region: region,
|
|
|
|
RepoMetaTablename: repoMetaTablename,
|
|
|
|
ManifestDataTablename: manifestDataTablename,
|
|
|
|
IndexDataTablename: indexDataTablename,
|
2023-03-10 13:37:29 -05:00
|
|
|
ArtifactDataTablename: artifactDataTablename,
|
2023-02-27 14:23:18 -05:00
|
|
|
VersionTablename: "",
|
|
|
|
})
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
|
2023-03-10 13:37:29 -05:00
|
|
|
_, err = dynamo.NewDynamoDBWrapper(dynamoParams.DBDriverParameters{ //nolint:contextcheck
|
|
|
|
Endpoint: endpoint,
|
|
|
|
Region: region,
|
|
|
|
RepoMetaTablename: repoMetaTablename,
|
|
|
|
ManifestDataTablename: manifestDataTablename,
|
|
|
|
IndexDataTablename: indexDataTablename,
|
|
|
|
ArtifactDataTablename: "",
|
|
|
|
VersionTablename: versionTablename,
|
|
|
|
})
|
|
|
|
So(err, ShouldNotBeNil)
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
_, err = dynamo.NewDynamoDBWrapper(dynamoParams.DBDriverParameters{ //nolint:contextcheck
|
|
|
|
Endpoint: endpoint,
|
|
|
|
Region: region,
|
|
|
|
RepoMetaTablename: repoMetaTablename,
|
|
|
|
ManifestDataTablename: manifestDataTablename,
|
|
|
|
IndexDataTablename: indexDataTablename,
|
|
|
|
VersionTablename: versionTablename,
|
2023-03-10 13:37:29 -05:00
|
|
|
ArtifactDataTablename: artifactDataTablename,
|
2023-02-27 14:23:18 -05:00
|
|
|
})
|
|
|
|
So(err, ShouldBeNil)
|
2023-01-09 15:37:44 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-01-16 09:01:35 -05:00
|
|
|
func setBadManifestData(client *dynamodb.Client, manifestDataTableName, digest string) error {
|
2023-01-09 15:37:44 -05:00
|
|
|
mdAttributeValue, err := attributevalue.Marshal("string")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = client.UpdateItem(context.TODO(), &dynamodb.UpdateItemInput{
|
|
|
|
ExpressionAttributeNames: map[string]string{
|
|
|
|
"#MD": "ManifestData",
|
|
|
|
},
|
|
|
|
ExpressionAttributeValues: map[string]types.AttributeValue{
|
|
|
|
":ManifestData": mdAttributeValue,
|
|
|
|
},
|
|
|
|
Key: map[string]types.AttributeValue{
|
|
|
|
"Digest": &types.AttributeValueMemberS{
|
|
|
|
Value: digest,
|
|
|
|
},
|
|
|
|
},
|
2023-01-16 09:01:35 -05:00
|
|
|
TableName: aws.String(manifestDataTableName),
|
2023-01-09 15:37:44 -05:00
|
|
|
UpdateExpression: aws.String("SET #MD = :ManifestData"),
|
|
|
|
})
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-03-10 13:37:29 -05:00
|
|
|
func setBadArtifactData(client *dynamodb.Client, artifactDataTablename, digest string) error {
|
|
|
|
mdAttributeValue, err := attributevalue.Marshal("string")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = client.UpdateItem(context.TODO(), &dynamodb.UpdateItemInput{
|
|
|
|
ExpressionAttributeNames: map[string]string{
|
|
|
|
"#AD": "ArtifactData",
|
|
|
|
},
|
|
|
|
ExpressionAttributeValues: map[string]types.AttributeValue{
|
|
|
|
":ArtifactData": mdAttributeValue,
|
|
|
|
},
|
|
|
|
Key: map[string]types.AttributeValue{
|
|
|
|
"ArtifactDigest": &types.AttributeValueMemberS{
|
|
|
|
Value: digest,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
TableName: aws.String(artifactDataTablename),
|
|
|
|
UpdateExpression: aws.String("SET #AD = :ArtifactData"),
|
|
|
|
})
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-02-27 14:23:18 -05:00
|
|
|
func setBadIndexData(client *dynamodb.Client, indexDataTableName, digest string) error {
|
|
|
|
mdAttributeValue, err := attributevalue.Marshal("string")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = client.UpdateItem(context.TODO(), &dynamodb.UpdateItemInput{
|
|
|
|
ExpressionAttributeNames: map[string]string{
|
|
|
|
"#ID": "IndexData",
|
|
|
|
},
|
|
|
|
ExpressionAttributeValues: map[string]types.AttributeValue{
|
|
|
|
":IndexData": mdAttributeValue,
|
|
|
|
},
|
|
|
|
Key: map[string]types.AttributeValue{
|
|
|
|
"IndexDigest": &types.AttributeValueMemberS{
|
|
|
|
Value: digest,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
TableName: aws.String(indexDataTableName),
|
|
|
|
UpdateExpression: aws.String("SET #ID = :IndexData"),
|
|
|
|
})
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-01-16 09:01:35 -05:00
|
|
|
func setBadRepoMeta(client *dynamodb.Client, repoMetadataTableName, repoName string) error {
|
2023-01-09 15:37:44 -05:00
|
|
|
repoAttributeValue, err := attributevalue.Marshal("string")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = client.UpdateItem(context.TODO(), &dynamodb.UpdateItemInput{
|
|
|
|
ExpressionAttributeNames: map[string]string{
|
|
|
|
"#RM": "RepoMetadata",
|
|
|
|
},
|
|
|
|
ExpressionAttributeValues: map[string]types.AttributeValue{
|
|
|
|
":RepoMetadata": repoAttributeValue,
|
|
|
|
},
|
|
|
|
Key: map[string]types.AttributeValue{
|
|
|
|
"RepoName": &types.AttributeValueMemberS{
|
|
|
|
Value: repoName,
|
|
|
|
},
|
|
|
|
},
|
2023-01-16 09:01:35 -05:00
|
|
|
TableName: aws.String(repoMetadataTableName),
|
2023-01-09 15:37:44 -05:00
|
|
|
UpdateExpression: aws.String("SET #RM = :RepoMetadata"),
|
|
|
|
})
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-01-16 09:01:35 -05:00
|
|
|
func setRepoMeta(client *dynamodb.Client, repoMetadataTableName string, repoMeta repodb.RepoMetadata) error {
|
2023-01-09 15:37:44 -05:00
|
|
|
repoAttributeValue, err := attributevalue.Marshal(repoMeta)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = client.UpdateItem(context.TODO(), &dynamodb.UpdateItemInput{
|
|
|
|
ExpressionAttributeNames: map[string]string{
|
|
|
|
"#RM": "RepoMetadata",
|
|
|
|
},
|
|
|
|
ExpressionAttributeValues: map[string]types.AttributeValue{
|
|
|
|
":RepoMetadata": repoAttributeValue,
|
|
|
|
},
|
|
|
|
Key: map[string]types.AttributeValue{
|
|
|
|
"RepoName": &types.AttributeValueMemberS{
|
|
|
|
Value: repoMeta.Name,
|
|
|
|
},
|
|
|
|
},
|
2023-01-16 09:01:35 -05:00
|
|
|
TableName: aws.String(repoMetadataTableName),
|
2023-01-09 15:37:44 -05:00
|
|
|
UpdateExpression: aws.String("SET #RM = :RepoMetadata"),
|
|
|
|
})
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|