cadvisor/container/containerd/client_test.go
Maciej "Iwan" Iwanowski 8fd2a843de
Replacing unexported interface with exported one
Signed-off-by: Maciej "Iwan" Iwanowski <maciej.iwanowski@intel.com>
2020-04-23 20:43:27 +02:00

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,
}
}