-
Notifications
You must be signed in to change notification settings - Fork 23
/
e2e_test.go
60 lines (54 loc) · 2.34 KB
/
e2e_test.go
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
// Copyright 2020 the generic-device-plugin 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 main
import (
"context"
"os/exec"
"path/filepath"
"testing"
"github.com/efficientgo/core/testutil"
"github.com/efficientgo/e2e"
)
func kind(ctx context.Context, e e2e.Environment, extraArgs ...string) *exec.Cmd {
args := []string{"--name", e.Name()}
return exec.CommandContext(ctx, "kind", append(args, extraArgs...)...)
}
func kubectl(ctx context.Context, e e2e.Environment, extraArgs ...string) *exec.Cmd {
args := []string{"--kubeconfig", filepath.Join(e.SharedDir(), "kubeconfig")}
return exec.CommandContext(ctx, "kubectl", append(args, extraArgs...)...)
}
func TestBasic(t *testing.T) {
t.Parallel()
e, err := e2e.NewKindEnvironment()
testutil.Ok(t, err)
t.Cleanup(e.Close)
out, err := kind(context.Background(), e, "load", "docker-image", "squat/generic-device-plugin").CombinedOutput()
testutil.Ok(t, err, string(out))
a := e.Runnable("fuse").Init(e2e.StartOptions{
Image: "alpine",
Command: e2e.Command{
Cmd: "/usr/bin/tail",
Args: []string{"-f", "/dev/null"},
},
})
testutil.Ok(t, a.Start())
out, err = kubectl(context.Background(), e, "apply", "--filename", "manifests/generic-device-plugin.yaml").CombinedOutput()
testutil.Ok(t, err, string(out))
out, err = kubectl(context.Background(), e, "rollout", "status", "daemonset", "generic-device-plugin", "--namespace", "kube-system").CombinedOutput()
testutil.Ok(t, err, string(out))
out, err = kubectl(context.Background(), e, "patch", "deployment", "fuse", "--patch", `{"spec": {"template": {"spec": {"containers": [{"name": "fuse", "resources": {"limits": {"squat.ai/fuse": 1}}}]}}}}`).CombinedOutput()
testutil.Ok(t, err, string(out))
out, err = kubectl(context.Background(), e, "rollout", "status", "deployment", "fuse").CombinedOutput()
testutil.Ok(t, err, string(out))
}