[CRIU] [PATCH v2 3/3] test: adapt RPC configuration file test

Adrian Reber adrian at lisas.de
Wed Dec 12 08:18:26 MSK 2018


From: Adrian Reber <areber at redhat.com>

The RPC configuration file test expects CRIU to error out if an unknown
option is found in the configuration file. As the previous commit of
this series changes unknown options in the configuration file (via RPC)
from an error to a warning, the corresponding test is now also changed
to not expect an error from CRIU but it is now looking for a warning in
the log file.

Signed-off-by: Adrian Reber <areber at redhat.com>
---
 test/others/rpc/config_file.py | 20 ++++++--------------
 1 file changed, 6 insertions(+), 14 deletions(-)

diff --git a/test/others/rpc/config_file.py b/test/others/rpc/config_file.py
index b74cc04..fe147b5 100755
--- a/test/others/rpc/config_file.py
+++ b/test/others/rpc/config_file.py
@@ -68,24 +68,16 @@ def do_rpc(s, req):
 
 def test_broken_configuration_file():
 	# Testing RPC configuration file mode with a broken configuration file.
-	# This should fail
+	# This should not fail but print a warning
 	content = 'hopefully-this-option-will-never=exist'
 	path = setup_config_file(content)
-	swrk, s = setup_swrk()
+	req = setup_criu_dump_request()
+	_, s = setup_swrk()
+	resp = do_rpc(s, req)
 	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)
+	check_results(resp, log_file)
+	search_in_log_file(log_file, 'Unknown option encountered')
 
 
 def search_in_log_file(log, message):
-- 
1.8.3.1



More information about the CRIU mailing list