annotate Plugins/Worklists/Run.py @ 100:2af6c0fb850d

shared copyright with osimis
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 04 Jan 2017 16:40:03 +0100
parents f2cbfaf1a9b0
children 7aee4cc64fca
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
1 #!/usr/bin/python
94
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
2 # -*- coding: utf-8 -*-
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
3
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
4
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
5 # Orthanc - A Lightweight, RESTful DICOM Store
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
6 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
7 # Department, University Hospital of Liege, Belgium
100
2af6c0fb850d shared copyright with osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 98
diff changeset
8 # Copyright (C) 2017 Osimis, Belgium
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
9 #
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
10 # This program is free software: you can redistribute it and/or
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
11 # modify it under the terms of the GNU General Public License as
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
12 # published by the Free Software Foundation, either version 3 of the
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
13 # License, or (at your option) any later version.
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
14 #
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
15 # This program is distributed in the hope that it will be useful, but
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
18 # General Public License for more details.
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
19 #
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
20 # You should have received a copy of the GNU General Public License
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
21 # along with this program. If not, see <http://www.gnu.org/licenses/>.
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
22
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
23
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
24 import argparse
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
25 import os
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
26 import pprint
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
27 import re
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
28 import subprocess
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
29 import sys
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
30 import tempfile
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
31 import unittest
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
32
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
33 sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'Tests'))
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
34 from Toolbox import *
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
35
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
36
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
37 ##
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
38 ## Parse the command-line arguments
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
39 ##
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
40
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
41 parser = argparse.ArgumentParser(description = 'Run the integration tests for the DICOM worklist plugin.')
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
42
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
43 parser.add_argument('--server',
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
44 default = 'localhost',
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
45 help = 'Address of the Orthanc server to test')
94
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
46 parser.add_argument('--rest',
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
47 type = int,
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
48 default = 8042,
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
49 help = 'Port to the REST API')
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
50 parser.add_argument('--username',
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
51 default = 'alice',
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
52 help = 'Username to the REST API')
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
53 parser.add_argument('--password',
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
54 default = 'orthanctest',
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
55 help = 'Password to the REST API')
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
56 parser.add_argument('--dicom',
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
57 type = int,
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
58 default = 4242,
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
59 help = 'DICOM port of the Orthanc instance to test')
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
60 parser.add_argument('options', metavar = 'N', nargs = '*',
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
61 help='Arguments to Python unittest')
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
62
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
63 args = parser.parse_args()
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
64
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
65
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
66
94
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
67 ORTHANC = DefineOrthanc(server = args.server,
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
68 username = args.username,
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
69 password = args.password,
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
70 restPort = args.rest)
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
71
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
72
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
73
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
74 ##
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
75 ## Toolbox
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
76 ##
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
77
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
78 DATABASE = os.path.abspath(os.path.normpath(os.path.join(os.path.dirname(__file__), '..', '..', 'Database', 'Worklists')))
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
79 WORKING = os.path.join(DATABASE, 'Working')
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
80
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
81 try:
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
82 os.mkdir(WORKING)
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
83 except Exception as e:
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
84 # The working folder has already been created
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
85 pass
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
86
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
87 def ClearDatabase():
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
88 for f in os.listdir(WORKING):
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
89 if f != 'lockfile':
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
90 os.remove(os.path.join(WORKING, f))
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
91
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
92 def AddToDatabase(source):
93
fff2b4a24b5f test of sequences in worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 91
diff changeset
93 subprocess.check_call([ 'dump2dcm', '--write-xfer-little',
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
94 os.path.join(DATABASE, source),
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
95 os.path.join(WORKING, os.path.basename(source) + '.wl') ])
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
96
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
97 def RunQuery(source, ignoreTags):
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
98 with tempfile.NamedTemporaryFile() as f:
93
fff2b4a24b5f test of sequences in worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 91
diff changeset
99 subprocess.check_call([ 'dump2dcm', '--write-xfer-little',
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
100 os.path.join(DATABASE, source), f.name ])
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
101
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
102 a = subprocess.check_output([ 'findscu', '-v', '--call', 'ORTHANC', '-aet', 'ORTHANCTEST',
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
103 args.server, str(args.dicom), f.name ],
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
104 stderr = subprocess.STDOUT).splitlines()
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
105
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
106 if len(filter(lambda x: x.startswith('E:'), a)) > 0:
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
107 raise Exception('Error while running findscu')
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
108
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
109 b = map(lambda x: x[3:], filter(lambda x: x.startswith('W: ---') or x.startswith('W: ('), a))
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
110 b = map(lambda x: re.sub(r'\s*#.*', '', x), b)
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
111
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
112 answers = []
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
113 current = []
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
114
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
115 for l in b:
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
116 if l[0] == '-':
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
117 # This is a separator between DICOM datasets
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
118 if len(current) > 0:
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
119 answers.append(current)
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
120 current = []
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
121
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
122 else:
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
123 tag = l[1:10].lower()
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
124 if not tag in ignoreTags:
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
125 current.append(l)
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
126
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
127 if len(current) > 0:
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
128 answers.append(current)
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
129
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
130 return answers
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
131
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
132 def CompareAnswers(expected, actual):
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
133 if len(expected) != len(actual):
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
134 return False
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
135
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
136 if len(expected) == 0:
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
137 return True
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
138
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
139 for i in range(len(expected)):
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
140 for j in range(len(actual)):
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
141 if expected[i] == actual[j]:
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
142 return True
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
143
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
144 return False
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
145
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
146
94
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
147 def ParseTopLevelTags(answer):
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
148 tags = {}
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
149 for line in answer:
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
150 m = re.match(r'^\(([0-9a-f]{4},[0-9a-f]{4})\)\s*..\s*\[([^]]*)\]', line)
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
151 tags[m.group(1)] = m.group(2).strip()
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
152
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
153 return tags
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
154
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
155
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
156 ##
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
157 ## The tests
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
158 ##
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
159
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
160 class Orthanc(unittest.TestCase):
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
161 def setUp(self):
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
162 if (sys.version_info >= (3, 0)):
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
163 # Remove annoying warnings about unclosed socket in Python 3
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
164 import warnings
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
165 warnings.simplefilter("ignore", ResourceWarning)
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
166
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
167 ClearDatabase()
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
168
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
169
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
170 def test_single(self):
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
171 for db in range(1, 11):
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
172 ClearDatabase()
91
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 90
diff changeset
173 AddToDatabase('Dcmtk/Database/wklist%d.dump' % db)
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
174
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
175 for query in range(0, 13):
91
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 90
diff changeset
176 answers = RunQuery('Dcmtk/Queries/wlistqry%d.dump' % query, [
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
177 '0008,0005',
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
178 '0040,0004',
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
179 '0040,0005',
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
180 '0040,0020',
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
181 ])
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
182
91
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 90
diff changeset
183 with open(os.path.join('%s/Dcmtk/Expected/single-%d-%d.json' % (DATABASE, db, query)), 'r') as f:
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
184 expected = json.loads(f.read())
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
185 self.assertTrue(CompareAnswers(expected, answers))
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
186
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
187
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
188 def test_all(self):
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
189 ClearDatabase()
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
190
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
191 for db in range(1, 11):
91
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 90
diff changeset
192 AddToDatabase('Dcmtk/Database/wklist%d.dump' % db)
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
193
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
194 for query in range(0, 13):
91
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 90
diff changeset
195 answers = RunQuery('Dcmtk/Queries/wlistqry%d.dump' % query, [
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
196 '0008,0005',
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
197 '0040,0004',
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
198 '0040,0005',
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
199 '0040,0020',
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
200 ])
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
201
91
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 90
diff changeset
202 with open(os.path.join('%s/Dcmtk/Expected/all-%d.json' % (DATABASE, query)), 'r') as f:
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
203 expected = json.loads(f.read())
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
204 self.assertTrue(CompareAnswers(expected, answers))
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
205
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
206
93
fff2b4a24b5f test of sequences in worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 91
diff changeset
207 def test_vet(self):
fff2b4a24b5f test of sequences in worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 91
diff changeset
208 AddToDatabase('Sequences/STATION_AET/orig.7705.dump')
fff2b4a24b5f test of sequences in worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 91
diff changeset
209 AddToDatabase('Sequences/STATION_AET/orig.7814.dump')
fff2b4a24b5f test of sequences in worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 91
diff changeset
210 AddToDatabase('Sequences/STATION_AET/orig.7814.without.seq.dump')
fff2b4a24b5f test of sequences in worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 91
diff changeset
211
fff2b4a24b5f test of sequences in worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 91
diff changeset
212 self.assertEqual(2, len(RunQuery('Sequences/Queries/7814.without.length.dump', [])))
fff2b4a24b5f test of sequences in worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 91
diff changeset
213 self.assertEqual(2, len(RunQuery('Sequences/Queries/7814.without.seq.dump', [])))
fff2b4a24b5f test of sequences in worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 91
diff changeset
214 self.assertEqual(2, len(RunQuery('Sequences/Queries/orig.7814.dump', [])))
97
c39520dacdd7 test_other_aet
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 95
diff changeset
215
c39520dacdd7 test_other_aet
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 95
diff changeset
216
98
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 97
diff changeset
217 @unittest.skip("This test requires to enable option 'FilterIssuerAet' in the sample worklist plugin")
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 97
diff changeset
218 def test_filter_issuer_aet(self):
97
c39520dacdd7 test_other_aet
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 95
diff changeset
219 AddToDatabase('Sequences/STATION_AET/orig.7814.dump')
98
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 97
diff changeset
220 AddToDatabase('Sequences/STATION_AET/orig.7814.other.station.dump')
97
c39520dacdd7 test_other_aet
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 95
diff changeset
221
98
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 97
diff changeset
222 self.assertEqual(1, len(RunQuery('Sequences/Queries/7814.without.station.aet.dump', [])))
93
fff2b4a24b5f test of sequences in worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 91
diff changeset
223
fff2b4a24b5f test of sequences in worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 91
diff changeset
224
94
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
225 def test_encodings(self):
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
226 # Check out ../../Database/Worklists/Encodings/database.dump
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
227 TEST = u'Test-éüäöòДΘĝדصķћ๛ネİ'
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
228 ENCODINGS = {
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
229 'Arabic' : [ 'ISO_IR 127' ],
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
230 'Ascii' : [ 'ISO_IR 6' ], # More accurately, ISO 646
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
231 'Cyrillic' : [ 'ISO_IR 144' ],
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
232 'Greek' : [ 'ISO_IR 126' ],
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
233 'Hebrew' : [ 'ISO_IR 138' ],
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
234 'Japanese' : [ 'ISO_IR 13', 'shift-jis' ],
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
235 'Latin1' : [ 'ISO_IR 100' ],
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
236 'Latin2' : [ 'ISO_IR 101' ],
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
237 'Latin3' : [ 'ISO_IR 109' ],
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
238 'Latin4' : [ 'ISO_IR 110' ],
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
239 'Latin5' : [ 'ISO_IR 148' ],
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
240 'Thai' : [ 'ISO_IR 166', 'tis-620' ],
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
241 'Utf8' : [ 'ISO_IR 192' ],
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
242 }
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
243
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
244 AddToDatabase('Encodings/database.dump')
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
245
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
246 for name, encoding in ENCODINGS.iteritems():
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
247 self.assertEqual(name, DoPut(ORTHANC, '/tools/default-encoding', name))
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
248 result = RunQuery('Encodings/query.dump', [])
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
249
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
250 self.assertEqual(1, len(result))
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
251 self.assertEqual(2, len(result[0]))
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
252 tags = ParseTopLevelTags(result[0])
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
253
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
254 if len(encoding) == 1:
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
255 encoded = TEST.encode(name, 'ignore')
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
256 else:
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
257 encoded = TEST.encode(encoding[1], 'ignore')
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
258
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
259 self.assertEqual(encoding[0], tags['0008,0005'])
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
260 self.assertEqual(encoded, tags['0010,0010'])
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
261
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
262
09afe3616660 Orthanc.test_encodings for worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 93
diff changeset
263
90
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
264
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
265 try:
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
266 print('\nStarting the tests...')
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
267 unittest.main(argv = [ sys.argv[0] ] + args.options)
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
268
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
269 finally:
afbac3eb28a5 integration tests of worklists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
270 print('\nDone')