Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
snf-ganeti
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
itminedu
snf-ganeti
Commits
7910e7a5
Commit
7910e7a5
authored
16 years ago
by
Michael Hanselmann
Browse files
Options
Downloads
Patches
Plain Diff
Forward-port: Add QA test for “gnt-instance replace-disks”
Reviewed-by: iustinp
parent
a53a1b18
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
qa/ganeti-qa.py
+8
-0
8 additions, 0 deletions
qa/ganeti-qa.py
qa/qa-sample.yaml
+3
-0
3 additions, 0 deletions
qa/qa-sample.yaml
qa/qa_instance.py
+29
-0
29 additions, 0 deletions
qa/qa_instance.py
with
40 additions
and
0 deletions
qa/ganeti-qa.py
+
8
−
0
View file @
7910e7a5
...
...
@@ -207,6 +207,14 @@ def RunHardwareFailureTests(instance, pnode, snode):
if
qa_config
.
TestEnabled
(
'
instance-failover
'
):
RunTest
(
qa_instance
.
TestInstanceFailover
,
instance
)
if
qa_config
.
TestEnabled
(
'
instance-replace-disks
'
):
othernode
=
qa_config
.
AcquireNode
(
exclude
=
pnode
)
try
:
RunTest
(
qa_instance
.
TestReplaceDisks
,
instance
,
pnode
,
snode
,
othernode
)
finally
:
qa_config
.
ReleaseNode
(
othernode
)
if
qa_config
.
TestEnabled
(
'
node-evacuate
'
):
RunTest
(
qa_node
.
TestNodeEvacuate
,
pnode
,
snode
)
...
...
This diff is collapsed.
Click to expand it.
qa/qa-sample.yaml
+
3
−
0
View file @
7910e7a5
...
...
@@ -69,6 +69,9 @@ tests:
# they support the `gnt-instance console' command.
instance-console
:
False
# Disabled by default because it takes rather long
instance-replace-disks
:
False
# Make sure not to include the disk(s) required for Dom0 to be included in
# the volume group used for instances. Otherwise the whole system may stop
# working until restarted.
...
...
This diff is collapsed.
Click to expand it.
qa/qa_instance.py
+
29
−
0
View file @
7910e7a5
...
...
@@ -194,6 +194,35 @@ def TestInstanceConsole(instance):
utils
.
ShellQuoteArgs
(
cmd
)).
wait
(),
0
)
@qa_utils.DefineHook
(
'
instance-replace-disks
'
)
def
TestReplaceDisks
(
instance
,
pnode
,
snode
,
othernode
):
"""
gnt-instance replace-disks
"""
master
=
qa_config
.
GetMasterNode
()
def
buildcmd
(
args
):
cmd
=
[
'
gnt-instance
'
,
'
replace-disks
'
]
cmd
.
extend
(
args
)
cmd
.
append
(
instance
[
"
name
"
])
return
cmd
cmd
=
buildcmd
([
"
-p
"
])
AssertEqual
(
StartSSH
(
master
[
'
primary
'
],
utils
.
ShellQuoteArgs
(
cmd
)).
wait
(),
0
)
cmd
=
buildcmd
([
"
-s
"
])
AssertEqual
(
StartSSH
(
master
[
'
primary
'
],
utils
.
ShellQuoteArgs
(
cmd
)).
wait
(),
0
)
cmd
=
buildcmd
([
"
--new-secondary=%s
"
%
othernode
[
"
primary
"
]])
AssertEqual
(
StartSSH
(
master
[
'
primary
'
],
utils
.
ShellQuoteArgs
(
cmd
)).
wait
(),
0
)
# Restore
cmd
=
buildcmd
([
"
--new-secondary=%s
"
%
snode
[
"
primary
"
]])
AssertEqual
(
StartSSH
(
master
[
'
primary
'
],
utils
.
ShellQuoteArgs
(
cmd
)).
wait
(),
0
)
@qa_utils.DefineHook
(
'
backup-export
'
)
def
TestInstanceExport
(
instance
,
node
):
"""
gnt-backup export
"""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment