diff GenerateConfigurationForTests.py @ 3:2dbba2e6aa4b

reorganization
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 17 Jun 2015 10:03:49 +0200
parents
children c660a64ce2dd
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GenerateConfigurationForTests.py	Wed Jun 17 10:03:49 2015 +0200
@@ -0,0 +1,83 @@
+#!/usr/bin/python
+
+# Orthanc - A Lightweight, RESTful DICOM Store
+# Copyright (C) 2012-2015 Sebastien Jodogne, Medical Physics
+# Department, University Hospital of Liege, Belgium
+#
+# This program is free software: you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+# 
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
+import argparse
+import os
+import re
+import socket
+import subprocess
+import sys
+
+##
+## Parse the command-line arguments
+##
+
+parser = argparse.ArgumentParser(description = 'Generate the configuration file for the ' +
+                                 'instance of Orthanc to be checked against the integration tests.')
+
+parser.add_argument('--target', 
+                    default = 'IntegrationTestsConfiguration.json',
+                    help = 'Configuration file to generate')
+
+parser.add_argument('--force', 
+                    help = 'Overwrite the file even if it already exists',
+                    action = 'store_true')
+
+args = parser.parse_args()
+
+
+##
+## Check whether the file can be overwritten
+##
+
+if os.path.exists(args.target) and not args.force:
+    print("""
+WARNING: The file %s will be overwritten!
+
+Are you sure ["yes" to go on]?""" % args.target)
+
+    if sys.stdin.readline().strip() != 'yes':
+        print('Aborting...')
+        exit(0)
+
+
+## 
+## Generate the configuration file
+##
+
+
+# Retrieve the IP address of the localhost
+ip = socket.gethostbyname(socket.gethostname())
+
+subprocess.check_call([ 'Orthanc', '--config=%s' % args.target ])
+
+with open(args.target, 'r') as f:
+    config = f.read()
+
+config = re.sub(r'("DicomAet"\s*:)\s*".*?"', r'\1 "ORTHANC"', config)
+config = re.sub(r'("RemoteAccessAllowed"\s*:)\s*false', r'\1 true', config)
+config = re.sub(r'("AuthenticationEnabled"\s*:)\s*false', r'\1 true', config)
+config = re.sub(r'("RegisteredUsers"\s*:)\s*{', r'\1 { "alice" : "orthanctest"', config)
+config = re.sub(r'("DicomModalities"\s*:)\s*{', r'\1 { "orthanc" : [ "%s", "%s", %d ]' % 
+                ('ORTHANCTEST', ip, 5001), config)
+
+with open(args.target, 'wt') as f:
+    f.write(config)
+