Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.toolbox
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Boxiang Sun
slapos.toolbox
Commits
e275df64
Commit
e275df64
authored
Nov 25, 2014
by
Cédric de Saint Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
KVM resiliency test: use test framework.
Allows to not have to backport all changes to KVM test suite.
parent
f5454071
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
63 additions
and
164 deletions
+63
-164
slapos/resiliencytest/suites/kvm.py
slapos/resiliencytest/suites/kvm.py
+63
-164
No files found.
slapos/resiliencytest/suites/kvm.py
View file @
e275df64
...
@@ -26,58 +26,16 @@
...
@@ -26,58 +26,16 @@
#
#
##############################################################################
##############################################################################
# XXX: This module should use the resiliencytestsuite helper module to factor all code,
from
.resiliencytestsuite
import
ResiliencyTestSuite
# like slaprunner test suite does.
# XXX: takeover module should be in slapos.toolbox, not in slapos.cookbook
from
slapos.recipe.addresiliency.takeover
import
takeover
import
slapos.slap
import
logging
import
logging
import
os
import
random
import
random
import
string
import
string
import
subprocess
import
sys
import
time
import
time
import
traceback
import
urllib
import
urllib
logger
=
logging
.
getLogger
(
'KVMResiliencyTest'
)
logger
=
logging
.
getLogger
(
'KVMResiliencyTest'
)
# Wait for 2 hours before renaming, so that replication of data is done
# (~1GB of data to backup)
SLEEP_TIME
=
2
*
60
*
60
# In case of unittest testnode (not scalability testnode), everything is local
UNIT_TEST_SLEEP_TYPE
=
900
def
fetchMainInstanceIP
(
current_partition
,
software_release
,
instance_name
):
return
current_partition
.
request
(
software_release
=
software_release
,
software_type
=
'kvm-resilient'
,
partition_reference
=
instance_name
).
getConnectionParameter
(
'ipv6'
)
def
setRandomKey
(
ip
):
"""
Set a random key that will be stored inside of the virtual hard drive.
"""
random_key
=
''
.
join
(
random
.
SystemRandom
().
sample
(
string
.
ascii_lowercase
,
20
))
for
i
in
range
(
0
,
60
):
connection
=
urllib
.
urlopen
(
'http://%s:10080/set?key=%s'
%
(
ip
,
random_key
))
if
connection
.
getcode
()
is
200
:
break
else
:
logger
.
info
(
'Impossible to connect to virtual machine to set key. sleeping...'
)
time
.
sleep
(
60
)
if
i
is
59
:
raise
Exception
(
'Bad return code when setting key in main instance, after trying for 60 minutes.'
)
return
random_key
def
fetchKey
(
ip
):
def
fetchKey
(
ip
):
"""
"""
Fetch the key that had been set on original virtual hard drive.
Fetch the key that had been set on original virtual hard drive.
...
@@ -98,13 +56,7 @@ def fetchKey(ip):
...
@@ -98,13 +56,7 @@ def fetchKey(ip):
return
new_key
return
new_key
class
KVMTestSuite
(
ResiliencyTestSuite
):
def
runTestSuite
(
server_url
,
key_file
,
cert_file
,
computer_id
,
partition_id
,
software
,
namebase
,
kvm_rootinstance_name
,
# Number of instances: main instance (exporter) + clones (importer).
total_instance_count
=
"2"
,
type
=
None
):
"""
"""
Run KVM Resiliency Test.
Run KVM Resiliency Test.
Requires a specific KVM environment (virtual hard drive), see KVM SR for more
Requires a specific KVM environment (virtual hard drive), see KVM SR for more
...
@@ -171,112 +123,59 @@ def runTestSuite(server_url, key_file, cert_file,
...
@@ -171,112 +123,59 @@ def runTestSuite(server_url, key_file, cert_file,
update-rc.d io defaults
update-rc.d io defaults
"""
"""
if
type
==
'UnitTest'
:
global
SLEEP_TIME
SLEEP_TIME
=
UNIT_TEST_SLEEP_TYPE
slap
=
slapos
.
slap
.
slap
()
slap
.
initializeConnection
(
server_url
,
key_file
,
cert_file
)
partition
=
slap
.
registerComputerPartition
(
computer_guid
=
computer_id
,
partition_id
=
partition_id
)
ip
=
fetchMainInstanceIP
(
partition
,
software
,
kvm_rootinstance_name
)
def
_getPartitionParameterDict
(
self
):
logger
.
info
(
'KVM IP is %s.'
%
ip
)
"""
Overload default method.
"""
return
self
.
partition
.
request
(
software_release
=
self
.
software
,
software_type
=
'kvm-resilient'
,
partition_reference
=
self
.
root_instance_name
).
getConnectionParameterDict
()
# In resilient stack, main instance (example with KVM) is named "kvm0",
def
generateData
(
self
):
# clones are named "kvm1", "kvm2", ...
"""
clone_count
=
int
(
total_instance_count
)
-
1
Set a random key that will be stored inside of the virtual hard drive.
"""
self
.
key
=
''
.
join
(
random
.
SystemRandom
().
sample
(
string
.
ascii_lowercase
,
20
))
self
.
logger
.
info
(
'Generated key is: %s'
%
self
.
key
)
# In case we have only one clone: test the takeover twice
def
pushDataOnMainInstance
(
self
):
# so that we test the reconstruction of a new clone.
self
.
logger
.
info
(
'Getting the KVM IP...'
)
if
clone_count
==
1
:
self
.
ip
=
self
.
_getPartitionParameterDict
()[
'ipv6'
]
for
i
in
range
(
2
):
logger
.
info
(
'KVM IP is %s.'
%
self
.
ip
)
ip
=
testClone
(
1
,
ip
,
server_url
,
key_file
,
cert_file
,
computer_id
,
partition_id
,
software
,
namebase
,
partition
,
kvm_rootinstance_name
,
type
)
# In case we have more than one clone: test each clone one time.
for
i
in
range
(
0
,
60
):
connection
=
urllib
.
urlopen
(
'http://%s:10080/set?key=%s'
%
(
self
.
ip
,
self
.
key
))
if
connection
.
getcode
()
is
200
:
break
else
:
else
:
# So first clone starts from 1.
logger
.
info
(
'Impossible to connect to virtual machine to set key. sleeping...'
)
current_clone
=
1
time
.
sleep
(
60
)
while
current_clone
<=
clone_count
:
if
i
is
59
:
ip
=
testClone
(
current_clone
,
ip
,
raise
Exception
(
'Bad return code when setting key in main instance, after trying for 60 minutes.'
)
server_url
,
key_file
,
cert_file
,
computer_id
,
partition_id
,
software
,
namebase
,
partition
,
kvm_rootinstance_name
,
type
)
current_clone
=
current_clone
+
1
# All clones have been successfully tested: success.
return
True
def
testClone
(
current_clone
,
ip
,
server_url
,
key_file
,
cert_file
,
computer_id
,
partition_id
,
software
,
namebase
,
partition
,
kvm_rootinstance_name
,
test_type
):
logger
.
info
(
'Testing kvm%s.'
%
current_clone
)
key
=
setRandomKey
(
ip
)
logger
.
info
(
'Key set for test in current KVM: %s.'
%
key
)
logger
.
info
(
'Sleeping for %s seconds.'
%
SLEEP_TIME
)
logger
.
info
(
'Key uploaded to KVM main instance.'
)
time
.
sleep
(
SLEEP_TIME
)
# Make the clone instance takeover the main instance
def
checkDataOnCloneInstance
(
self
):
logger
.
info
(
'Replacing main instance by clone instance...'
)
self
.
ip
=
self
.
_returnNewInstanceParameter
(
for
i
in
range
(
0
,
10
):
parameter_key
=
'ipv6'
,
try
:
old_parameter_value
=
self
.
ip
takeover
(
server_url
=
server_url
,
key_file
=
key_file
,
cert_file
=
cert_file
,
computer_guid
=
computer_id
,
partition_id
=
partition_id
,
software_release
=
software
,
namebase
=
namebase
,
winner_instance_suffix
=
str
(
current_clone
),
)
break
except
:
# SSLError
traceback
.
print_exc
()
if
i
is
9
:
raise
logger
.
warning
(
'takeover failed. Retrying...'
)
time
.
sleep
(
10
)
logger
.
info
(
'Done.'
)
if
test_type
==
'UnitTest'
:
# Run by classical erp5testnode using slapproxy
# Run slapos node instance
# XXX hardcoded
slapos_configuration_file_path
=
os
.
path
.
join
(
os
.
path
.
dirname
(
sys
.
argv
[
0
]),
'..'
,
'..'
,
'..'
,
'slapos.cfg'
)
)
print
slapos_configuration_file_path
command
=
[
'/opt/slapos/bin/slapos'
,
'node'
,
'instance'
,
'--cfg=%s'
%
slapos_configuration_file_path
,
'--pidfile=slapos.pid'
]
subprocess
.
Popen
(
command
).
wait
()
subprocess
.
Popen
(
command
).
wait
()
subprocess
.
Popen
(
command
).
wait
()
new_ip
=
ip
else
:
# ScalabilityTest
# Wait for the new IP (of old-clone new-main instance) to appear.
logger
.
info
(
'Waiting for new main instance to be ready...'
)
new_ip
=
None
while
not
new_ip
or
new_ip
==
'None'
or
new_ip
==
ip
:
logger
.
info
(
'Not ready yet. SlapOS says main IP is %s'
%
new_ip
)
time
.
sleep
(
60
)
new_ip
=
fetchMainInstanceIP
(
partition
,
software
,
kvm_rootinstance_name
)
logger
.
info
(
'New IP of instance is %s'
%
new_ip
)
new_key
=
fetchKey
(
new_
ip
)
new_key
=
fetchKey
(
self
.
ip
)
logger
.
info
(
'Key on this new instance is %s'
%
new_key
)
logger
.
info
(
'Key on this new instance is %s'
%
new_key
)
# Compare with original key. If same: success.
# Compare with original key. If same: success.
if
new_key
==
key
:
if
new_key
==
self
.
key
:
logger
.
info
(
'Success for clone %s.'
%
current_clone
)
self
.
logger
.
info
(
'Data are the same: success.'
)
return
True
else
:
else
:
logger
.
info
(
'Failure for clone %s. Aborting.'
%
current_clone
)
self
.
logger
.
info
(
'Data are different: failure.'
)
return
False
# Setup "new old ip" for next clone, so that it will test it is different
def
runTestSuite
(
*
args
,
**
kwargs
):
# from current clone
"""
return
new_ip
Run KVM Resiliency Test.
"""
return
KVMTestSuite
(
*
args
,
**
kwargs
).
runTestSuite
()
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