Skip to content

Commit 4db87b9

Browse files
committed
Add basic test to getHandleFromProcess
1 parent e09dd82 commit 4db87b9

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed
+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/*
2+
Copyright 2019 The Skaffold Authors
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
package kubectl
18+
19+
import (
20+
"context"
21+
"runtime"
22+
"testing"
23+
24+
"github.com/stretchr/testify/assert"
25+
"golang.org/x/sys/windows"
26+
)
27+
28+
func TestGetHandleFromProcess(t *testing.T) {
29+
if runtime.GOOS != "windows" {
30+
t.Skip("getHandleFromProcess only works on Windows")
31+
}
32+
33+
ctx := context.TODO()
34+
c := CommandContext(ctx, "kubectl", "--help")
35+
err := c.Cmd.Start()
36+
assert.Nil(t, err, "could not start command")
37+
38+
h, err := getHandleFromProcess(c.Process)
39+
assert.NotEqual(t, h, windows.InvalidHandle, "handle is invalid")
40+
assert.Nil(t, err, "could not get handle from process")
41+
42+
err = c.Cmd.Wait()
43+
assert.Nil(t, err, "could not wait command")
44+
}

0 commit comments

Comments
 (0)