home · contact · privacy
Server/py: Add server_test() remake.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 22 Feb 2015 12:03:17 +0000 (13:03 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 22 Feb 2015 12:03:17 +0000 (13:03 +0100)
plomrogue-server.py

index 671edd0e96fee8522f778d0c480d0d24d58f0ce5..df0c211bdd2458ffad559f636404abd4f90285ae 100755 (executable)
@@ -28,6 +28,7 @@ def setup_server_io(io_db):
     os.makedirs(io_dir, exist_ok=True)
     io_db["file_out"] = open(io_db["path_out"], "w")
     io_db["file_out"].write(io_db["teststring"] + "\n")
+    io_db["file_out"].flush()
     if os.access(io_db["path_in"], os.F_OK):
         os.remove(io_db["path_in"])
     io_db["file_in"] = open(io_db["path_in"], "w")
@@ -129,6 +130,20 @@ def parse_command_line_arguments():
     return opts
 
 
+def server_test(io_db):
+    """Check for valid server out file belonging to current process."""
+    if not os.access(io_db["path_out"], os.F_OK):
+        raise SystemExit("Server output file has disappeared.")
+    file = open(io_db["path_out"], "r")
+    test = file.readline().rstrip("\n")
+    file.close()
+    print(str(test) + " == " + io_db["teststring"] + " ?")
+    if test != io_db["teststring"]:
+        msg = "Server test string in server output file does not match. This" \
+              " indicates that the current server process has been " \
+              "superseded by another one."
+        raise SystemExit(msg)
+
 io_db = {}
 world_db = {}
 try: