mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-17 16:47:50 +00:00
This commit removes the checks for the Python 2 binary in the makefile and makes sure that ZDTM tests always use python3. Since support for Python 2 has been dropped, these checks are no longer needed. Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
190 lines
5.6 KiB
Python
Executable file
190 lines
5.6 KiB
Python
Executable file
#!/usr/bin/python3
|
|
|
|
import argparse
|
|
import os
|
|
import sys
|
|
import time
|
|
from tempfile import mkstemp
|
|
|
|
import rpc_pb2 as rpc
|
|
|
|
from setup_swrk import setup_swrk
|
|
|
|
log_file = 'config_file_test.log'
|
|
does_not_exist = 'does-not.exist'
|
|
|
|
|
|
def setup_config_file(content):
|
|
# Creating a temporary file which will be used as configuration file.
|
|
fd, path = mkstemp()
|
|
|
|
with os.fdopen(fd, 'w') as f:
|
|
f.write(content)
|
|
|
|
os.environ['CRIU_CONFIG_FILE'] = path
|
|
|
|
return path
|
|
|
|
|
|
def cleanup_config_file(path):
|
|
if os.environ.get('CRIU_CONFIG_FILE', None) is not None:
|
|
del os.environ['CRIU_CONFIG_FILE']
|
|
os.unlink(path)
|
|
|
|
|
|
def cleanup_output(path):
|
|
for f in (does_not_exist, log_file):
|
|
f = os.path.join(path, f)
|
|
if os.access(f, os.F_OK):
|
|
os.unlink(f)
|
|
|
|
|
|
def setup_criu_dump_request():
|
|
# Create criu msg, set it's type to dump request
|
|
# and set dump options. Checkout more options in protobuf/rpc.proto
|
|
req = rpc.criu_req()
|
|
req.type = rpc.DUMP
|
|
req.opts.leave_running = True
|
|
req.opts.log_level = 4
|
|
req.opts.log_file = log_file
|
|
req.opts.images_dir_fd = os.open(args['dir'], os.O_DIRECTORY)
|
|
# Not necessary, just for testing
|
|
req.opts.tcp_established = True
|
|
req.opts.shell_job = True
|
|
return req
|
|
|
|
|
|
def do_rpc(s, req):
|
|
# Send request
|
|
s.send(req.SerializeToString())
|
|
|
|
# Recv response
|
|
resp = rpc.criu_resp()
|
|
MAX_MSG_SIZE = 1024
|
|
resp.ParseFromString(s.recv(MAX_MSG_SIZE))
|
|
|
|
s.close()
|
|
return resp
|
|
|
|
|
|
def test_broken_configuration_file():
|
|
# Testing RPC configuration file mode with a broken configuration file.
|
|
# This should fail
|
|
content = 'hopefully-this-option-will-never=exist'
|
|
path = setup_config_file(content)
|
|
swrk, s = setup_swrk()
|
|
s.close()
|
|
# This test is only about detecting wrong configuration files.
|
|
# If we do not sleep it might happen that we kill CRIU before
|
|
# it parses the configuration file. A short sleep makes sure
|
|
# that the configuration file has been parsed. Hopefully.
|
|
# (I am sure this will fail horribly at some point)
|
|
time.sleep(0.3)
|
|
swrk.kill()
|
|
return_code = swrk.wait()
|
|
# delete temporary file again
|
|
cleanup_config_file(path)
|
|
if return_code != 1:
|
|
print('FAIL: CRIU should have returned 1 instead of %d' % return_code)
|
|
sys.exit(-1)
|
|
|
|
|
|
def search_in_log_file(log, message):
|
|
with open(os.path.join(args['dir'], log)) as f:
|
|
if message not in f.read():
|
|
print(
|
|
'FAIL: Missing the expected error message (%s) in the log file'
|
|
% message)
|
|
sys.exit(-1)
|
|
|
|
|
|
def check_results(resp, log):
|
|
# Check if the specified log file exists
|
|
if not os.path.isfile(os.path.join(args['dir'], log)):
|
|
print('FAIL: Expected log file %s does not exist' % log)
|
|
sys.exit(-1)
|
|
# Dump should have failed with: 'The criu itself is within dumped tree'
|
|
if resp.type != rpc.DUMP:
|
|
print('FAIL: Unexpected msg type %r' % resp.type)
|
|
sys.exit(-1)
|
|
if 'The criu itself is within dumped tree' not in resp.cr_errmsg:
|
|
print('FAIL: Missing the expected error message in RPC response')
|
|
sys.exit(-1)
|
|
# Look into the log file for the same message
|
|
search_in_log_file(log, 'The criu itself is within dumped tree')
|
|
|
|
|
|
def test_rpc_without_configuration_file():
|
|
# Testing without configuration file
|
|
# Just doing a dump and checking for the logfile
|
|
req = setup_criu_dump_request()
|
|
_, s = setup_swrk()
|
|
resp = do_rpc(s, req)
|
|
s.close()
|
|
check_results(resp, log_file)
|
|
|
|
|
|
def test_rpc_with_configuration_file():
|
|
# Testing with configuration file
|
|
# Just doing a dump and checking for the logfile
|
|
|
|
# Setting a different log file via configuration file
|
|
# This should not work as RPC settings overwrite configuration
|
|
# file settings in the default configuration.
|
|
log = does_not_exist
|
|
content = 'log-file ' + log + '\n'
|
|
content += 'no-tcp-established\nno-shell-job'
|
|
path = setup_config_file(content)
|
|
req = setup_criu_dump_request()
|
|
_, s = setup_swrk()
|
|
do_rpc(s, req)
|
|
s.close()
|
|
cleanup_config_file(path)
|
|
# Check if the specified log file exists
|
|
# It should not as configuration files do not overwrite RPC values.
|
|
if os.path.isfile(os.path.join(args['dir'], log)):
|
|
print('FAIL: log file %s should not exist' % log)
|
|
sys.exit(-1)
|
|
|
|
|
|
def test_rpc_with_configuration_file_overwriting_rpc():
|
|
# Testing with configuration file
|
|
# Just doing a dump and checking for the logfile
|
|
|
|
# Setting a different log file via configuration file
|
|
# This should not work as RPC settings overwrite configuration
|
|
# file settings in the default configuration.
|
|
log = does_not_exist
|
|
content = 'log-file ' + log + '\n'
|
|
content += 'no-tcp-established\nno-shell-job'
|
|
path = setup_config_file(content)
|
|
# Only set the configuration file via RPC;
|
|
# not via environment variable
|
|
del os.environ['CRIU_CONFIG_FILE']
|
|
req = setup_criu_dump_request()
|
|
req.opts.config_file = path
|
|
_, s = setup_swrk()
|
|
resp = do_rpc(s, req)
|
|
s.close()
|
|
cleanup_config_file(path)
|
|
check_results(resp, log)
|
|
|
|
|
|
parser = argparse.ArgumentParser(
|
|
description="Test config files using CRIU RPC")
|
|
parser.add_argument('dir',
|
|
type=str,
|
|
help="Directory where CRIU images should be placed")
|
|
|
|
args = vars(parser.parse_args())
|
|
|
|
cleanup_output(args['dir'])
|
|
|
|
test_broken_configuration_file()
|
|
cleanup_output(args['dir'])
|
|
test_rpc_without_configuration_file()
|
|
cleanup_output(args['dir'])
|
|
test_rpc_with_configuration_file()
|
|
cleanup_output(args['dir'])
|
|
test_rpc_with_configuration_file_overwriting_rpc()
|
|
cleanup_output(args['dir'])
|