
This bumps the containerd and sys packages in CRI Signed-off-by: Michael Crosby <crosbymichael@gmail.com> Remove runtime-tools Signed-off-by: Michael Crosby <crosbymichael@gmail.com> Update tests for oci opts package Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
71 lines
1.8 KiB
Go
71 lines
1.8 KiB
Go
/*
|
|
Copyright 2018 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 opts
|
|
|
|
import (
|
|
"sort"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
runtime "k8s.io/kubernetes/pkg/kubelet/apis/cri/runtime/v1alpha2"
|
|
)
|
|
|
|
func TestMergeGids(t *testing.T) {
|
|
gids1 := []uint32{3, 2, 1}
|
|
gids2 := []uint32{2, 3, 4}
|
|
assert.Equal(t, []uint32{3, 2, 1, 4}, mergeGids(gids1, gids2))
|
|
}
|
|
|
|
func TestOrderedMounts(t *testing.T) {
|
|
mounts := []*runtime.Mount{
|
|
{ContainerPath: "/a/b/c"},
|
|
{ContainerPath: "/a/b"},
|
|
{ContainerPath: "/a/b/c/d"},
|
|
{ContainerPath: "/a"},
|
|
{ContainerPath: "/b"},
|
|
{ContainerPath: "/b/c"},
|
|
}
|
|
expected := []*runtime.Mount{
|
|
{ContainerPath: "/a"},
|
|
{ContainerPath: "/b"},
|
|
{ContainerPath: "/a/b"},
|
|
{ContainerPath: "/b/c"},
|
|
{ContainerPath: "/a/b/c"},
|
|
{ContainerPath: "/a/b/c/d"},
|
|
}
|
|
sort.Stable(orderedMounts(mounts))
|
|
assert.Equal(t, expected, mounts)
|
|
}
|
|
|
|
func TestRestrictOOMScoreAdj(t *testing.T) {
|
|
current, err := getCurrentOOMScoreAdj()
|
|
require.NoError(t, err)
|
|
|
|
got, err := restrictOOMScoreAdj(current - 1)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, got, current)
|
|
|
|
got, err = restrictOOMScoreAdj(current)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, got, current)
|
|
|
|
got, err = restrictOOMScoreAdj(current + 1)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, got, current+1)
|
|
}
|