Reasons discussed in https://github.com/google/cadvisor/issues/822#issuecomment-135811901 & following.
159 lines
4.3 KiB
Go
159 lines
4.3 KiB
Go
// Copyright 2014 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 container
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
type mockContainerHandlerFactory struct {
|
|
mock.Mock
|
|
Name string
|
|
CanHandleValue bool
|
|
CanAcceptValue bool
|
|
}
|
|
|
|
func (self *mockContainerHandlerFactory) String() string {
|
|
return self.Name
|
|
}
|
|
|
|
func (self *mockContainerHandlerFactory) DebugInfo() map[string][]string {
|
|
return map[string][]string{}
|
|
}
|
|
|
|
func (self *mockContainerHandlerFactory) CanHandleAndAccept(name string) (bool, bool, error) {
|
|
return self.CanHandleValue, self.CanAcceptValue, nil
|
|
}
|
|
|
|
func (self *mockContainerHandlerFactory) NewContainerHandler(name string, isHostNamespace bool) (ContainerHandler, error) {
|
|
args := self.Called(name)
|
|
return args.Get(0).(ContainerHandler), args.Error(1)
|
|
}
|
|
|
|
const testContainerName = "/test"
|
|
|
|
var mockFactory FactoryForMockContainerHandler
|
|
|
|
func TestNewContainerHandler_FirstMatches(t *testing.T) {
|
|
ClearContainerHandlerFactories()
|
|
|
|
// Register one allways yes factory.
|
|
allwaysYes := &mockContainerHandlerFactory{
|
|
Name: "yes",
|
|
CanHandleValue: true,
|
|
CanAcceptValue: true,
|
|
}
|
|
RegisterContainerHandlerFactory(allwaysYes)
|
|
|
|
// The yes factory should be asked to create the ContainerHandler.
|
|
mockContainer, err := mockFactory.NewContainerHandler(testContainerName, true)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
allwaysYes.On("NewContainerHandler", testContainerName).Return(mockContainer, nil)
|
|
|
|
cont, _, err := NewContainerHandler(testContainerName, true)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
if cont == nil {
|
|
t.Error("Expected container to not be nil")
|
|
}
|
|
}
|
|
|
|
func TestNewContainerHandler_SecondMatches(t *testing.T) {
|
|
ClearContainerHandlerFactories()
|
|
|
|
// Register one allways no and one always yes factory.
|
|
allwaysNo := &mockContainerHandlerFactory{
|
|
Name: "no",
|
|
CanHandleValue: false,
|
|
CanAcceptValue: true,
|
|
}
|
|
RegisterContainerHandlerFactory(allwaysNo)
|
|
allwaysYes := &mockContainerHandlerFactory{
|
|
Name: "yes",
|
|
CanHandleValue: true,
|
|
CanAcceptValue: true,
|
|
}
|
|
RegisterContainerHandlerFactory(allwaysYes)
|
|
|
|
// The yes factory should be asked to create the ContainerHandler.
|
|
mockContainer, err := mockFactory.NewContainerHandler(testContainerName, true)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
allwaysYes.On("NewContainerHandler", testContainerName).Return(mockContainer, nil)
|
|
|
|
cont, _, err := NewContainerHandler(testContainerName, true)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
if cont == nil {
|
|
t.Error("Expected container to not be nil")
|
|
}
|
|
}
|
|
|
|
func TestNewContainerHandler_NoneMatch(t *testing.T) {
|
|
ClearContainerHandlerFactories()
|
|
|
|
// Register two allways no factories.
|
|
allwaysNo1 := &mockContainerHandlerFactory{
|
|
Name: "no",
|
|
CanHandleValue: false,
|
|
CanAcceptValue: true,
|
|
}
|
|
RegisterContainerHandlerFactory(allwaysNo1)
|
|
allwaysNo2 := &mockContainerHandlerFactory{
|
|
Name: "no",
|
|
CanHandleValue: false,
|
|
CanAcceptValue: true,
|
|
}
|
|
RegisterContainerHandlerFactory(allwaysNo2)
|
|
|
|
_, _, err := NewContainerHandler(testContainerName, true)
|
|
if err == nil {
|
|
t.Error("Expected NewContainerHandler to fail")
|
|
}
|
|
}
|
|
|
|
func TestNewContainerHandler_Accept(t *testing.T) {
|
|
ClearContainerHandlerFactories()
|
|
|
|
// Register handler that can handle the container, but can't accept it.
|
|
cannotHandle := &mockContainerHandlerFactory{
|
|
Name: "no",
|
|
CanHandleValue: false,
|
|
CanAcceptValue: true,
|
|
}
|
|
RegisterContainerHandlerFactory(cannotHandle)
|
|
cannotAccept := &mockContainerHandlerFactory{
|
|
Name: "no",
|
|
CanHandleValue: true,
|
|
CanAcceptValue: false,
|
|
}
|
|
RegisterContainerHandlerFactory(cannotAccept)
|
|
|
|
_, accept, err := NewContainerHandler(testContainerName, true)
|
|
if err != nil {
|
|
t.Error("Expected NewContainerHandler to succeed")
|
|
}
|
|
if accept == true {
|
|
t.Error("Expected NewContainerHandler to ignore the container.")
|
|
}
|
|
}
|