-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwpstest.py
executable file
·232 lines (209 loc) · 10.9 KB
/
wpstest.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
#!/usr/bin/env python
#-*-coding:utf-8-*-
"""
/***************************************************************************
wpsclient.py Wps客户端库
-------------------------------------------------------------------
Date : 2012.5.13 9:50
Copyright : (C) 2012 by 张祖鹏
email : [email protected]
Authors : 张祖鹏
***************************************************************************
* *
* This program is free library; 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. *
* *
***************************************************************************/
"""
import os,sys
sys.path += [os.path.abspath('../')]
from unittest import TestCase
from unittest import TestSuite
from unittest import TextTestRunner
from unittest import main
from xml.dom import minidom
import logging
import wpsclient
from description import strProcessDescribe,processDescribe
from execute import *
logging.basicConfig(stream=sys.stdout,
level=logging.DEBUG)
class CmdInterpreteTest(TestCase):
"""
命令行解释器测试用例
"""
def testSimpleCmd(self):
"""测试简单命令解析
"""
cmd = "v.buffer --l input=http://foo.map@mimetype=text/xml@encoding=utf-8 distance=20@datatype=float output=@mimetype=text/xml"
request = ExecuteRequest("http://localhost/cgi-bin/pywps.cgi")
struct = request.getRequestStruct(cmd)
struct = request.getRequestStruct(cmd)
cmpstruct = {'identifier': 'v.buffer',
'datainputs': [{'mimetype': 'text/xml', 'identifier': 'input', 'value': 'http://foo.map', 'type': 1, 'encoding': 'utf-8'},
{'datatype': 'float', 'identifier': 'distance', 'type': 2, 'value': '20'}],
'responseform':
{'responsedocument':
{'status': False, 'output': [{'identifier':'output','mimetype':'text/xml', 'asreference': False}], 'lineage': True, 'storeexecuteresponse': False}}}
# if __debug__:
# print struct
# print cmpstruct
self.assertEqual(struct, cmpstruct, "简单命令解析")
def testChainRequestCmd(self):
"""链请求命令解析
"""
cmd = "v.buffer --l input=[v.to.points -n input=http://foo.map@mimetype=text/xml]@mimetype=text/xml@encoding=utf-8 distance=20 output=@mimetype=text/xml"
request = ExecuteRequest("http://localhost/cgi-bin/pywps.cgi")
struct = request.getRequestStruct(cmd)
cmpstruct = {'responseform':
{'responsedocument':
{'status': False, 'output': [{'identifier':'output','mimetype':'text/xml','asreference': False}], 'lineage': True, 'storeexecuteresponse': False}},
'identifier': 'v.buffer',
'datainputs': [{'mimetype': 'text/xml', 'type': 1, 'identifier': 'input', 'value':
{'responseform':
{'responsedocument':
{'status': False, 'output': [], 'lineage': False, 'storeexecuteresponse': False}},
'identifier': 'v.to.points',
'datainputs': [{'mimetype': 'text/xml', 'identifier': 'input', 'type': 1, 'value': 'http://foo.map'}]
},
'type': 1, 'encoding': 'utf-8'},
{'identifier': 'distance', 'type': 2, 'value': '20'}
]
}
# if __debug__:
# print struct
# print cmpstruct
self.assertEqual(struct, cmpstruct, "链请求解析")
class ExecuteTest(TestCase):
"""
Execute执行请求测试
"""
def setUp(self):
self.request = ExecuteRequest("http://localhost/cgi-bin/pywps.cgi")
def tearDown(self):
pass
def _assertWrapXMLEqualtoFile(self, cmd, file):
from xml.dom import minidom
wrapxml = minidom.parseString(self.request.wrapParam(cmd['identifier'],
cmd['datainputs'], cmd['responseform'])).toprettyxml(newl='\n', encoding='utf-8')
logging.info(wrapxml)
# cmpxmlfile = open(file)
# self.assertEqual(cmpxmlfile.read(), wrapxml)
def testWrapParam1(self):
""" Test1: ComplexData输入格式可访问的站点的数据. 如,WMS和WFS服务站点中的数据
"""
cmd = {'datainputs': [{'encoding': 'utf-8',
'identifier': 'input',
'mimetype': 'text/xml',
'type': 1,
'value': 'http://foo.map'},
{'datatype': 'float',
'identifier': 'distance',
'type': 2,
'value': '20'}],
'identifier': 'v.buffer',
'responseform': {'responsedocument': {'lineage': True,
'output': [{'asreference': False,
'identifier': 'output',
'mimetype': 'text/xml'}],
'status': False,
'storeexecuteresponse': False}}}
self._assertWrapXMLEqualtoFile(cmd, 'ComplexData输入格式可访问的站点的数据.xml')
def testWrapParam2(self):
""" Test2: ComplexData输入格式为另一个Execute请求(即 请求链测试)
"""
cmd = {'datainputs': [{'encoding': 'utf-8',
'identifier': 'input',
'mimetype': 'text/xml',
'type': 1,
'value': {'datainputs': [{'identifier': 'input',
'mimetype': 'text/xml',
'type': 1,
'value': 'http://foo.map'}],
'identifier': 'v.to.points',
'responseform': {'responsedocument': {'lineage': False,
'output': [],
'status': False,
'storeexecuteresponse': False}}}},
{'identifier': 'distance', 'type': 2, 'value': '20'}],
'identifier': 'v.buffer',
'responseform': {'responsedocument': {'lineage': True,
'output': [{'asreference': False,
'identifier': 'output',
'mimetype': 'text/xml'}],
'status': False,
'storeexecuteresponse': False}}}
self._assertWrapXMLEqualtoFile(cmd, 'ComplexData输入格式为另一个Execute请求.xml')
def testWrapParam3(self):
""" Test3: Reference输入格式
"""
cmd = {'datainputs': [{'encoding': 'utf-8',
'identifier': 'input',
'mimetype': 'text/xml',
'type': 1,
'value': '',
'xlink:href': 'http://foo.map'},
{'datatype': 'float',
'identifier': 'distance',
'type': 2,
'value': '20'}],
'identifier': 'v.buffer',
'responseform': {'responsedocument': {'lineage': True,
'output': [{'asreference': False,
'identifier': 'output',
'mimetype': 'text/xml'}],
'status': False,
'storeexecuteresponse': False}}}
self._assertWrapXMLEqualtoFile(cmd, 'Reference输入格式.xml')
def testWrapParam4(self):
""" Test4: ComplexData输入格式为本地矢量数据
"""
datapath = os.path.abspath('testdata/streams_split/streams_cat__40120.shp')
cmd = {'datainputs': [{'identifier': 'input',
'type': 1,
'value': 'file://' + datapath},
{'datatype': 'float',
'identifier': 'distance',
'type': 2,
'value': '20'}],
'identifier': 'v.buffer',
'responseform': {'responsedocument': {'lineage': True,
'output': [{'asreference': False,
'identifier': 'output',
'mimetype': 'text/xml'}],
'status': False,
'storeexecuteresponse': False}}}
self._assertWrapXMLEqualtoFile(cmd, 'ComplexData输入格式为本地矢量数据.xml')
def testWrapParam5(self):
""" Test5: ComplexData输入格式为本地栅格数据
"""
datapath = os.path.abspath('testdata/landcover.tiff')
cmd = {'datainputs': [{'identifier': 'input',
'type': 1,
'value': 'file://' + datapath},
{'datatype': 'float',
'identifier': 'distance',
'type': 2,
'value': '20'}],
'identifier': 'v.buffer',
'responseform': {'responsedocument': {'lineage': True,
'output': [{'asreference': False,
'identifier': 'output',
'mimetype': 'text/xml'}],
'status': False,
'storeexecuteresponse': False}}}
self._assertWrapXMLEqualtoFile(cmd, 'ComplexData输入格式为本地栅格数据.xml')
if __name__=="__main__":
#main()
testsuite1 = TestSuite()
testsuite1.addTest(CmdInterpreteTest("testSimpleCmd"))
testsuite1.addTest(CmdInterpreteTest("testChainRequestCmd"))
testsuite2 = TestSuite()
testsuite2.addTest(ExecuteTest('testWrapParam1'))
testsuite2.addTest(ExecuteTest('testWrapParam2'))
testsuite2.addTest(ExecuteTest('testWrapParam3'))
testsuite2.addTest(ExecuteTest('testWrapParam4'))
testsuite2.addTest(ExecuteTest('testWrapParam5'))
TextTestRunner().run(testsuite2)