File: task_manager_test.go

package info (click to toggle)
containerd 2.1.4~ds2-5
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 21,772 kB
  • sloc: sh: 1,885; makefile: 591
file content (98 lines) | stat: -rw-r--r-- 2,293 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
//go:build !windows && !darwin

/*
   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 v2

import (
	"os"
	"testing"
)

// setupAbsoluteShimPath creates a temporary directory in $PATH with an empty
// shim executable file in it to test the exec.LookPath branch of resolveRuntimePath
func setupAbsoluteShimPath(t *testing.T) (string, error) {
	tempShimDir := t.TempDir()

	_, err := os.Create(tempShimDir + "/containerd-shim-runc-v2")
	if err != nil {
		return "", err
	}

	t.Setenv("PATH", tempShimDir+":"+os.Getenv("PATH"))
	absoluteShimPath := tempShimDir + "/containerd-shim-runc-v2"

	err = os.Chmod(absoluteShimPath, 0777)
	if err != nil {
		return "", err
	}

	return absoluteShimPath, nil
}

func TestResolveRuntimePath(t *testing.T) {
	sm := &ShimManager{}
	absoluteShimPath, err := setupAbsoluteShimPath(t)
	if err != nil {
		t.Errorf("Failed to create temporary shim path: %q", err)
	}

	tests := []struct {
		runtime string
		want    string
	}{
		{ // Absolute path
			runtime: absoluteShimPath,
			want:    absoluteShimPath,
		},
		{ // Binary name
			runtime: "io.containerd.runc.v2",
			want:    absoluteShimPath,
		},
		{ // Invalid absolute path
			runtime: "/fake/abs/path",
			want:    "",
		},
		{ // No name
			runtime: "",
			want:    "",
		},
		{ // Relative Path
			runtime: "./containerd-shim-runc-v2",
			want:    "",
		},
		{
			runtime: "fake/containerd-shim-runc-v2",
			want:    "",
		},
		{
			runtime: "./fake/containerd-shim-runc-v2",
			want:    "",
		},
		{ // Relative Path or Bad Binary Name
			runtime: ".io.containerd.runc.v2",
			want:    "",
		},
	}

	for _, c := range tests {
		have, _ := sm.resolveRuntimePath(c.runtime)
		if have != c.want {
			t.Errorf("Expected %q, got %q", c.want, have)
		}
	}
}