1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
|
// Package test provides generic BlobInfoCache test helpers.
package test
import (
"testing"
"github.com/containers/image/v5/internal/blobinfocache"
"github.com/containers/image/v5/internal/testing/mocks"
"github.com/containers/image/v5/manifest"
"github.com/containers/image/v5/pkg/compression"
compressiontypes "github.com/containers/image/v5/pkg/compression/types"
"github.com/containers/image/v5/types"
digest "github.com/opencontainers/go-digest"
imgspecv1 "github.com/opencontainers/image-spec/specs-go/v1"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
const (
digestUnknown = digest.Digest("sha256:1111111111111111111111111111111111111111111111111111111111111111")
digestUncompressed = digest.Digest("sha256:2222222222222222222222222222222222222222222222222222222222222222")
digestCompressedA = digest.Digest("sha256:3333333333333333333333333333333333333333333333333333333333333333")
digestCompressedB = digest.Digest("sha256:4444444444444444444444444444444444444444444444444444444444444444")
digestCompressedUnrelated = digest.Digest("sha256:5555555555555555555555555555555555555555555555555555555555555555")
compressorNameU = blobinfocache.Uncompressed
compressorNameA = compressiontypes.GzipAlgorithmName
compressorNameB = compressiontypes.ZstdAlgorithmName
compressorNameCU = compressiontypes.XzAlgorithmName
digestUnknownLocation = digest.Digest("sha256:7777777777777777777777777777777777777777777777777777777777777777")
digestFilteringUncompressed = digest.Digest("sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
digestGzip = digest.Digest("sha256:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb")
digestZstd = digest.Digest("sha256:cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc")
digestZstdChunked = digest.Digest("sha256:dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd")
)
// GenericCache runs an implementation-independent set of tests, given a
// newTestCache, which can be called repeatedly and always returns a fresh cache instance
func GenericCache(t *testing.T, newTestCache func(t *testing.T) blobinfocache.BlobInfoCache2) {
subs := []struct {
name string
fn func(t *testing.T, cache blobinfocache.BlobInfoCache2)
}{
{"UncompressedDigest", testGenericUncompressedDigest},
{"RecordDigestUncompressedPair", testGenericRecordDigestUncompressedPair},
{"UncompressedDigestForTOC", testGenericUncompressedDigestForTOC},
{"RecordTOCUncompressedPair", testGenericRecordTOCUncompressedPair},
{"RecordKnownLocations", testGenericRecordKnownLocations},
{"CandidateLocations", testGenericCandidateLocations},
{"CandidateLocations2", testGenericCandidateLocations2},
}
// Without Open()/Close()
for _, s := range subs {
t.Run("no Open: "+s.name, func(t *testing.T) {
cache := newTestCache(t)
s.fn(t, cache)
})
}
// With Open()/Close()
for _, s := range subs {
t.Run("with Open: "+s.name, func(t *testing.T) {
cache := newTestCache(t)
cache.Open()
defer cache.Close()
s.fn(t, cache)
})
}
}
func testGenericUncompressedDigest(t *testing.T, cache blobinfocache.BlobInfoCache2) {
// Nothing is known.
assert.Equal(t, digest.Digest(""), cache.UncompressedDigest(digestUnknown))
cache.RecordDigestUncompressedPair(digestCompressedA, digestUncompressed)
cache.RecordDigestUncompressedPair(digestCompressedB, digestUncompressed)
// Known compressed→uncompressed mapping
assert.Equal(t, digestUncompressed, cache.UncompressedDigest(digestCompressedA))
assert.Equal(t, digestUncompressed, cache.UncompressedDigest(digestCompressedB))
// This implicitly marks digestUncompressed as uncompressed.
assert.Equal(t, digestUncompressed, cache.UncompressedDigest(digestUncompressed))
// Known uncompressed→self mapping
cache.RecordDigestUncompressedPair(digestCompressedUnrelated, digestCompressedUnrelated)
assert.Equal(t, digestCompressedUnrelated, cache.UncompressedDigest(digestCompressedUnrelated))
}
func testGenericRecordDigestUncompressedPair(t *testing.T, cache blobinfocache.BlobInfoCache2) {
for range 2 { // Record the same data twice to ensure redundant writes don’t break things.
// Known compressed→uncompressed mapping
cache.RecordDigestUncompressedPair(digestCompressedA, digestUncompressed)
assert.Equal(t, digestUncompressed, cache.UncompressedDigest(digestCompressedA))
// Two mappings to the same uncompressed digest
cache.RecordDigestUncompressedPair(digestCompressedB, digestUncompressed)
assert.Equal(t, digestUncompressed, cache.UncompressedDigest(digestCompressedB))
// Mapping an uncompressed digest to self
cache.RecordDigestUncompressedPair(digestUncompressed, digestUncompressed)
assert.Equal(t, digestUncompressed, cache.UncompressedDigest(digestUncompressed))
}
}
func testGenericUncompressedDigestForTOC(t *testing.T, cache blobinfocache.BlobInfoCache2) {
// Nothing is known.
assert.Equal(t, digest.Digest(""), cache.UncompressedDigestForTOC(digestUnknown))
cache.RecordTOCUncompressedPair(digestCompressedA, digestUncompressed)
cache.RecordTOCUncompressedPair(digestCompressedB, digestUncompressed)
// Known TOC→uncompressed mapping
assert.Equal(t, digestUncompressed, cache.UncompressedDigestForTOC(digestCompressedA))
assert.Equal(t, digestUncompressed, cache.UncompressedDigestForTOC(digestCompressedB))
}
func testGenericRecordTOCUncompressedPair(t *testing.T, cache blobinfocache.BlobInfoCache2) {
for range 2 { // Record the same data twice to ensure redundant writes don’t break things.
// Known TOC→uncompressed mapping
cache.RecordTOCUncompressedPair(digestCompressedA, digestUncompressed)
assert.Equal(t, digestUncompressed, cache.UncompressedDigestForTOC(digestCompressedA))
// Two mappings to the same uncompressed digest
cache.RecordTOCUncompressedPair(digestCompressedB, digestUncompressed)
assert.Equal(t, digestUncompressed, cache.UncompressedDigestForTOC(digestCompressedB))
}
}
func testGenericRecordKnownLocations(t *testing.T, cache blobinfocache.BlobInfoCache2) {
transport := mocks.NameImageTransport("==BlobInfocache transport mock")
for range 2 { // Record the same data twice to ensure redundant writes don’t break things.
for _, scopeName := range []string{"A", "B"} { // Run the test in two different scopes to verify they don't affect each other.
scope := types.BICTransportScope{Opaque: scopeName}
for _, digest := range []digest.Digest{digestCompressedA, digestCompressedB} { // Two different digests should not affect each other either.
lr1 := types.BICLocationReference{Opaque: scopeName + "1"}
lr2 := types.BICLocationReference{Opaque: scopeName + "2"}
cache.RecordKnownLocation(transport, scope, digest, lr2)
cache.RecordKnownLocation(transport, scope, digest, lr1)
assert.Equal(t, []types.BICReplacementCandidate{
{Digest: digest, Location: lr1},
{Digest: digest, Location: lr2},
}, cache.CandidateLocations(transport, scope, digest, false))
res := cache.CandidateLocations2(transport, scope, digest, blobinfocache.CandidateLocations2Options{
CanSubstitute: false,
})
assert.Equal(t, []blobinfocache.BICReplacementCandidate2{}, res)
}
}
}
}
// candidate is a shorthand for types.BICReplacementCandidate
type candidate struct {
d digest.Digest
cn string
ca map[string]string
lr string
}
func assertCandidatesMatch(t *testing.T, scopeName string, expected []candidate, actual []types.BICReplacementCandidate) {
e := make([]types.BICReplacementCandidate, len(expected))
for i, ev := range expected {
e[i] = types.BICReplacementCandidate{Digest: ev.d, Location: types.BICLocationReference{Opaque: scopeName + ev.lr}}
}
assert.Equal(t, e, actual)
}
func assertCandidateMatches2(t *testing.T, expected, actual blobinfocache.BICReplacementCandidate2) {
// Verify actual[i].CompressionAlgorithm separately; assert.Equal would do a pointer comparison, and fail.
if expected.CompressionAlgorithm != nil {
require.NotNil(t, actual.CompressionAlgorithm)
assert.Equal(t, expected.CompressionAlgorithm.Name(), actual.CompressionAlgorithm.Name())
} else {
assert.Nil(t, actual.CompressionAlgorithm)
}
c := expected // A shallow copy
c.CompressionAlgorithm = actual.CompressionAlgorithm // Already verified above
assert.Equal(t, c, actual)
}
func assertCandidatesMatch2Native(t *testing.T, expected, actual []blobinfocache.BICReplacementCandidate2) {
assert.Len(t, actual, len(expected))
for i := range expected {
assertCandidateMatches2(t, expected[i], actual[i])
}
}
func assertCandidatesMatch2(t *testing.T, scopeName string, expected []candidate, actual []blobinfocache.BICReplacementCandidate2) {
e := make([]blobinfocache.BICReplacementCandidate2, len(expected))
for i, ev := range expected {
op := types.Decompress
var algo *compressiontypes.Algorithm = nil
if ev.cn != blobinfocache.Uncompressed {
algo_, err := compression.AlgorithmByName(ev.cn)
require.NoError(t, err)
op = types.Compress
algo = &algo_
}
e[i] = blobinfocache.BICReplacementCandidate2{
Digest: ev.d,
CompressionOperation: op,
CompressionAlgorithm: algo,
CompressionAnnotations: ev.ca,
UnknownLocation: false,
Location: types.BICLocationReference{Opaque: scopeName + ev.lr},
}
}
assertCandidatesMatch2Native(t, e, actual)
}
func testGenericCandidateLocations(t *testing.T, cache blobinfocache.BlobInfoCache2) {
transport := mocks.NameImageTransport("==BlobInfocache transport mock")
cache.RecordDigestUncompressedPair(digestCompressedA, digestUncompressed)
cache.RecordDigestUncompressedPair(digestCompressedB, digestUncompressed)
cache.RecordDigestUncompressedPair(digestUncompressed, digestUncompressed)
digestNameSet := []struct {
n string
d digest.Digest
}{
{"U", digestUncompressed},
{"A", digestCompressedA},
{"B", digestCompressedB},
{"CU", digestCompressedUnrelated},
}
for _, scopeName := range []string{"A", "B"} { // Run the test in two different scopes to verify they don't affect each other.
scope := types.BICTransportScope{Opaque: scopeName}
// Nothing is known.
assert.Equal(t, []types.BICReplacementCandidate{}, cache.CandidateLocations(transport, scope, digestUnknown, false))
assert.Equal(t, []types.BICReplacementCandidate{}, cache.CandidateLocations(transport, scope, digestUnknown, true))
// Record "2" entries before "1" entries; then results should sort "1" (more recent) before "2" (older)
for _, suffix := range []string{"2", "1"} {
for _, e := range digestNameSet {
cache.RecordKnownLocation(transport, scope, e.d, types.BICLocationReference{Opaque: scopeName + e.n + suffix})
}
}
// No substitutions allowed:
for _, e := range digestNameSet {
assertCandidatesMatch(t, scopeName, []candidate{
{d: e.d, lr: e.n + "1"}, {d: e.d, lr: e.n + "2"},
}, cache.CandidateLocations(transport, scope, e.d, false))
}
// With substitutions: The original digest is always preferred, then other compressed, then the uncompressed one.
assertCandidatesMatch(t, scopeName, []candidate{
{d: digestCompressedA, lr: "A1"}, {d: digestCompressedA, lr: "A2"},
{d: digestCompressedB, lr: "B1"}, {d: digestCompressedB, lr: "B2"},
{d: digestUncompressed, lr: "U1"}, // Beyond the replacementAttempts limit: {d: digestUncompressed, lr: "U2"},
}, cache.CandidateLocations(transport, scope, digestCompressedA, true))
assertCandidatesMatch(t, scopeName, []candidate{
{d: digestCompressedB, lr: "B1"}, {d: digestCompressedB, lr: "B2"},
{d: digestCompressedA, lr: "A1"}, {d: digestCompressedA, lr: "A2"},
{d: digestUncompressed, lr: "U1"}, // Beyond the replacementAttempts limit: {d: digestUncompressed, lr: "U2"},
}, cache.CandidateLocations(transport, scope, digestCompressedB, true))
assertCandidatesMatch(t, scopeName, []candidate{
{d: digestUncompressed, lr: "U1"}, {d: digestUncompressed, lr: "U2"},
// "1" entries were added after "2", and A/Bs are sorted in the reverse of digestNameSet order
{d: digestCompressedB, lr: "B1"},
{d: digestCompressedA, lr: "A1"},
{d: digestCompressedB, lr: "B2"},
// Beyond the replacementAttempts limit: {d: digestCompressedA, lr: "A2"},
}, cache.CandidateLocations(transport, scope, digestUncompressed, true))
// Locations are known, but no relationships
assertCandidatesMatch(t, scopeName, []candidate{
{d: digestCompressedUnrelated, lr: "CU1"}, {d: digestCompressedUnrelated, lr: "CU2"},
}, cache.CandidateLocations(transport, scope, digestCompressedUnrelated, true))
}
}
func testGenericCandidateLocations2(t *testing.T, cache blobinfocache.BlobInfoCache2) {
transport := mocks.NameImageTransport("==BlobInfocache transport mock")
cache.RecordDigestUncompressedPair(digestCompressedA, digestUncompressed)
cache.RecordDigestUncompressedPair(digestCompressedB, digestUncompressed)
cache.RecordDigestUncompressedPair(digestUncompressed, digestUncompressed)
digestNameSetPrioritization := []struct { // Used primarily to test prioritization
n string
d digest.Digest
m string
}{
{"U", digestUncompressed, compressorNameU},
{"A", digestCompressedA, compressorNameA},
{"B", digestCompressedB, compressorNameB},
{"CU", digestCompressedUnrelated, compressorNameCU},
}
chunkedAnnotations := map[string]string{"a": "b"}
digestNameSetFiltering := []struct { // Used primarily to test filtering in CandidateLocations2Options
n string
d digest.Digest
base, specific string
annotations map[string]string
}{
{"gzip", digestGzip, compressiontypes.GzipAlgorithmName, blobinfocache.UnknownCompression, nil},
{"zstd", digestZstd, compressiontypes.ZstdAlgorithmName, blobinfocache.UnknownCompression, nil},
{"zstdChunked", digestZstdChunked, compressiontypes.ZstdAlgorithmName, compressiontypes.ZstdChunkedAlgorithmName, chunkedAnnotations},
}
for _, e := range digestNameSetFiltering { // digestFilteringUncompressed exists only to allow the three entries to be considered as candidates
cache.RecordDigestUncompressedPair(e.d, digestFilteringUncompressed)
}
for scopeIndex, scopeName := range []string{"A", "B", "C"} { // Run the test in two different scopes to verify they don't affect each other.
scope := types.BICTransportScope{Opaque: scopeName}
// Nothing is known.
// -----------------
res := cache.CandidateLocations2(transport, scope, digestUnknown, blobinfocache.CandidateLocations2Options{
CanSubstitute: false,
})
assert.Equal(t, []blobinfocache.BICReplacementCandidate2{}, res)
res = cache.CandidateLocations2(transport, scope, digestUnknown, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
})
assert.Equal(t, []blobinfocache.BICReplacementCandidate2{}, res)
// Results with UnknownLocation
// ----------------------------
// If a record exists with compression without Location then
// then return a record without location and with `UnknownLocation: true`
cache.RecordDigestCompressorData(digestUnknownLocation, blobinfocache.DigestCompressorData{
BaseVariantCompressor: compressiontypes.Bzip2AlgorithmName,
SpecificVariantCompressor: blobinfocache.UnknownCompression,
SpecificVariantAnnotations: nil,
})
res = cache.CandidateLocations2(transport, scope, digestUnknownLocation, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
})
assertCandidatesMatch2Native(t, []blobinfocache.BICReplacementCandidate2{
{
Digest: digestUnknownLocation,
CompressionOperation: types.Compress,
CompressionAlgorithm: &compression.Bzip2,
UnknownLocation: true,
Location: types.BICLocationReference{Opaque: ""},
}}, res)
// When another entry with scope and Location is set then it should be returned as it has higher
// priority.
cache.RecordKnownLocation(transport, scope, digestUnknownLocation, types.BICLocationReference{Opaque: "somelocation"})
res = cache.CandidateLocations2(transport, scope, digestUnknownLocation, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
})
assertCandidatesMatch2Native(t, []blobinfocache.BICReplacementCandidate2{
{
Digest: digestUnknownLocation,
CompressionOperation: types.Compress,
CompressionAlgorithm: &compression.Bzip2,
UnknownLocation: false,
Location: types.BICLocationReference{Opaque: "somelocation"},
}}, res)
// Tests of lookups / prioritization when compression is unknown
// -------------------------------------------------------------
// Record "2" entries before "1" entries; then results should sort "1" (more recent) before "2" (older)
for _, suffix := range []string{"2", "1"} {
for _, e := range digestNameSetPrioritization {
cache.RecordKnownLocation(transport, scope, e.d, types.BICLocationReference{Opaque: scopeName + e.n + suffix})
}
}
// Clear any "known" compression values, except on the first loop where they've never been set.
// This probably triggers “Compressor for blob with digest … previously recorded as …, now unknown” warnings here, for test purposes;
// that shouldn’t happen in real-world usage.
if scopeIndex != 0 {
for _, e := range digestNameSetPrioritization {
cache.RecordDigestCompressorData(e.d, blobinfocache.DigestCompressorData{
BaseVariantCompressor: blobinfocache.UnknownCompression,
SpecificVariantCompressor: blobinfocache.UnknownCompression,
SpecificVariantAnnotations: nil,
})
}
}
// No substitutions allowed:
for _, e := range digestNameSetPrioritization {
assertCandidatesMatch(t, scopeName, []candidate{
{d: e.d, lr: e.n + "1"}, {d: e.d, lr: e.n + "2"},
}, cache.CandidateLocations(transport, scope, e.d, false))
// Unknown compression -> no candidates
res := cache.CandidateLocations2(transport, scope, e.d, blobinfocache.CandidateLocations2Options{
CanSubstitute: false,
})
assertCandidatesMatch2(t, scopeName, []candidate{}, res)
}
// With substitutions: The original digest is always preferred, then other compressed, then the uncompressed one.
assertCandidatesMatch(t, scopeName, []candidate{
{d: digestCompressedA, lr: "A1"}, {d: digestCompressedA, lr: "A2"},
{d: digestCompressedB, lr: "B1"}, {d: digestCompressedB, lr: "B2"},
{d: digestUncompressed, lr: "U1"}, // Beyond the replacementAttempts limit: {d: digestUncompressed, cn: compressorNameCU, lr: "U2"},
}, cache.CandidateLocations(transport, scope, digestCompressedA, true))
// Unknown compression -> no candidates
res = cache.CandidateLocations2(transport, scope, digestCompressedA, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
})
assertCandidatesMatch2(t, scopeName, []candidate{}, res)
assertCandidatesMatch(t, scopeName, []candidate{
{d: digestCompressedB, lr: "B1"}, {d: digestCompressedB, lr: "B2"},
{d: digestCompressedA, lr: "A1"}, {d: digestCompressedA, lr: "A2"},
{d: digestUncompressed, lr: "U1"}, // Beyond the replacementAttempts limit: {d: digestUncompressed, lr: "U2"},
}, cache.CandidateLocations(transport, scope, digestCompressedB, true))
// Unknown compression -> no candidates
res = cache.CandidateLocations2(transport, scope, digestCompressedB, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
})
assertCandidatesMatch2(t, scopeName, []candidate{}, res)
assertCandidatesMatch(t, scopeName, []candidate{
{d: digestUncompressed, lr: "U1"}, {d: digestUncompressed, lr: "U2"},
// "1" entries were added after "2", and A/Bs are sorted in the reverse of digestNameSetPrioritization order
{d: digestCompressedB, lr: "B1"},
{d: digestCompressedA, lr: "A1"},
{d: digestCompressedB, lr: "B2"},
// Beyond the replacementAttempts limit: {d: digestCompressedA, lr: "A2"},
}, cache.CandidateLocations(transport, scope, digestUncompressed, true))
// Unknown compression -> no candidates
res = cache.CandidateLocations2(transport, scope, digestUncompressed, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
})
assertCandidatesMatch2(t, scopeName, []candidate{}, res)
// Locations are known, but no relationships
assertCandidatesMatch(t, scopeName, []candidate{
{d: digestCompressedUnrelated, lr: "CU1"}, {d: digestCompressedUnrelated, lr: "CU2"},
}, cache.CandidateLocations(transport, scope, digestCompressedUnrelated, true))
// Unknown compression -> no candidates
res = cache.CandidateLocations2(transport, scope, digestCompressedUnrelated, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
})
assertCandidatesMatch2(t, scopeName, []candidate{}, res)
// Tests of lookups / prioritization when compression is known
// -------------------------------------------------------------
// Set the "known" compression values
for _, e := range digestNameSetPrioritization {
cache.RecordDigestCompressorData(e.d, blobinfocache.DigestCompressorData{
BaseVariantCompressor: e.m,
SpecificVariantCompressor: blobinfocache.UnknownCompression,
SpecificVariantAnnotations: nil,
})
}
// No substitutions allowed:
for _, e := range digestNameSetPrioritization {
assertCandidatesMatch(t, scopeName, []candidate{
{d: e.d, lr: e.n + "1"}, {d: e.d, lr: e.n + "2"},
}, cache.CandidateLocations(transport, scope, e.d, false))
res := cache.CandidateLocations2(transport, scope, e.d, blobinfocache.CandidateLocations2Options{
CanSubstitute: false,
})
assertCandidatesMatch2(t, scopeName, []candidate{
{d: e.d, cn: e.m, lr: e.n + "1"}, {d: e.d, cn: e.m, lr: e.n + "2"},
}, res)
}
// With substitutions: The original digest is always preferred, then other compressed, then the uncompressed one.
assertCandidatesMatch(t, scopeName, []candidate{
{d: digestCompressedA, lr: "A1"}, {d: digestCompressedA, lr: "A2"},
{d: digestCompressedB, lr: "B1"}, {d: digestCompressedB, lr: "B2"},
{d: digestUncompressed, lr: "U1"}, // Beyond the replacementAttempts limit: {d: digestUncompressed, lr: "U2"},
}, cache.CandidateLocations(transport, scope, digestCompressedA, true))
res = cache.CandidateLocations2(transport, scope, digestCompressedA, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
})
assertCandidatesMatch2(t, scopeName, []candidate{
{d: digestCompressedA, cn: compressorNameA, lr: "A1"}, {d: digestCompressedA, cn: compressorNameA, lr: "A2"},
{d: digestCompressedB, cn: compressorNameB, lr: "B1"}, {d: digestCompressedB, cn: compressorNameB, lr: "B2"},
{d: digestUncompressed, cn: compressorNameU, lr: "U1"}, // Beyond the replacementAttempts limit: {d: digestUncompressed, cn: compressorNameCU, lr: "U2"},
}, res)
assertCandidatesMatch(t, scopeName, []candidate{
{d: digestCompressedB, lr: "B1"}, {d: digestCompressedB, lr: "B2"},
{d: digestCompressedA, lr: "A1"}, {d: digestCompressedA, lr: "A2"},
{d: digestUncompressed, lr: "U1"}, // Beyond the replacementAttempts limit: {d: digestUncompressed, lr: "U2"},
}, cache.CandidateLocations(transport, scope, digestCompressedB, true))
res = cache.CandidateLocations2(transport, scope, digestCompressedB, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
})
assertCandidatesMatch2(t, scopeName, []candidate{
{d: digestCompressedB, cn: compressorNameB, lr: "B1"}, {d: digestCompressedB, cn: compressorNameB, lr: "B2"},
{d: digestCompressedA, cn: compressorNameA, lr: "A1"}, {d: digestCompressedA, cn: compressorNameA, lr: "A2"},
{d: digestUncompressed, cn: compressorNameU, lr: "U1"}, // Beyond the replacementAttempts limit: {d: digestUncompressed, cn: compressorNameU, lr: "U2"},
}, res)
assertCandidatesMatch(t, scopeName, []candidate{
{d: digestUncompressed, lr: "U1"}, {d: digestUncompressed, lr: "U2"},
// "1" entries were added after "2", and A/Bs are sorted in the reverse of digestNameSetPrioritization order
{d: digestCompressedB, lr: "B1"},
{d: digestCompressedA, lr: "A1"},
{d: digestCompressedB, lr: "B2"},
// Beyond the replacementAttempts limit: {d: digestCompressedA, lr: "A2"},
}, cache.CandidateLocations(transport, scope, digestUncompressed, true))
res = cache.CandidateLocations2(transport, scope, digestUncompressed, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
})
assertCandidatesMatch2(t, scopeName, []candidate{
{d: digestUncompressed, cn: compressorNameU, lr: "U1"}, {d: digestUncompressed, cn: compressorNameU, lr: "U2"},
// "1" entries were added after "2", and A/Bs are sorted in the reverse of digestNameSetPrioritization order
{d: digestCompressedB, cn: compressorNameB, lr: "B1"},
{d: digestCompressedA, cn: compressorNameA, lr: "A1"},
{d: digestCompressedB, cn: compressorNameB, lr: "B2"},
// Beyond the replacementAttempts limit: {d: digestCompressedA, cn: compressorNameA, lr: "A2"},
}, res)
// Locations are known, but no relationships
assertCandidatesMatch(t, scopeName, []candidate{
{d: digestCompressedUnrelated, lr: "CU1"}, {d: digestCompressedUnrelated, lr: "CU2"},
}, cache.CandidateLocations(transport, scope, digestCompressedUnrelated, true))
res = cache.CandidateLocations2(transport, scope, digestCompressedUnrelated, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
})
assertCandidatesMatch2(t, scopeName, []candidate{
{d: digestCompressedUnrelated, cn: compressorNameCU, lr: "CU1"}, {d: digestCompressedUnrelated, cn: compressorNameCU, lr: "CU2"},
}, res)
// Tests of candidate filtering
// ----------------------------
for _, e := range digestNameSetFiltering {
cache.RecordKnownLocation(transport, scope, e.d, types.BICLocationReference{Opaque: scopeName + e.n})
}
for _, e := range digestNameSetFiltering {
cache.RecordDigestCompressorData(e.d, blobinfocache.DigestCompressorData{
BaseVariantCompressor: e.base,
SpecificVariantCompressor: e.specific,
SpecificVariantAnnotations: e.annotations,
})
}
// No filtering
res = cache.CandidateLocations2(transport, scope, digestFilteringUncompressed, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
})
assertCandidatesMatch2(t, scopeName, []candidate{ // Sorted in the reverse of digestNameSetFiltering order
{d: digestZstdChunked, cn: compressiontypes.ZstdChunkedAlgorithmName, ca: chunkedAnnotations, lr: "zstdChunked"},
{d: digestZstd, cn: compressiontypes.ZstdAlgorithmName, ca: nil, lr: "zstd"},
{d: digestGzip, cn: compressiontypes.GzipAlgorithmName, ca: nil, lr: "gzip"},
}, res)
// Manifest format filters
res = cache.CandidateLocations2(transport, scope, digestFilteringUncompressed, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
PossibleManifestFormats: []string{manifest.DockerV2Schema2MediaType},
})
assertCandidatesMatch2(t, scopeName, []candidate{
{d: digestGzip, cn: compressiontypes.GzipAlgorithmName, ca: nil, lr: "gzip"},
}, res)
res = cache.CandidateLocations2(transport, scope, digestFilteringUncompressed, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
PossibleManifestFormats: []string{imgspecv1.MediaTypeImageManifest},
})
assertCandidatesMatch2(t, scopeName, []candidate{ // Sorted in the reverse of digestNameSetFiltering order
{d: digestZstdChunked, cn: compressiontypes.ZstdChunkedAlgorithmName, ca: chunkedAnnotations, lr: "zstdChunked"},
{d: digestZstd, cn: compressiontypes.ZstdAlgorithmName, ca: nil, lr: "zstd"},
{d: digestGzip, cn: compressiontypes.GzipAlgorithmName, ca: nil, lr: "gzip"},
}, res)
// Compression algorithm filters
res = cache.CandidateLocations2(transport, scope, digestFilteringUncompressed, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
RequiredCompression: &compression.Gzip,
})
assertCandidatesMatch2(t, scopeName, []candidate{
{d: digestGzip, cn: compressiontypes.GzipAlgorithmName, ca: nil, lr: "gzip"},
}, res)
res = cache.CandidateLocations2(transport, scope, digestFilteringUncompressed, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
RequiredCompression: &compression.ZstdChunked,
})
assertCandidatesMatch2(t, scopeName, []candidate{
{d: digestZstdChunked, cn: compressiontypes.ZstdChunkedAlgorithmName, ca: chunkedAnnotations, lr: "zstdChunked"},
}, res)
res = cache.CandidateLocations2(transport, scope, digestFilteringUncompressed, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
RequiredCompression: &compression.Zstd,
})
assertCandidatesMatch2(t, scopeName, []candidate{ // When the user asks for zstd, zstd:chunked candidates are also acceptable, and include the chunked information.
{d: digestZstdChunked, cn: compressiontypes.ZstdChunkedAlgorithmName, ca: chunkedAnnotations, lr: "zstdChunked"},
{d: digestZstd, cn: compressiontypes.ZstdAlgorithmName, ca: nil, lr: "zstd"},
}, res)
// After RecordDigestCompressorData with zstd:chunked details, a later call with zstd-only does not drop the chunked details.
cache.RecordDigestCompressorData(digestZstdChunked, blobinfocache.DigestCompressorData{
BaseVariantCompressor: compressiontypes.ZstdAlgorithmName,
SpecificVariantCompressor: blobinfocache.UnknownCompression,
SpecificVariantAnnotations: nil,
})
res = cache.CandidateLocations2(transport, scope, digestFilteringUncompressed, blobinfocache.CandidateLocations2Options{
CanSubstitute: true,
})
assertCandidatesMatch2(t, scopeName, []candidate{ // Sorted in the reverse of digestNameSetFiltering order
{d: digestZstdChunked, cn: compressiontypes.ZstdChunkedAlgorithmName, ca: chunkedAnnotations, lr: "zstdChunked"},
{d: digestZstd, cn: compressiontypes.ZstdAlgorithmName, ca: nil, lr: "zstd"},
{d: digestGzip, cn: compressiontypes.GzipAlgorithmName, ca: nil, lr: "gzip"},
}, res)
}
}
|