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
42d236fe
Commit
42d236fe
authored
Oct 27, 2015
by
Jerzy Szczepkowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "All e2e tests should use NewFramework"
parent
15492322
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
131 additions
and
101 deletions
+131
-101
cluster_upgrade.go
test/e2e/cluster_upgrade.go
+8
-7
container_probe.go
test/e2e/container_probe.go
+4
-1
daemon_restart.go
test/e2e/daemon_restart.go
+4
-1
daemon_set.go
test/e2e/daemon_set.go
+8
-8
density.go
test/e2e/density.go
+33
-31
etcd_failure.go
test/e2e/etcd_failure.go
+14
-4
latency.go
test/e2e/latency.go
+23
-23
load.go
test/e2e/load.go
+16
-14
resize_nodes.go
test/e2e/resize_nodes.go
+4
-1
scheduler_predicates.go
test/e2e/scheduler_predicates.go
+11
-10
serviceloadbalancers.go
test/e2e/serviceloadbalancers.go
+6
-1
No files found.
test/e2e/cluster_upgrade.go
View file @
42d236fe
...
@@ -92,7 +92,7 @@ var masterPush = func(_ string) error {
...
@@ -92,7 +92,7 @@ var masterPush = func(_ string) error {
return
err
return
err
}
}
var
nodeUpgrade
=
func
(
f
*
Framework
,
replicas
int
,
v
string
)
error
{
var
nodeUpgrade
=
func
(
f
Framework
,
replicas
int
,
v
string
)
error
{
// Perform the upgrade.
// Perform the upgrade.
var
err
error
var
err
error
switch
testContext
.
Provider
{
switch
testContext
.
Provider
{
...
@@ -150,6 +150,8 @@ var _ = Describe("Skipped", func() {
...
@@ -150,6 +150,8 @@ var _ = Describe("Skipped", func() {
svcName
,
replicas
:=
"baz"
,
2
svcName
,
replicas
:=
"baz"
,
2
var
rcName
,
ip
,
v
string
var
rcName
,
ip
,
v
string
var
ingress
api
.
LoadBalancerIngress
var
ingress
api
.
LoadBalancerIngress
f
:=
Framework
{
BaseName
:
"cluster-upgrade"
}
var
w
*
WebserverTest
BeforeEach
(
func
()
{
BeforeEach
(
func
()
{
// The version is determined once at the beginning of the test so that
// The version is determined once at the beginning of the test so that
...
@@ -160,12 +162,9 @@ var _ = Describe("Skipped", func() {
...
@@ -160,12 +162,9 @@ var _ = Describe("Skipped", func() {
v
,
err
=
realVersion
(
testContext
.
UpgradeTarget
)
v
,
err
=
realVersion
(
testContext
.
UpgradeTarget
)
expectNoError
(
err
)
expectNoError
(
err
)
Logf
(
"Version for %q is %q"
,
testContext
.
UpgradeTarget
,
v
)
Logf
(
"Version for %q is %q"
,
testContext
.
UpgradeTarget
,
v
)
})
f
:=
NewFramework
(
"cluster-upgrade"
)
var
w
*
WebserverTest
BeforeEach
(
func
()
{
By
(
"Setting up the service, RC, and pods"
)
By
(
"Setting up the service, RC, and pods"
)
f
.
beforeEach
()
w
=
NewWebserverTest
(
f
.
Client
,
f
.
Namespace
.
Name
,
svcName
)
w
=
NewWebserverTest
(
f
.
Client
,
f
.
Namespace
.
Name
,
svcName
)
rc
:=
w
.
CreateWebserverRC
(
replicas
)
rc
:=
w
.
CreateWebserverRC
(
replicas
)
rcName
=
rc
.
ObjectMeta
.
Name
rcName
=
rc
.
ObjectMeta
.
Name
...
@@ -193,7 +192,9 @@ var _ = Describe("Skipped", func() {
...
@@ -193,7 +192,9 @@ var _ = Describe("Skipped", func() {
// - volumes
// - volumes
// - persistent volumes
// - persistent volumes
})
})
AfterEach
(
func
()
{
AfterEach
(
func
()
{
f
.
afterEach
()
w
.
Cleanup
()
w
.
Cleanup
()
})
})
...
@@ -344,7 +345,7 @@ func checkMasterVersion(c *client.Client, want string) error {
...
@@ -344,7 +345,7 @@ func checkMasterVersion(c *client.Client, want string) error {
return
nil
return
nil
}
}
func
testNodeUpgrade
(
f
*
Framework
,
nUp
func
(
f
*
Framework
,
n
int
,
v
string
)
error
,
replicas
int
,
v
string
)
{
func
testNodeUpgrade
(
f
Framework
,
nUp
func
(
f
Framework
,
n
int
,
v
string
)
error
,
replicas
int
,
v
string
)
{
Logf
(
"Starting node upgrade"
)
Logf
(
"Starting node upgrade"
)
expectNoError
(
nUp
(
f
,
replicas
,
v
))
expectNoError
(
nUp
(
f
,
replicas
,
v
))
Logf
(
"Node upgrade complete"
)
Logf
(
"Node upgrade complete"
)
...
@@ -411,7 +412,7 @@ func runCmd(command string, args ...string) (string, string, error) {
...
@@ -411,7 +412,7 @@ func runCmd(command string, args ...string) (string, string, error) {
return
stdout
,
stderr
,
nil
return
stdout
,
stderr
,
nil
}
}
func
validate
(
f
*
Framework
,
svcNameWant
,
rcNameWant
string
,
ingress
api
.
LoadBalancerIngress
,
podsWant
int
)
error
{
func
validate
(
f
Framework
,
svcNameWant
,
rcNameWant
string
,
ingress
api
.
LoadBalancerIngress
,
podsWant
int
)
error
{
Logf
(
"Beginning cluster validation"
)
Logf
(
"Beginning cluster validation"
)
// Verify RC.
// Verify RC.
rcs
,
err
:=
f
.
Client
.
ReplicationControllers
(
f
.
Namespace
.
Name
)
.
List
(
labels
.
Everything
(),
fields
.
Everything
())
rcs
,
err
:=
f
.
Client
.
ReplicationControllers
(
f
.
Namespace
.
Name
)
.
List
(
labels
.
Everything
(),
fields
.
Everything
())
...
...
test/e2e/container_probe.go
View file @
42d236fe
...
@@ -29,14 +29,17 @@ import (
...
@@ -29,14 +29,17 @@ import (
)
)
var
_
=
Describe
(
"Probing container"
,
func
()
{
var
_
=
Describe
(
"Probing container"
,
func
()
{
framework
:=
NewFramework
(
"container-probe"
)
framework
:=
Framework
{
BaseName
:
"container-probe"
}
var
podClient
client
.
PodInterface
var
podClient
client
.
PodInterface
probe
:=
webserverProbeBuilder
{}
probe
:=
webserverProbeBuilder
{}
BeforeEach
(
func
()
{
BeforeEach
(
func
()
{
framework
.
beforeEach
()
podClient
=
framework
.
Client
.
Pods
(
framework
.
Namespace
.
Name
)
podClient
=
framework
.
Client
.
Pods
(
framework
.
Namespace
.
Name
)
})
})
AfterEach
(
framework
.
afterEach
)
It
(
"with readiness probe should not be ready before initial delay and never restart [Conformance]"
,
func
()
{
It
(
"with readiness probe should not be ready before initial delay and never restart [Conformance]"
,
func
()
{
p
,
err
:=
podClient
.
Create
(
makePodSpec
(
probe
.
withInitialDelay
()
.
build
(),
nil
))
p
,
err
:=
podClient
.
Create
(
makePodSpec
(
probe
.
withInitialDelay
()
.
build
(),
nil
))
expectNoError
(
err
)
expectNoError
(
err
)
...
...
test/e2e/daemon_restart.go
View file @
42d236fe
...
@@ -185,7 +185,7 @@ func getContainerRestarts(c *client.Client, ns string, labelSelector labels.Sele
...
@@ -185,7 +185,7 @@ func getContainerRestarts(c *client.Client, ns string, labelSelector labels.Sele
var
_
=
Describe
(
"DaemonRestart"
,
func
()
{
var
_
=
Describe
(
"DaemonRestart"
,
func
()
{
framework
:=
NewFramework
(
"daemonrestart"
)
framework
:=
Framework
{
BaseName
:
"daemonrestart"
}
rcName
:=
"daemonrestart"
+
strconv
.
Itoa
(
numPods
)
+
"-"
+
string
(
util
.
NewUUID
())
rcName
:=
"daemonrestart"
+
strconv
.
Itoa
(
numPods
)
+
"-"
+
string
(
util
.
NewUUID
())
labelSelector
:=
labels
.
Set
(
map
[
string
]
string
{
"name"
:
rcName
})
.
AsSelector
()
labelSelector
:=
labels
.
Set
(
map
[
string
]
string
{
"name"
:
rcName
})
.
AsSelector
()
existingPods
:=
cache
.
NewStore
(
cache
.
MetaNamespaceKeyFunc
)
existingPods
:=
cache
.
NewStore
(
cache
.
MetaNamespaceKeyFunc
)
...
@@ -197,9 +197,11 @@ var _ = Describe("DaemonRestart", func() {
...
@@ -197,9 +197,11 @@ var _ = Describe("DaemonRestart", func() {
var
tracker
*
podTracker
var
tracker
*
podTracker
BeforeEach
(
func
()
{
BeforeEach
(
func
()
{
// These tests require SSH
// These tests require SSH
// TODO(11834): Enable this test in GKE once experimental API there is switched on
// TODO(11834): Enable this test in GKE once experimental API there is switched on
SkipUnlessProviderIs
(
"gce"
,
"aws"
)
SkipUnlessProviderIs
(
"gce"
,
"aws"
)
framework
.
beforeEach
()
ns
=
framework
.
Namespace
.
Name
ns
=
framework
.
Namespace
.
Name
// All the restart tests need an rc and a watch on pods of the rc.
// All the restart tests need an rc and a watch on pods of the rc.
...
@@ -244,6 +246,7 @@ var _ = Describe("DaemonRestart", func() {
...
@@ -244,6 +246,7 @@ var _ = Describe("DaemonRestart", func() {
})
})
AfterEach
(
func
()
{
AfterEach
(
func
()
{
defer
framework
.
afterEach
()
close
(
stopCh
)
close
(
stopCh
)
expectNoError
(
DeleteRC
(
framework
.
Client
,
ns
,
rcName
))
expectNoError
(
DeleteRC
(
framework
.
Client
,
ns
,
rcName
))
})
})
...
...
test/e2e/daemon_set.go
View file @
42d236fe
...
@@ -48,14 +48,7 @@ const (
...
@@ -48,14 +48,7 @@ const (
)
)
var
_
=
Describe
(
"Daemon set"
,
func
()
{
var
_
=
Describe
(
"Daemon set"
,
func
()
{
var
f
*
Framework
f
:=
&
Framework
{
BaseName
:
"daemonsets"
}
AfterEach
(
func
()
{
err
:=
clearDaemonSetNodeLabels
(
f
.
Client
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
})
f
=
NewFramework
(
"daemonsets"
)
image
:=
"gcr.io/google_containers/serve_hostname:1.1"
image
:=
"gcr.io/google_containers/serve_hostname:1.1"
dsName
:=
"daemon-set"
dsName
:=
"daemon-set"
...
@@ -64,12 +57,19 @@ var _ = Describe("Daemon set", func() {
...
@@ -64,12 +57,19 @@ var _ = Describe("Daemon set", func() {
var
c
*
client
.
Client
var
c
*
client
.
Client
BeforeEach
(
func
()
{
BeforeEach
(
func
()
{
f
.
beforeEach
()
ns
=
f
.
Namespace
.
Name
ns
=
f
.
Namespace
.
Name
c
=
f
.
Client
c
=
f
.
Client
err
:=
clearDaemonSetNodeLabels
(
c
)
err
:=
clearDaemonSetNodeLabels
(
c
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
})
})
AfterEach
(
func
()
{
defer
f
.
afterEach
()
err
:=
clearDaemonSetNodeLabels
(
f
.
Client
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
})
It
(
"should run and stop simple daemon"
,
func
()
{
It
(
"should run and stop simple daemon"
,
func
()
{
label
:=
map
[
string
]
string
{
daemonsetNameLabel
:
dsName
}
label
:=
map
[
string
]
string
{
daemonsetNameLabel
:
dsName
}
...
...
test/e2e/density.go
View file @
42d236fe
...
@@ -80,39 +80,10 @@ var _ = Describe("Density", func() {
...
@@ -80,39 +80,10 @@ var _ = Describe("Density", func() {
var
additionalPodsPrefix
string
var
additionalPodsPrefix
string
var
ns
string
var
ns
string
var
uuid
string
var
uuid
string
framework
:=
Framework
{
BaseName
:
"density"
,
NamespaceDeletionTimeout
:
time
.
Hour
}
// Gathers data prior to framework namespace teardown
AfterEach
(
func
()
{
// Remove any remaining pods from this test if the
// replication controller still exists and the replica count
// isn't 0. This means the controller wasn't cleaned up
// during the test so clean it up here. We want to do it separately
// to not cause a timeout on Namespace removal.
rc
,
err
:=
c
.
ReplicationControllers
(
ns
)
.
Get
(
RCName
)
if
err
==
nil
&&
rc
.
Spec
.
Replicas
!=
0
{
By
(
"Cleaning up the replication controller"
)
err
:=
DeleteRC
(
c
,
ns
,
RCName
)
expectNoError
(
err
)
}
By
(
"Removing additional pods if any"
)
for
i
:=
1
;
i
<=
nodeCount
;
i
++
{
name
:=
additionalPodsPrefix
+
"-"
+
strconv
.
Itoa
(
i
)
c
.
Pods
(
ns
)
.
Delete
(
name
,
nil
)
}
expectNoError
(
writePerfData
(
c
,
fmt
.
Sprintf
(
testContext
.
OutputDir
+
"/%s"
,
uuid
),
"after"
))
// Verify latency metrics
highLatencyRequests
,
err
:=
HighLatencyRequests
(
c
)
expectNoError
(
err
)
Expect
(
highLatencyRequests
)
.
NotTo
(
BeNumerically
(
">"
,
0
),
"There should be no high-latency requests"
)
})
framework
:=
NewFramework
(
"density"
)
framework
.
NamespaceDeletionTimeout
=
time
.
Hour
BeforeEach
(
func
()
{
BeforeEach
(
func
()
{
framework
.
beforeEach
()
c
=
framework
.
Client
c
=
framework
.
Client
ns
=
framework
.
Namespace
.
Name
ns
=
framework
.
Namespace
.
Name
var
err
error
var
err
error
...
@@ -144,6 +115,37 @@ var _ = Describe("Density", func() {
...
@@ -144,6 +115,37 @@ var _ = Describe("Density", func() {
}
}
})
})
AfterEach
(
func
()
{
// We can't call it explicitly at the end, because it will not be called
// if Expect() fails.
defer
framework
.
afterEach
()
// Remove any remaining pods from this test if the
// replication controller still exists and the replica count
// isn't 0. This means the controller wasn't cleaned up
// during the test so clean it up here. We want to do it separately
// to not cause a timeout on Namespace removal.
rc
,
err
:=
c
.
ReplicationControllers
(
ns
)
.
Get
(
RCName
)
if
err
==
nil
&&
rc
.
Spec
.
Replicas
!=
0
{
By
(
"Cleaning up the replication controller"
)
err
:=
DeleteRC
(
c
,
ns
,
RCName
)
expectNoError
(
err
)
}
By
(
"Removing additional pods if any"
)
for
i
:=
1
;
i
<=
nodeCount
;
i
++
{
name
:=
additionalPodsPrefix
+
"-"
+
strconv
.
Itoa
(
i
)
c
.
Pods
(
ns
)
.
Delete
(
name
,
nil
)
}
expectNoError
(
writePerfData
(
c
,
fmt
.
Sprintf
(
testContext
.
OutputDir
+
"/%s"
,
uuid
),
"after"
))
// Verify latency metrics
highLatencyRequests
,
err
:=
HighLatencyRequests
(
c
)
expectNoError
(
err
)
Expect
(
highLatencyRequests
)
.
NotTo
(
BeNumerically
(
">"
,
0
),
"There should be no high-latency requests"
)
})
// Tests with "Skipped" substring in their name will be skipped when running
// Tests with "Skipped" substring in their name will be skipped when running
// e2e test suite without --ginkgo.focus & --ginkgo.skip flags.
// e2e test suite without --ginkgo.focus & --ginkgo.skip flags.
type
Density
struct
{
type
Density
struct
{
...
...
test/e2e/etcd_failure.go
View file @
42d236fe
...
@@ -31,7 +31,7 @@ import (
...
@@ -31,7 +31,7 @@ import (
var
_
=
Describe
(
"Etcd failure"
,
func
()
{
var
_
=
Describe
(
"Etcd failure"
,
func
()
{
var
skipped
bool
var
skipped
bool
framework
:=
NewFramework
(
"etcd-failure"
)
framework
:=
Framework
{
BaseName
:
"etcd-failure"
}
BeforeEach
(
func
()
{
BeforeEach
(
func
()
{
// This test requires:
// This test requires:
...
@@ -43,6 +43,8 @@ var _ = Describe("Etcd failure", func() {
...
@@ -43,6 +43,8 @@ var _ = Describe("Etcd failure", func() {
SkipUnlessProviderIs
(
"gce"
)
SkipUnlessProviderIs
(
"gce"
)
skipped
=
false
skipped
=
false
framework
.
beforeEach
()
Expect
(
RunRC
(
RCConfig
{
Expect
(
RunRC
(
RCConfig
{
Client
:
framework
.
Client
,
Client
:
framework
.
Client
,
Name
:
"baz"
,
Name
:
"baz"
,
...
@@ -52,6 +54,14 @@ var _ = Describe("Etcd failure", func() {
...
@@ -52,6 +54,14 @@ var _ = Describe("Etcd failure", func() {
}))
.
NotTo
(
HaveOccurred
())
}))
.
NotTo
(
HaveOccurred
())
})
})
AfterEach
(
func
()
{
if
skipped
{
return
}
framework
.
afterEach
()
})
It
(
"should recover from network partition with master"
,
func
()
{
It
(
"should recover from network partition with master"
,
func
()
{
etcdFailTest
(
etcdFailTest
(
framework
,
framework
,
...
@@ -69,12 +79,12 @@ var _ = Describe("Etcd failure", func() {
...
@@ -69,12 +79,12 @@ var _ = Describe("Etcd failure", func() {
})
})
})
})
func
etcdFailTest
(
framework
*
Framework
,
failCommand
,
fixCommand
string
)
{
func
etcdFailTest
(
framework
Framework
,
failCommand
,
fixCommand
string
)
{
doEtcdFailure
(
failCommand
,
fixCommand
)
doEtcdFailure
(
failCommand
,
fixCommand
)
checkExistingRCRecovers
(
framework
)
checkExistingRCRecovers
(
framework
)
ServeImageOrFail
(
framework
,
"basic"
,
"gcr.io/google_containers/serve_hostname:1.1"
)
ServeImageOrFail
(
&
framework
,
"basic"
,
"gcr.io/google_containers/serve_hostname:1.1"
)
}
}
// For this duration, etcd will be failed by executing a failCommand on the master.
// For this duration, etcd will be failed by executing a failCommand on the master.
...
@@ -100,7 +110,7 @@ func masterExec(cmd string) {
...
@@ -100,7 +110,7 @@ func masterExec(cmd string) {
}
}
}
}
func
checkExistingRCRecovers
(
f
*
Framework
)
{
func
checkExistingRCRecovers
(
f
Framework
)
{
By
(
"assert that the pre-existing replication controller recovers"
)
By
(
"assert that the pre-existing replication controller recovers"
)
podClient
:=
f
.
Client
.
Pods
(
f
.
Namespace
.
Name
)
podClient
:=
f
.
Client
.
Pods
(
f
.
Namespace
.
Name
)
rcSelector
:=
labels
.
Set
{
"name"
:
"baz"
}
.
AsSelector
()
rcSelector
:=
labels
.
Set
{
"name"
:
"baz"
}
.
AsSelector
()
...
...
test/e2e/latency.go
View file @
42d236fe
...
@@ -45,31 +45,10 @@ var _ = Describe("[Performance Suite] Latency", func() {
...
@@ -45,31 +45,10 @@ var _ = Describe("[Performance Suite] Latency", func() {
var
additionalPodsPrefix
string
var
additionalPodsPrefix
string
var
ns
string
var
ns
string
var
uuid
string
var
uuid
string
framework
:=
Framework
{
BaseName
:
"latency"
,
NamespaceDeletionTimeout
:
time
.
Hour
}
AfterEach
(
func
()
{
By
(
"Removing additional pods if any"
)
for
i
:=
1
;
i
<=
nodeCount
;
i
++
{
name
:=
additionalPodsPrefix
+
"-"
+
strconv
.
Itoa
(
i
)
c
.
Pods
(
ns
)
.
Delete
(
name
,
nil
)
}
By
(
fmt
.
Sprintf
(
"Destroying namespace for this suite %v"
,
ns
))
if
err
:=
c
.
Namespaces
()
.
Delete
(
ns
);
err
!=
nil
{
Failf
(
"Couldn't delete ns %s"
,
err
)
}
expectNoError
(
writePerfData
(
c
,
fmt
.
Sprintf
(
testContext
.
OutputDir
+
"/%s"
,
uuid
),
"after"
))
// Verify latency metrics
highLatencyRequests
,
err
:=
HighLatencyRequests
(
c
)
expectNoError
(
err
)
Expect
(
highLatencyRequests
)
.
NotTo
(
BeNumerically
(
">"
,
0
),
"There should be no high-latency requests"
)
})
framework
:=
NewFramework
(
"latency"
)
framework
.
NamespaceDeletionTimeout
=
time
.
Hour
BeforeEach
(
func
()
{
BeforeEach
(
func
()
{
framework
.
beforeEach
()
c
=
framework
.
Client
c
=
framework
.
Client
ns
=
framework
.
Namespace
.
Name
ns
=
framework
.
Namespace
.
Name
var
err
error
var
err
error
...
@@ -100,6 +79,27 @@ var _ = Describe("[Performance Suite] Latency", func() {
...
@@ -100,6 +79,27 @@ var _ = Describe("[Performance Suite] Latency", func() {
}
}
})
})
AfterEach
(
func
()
{
defer
framework
.
afterEach
()
By
(
"Removing additional pods if any"
)
for
i
:=
1
;
i
<=
nodeCount
;
i
++
{
name
:=
additionalPodsPrefix
+
"-"
+
strconv
.
Itoa
(
i
)
c
.
Pods
(
ns
)
.
Delete
(
name
,
nil
)
}
By
(
fmt
.
Sprintf
(
"Destroying namespace for this suite %v"
,
ns
))
if
err
:=
c
.
Namespaces
()
.
Delete
(
ns
);
err
!=
nil
{
Failf
(
"Couldn't delete ns %s"
,
err
)
}
expectNoError
(
writePerfData
(
c
,
fmt
.
Sprintf
(
testContext
.
OutputDir
+
"/%s"
,
uuid
),
"after"
))
// Verify latency metrics
highLatencyRequests
,
err
:=
HighLatencyRequests
(
c
)
expectNoError
(
err
)
Expect
(
highLatencyRequests
)
.
NotTo
(
BeNumerically
(
">"
,
0
),
"There should be no high-latency requests"
)
})
// Skipped to avoid running in e2e
// Skipped to avoid running in e2e
It
(
"[Skipped] pod start latency should be acceptable"
,
func
()
{
It
(
"[Skipped] pod start latency should be acceptable"
,
func
()
{
runLatencyTest
(
nodeCount
,
c
,
ns
)
runLatencyTest
(
nodeCount
,
c
,
ns
)
...
...
test/e2e/load.go
View file @
42d236fe
...
@@ -52,22 +52,10 @@ var _ = Describe("Load capacity", func() {
...
@@ -52,22 +52,10 @@ var _ = Describe("Load capacity", func() {
var
nodeCount
int
var
nodeCount
int
var
ns
string
var
ns
string
var
configs
[]
*
RCConfig
var
configs
[]
*
RCConfig
framework
:=
Framework
{
BaseName
:
"load"
,
NamespaceDeletionTimeout
:
time
.
Hour
}
// Gathers metrics before teardown
// TODO add flag that allows to skip cleanup on failure
AfterEach
(
func
()
{
deleteAllRC
(
configs
)
// Verify latency metrics
highLatencyRequests
,
err
:=
HighLatencyRequests
(
c
)
expectNoError
(
err
,
"Too many instances metrics above the threshold"
)
Expect
(
highLatencyRequests
)
.
NotTo
(
BeNumerically
(
">"
,
0
))
})
framework
:=
NewFramework
(
"load"
)
framework
.
NamespaceDeletionTimeout
=
time
.
Hour
BeforeEach
(
func
()
{
BeforeEach
(
func
()
{
framework
.
beforeEach
()
c
=
framework
.
Client
c
=
framework
.
Client
ns
=
framework
.
Namespace
.
Name
ns
=
framework
.
Namespace
.
Name
nodes
,
err
:=
c
.
Nodes
()
.
List
(
labels
.
Everything
(),
fields
.
Everything
())
nodes
,
err
:=
c
.
Nodes
()
.
List
(
labels
.
Everything
(),
fields
.
Everything
())
...
@@ -84,6 +72,20 @@ var _ = Describe("Load capacity", func() {
...
@@ -84,6 +72,20 @@ var _ = Describe("Load capacity", func() {
expectNoError
(
resetMetrics
(
c
))
expectNoError
(
resetMetrics
(
c
))
})
})
// TODO add flag that allows to skip cleanup on failure
AfterEach
(
func
()
{
// We can't call it explicitly at the end, because it will not be called
// if Expect() fails.
defer
framework
.
afterEach
()
deleteAllRC
(
configs
)
// Verify latency metrics
highLatencyRequests
,
err
:=
HighLatencyRequests
(
c
)
expectNoError
(
err
,
"Too many instances metrics above the threshold"
)
Expect
(
highLatencyRequests
)
.
NotTo
(
BeNumerically
(
">"
,
0
))
})
type
Load
struct
{
type
Load
struct
{
podsPerNode
int
podsPerNode
int
image
string
image
string
...
...
test/e2e/resize_nodes.go
View file @
42d236fe
...
@@ -384,15 +384,18 @@ func performTemporaryNetworkFailure(c *client.Client, ns, rcName string, replica
...
@@ -384,15 +384,18 @@ func performTemporaryNetworkFailure(c *client.Client, ns, rcName string, replica
}
}
var
_
=
Describe
(
"Nodes"
,
func
()
{
var
_
=
Describe
(
"Nodes"
,
func
()
{
framework
:=
NewFramework
(
"resize-nodes"
)
framework
:=
Framework
{
BaseName
:
"resize-nodes"
}
var
c
*
client
.
Client
var
c
*
client
.
Client
var
ns
string
var
ns
string
BeforeEach
(
func
()
{
BeforeEach
(
func
()
{
framework
.
beforeEach
()
c
=
framework
.
Client
c
=
framework
.
Client
ns
=
framework
.
Namespace
.
Name
ns
=
framework
.
Namespace
.
Name
})
})
AfterEach
(
framework
.
afterEach
)
Describe
(
"Resize"
,
func
()
{
Describe
(
"Resize"
,
func
()
{
var
skipped
bool
var
skipped
bool
...
...
test/e2e/scheduler_predicates.go
View file @
42d236fe
...
@@ -175,13 +175,24 @@ func waitForStableCluster(c *client.Client) int {
...
@@ -175,13 +175,24 @@ func waitForStableCluster(c *client.Client) int {
}
}
var
_
=
Describe
(
"SchedulerPredicates"
,
func
()
{
var
_
=
Describe
(
"SchedulerPredicates"
,
func
()
{
framework
:=
Framework
{
BaseName
:
"sched-pred"
}
var
c
*
client
.
Client
var
c
*
client
.
Client
var
nodeList
*
api
.
NodeList
var
nodeList
*
api
.
NodeList
var
totalPodCapacity
int64
var
totalPodCapacity
int64
var
RCName
string
var
RCName
string
var
ns
string
var
ns
string
BeforeEach
(
func
()
{
framework
.
beforeEach
()
c
=
framework
.
Client
ns
=
framework
.
Namespace
.
Name
var
err
error
nodeList
,
err
=
c
.
Nodes
()
.
List
(
labels
.
Everything
(),
fields
.
Everything
())
expectNoError
(
err
)
})
AfterEach
(
func
()
{
AfterEach
(
func
()
{
defer
framework
.
afterEach
()
rc
,
err
:=
c
.
ReplicationControllers
(
ns
)
.
Get
(
RCName
)
rc
,
err
:=
c
.
ReplicationControllers
(
ns
)
.
Get
(
RCName
)
if
err
==
nil
&&
rc
.
Spec
.
Replicas
!=
0
{
if
err
==
nil
&&
rc
.
Spec
.
Replicas
!=
0
{
By
(
"Cleaning up the replication controller"
)
By
(
"Cleaning up the replication controller"
)
...
@@ -190,16 +201,6 @@ var _ = Describe("SchedulerPredicates", func() {
...
@@ -190,16 +201,6 @@ var _ = Describe("SchedulerPredicates", func() {
}
}
})
})
framework
:=
NewFramework
(
"sched-pred"
)
BeforeEach
(
func
()
{
c
=
framework
.
Client
ns
=
framework
.
Namespace
.
Name
var
err
error
nodeList
,
err
=
c
.
Nodes
()
.
List
(
labels
.
Everything
(),
fields
.
Everything
())
expectNoError
(
err
)
})
// This test verifies that max-pods flag works as advertised. It assumes that cluster add-on pods stay stable
// This test verifies that max-pods flag works as advertised. It assumes that cluster add-on pods stay stable
// and cannot be run in parallel with any other test that touches Nodes or Pods. It is so because to check
// and cannot be run in parallel with any other test that touches Nodes or Pods. It is so because to check
// if max-pods is working we need to fully saturate the cluster and keep it in this state for few seconds.
// if max-pods is working we need to fully saturate the cluster and keep it in this state for few seconds.
...
...
test/e2e/serviceloadbalancers.go
View file @
42d236fe
...
@@ -210,14 +210,19 @@ var _ = Describe("ServiceLoadBalancer", func() {
...
@@ -210,14 +210,19 @@ var _ = Describe("ServiceLoadBalancer", func() {
var
repoRoot
string
var
repoRoot
string
var
client
*
client
.
Client
var
client
*
client
.
Client
framework
:=
NewFramework
(
"servicelb"
)
framework
:=
Framework
{
BaseName
:
"servicelb"
}
BeforeEach
(
func
()
{
BeforeEach
(
func
()
{
framework
.
beforeEach
()
client
=
framework
.
Client
client
=
framework
.
Client
ns
=
framework
.
Namespace
.
Name
ns
=
framework
.
Namespace
.
Name
repoRoot
=
testContext
.
RepoRoot
repoRoot
=
testContext
.
RepoRoot
})
})
AfterEach
(
func
()
{
framework
.
afterEach
()
})
It
(
"should support simple GET on Ingress ips"
,
func
()
{
It
(
"should support simple GET on Ingress ips"
,
func
()
{
for
_
,
t
:=
range
getLoadBalancerControllers
(
repoRoot
,
client
)
{
for
_
,
t
:=
range
getLoadBalancerControllers
(
repoRoot
,
client
)
{
By
(
fmt
.
Sprintf
(
"Starting loadbalancer controller %v in namespace %v"
,
t
.
getName
(),
ns
))
By
(
fmt
.
Sprintf
(
"Starting loadbalancer controller %v in namespace %v"
,
t
.
getName
(),
ns
))
...
...
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