mirror of
https://github.com/containerd/containerd.git
synced 2026-08-08 17:11:15 +00:00
We've long been able to use these and they have a couple great benefits: 1. Forces you to always access them atomically. With the pointer variants it's completely valid to access the regular ol' int64/uint32 etc. without using the atomic.* methods. These wrappers don't provide access to the underlying value so it forces correct usage always. 2. Conveys intent much better. Seeing the type be atomic.Int32 immediately lets the reader know that this var will be used in a concurrent context, and we no longer need comments like "this MUST be accessed atomically" or similar. Signed-off-by: Danny Canter <danny@dcantah.dev>
89 lines
2.3 KiB
Go
89 lines
2.3 KiB
Go
/*
|
|
Copyright The containerd Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package client
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"sync/atomic"
|
|
"testing"
|
|
|
|
. "github.com/containerd/containerd/v2/client"
|
|
"github.com/containerd/containerd/v2/core/content"
|
|
"github.com/containerd/containerd/v2/core/content/testsuite"
|
|
"github.com/containerd/containerd/v2/pkg/namespaces"
|
|
"github.com/containerd/errdefs"
|
|
)
|
|
|
|
func newContentStore(ctx context.Context, root string) (context.Context, content.Store, func() error, error) {
|
|
client, err := New(address)
|
|
if err != nil {
|
|
return nil, nil, nil, err
|
|
}
|
|
|
|
var (
|
|
count atomic.Uint64
|
|
cs = client.ContentStore()
|
|
name = testsuite.Name(ctx)
|
|
)
|
|
|
|
wrap := func(ctx context.Context, sharedNS bool) (context.Context, func(context.Context) error, error) {
|
|
n := count.Add(1)
|
|
ctx = namespaces.WithNamespace(ctx, fmt.Sprintf("%s-n%d", name, n))
|
|
return client.WithLease(ctx)
|
|
}
|
|
|
|
ctx = testsuite.SetContextWrapper(ctx, wrap)
|
|
|
|
return ctx, cs, func() error {
|
|
for i := uint64(1); i <= count.Load(); i++ {
|
|
ctx = namespaces.WithNamespace(ctx, fmt.Sprintf("%s-n%d", name, i))
|
|
statuses, err := cs.ListStatuses(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, st := range statuses {
|
|
if err := cs.Abort(ctx, st.Ref); err != nil && !errdefs.IsNotFound(err) {
|
|
return fmt.Errorf("failed to abort %s: %w", st.Ref, err)
|
|
}
|
|
}
|
|
err = cs.Walk(ctx, func(info content.Info) error {
|
|
if err := cs.Delete(ctx, info.Digest); err != nil {
|
|
if errdefs.IsNotFound(err) {
|
|
return nil
|
|
}
|
|
|
|
return err
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
|
|
}, nil
|
|
}
|
|
|
|
func TestContentClient(t *testing.T) {
|
|
if testing.Short() {
|
|
t.Skip()
|
|
}
|
|
testsuite.ContentSuite(t, "ContentClient", newContentStore)
|
|
}
|