-
Notifications
You must be signed in to change notification settings - Fork 1
/
runAllTests.py
executable file
·418 lines (385 loc) · 15.8 KB
/
runAllTests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
# -*- coding: utf-8 -*-
# ===============================================================================
#
# Authors: Massimiliano Cannata, Milan Antonovic
#
# Copyright (c) 2015 IST-SUPSI (www.supsi.ch/ist)
#
# 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 2 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
# ===============================================================================
import sys
import time
from os import path
sys.path.insert(0, path.abspath(path.dirname(__file__)))
import test.walib.istsos.services.configsections as conf
import test.walib.istsos.services.dataqualities as data
import test.walib.istsos.services.epsgs as eps
import test.walib.istsos.services.observedproperties as obsprop
import test.walib.istsos.services.offerings as offer
import test.walib.istsos.services.operations as oper
import test.walib.istsos.services.procedures as proc
import test.walib.istsos.services.services as ser
import test.walib.istsos.services.systemtypes as syst
import test.walib.istsos.services.uoms as uom
import test.istsoslib.sosRequests as sos
import lib.argparse as argparse
import test.get as tget #GET(fname, address)
import test.post as tpost #POST(fname, spost, address)
import test.put as tput #PUT(fname, sput, address)
import test.delete as tdelete #DELETE(fname, address)
def run_tests(arg):
passed = []
failed = []
start_time = time.time()
f = open(path.abspath(path.dirname(__file__))+'/logs/test.log', 'w')
verb = arg['v']
ms = 'UNIT TESTING'
print ms
f.write('\n'+ms+'\n=================================')
ms = 'CREATING TESTING ENVIRONMENT'
if verb: print '|---' + ms
f.write('\n'+ms+'\n=================================')
#=======================================================================
# CREATE A TEST ENVIRONMENT
#=======================================================================
#----- SET SOS SERVER CONFIGURATION ---------
config = {
"getobservation": {
"maxgoperiod": "200",
"aggregatenodataqi": "-100",
"defaultqi": "100",
"aggregatenodata": "-999.9",
"correct_qi" : "110",
"stat_qi" : "200",
"transactional_log" : "True"
},
"urn": {
"process": "urn:ogc:def:process:x-istsos:1.0:",
"property": "urn:ogc:def:property:x-istsos:1.0:",
"offering": "urn:ogc:def:offering:x-istsos:1.0:",
"sensor": "urn:ogc:def:sensor:x-istsos:1.0:",
"phenomena": "urn:ogc:def:phenomenon:x-istsos:1.0:",
"feature": "urn:ogc:def:feature:x-istsos:1.0:",
"sensorType": "urn:ogc:def:sensorType:x-istsos:1.0:",
"dataType": "urn:ogc:def:dataType:x-istsos:1.0:",
"role": "urn:role:x-istsos:1.0:",
"refsystem": "urn:ogc:crs:EPSG:",
"time": "urn:ogc:def:parameter:x-istsos:1.0:time:iso8601",
"keywords": "urn:ogc:def:keywords:x-istsos:1.0:",
"identifier": "urn:ogc:def:identifier:x-istsos:1.0:",
"parameter": "urn:ogc:def:parameter:x-istsos:1.0:",
"procedure": "urn:ogc:def:procedure:x-istsos:1.0:"
},
"connection": {
"dbname": arg['dbname'],
"host": arg['host'],
"user": arg['user'],
"password": arg['password'],
"port": arg['port']
},
"identification": {
"title": "IST Sensor Observation Service 1",
"abstract": "hydro-meteorological monitoring network",
"urnversion": "1.0",
"authority": "x-istsos",
"fees": "NONE",
"keywords": "SOS,IST,SUPSI",
"accessconstrains": "NONE"
},
"serviceurl": {
"url": "http://localhost/istsos/test"
},
"provider": {
"contactcountry": "Switzerland",
"providername": "Istituto Scienze della Terra",
"contactposition": "Data manager",
"contactvoice": "+41586666200",
"contactadminarea": "Canton Ticino",
"contactemail": "geoservice@supsi.ch",
"contactdeliverypoint": "Campus Trevano",
"contactname": "Team Geomatica",
"contactpostalcode": "6952",
"contactcity": "Canobbio",
"providersite": "http://www.supsi.ch/ist",
"contactfax": "+41000000000000"
},
"geo": {
"zaxisname": "altitude",
"xaxisname": "easting",
"yaxisname": "northing",
"allowedepsg": "4326,3857",
"istsosepsg": "21781"
}
}
address = 'http://localhost/istsos/wa/istsos/services/default/configsections'
res = tput.PUT("", config, address)
if not res['success']:
raise SystemError("Unable to configure the SOS server: %s" % res['message'])
ms = 'server configuration set'
if verb: print '\t|---' + ms
f.write('\n'+ms)
#----- CREATE A SOS SERVICE ---------
service = {
"service": "test"
}
address = 'http://localhost/istsos/wa/istsos/services'
res = tpost.POST("",service,address)
if not res['success']:
if res['message'].find("already exists"):
deladdress = 'http://localhost/istsos/wa/istsos/services/test'
delres = tdelete.DELETE("",deladdress)
if delres['success']:
res = tpost.POST("",service,address)
if not res['success']:
raise SystemError("Unable to create a new SOS service: %s" % res['message'])
else:
raise SystemError("Unable to delete existing test SOS service: %s" % res['message'])
else:
raise SystemError("Unable to create a new SOS service: %s" % res['message'])
ms = 'service test created'
if verb: print '\t|---' + ms
f.write('\n'+ms)
#----- ADD UNIT OF MEASURE ------
tuom = {
"name": "test",
"description": "test unit of measure"
}
address = 'http://localhost/istsos/wa/istsos/services/test/uoms'
res = tpost.POST("",tuom,address)
if not res['success']:
raise SystemError("Unable to create a new SOS unit of measure: %s" % res['message'])
ms = 'unit of measure test created'
if verb: print '\t|---' + ms
f.write('\n'+ms)
#----- ADD OBSERVED PROPERTY ------
opr = {
"definition": "urn:ogc:def:parameter:x-istsos:1.0:test",
#"procedures": [],
"constraint": [],
"name": "test",
"description": "test observed property"
}
address = 'http://localhost/istsos/wa/istsos/services/test/observedproperties'
res = tpost.POST("",opr,address)
if not res['success']:
raise SystemError("Unable to create a new SOS observed property: %s" % res['message'])
ms = 'observed property test created'
if verb: print '\t|---' + ms
f.write('\n'+ms)
#----- ADD PROCEDURE ------
tproc = {
'capabilities': [],
'characteristics': '',
'classification': [
{'definition': 'urn:ogc:def:classifier:x-istsos:1.0:systemType',
'name': 'System Type',
'value': 'insitu-fixed-point'},
{'definition': 'urn:ogc:def:classifier:x-istsos:1.0:sensorType',
'name': 'Sensor Type',
'value': 'test_type'}],
'contacts': [],
'description': 'test procedure',
'documentation': [],
'history': [],
'identification': [],
'inputs': [],
'interfaces': '',
'keywords': 'A,B,C',
'location':
{'crs':
{'properties':
{'name': '4326'},
'type': 'name'},
'geometry':
{'coordinates': ['1', '1', '1'],
'type': 'Point'},
'properties':
{'name': 'test'},
'type': 'Feature'},
'outputs': [
{
'definition': 'urn:ogc:def:parameter:x-istsos:1.0:time:iso8601',
'description': '',
'name': 'Time',
'uom': 'iso8601'
},
{
'constraint': {'min': '0', 'role': 'urn:ogc:def:classifiers:x-istsos:1.0:qualityIndex:check:reasonable'},
'definition': 'urn:ogc:def:parameter:x-istsos:1.0:test',
'description': 'test opr',
'name': 'test',
'uom': 'test'
}
],
'system': 'test',
'system_id': 'test'}
address = 'http://localhost/istsos/wa/istsos/services/test/procedures'
res = tpost.POST("",tproc,address)
if not res['success']:
print res
raise SystemError("Unable to create a new SOS procedure: %s" % res['message'])
ms = 'procedure test created'
if verb: print '\t|---' + ms
f.write('\n'+ms)
#=======================================================================
# TEST RESTFUL SERVICE REQUESTS
#=======================================================================
ms = 'TESTING RESTFUL SERVICE REQUESTS\n'
if verb: print '|---' + ms
f.write('\n'+ms+'\n=================================')
if verb: print '\t|---TESTING dataqualities \n'
dataqualities = data.test_dataqualities(f)
if verb:
for el in dataqualities: print '\t\t|---' + el
for k,v in dataqualities.items():
passed.append(k) if v else failed.append(k)
if verb: print '\t|---TESTING epsg\n'
epsgs = eps.test_epsgs(f)
if verb:
for el in epsgs: print '\t\t|---' + el
for k,v in epsgs.items():
passed.append(k) if v else failed.append(k)
if verb: print '\t|---TESTING observedproperties \n'
observedproperties = obsprop.test_observedproperties(f)
if verb:
for el in observedproperties: print '\t\t|---' + el
for k,v in observedproperties.items():
passed.append(k) if v else failed.append(k)
if verb: print '\t|---TESTING offerings \n'
offerings = offer.test_offerings(f)
if verb:
for el in observedproperties: print '\t\t|---' + el
for k,v in offerings.items():
passed.append(k) if v else failed.append(k)
if verb: print '\t|---TESTING operations \n'
operations = oper.test_operations(f)
if verb:
for el in operations: print '\t\t|---' + el
for k,v in operations.items():
passed.append(k) if v else failed.append(k)
if verb: print '\t|---TESTING procedures \n'
procedures = proc.test_procedures(f)
if verb:
for el in procedures: print '\t\t|---' + el
for k,v in procedures.items():
passed.append(k) if v else failed.append(k)
if verb: print '\t|---TESTING services \n'
services = ser.test_services(f)
if verb:
for el in services: print '\t\t|---' + el
for k,v in services.items():
passed.append(k) if v else failed.append(k)
"""
if verb: print '\t|---TESTING systemtypes \n'
systemtypes = syst.test_systemtypes(f, v)
if verb:
for el in systemtypes: print '\t\t|---' + el
for k,v in systemtypes.items():
passed.append(k) if v else failed.append(k)
"""
if verb: print '\t|---TESTING uoms \n'
uoms = uom.test_uoms(f)
if verb:
for el in uoms: print '\t\t|---' + el
for k,v in uoms.items():
passed.append(k) if v else failed.append(k)
if verb: print '\t|---TESTING configsections \n'
configsections = conf.test_configsections(f)
if verb:
for el in configsections: print '\t\t|---' + el
for k,v in configsections.items():
passed.append(k) if v else failed.append(k)
#=======================================================================
# TEST SOS SERVICE REQUESTS
#=======================================================================
ms = 'TESTING SOS SERVICE REQUESTS\n'
if verb: print '|---' + ms
f.write('\n'+ms+'\n=================================')
if verb: print '\t|---TESTING getCapabilities \n'
getCapabilities = sos.getCapabilities(f)
if verb:
for el in getCapabilities:
print '\t\t|---' + el
for k,v in getCapabilities.items():
passed.append(k) if v else failed.append(k)
if verb: print '\t|---TESTING registerSensor \n'
registerSensor = sos.registerSensor(f)
if verb:
for el in registerSensor:
print '\t\t|---' + el
for k,v in registerSensor.items():
passed.append(k) if v else failed.append(k)
if verb: print '\t|---TESTING describeSensor \n'
describeSensor = sos.describeSensor(f)
if verb:
for el in describeSensor:
print '\t\t|---' + el
for k,v in describeSensor.items():
passed.append(k) if v else failed.append(k)
if verb: print '\t|---TESTING getFeatureOfInterest \n'
featureofInterest = sos.getFeatureOfInterest(f)
if verb:
for el in featureofInterest:
print '\t\t|---' + el
for k,v in featureofInterest.items():
passed.append(k) if v else failed.append(k)
if verb: print '\t|---TESTING insertObservation \n'
insertObservation = sos.insertObservation(f)
if verb:
for el in insertObservation:
print '\t\t|---' + el
for k,v in insertObservation.items():
passed.append(k) if v else failed.append(k)
if verb: print '\t|---TESTING getObservation \n'
getObservation = sos.getObservation(f)
if verb:
for el in getObservation:
print '\t\t|---' + el
for k,v in getObservation.items():
passed.append(k) if v else failed.append(k)
# delete sensor
f.close()
duration = ('%s seconds') %(time.time() - start_time)
npassed = len(passed)
nfailed = len(failed)
#calculate results statistics
#=========================================================
# WRITE TEST RESULTS
#=========================================================
print "results:"
print "--test duration: %s" % duration
print "--run tests: %s" % (npassed+nfailed)
print "--passed tests: %s" % npassed
print "--failed tests: %s" % nfailed
if len(failed) >0:
print ""
print "failed test list: %s" %("\n -".join(failed))
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description='Import data from a csv file.')
"""
conn = [user,password,host,dbname]
"""
parser.add_argument('user', action = 'store', help = 'PostGIS user')
parser.add_argument('password', action = 'store', help = 'PostGIS password')
parser.add_argument('host', action = 'store', help = 'PostGIS host address')
parser.add_argument('dbname', action = 'store', help = 'PostGIS database name')
parser.add_argument('-p', action = 'store', default = '5432', dest = 'port', help = 'PostGIS connection port')
parser.add_argument('-v','--verbose', action = 'store_true', dest = 'v', help = 'Activate verbose debug')
args = parser.parse_args()
#print args.__dict__
#exit()
run_tests(args.__dict__)