Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
1456e843
Commit
1456e843
authored
Nov 11, 2016
by
Bowei Du
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add ExecWithOptions to framework
This allows for tweaking more options for executing commands in pods.
parent
95ab8065
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
22 deletions
+62
-22
exec_util.go
test/e2e/framework/exec_util.go
+62
-22
No files found.
test/e2e/framework/exec_util.go
View file @
1456e843
...
...
@@ -30,42 +30,82 @@ import (
.
"github.com/onsi/gomega"
)
// ExecCommandInContainer execute a command in the specified container.
// Pass in stdin, tty if needed in the future.
func
(
f
*
Framework
)
ExecCommandInContainer
(
podName
,
containerName
string
,
cmd
...
string
)
string
{
stdout
,
stderr
,
err
:=
f
.
ExecCommandInContainerWithFullOutput
(
podName
,
containerName
,
cmd
...
)
Logf
(
"Exec stderr: %q"
,
stderr
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
(),
"fail to execute command"
)
return
stdout
// ExecOptions passed to ExecWithOptions
type
ExecOptions
struct
{
Command
[]
string
Namespace
string
PodName
string
ContainerName
string
Stdin
io
.
Reader
CaptureStdout
bool
CaptureStderr
bool
// If false, whitespace in std{err,out} will be removed.
PreserveWhitespace
bool
}
// ExecCommandInContainerWithFullOutput executes a command in the specified container and return stdout, stderr and error
func
(
f
*
Framework
)
ExecCommandInContainerWithFullOutput
(
podName
,
containerName
string
,
cmd
...
string
)
(
string
,
string
,
error
)
{
Logf
(
"Exec running '%s'"
,
strings
.
Join
(
cmd
,
" "
))
// ExecWithOptions executes a command in the specified container,
// returning stdout, stderr and error. `options` allowed for
// additional parameters to be passed.
func
(
f
*
Framework
)
ExecWithOptions
(
options
ExecOptions
)
(
string
,
string
,
error
)
{
Logf
(
"ExecWithOptions %+v"
,
options
)
config
,
err
:=
LoadConfig
()
Expect
(
err
)
.
NotTo
(
HaveOccurred
(),
"failed to load restclient config"
)
var
stdout
,
stderr
bytes
.
Buffer
var
stdin
io
.
Reader
tty
:=
false
const
tty
=
false
req
:=
f
.
ClientSet
.
Core
()
.
RESTClient
()
.
Post
()
.
Resource
(
"pods"
)
.
Name
(
p
odName
)
.
Namespace
(
f
.
Namespace
.
Nam
e
)
.
Name
(
options
.
P
odName
)
.
Namespace
(
options
.
Namespac
e
)
.
SubResource
(
"exec"
)
.
Param
(
"container"
,
c
ontainerName
)
Param
(
"container"
,
options
.
C
ontainerName
)
req
.
VersionedParams
(
&
api
.
PodExecOptions
{
Container
:
c
ontainerName
,
Command
:
cm
d
,
Stdin
:
s
tdin
!=
nil
,
Stdout
:
true
,
Stderr
:
true
,
Container
:
options
.
C
ontainerName
,
Command
:
options
.
Comman
d
,
Stdin
:
options
.
S
tdin
!=
nil
,
Stdout
:
options
.
CaptureStdout
,
Stderr
:
options
.
CaptureStderr
,
TTY
:
tty
,
},
api
.
ParameterCodec
)
err
=
execute
(
"POST"
,
req
.
URL
(),
config
,
stdin
,
&
stdout
,
&
stderr
,
tty
)
var
stdout
,
stderr
bytes
.
Buffer
err
=
execute
(
"POST"
,
req
.
URL
(),
config
,
options
.
Stdin
,
&
stdout
,
&
stderr
,
tty
)
if
options
.
PreserveWhitespace
{
return
stdout
.
String
(),
stderr
.
String
(),
err
}
return
strings
.
TrimSpace
(
stdout
.
String
()),
strings
.
TrimSpace
(
stderr
.
String
()),
err
}
// ExecCommandInContainerWithFullOutput executes a command in the
// specified container and return stdout, stderr and error
func
(
f
*
Framework
)
ExecCommandInContainerWithFullOutput
(
podName
,
containerName
string
,
cmd
...
string
)
(
string
,
string
,
error
)
{
return
f
.
ExecWithOptions
(
ExecOptions
{
Command
:
cmd
,
Namespace
:
f
.
Namespace
.
Name
,
PodName
:
podName
,
ContainerName
:
containerName
,
Stdin
:
nil
,
CaptureStdout
:
true
,
CaptureStderr
:
true
,
PreserveWhitespace
:
false
,
})
}
// ExecCommandInContainer executes a command in the specified container.
func
(
f
*
Framework
)
ExecCommandInContainer
(
podName
,
containerName
string
,
cmd
...
string
)
string
{
stdout
,
stderr
,
err
:=
f
.
ExecCommandInContainerWithFullOutput
(
podName
,
containerName
,
cmd
...
)
Logf
(
"Exec stderr: %q"
,
stderr
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
(),
"failed to execute command in pod %v, container %v: %v"
,
podName
,
containerName
,
err
)
return
stdout
}
func
(
f
*
Framework
)
ExecShellInContainer
(
podName
,
containerName
string
,
cmd
string
)
string
{
return
f
.
ExecCommandInContainer
(
podName
,
containerName
,
"/bin/sh"
,
"-c"
,
cmd
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment