
Enhance cri/server/image/imagefs_info.go:ImageFsInfo() to support snapshotter per runtime. Now `ImageFsInfoResponse.ImageFilesystems` may contain multiple entries. Signed-off-by: Jiang Liu <gerry@linux.alibaba.com>
81 lines
2.1 KiB
Go
81 lines
2.1 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 images
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
snapshot "github.com/containerd/containerd/snapshots"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
runtime "k8s.io/cri-api/pkg/apis/runtime/v1"
|
|
|
|
snapshotstore "github.com/containerd/containerd/pkg/cri/store/snapshot"
|
|
)
|
|
|
|
func TestImageFsInfo(t *testing.T) {
|
|
c := newTestCRIService()
|
|
snapshots := []snapshotstore.Snapshot{
|
|
{
|
|
Key: snapshotstore.Key{
|
|
Key: "key1",
|
|
Snapshotter: "overlayfs",
|
|
},
|
|
Kind: snapshot.KindActive,
|
|
Size: 10,
|
|
Inodes: 100,
|
|
Timestamp: 234567,
|
|
},
|
|
{
|
|
Key: snapshotstore.Key{
|
|
Key: "key2",
|
|
Snapshotter: "overlayfs",
|
|
},
|
|
Kind: snapshot.KindCommitted,
|
|
Size: 20,
|
|
Inodes: 200,
|
|
Timestamp: 123456,
|
|
},
|
|
{
|
|
Key: snapshotstore.Key{
|
|
Key: "key3",
|
|
Snapshotter: "overlayfs",
|
|
},
|
|
Kind: snapshot.KindView,
|
|
Size: 0,
|
|
Inodes: 0,
|
|
Timestamp: 345678,
|
|
},
|
|
}
|
|
expected := &runtime.FilesystemUsage{
|
|
Timestamp: 123456,
|
|
FsId: &runtime.FilesystemIdentifier{Mountpoint: testImageFSPath},
|
|
UsedBytes: &runtime.UInt64Value{Value: 30},
|
|
InodesUsed: &runtime.UInt64Value{Value: 300},
|
|
}
|
|
for _, sn := range snapshots {
|
|
c.snapshotStore.Add(sn)
|
|
}
|
|
resp, err := c.ImageFsInfo(context.Background(), &runtime.ImageFsInfoRequest{})
|
|
require.NoError(t, err)
|
|
stats := resp.GetImageFilesystems()
|
|
// stats[0] is for default snapshotter, stats[1] is for `overlayfs`
|
|
assert.Len(t, stats, 2)
|
|
assert.Equal(t, expected, stats[1])
|
|
}
|