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
ffdd3b58
Commit
ffdd3b58
authored
Feb 24, 2018
by
Tomas Nozicka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tests for Deployments Recreate strategy when there are pods in terminal state present
parent
952e6c64
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
116 additions
and
14 deletions
+116
-14
recreate_test.go
pkg/controller/deployment/recreate_test.go
+116
-14
No files found.
pkg/controller/deployment/recreate_test.go
View file @
ffdd3b58
...
@@ -90,33 +90,135 @@ func TestOldPodsRunning(t *testing.T) {
...
@@ -90,33 +90,135 @@ func TestOldPodsRunning(t *testing.T) {
oldRSs
[]
*
extensions
.
ReplicaSet
oldRSs
[]
*
extensions
.
ReplicaSet
podMap
map
[
types
.
UID
]
*
v1
.
PodList
podMap
map
[
types
.
UID
]
*
v1
.
PodList
expected
bool
hasOldPodsRunning
bool
}{
}{
{
{
name
:
"no old RSs"
,
name
:
"no old RSs"
,
expected
:
false
,
hasOldPodsRunning
:
false
,
},
},
{
{
name
:
"old RSs with running pods"
,
name
:
"old RSs with running pods"
,
oldRSs
:
[]
*
extensions
.
ReplicaSet
{
rsWithUID
(
"some-uid"
),
rsWithUID
(
"other-uid"
)},
oldRSs
:
[]
*
extensions
.
ReplicaSet
{
rsWithUID
(
"some-uid"
),
rsWithUID
(
"other-uid"
)},
podMap
:
podMapWithUIDs
([]
string
{
"some-uid"
,
"other-uid"
}),
podMap
:
podMapWithUIDs
([]
string
{
"some-uid"
,
"other-uid"
}),
expected
:
true
,
hasOldPodsRunning
:
true
,
},
},
{
{
name
:
"old RSs without pods but with non-zero status replicas"
,
name
:
"old RSs without pods but with non-zero status replicas"
,
oldRSs
:
[]
*
extensions
.
ReplicaSet
{
newRSWithStatus
(
"rs-blabla
"
,
0
,
1
,
nil
)},
oldRSs
:
[]
*
extensions
.
ReplicaSet
{
newRSWithStatus
(
"rs-1
"
,
0
,
1
,
nil
)},
expected
:
true
,
hasOldPodsRunning
:
true
,
},
},
{
{
name
:
"old RSs without pods or non-zero status replicas"
,
name
:
"old RSs without pods or non-zero status replicas"
,
oldRSs
:
[]
*
extensions
.
ReplicaSet
{
newRSWithStatus
(
"rs-blabla"
,
0
,
0
,
nil
)},
oldRSs
:
[]
*
extensions
.
ReplicaSet
{
newRSWithStatus
(
"rs-1"
,
0
,
0
,
nil
)},
expected
:
false
,
hasOldPodsRunning
:
false
,
},
{
name
:
"old RSs with zero status replicas but pods in terminal state are present"
,
oldRSs
:
[]
*
extensions
.
ReplicaSet
{
newRSWithStatus
(
"rs-1"
,
0
,
0
,
nil
)},
podMap
:
map
[
types
.
UID
]
*
v1
.
PodList
{
"uid-1"
:
{
Items
:
[]
v1
.
Pod
{
{
Status
:
v1
.
PodStatus
{
Phase
:
v1
.
PodFailed
,
},
},
{
Status
:
v1
.
PodStatus
{
Phase
:
v1
.
PodSucceeded
,
},
},
},
},
},
hasOldPodsRunning
:
false
,
},
{
name
:
"old RSs with zero status replicas but pod in unknown phase present"
,
oldRSs
:
[]
*
extensions
.
ReplicaSet
{
newRSWithStatus
(
"rs-1"
,
0
,
0
,
nil
)},
podMap
:
map
[
types
.
UID
]
*
v1
.
PodList
{
"uid-1"
:
{
Items
:
[]
v1
.
Pod
{
{
Status
:
v1
.
PodStatus
{
Phase
:
v1
.
PodUnknown
,
},
},
},
},
},
hasOldPodsRunning
:
true
,
},
{
name
:
"old RSs with zero status replicas with pending pod present"
,
oldRSs
:
[]
*
extensions
.
ReplicaSet
{
newRSWithStatus
(
"rs-1"
,
0
,
0
,
nil
)},
podMap
:
map
[
types
.
UID
]
*
v1
.
PodList
{
"uid-1"
:
{
Items
:
[]
v1
.
Pod
{
{
Status
:
v1
.
PodStatus
{
Phase
:
v1
.
PodPending
,
},
},
},
},
},
hasOldPodsRunning
:
true
,
},
{
name
:
"old RSs with zero status replicas with running pod present"
,
oldRSs
:
[]
*
extensions
.
ReplicaSet
{
newRSWithStatus
(
"rs-1"
,
0
,
0
,
nil
)},
podMap
:
map
[
types
.
UID
]
*
v1
.
PodList
{
"uid-1"
:
{
Items
:
[]
v1
.
Pod
{
{
Status
:
v1
.
PodStatus
{
Phase
:
v1
.
PodRunning
,
},
},
},
},
},
hasOldPodsRunning
:
true
,
},
{
name
:
"old RSs with zero status replicas but pods in terminal state and pending are present"
,
oldRSs
:
[]
*
extensions
.
ReplicaSet
{
newRSWithStatus
(
"rs-1"
,
0
,
0
,
nil
)},
podMap
:
map
[
types
.
UID
]
*
v1
.
PodList
{
"uid-1"
:
{
Items
:
[]
v1
.
Pod
{
{
Status
:
v1
.
PodStatus
{
Phase
:
v1
.
PodFailed
,
},
},
{
Status
:
v1
.
PodStatus
{
Phase
:
v1
.
PodSucceeded
,
},
},
},
},
"uid-2"
:
{
Items
:
[]
v1
.
Pod
{},
},
"uid-3"
:
{
Items
:
[]
v1
.
Pod
{
{
Status
:
v1
.
PodStatus
{
Phase
:
v1
.
PodPending
,
},
},
},
},
},
hasOldPodsRunning
:
true
,
},
},
}
}
for
_
,
test
:=
range
tests
{
for
_
,
test
:=
range
tests
{
t
.
Run
(
test
.
name
,
func
(
t
*
testing
.
T
)
{
t
.
Run
(
test
.
name
,
func
(
t
*
testing
.
T
)
{
if
expected
,
got
:=
test
.
expected
,
oldPodsRunning
(
test
.
newRS
,
test
.
oldRSs
,
test
.
podMap
);
expected
!=
got
{
if
expected
,
got
:=
test
.
hasOldPodsRunning
,
oldPodsRunning
(
test
.
newRS
,
test
.
oldRSs
,
test
.
podMap
);
expected
!=
got
{
t
.
Errorf
(
"%s: expected %t, got %t"
,
test
.
name
,
expected
,
got
)
t
.
Errorf
(
"%s: expected %t, got %t"
,
test
.
name
,
expected
,
got
)
}
}
})
})
...
...
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