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
0ae48c44
Commit
0ae48c44
authored
Jul 30, 2015
by
Mike Danese
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #11927 from wojtek-t/remove_shell_services
Remove shell services test
parents
1ae4a942
b69ef7b5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
53 deletions
+1
-53
services.sh
hack/e2e-suite/services.sh
+0
-0
golang.sh
hack/lib/golang.sh
+0
-1
resource_printer_test.go
pkg/kubectl/resource_printer_test.go
+1
-2
shell.go
test/e2e/shell.go
+0
-50
No files found.
hack/e2e-suite/services.sh
deleted
100755 → 0
View file @
1ae4a942
This diff is collapsed.
Click to expand it.
hack/lib/golang.sh
View file @
0ae48c44
...
...
@@ -87,7 +87,6 @@ readonly KUBE_TEST_PORTABLE=(
contrib/for-tests/network-tester/rc.json
contrib/for-tests/network-tester/service.json
hack/e2e.go
hack/e2e-suite
hack/e2e-internal
hack/ginkgo-e2e.sh
hack/lib
...
...
pkg/kubectl/resource_printer_test.go
View file @
0ae48c44
...
...
@@ -414,8 +414,7 @@ func TestTemplateStrings(t *testing.T) {
"true"
,
},
}
// The point of this test is to verify that the below template works. If you change this
// template, you need to update hack/e2e-suite/update.sh.
// The point of this test is to verify that the below template works.
tmpl
:=
`{{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "foo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}`
p
,
err
:=
NewTemplatePrinter
([]
byte
(
tmpl
))
if
err
!=
nil
{
...
...
test/e2e/shell.go
deleted
100644 → 0
View file @
1ae4a942
/*
Copyright 2015 The Kubernetes Authors All rights reserved.
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
e2e
import
(
"bytes"
"fmt"
"os/exec"
"path/filepath"
.
"github.com/onsi/ginkgo"
)
var
_
=
Describe
(
"Shell"
,
func
()
{
It
(
"should pass tests for services.sh"
,
func
()
{
// This test requires:
// - SSH
// - master access
// ... so the provider check should be identical to the intersection of
// providers that provide those capabilities.
SkipUnlessProviderIs
(
"gce"
)
runCmdTest
(
filepath
.
Join
(
testContext
.
RepoRoot
,
"hack/e2e-suite/services.sh"
))
})
})
// Runs the given cmd test.
func
runCmdTest
(
path
string
)
{
By
(
fmt
.
Sprintf
(
"Running %v"
,
path
))
cmd
:=
exec
.
Command
(
path
)
cmd
.
Stdout
=
bytes
.
NewBuffer
(
nil
)
cmd
.
Stderr
=
cmd
.
Stdout
if
err
:=
cmd
.
Run
();
err
!=
nil
{
Fail
(
fmt
.
Sprintf
(
"Error running %v:
\n
Command output:
\n
%v
\n
"
,
cmd
,
cmd
.
Stdout
))
}
}
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