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
b69ef7b5
Commit
b69ef7b5
authored
Jul 28, 2015
by
Wojciech Tyczynski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove shell services test
parent
c5bffaaf
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 @
c5bffaaf
This diff is collapsed.
Click to expand it.
hack/lib/golang.sh
View file @
b69ef7b5
...
@@ -86,7 +86,6 @@ readonly KUBE_TEST_PORTABLE=(
...
@@ -86,7 +86,6 @@ readonly KUBE_TEST_PORTABLE=(
contrib/for-tests/network-tester/rc.json
contrib/for-tests/network-tester/rc.json
contrib/for-tests/network-tester/service.json
contrib/for-tests/network-tester/service.json
hack/e2e.go
hack/e2e.go
hack/e2e-suite
hack/e2e-internal
hack/e2e-internal
hack/ginkgo-e2e.sh
hack/ginkgo-e2e.sh
hack/lib
hack/lib
...
...
pkg/kubectl/resource_printer_test.go
View file @
b69ef7b5
...
@@ -414,8 +414,7 @@ func TestTemplateStrings(t *testing.T) {
...
@@ -414,8 +414,7 @@ func TestTemplateStrings(t *testing.T) {
"true"
,
"true"
,
},
},
}
}
// The point of this test is to verify that the below template works. If you change this
// The point of this test is to verify that the below template works.
// template, you need to update hack/e2e-suite/update.sh.
tmpl
:=
`{{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "foo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}`
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
))
p
,
err
:=
NewTemplatePrinter
([]
byte
(
tmpl
))
if
err
!=
nil
{
if
err
!=
nil
{
...
...
test/e2e/shell.go
deleted
100644 → 0
View file @
c5bffaaf
/*
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