This commit includes changes to integrate containerd runtime to cadvisor to collect container stats Signed-off-by: abhi <abhi@docker.com> Test cases and minor changes This commit include test cases and minor fixes for the same Signed-off-by: abhi <abhi@docker.com>
54 lines
1.5 KiB
Go
54 lines
1.5 KiB
Go
// Copyright 2017 Google Inc. All Rights Reserved.
|
|
//
|
|
// 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 containerd
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/containerd/containerd/containers"
|
|
)
|
|
|
|
type containerdClientMock struct {
|
|
cntrs map[string]*containers.Container
|
|
returnErr error
|
|
}
|
|
|
|
func (c *containerdClientMock) LoadContainer(ctx context.Context, id string) (*containers.Container, error) {
|
|
if c.returnErr != nil {
|
|
return nil, c.returnErr
|
|
}
|
|
cntr, ok := c.cntrs[id]
|
|
if !ok {
|
|
return nil, fmt.Errorf("unable to find container %q", id)
|
|
}
|
|
return cntr, nil
|
|
}
|
|
|
|
func (c *containerdClientMock) Version(ctx context.Context) (string, error) {
|
|
return "test-v0.0.0", nil
|
|
}
|
|
|
|
func (c *containerdClientMock) TaskPid(ctx context.Context, id string) (uint32, error) {
|
|
return 2389, nil
|
|
}
|
|
|
|
func mockcontainerdClient(cntrs map[string]*containers.Container, returnErr error) containerdClient {
|
|
return &containerdClientMock{
|
|
cntrs: cntrs,
|
|
returnErr: returnErr,
|
|
}
|
|
}
|