malagant-soap4r 1.5.8.20141127181857

Sign up to get free protection for your applications and to get access to all the features.
Files changed (428) hide show
  1. checksums.yaml +7 -0
  2. data/bin/wsdl2ruby.rb +139 -0
  3. data/bin/xsd2ruby.rb +91 -0
  4. data/lib/soap/attachment.rb +109 -0
  5. data/lib/soap/attrproxy.rb +35 -0
  6. data/lib/soap/baseData.rb +1095 -0
  7. data/lib/soap/element.rb +278 -0
  8. data/lib/soap/encodingstyle/aspDotNetHandler.rb +208 -0
  9. data/lib/soap/encodingstyle/handler.rb +121 -0
  10. data/lib/soap/encodingstyle/literalHandler.rb +196 -0
  11. data/lib/soap/encodingstyle/soapHandler.rb +560 -0
  12. data/lib/soap/filter.rb +14 -0
  13. data/lib/soap/filter/filterchain.rb +52 -0
  14. data/lib/soap/filter/handler.rb +32 -0
  15. data/lib/soap/filter/streamhandler.rb +30 -0
  16. data/lib/soap/generator.rb +299 -0
  17. data/lib/soap/header/handler.rb +62 -0
  18. data/lib/soap/header/handlerset.rb +71 -0
  19. data/lib/soap/header/mappinghandler.rb +48 -0
  20. data/lib/soap/header/simplehandler.rb +45 -0
  21. data/lib/soap/httpconfigloader.rb +140 -0
  22. data/lib/soap/mapping.rb +13 -0
  23. data/lib/soap/mapping/encodedregistry.rb +539 -0
  24. data/lib/soap/mapping/factory.rb +389 -0
  25. data/lib/soap/mapping/literalregistry.rb +392 -0
  26. data/lib/soap/mapping/mapping.rb +577 -0
  27. data/lib/soap/mapping/registry.rb +296 -0
  28. data/lib/soap/mapping/rubytypeFactory.rb +446 -0
  29. data/lib/soap/mapping/schemadefinition.rb +171 -0
  30. data/lib/soap/mapping/typeMap.rb +107 -0
  31. data/lib/soap/mapping/wsdlencodedregistry.rb +212 -0
  32. data/lib/soap/mapping/wsdlliteralregistry.rb +249 -0
  33. data/lib/soap/marshal.rb +60 -0
  34. data/lib/soap/mimemessage.rb +243 -0
  35. data/lib/soap/nestedexception.rb +43 -0
  36. data/lib/soap/netHttpClient.rb +242 -0
  37. data/lib/soap/ns.rb +39 -0
  38. data/lib/soap/parser.rb +253 -0
  39. data/lib/soap/processor.rb +67 -0
  40. data/lib/soap/property.rb +340 -0
  41. data/lib/soap/proxy.rb +15 -0
  42. data/lib/soap/rpc/cgistub.rb +248 -0
  43. data/lib/soap/rpc/driver.rb +222 -0
  44. data/lib/soap/rpc/element.rb +375 -0
  45. data/lib/soap/rpc/httpserver.rb +143 -0
  46. data/lib/soap/rpc/methodDef.rb +69 -0
  47. data/lib/soap/rpc/proxy.rb +573 -0
  48. data/lib/soap/rpc/router.rb +663 -0
  49. data/lib/soap/rpc/rpc.rb +26 -0
  50. data/lib/soap/rpc/soaplet.rb +201 -0
  51. data/lib/soap/rpc/standaloneServer.rb +44 -0
  52. data/lib/soap/soap.rb +154 -0
  53. data/lib/soap/streamHandler.rb +302 -0
  54. data/lib/soap/version.rb +9 -0
  55. data/lib/soap/wsdlDriver.rb +165 -0
  56. data/lib/wsdl/binding.rb +66 -0
  57. data/lib/wsdl/data.rb +65 -0
  58. data/lib/wsdl/definitions.rb +237 -0
  59. data/lib/wsdl/documentation.rb +33 -0
  60. data/lib/wsdl/import.rb +81 -0
  61. data/lib/wsdl/importer.rb +39 -0
  62. data/lib/wsdl/info.rb +51 -0
  63. data/lib/wsdl/message.rb +55 -0
  64. data/lib/wsdl/operation.rb +152 -0
  65. data/lib/wsdl/operationBinding.rb +241 -0
  66. data/lib/wsdl/param.rb +94 -0
  67. data/lib/wsdl/parser.rb +165 -0
  68. data/lib/wsdl/part.rb +53 -0
  69. data/lib/wsdl/port.rb +67 -0
  70. data/lib/wsdl/portType.rb +76 -0
  71. data/lib/wsdl/service.rb +62 -0
  72. data/lib/wsdl/soap/address.rb +41 -0
  73. data/lib/wsdl/soap/binding.rb +50 -0
  74. data/lib/wsdl/soap/body.rb +59 -0
  75. data/lib/wsdl/soap/cgiStubCreator.rb +93 -0
  76. data/lib/wsdl/soap/classDefCreator.rb +434 -0
  77. data/lib/wsdl/soap/classDefCreatorSupport.rb +241 -0
  78. data/lib/wsdl/soap/classNameCreator.rb +55 -0
  79. data/lib/wsdl/soap/clientSkeltonCreator.rb +107 -0
  80. data/lib/wsdl/soap/complexType.rb +174 -0
  81. data/lib/wsdl/soap/data.rb +43 -0
  82. data/lib/wsdl/soap/definitions.rb +201 -0
  83. data/lib/wsdl/soap/driverCreator.rb +121 -0
  84. data/lib/wsdl/soap/element.rb +34 -0
  85. data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +74 -0
  86. data/lib/wsdl/soap/fault.rb +57 -0
  87. data/lib/wsdl/soap/header.rb +87 -0
  88. data/lib/wsdl/soap/headerfault.rb +57 -0
  89. data/lib/wsdl/soap/literalMappingRegistryCreator.rb +116 -0
  90. data/lib/wsdl/soap/mappingRegistryCreator.rb +59 -0
  91. data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +377 -0
  92. data/lib/wsdl/soap/methodDefCreator.rb +200 -0
  93. data/lib/wsdl/soap/operation.rb +113 -0
  94. data/lib/wsdl/soap/servantSkeltonCreator.rb +92 -0
  95. data/lib/wsdl/soap/servletStubCreator.rb +105 -0
  96. data/lib/wsdl/soap/standaloneServerStubCreator.rb +101 -0
  97. data/lib/wsdl/soap/wsdl2ruby.rb +226 -0
  98. data/lib/wsdl/types.rb +45 -0
  99. data/lib/wsdl/wsdl.rb +25 -0
  100. data/lib/wsdl/xmlSchema/all.rb +25 -0
  101. data/lib/wsdl/xmlSchema/annotation.rb +35 -0
  102. data/lib/wsdl/xmlSchema/any.rb +62 -0
  103. data/lib/wsdl/xmlSchema/anyAttribute.rb +49 -0
  104. data/lib/wsdl/xmlSchema/attribute.rb +105 -0
  105. data/lib/wsdl/xmlSchema/attributeGroup.rb +69 -0
  106. data/lib/wsdl/xmlSchema/choice.rb +59 -0
  107. data/lib/wsdl/xmlSchema/complexContent.rb +98 -0
  108. data/lib/wsdl/xmlSchema/complexExtension.rb +120 -0
  109. data/lib/wsdl/xmlSchema/complexRestriction.rb +105 -0
  110. data/lib/wsdl/xmlSchema/complexType.rb +194 -0
  111. data/lib/wsdl/xmlSchema/content.rb +96 -0
  112. data/lib/wsdl/xmlSchema/data.rb +117 -0
  113. data/lib/wsdl/xmlSchema/element.rb +154 -0
  114. data/lib/wsdl/xmlSchema/enumeration.rb +37 -0
  115. data/lib/wsdl/xmlSchema/fractiondigits.rb +38 -0
  116. data/lib/wsdl/xmlSchema/group.rb +101 -0
  117. data/lib/wsdl/xmlSchema/import.rb +54 -0
  118. data/lib/wsdl/xmlSchema/importHandler.rb +46 -0
  119. data/lib/wsdl/xmlSchema/importer.rb +103 -0
  120. data/lib/wsdl/xmlSchema/include.rb +49 -0
  121. data/lib/wsdl/xmlSchema/length.rb +38 -0
  122. data/lib/wsdl/xmlSchema/list.rb +49 -0
  123. data/lib/wsdl/xmlSchema/maxexclusive.rb +38 -0
  124. data/lib/wsdl/xmlSchema/maxinclusive.rb +38 -0
  125. data/lib/wsdl/xmlSchema/maxlength.rb +38 -0
  126. data/lib/wsdl/xmlSchema/minexclusive.rb +38 -0
  127. data/lib/wsdl/xmlSchema/mininclusive.rb +38 -0
  128. data/lib/wsdl/xmlSchema/minlength.rb +38 -0
  129. data/lib/wsdl/xmlSchema/parser.rb +168 -0
  130. data/lib/wsdl/xmlSchema/pattern.rb +37 -0
  131. data/lib/wsdl/xmlSchema/ref.rb +34 -0
  132. data/lib/wsdl/xmlSchema/schema.rb +179 -0
  133. data/lib/wsdl/xmlSchema/sequence.rb +55 -0
  134. data/lib/wsdl/xmlSchema/simpleContent.rb +70 -0
  135. data/lib/wsdl/xmlSchema/simpleExtension.rb +63 -0
  136. data/lib/wsdl/xmlSchema/simpleRestriction.rb +133 -0
  137. data/lib/wsdl/xmlSchema/simpleType.rb +88 -0
  138. data/lib/wsdl/xmlSchema/totaldigits.rb +38 -0
  139. data/lib/wsdl/xmlSchema/union.rb +36 -0
  140. data/lib/wsdl/xmlSchema/unique.rb +35 -0
  141. data/lib/wsdl/xmlSchema/whitespace.rb +38 -0
  142. data/lib/wsdl/xmlSchema/xsd2ruby.rb +176 -0
  143. data/lib/xsd/charset.rb +190 -0
  144. data/lib/xsd/codegen.rb +13 -0
  145. data/lib/xsd/codegen/classdef.rb +209 -0
  146. data/lib/xsd/codegen/commentdef.rb +35 -0
  147. data/lib/xsd/codegen/gensupport.rb +277 -0
  148. data/lib/xsd/codegen/methoddef.rb +71 -0
  149. data/lib/xsd/codegen/moduledef.rb +209 -0
  150. data/lib/xsd/datatypes.rb +1466 -0
  151. data/lib/xsd/datatypes1999.rb +21 -0
  152. data/lib/xsd/iconvcharset.rb +34 -0
  153. data/lib/xsd/mapping.rb +69 -0
  154. data/lib/xsd/namedelements.rb +133 -0
  155. data/lib/xsd/ns.rb +183 -0
  156. data/lib/xsd/qname.rb +80 -0
  157. data/lib/xsd/xmlparser.rb +77 -0
  158. data/lib/xsd/xmlparser/libxmlparser.rb +116 -0
  159. data/lib/xsd/xmlparser/parser.rb +101 -0
  160. data/lib/xsd/xmlparser/rexmlparser.rb +59 -0
  161. data/lib/xsd/xmlparser/xmlparser.rb +51 -0
  162. data/lib/xsd/xmlparser/xmlscanner.rb +150 -0
  163. data/test/16runner.rb +69 -0
  164. data/test/helper.rb +7 -0
  165. data/test/interopR2/README.txt +2 -0
  166. data/test/interopR2/SOAPBuildersInterop_R2.wsdl +461 -0
  167. data/test/interopR2/SOAPBuildersInterop_R2GrB.wsdl +19 -0
  168. data/test/interopR2/base.rb +289 -0
  169. data/test/interopR2/client.NetRemoting.rb +18 -0
  170. data/test/interopR2/client.rb +1235 -0
  171. data/test/interopR2/client4S4C.rb +16 -0
  172. data/test/interopR2/client4S4C2.rb +15 -0
  173. data/test/interopR2/clientASP.NET.rb +18 -0
  174. data/test/interopR2/clientApacheAxis.rb +17 -0
  175. data/test/interopR2/clientApacheSOAP.rb +18 -0
  176. data/test/interopR2/clientBEAWebLogic.rb +18 -0
  177. data/test/interopR2/clientBase.rb +1968 -0
  178. data/test/interopR2/clientCapeConnect.rb +19 -0
  179. data/test/interopR2/clientDelphi.rb +20 -0
  180. data/test/interopR2/clientEasySoap.rb +15 -0
  181. data/test/interopR2/clientFrontier.rb +26 -0
  182. data/test/interopR2/clientGLUE.rb +33 -0
  183. data/test/interopR2/clientHP.rb +14 -0
  184. data/test/interopR2/clientJAX-RPC.rb +20 -0
  185. data/test/interopR2/clientJSOAP.rb +15 -0
  186. data/test/interopR2/clientKafkaXSLT.rb +16 -0
  187. data/test/interopR2/clientMSSOAPToolkit2.0.rb +18 -0
  188. data/test/interopR2/clientMSSOAPToolkit3.0.rb +18 -0
  189. data/test/interopR2/clientNuSOAP.rb +20 -0
  190. data/test/interopR2/clientNuWave.rb +16 -0
  191. data/test/interopR2/clientOpenLink.rb +16 -0
  192. data/test/interopR2/clientOracle.rb +16 -0
  193. data/test/interopR2/clientPEAR.rb +19 -0
  194. data/test/interopR2/clientPhalanx.rb +19 -0
  195. data/test/interopR2/clientSIMACE.rb +19 -0
  196. data/test/interopR2/clientSOAP4R.rb +19 -0
  197. data/test/interopR2/clientSOAP__Lite.rb +15 -0
  198. data/test/interopR2/clientSQLData.rb +19 -0
  199. data/test/interopR2/clientSilverStream.rb +18 -0
  200. data/test/interopR2/clientSpray2001.rb +18 -0
  201. data/test/interopR2/clientSun.rb +20 -0
  202. data/test/interopR2/clientVWOpentalkSoap.rb +20 -0
  203. data/test/interopR2/clientWASP.rb +20 -0
  204. data/test/interopR2/clientWASPC.rb +19 -0
  205. data/test/interopR2/clientWebMethods.rb +16 -0
  206. data/test/interopR2/clientWhiteMesa.rb +29 -0
  207. data/test/interopR2/clientWingfoot.rb +16 -0
  208. data/test/interopR2/clientXMLBus.rb +20 -0
  209. data/test/interopR2/clientXMLRPC-EPI.rb +18 -0
  210. data/test/interopR2/clientXSOAP.rb +15 -0
  211. data/test/interopR2/clientZSI.rb +20 -0
  212. data/test/interopR2/clienteSOAP.rb +19 -0
  213. data/test/interopR2/clientgSOAP.rb +19 -0
  214. data/test/interopR2/clientkSOAP.rb +18 -0
  215. data/test/interopR2/iSimonReg.rb +113 -0
  216. data/test/interopR2/interopResultBase.rb +115 -0
  217. data/test/interopR2/interopService.rb +248 -0
  218. data/test/interopR2/rwikiInteropService.rb +106 -0
  219. data/test/interopR2/server.cgi +271 -0
  220. data/test/interopR2/server.rb +276 -0
  221. data/test/interopR2/simonReg.rb +124 -0
  222. data/test/interopR2/test.sh +49 -0
  223. data/test/interopR4/client.rb +113 -0
  224. data/test/runner.rb +8 -0
  225. data/test/sm11/classDef.rb +157 -0
  226. data/test/sm11/client.rb +543 -0
  227. data/test/sm11/driver.rb +184 -0
  228. data/test/sm11/servant.rb +1068 -0
  229. data/test/sm11/server.rb +26 -0
  230. data/test/soap/asp.net/hello.wsdl +96 -0
  231. data/test/soap/asp.net/test_aspdotnet.rb +124 -0
  232. data/test/soap/auth/htdigest +2 -0
  233. data/test/soap/auth/htpasswd +2 -0
  234. data/test/soap/auth/test_basic.rb +118 -0
  235. data/test/soap/auth/test_digest.rb +119 -0
  236. data/test/soap/calc/calc.rb +18 -0
  237. data/test/soap/calc/calc2.rb +30 -0
  238. data/test/soap/calc/server.cgi +16 -0
  239. data/test/soap/calc/server.rb +18 -0
  240. data/test/soap/calc/server2.rb +21 -0
  241. data/test/soap/calc/test_calc.rb +53 -0
  242. data/test/soap/calc/test_calc2.rb +57 -0
  243. data/test/soap/calc/test_calc_cgi.rb +72 -0
  244. data/test/soap/case/test_mapping.rb +58 -0
  245. data/test/soap/fault/test_customfault.rb +61 -0
  246. data/test/soap/fault/test_fault.rb +47 -0
  247. data/test/soap/fault/test_soaparray.rb +36 -0
  248. data/test/soap/filter/test_filter.rb +147 -0
  249. data/test/soap/header/server.cgi +121 -0
  250. data/test/soap/header/test_authheader.rb +241 -0
  251. data/test/soap/header/test_authheader_cgi.rb +122 -0
  252. data/test/soap/header/test_simplehandler.rb +117 -0
  253. data/test/soap/helloworld/hw_s.rb +17 -0
  254. data/test/soap/helloworld/test_helloworld.rb +45 -0
  255. data/test/soap/htpasswd +2 -0
  256. data/test/soap/literalArrayMapping/amazonEc.rb +4779 -0
  257. data/test/soap/literalArrayMapping/amazonEcDriver.rb +173 -0
  258. data/test/soap/literalArrayMapping/amazonresponse.xml +100 -0
  259. data/test/soap/literalArrayMapping/test_definedarray.rb +35 -0
  260. data/test/soap/marshal/marshaltestlib.rb +498 -0
  261. data/test/soap/marshal/test_digraph.rb +57 -0
  262. data/test/soap/marshal/test_marshal.rb +28 -0
  263. data/test/soap/marshal/test_struct.rb +48 -0
  264. data/test/soap/ssl/README +1 -0
  265. data/test/soap/ssl/ca.cert +23 -0
  266. data/test/soap/ssl/client.cert +19 -0
  267. data/test/soap/ssl/client.key +15 -0
  268. data/test/soap/ssl/server.cert +19 -0
  269. data/test/soap/ssl/server.key +15 -0
  270. data/test/soap/ssl/sslsvr.rb +59 -0
  271. data/test/soap/ssl/subca.cert +21 -0
  272. data/test/soap/ssl/test_ssl.rb +236 -0
  273. data/test/soap/struct/test_struct.rb +71 -0
  274. data/test/soap/styleuse/client.rb +21 -0
  275. data/test/soap/styleuse/server.rb +87 -0
  276. data/test/soap/swa/test_file.rb +76 -0
  277. data/test/soap/test_basetype.rb +1091 -0
  278. data/test/soap/test_cookie.rb +113 -0
  279. data/test/soap/test_custom_ns.rb +106 -0
  280. data/test/soap/test_custommap.rb +111 -0
  281. data/test/soap/test_empty.rb +106 -0
  282. data/test/soap/test_envelopenamespace.rb +86 -0
  283. data/test/soap/test_extraattr.rb +55 -0
  284. data/test/soap/test_generator.rb +32 -0
  285. data/test/soap/test_httpconfigloader.rb +72 -0
  286. data/test/soap/test_mapping.rb +132 -0
  287. data/test/soap/test_nestedexception.rb +71 -0
  288. data/test/soap/test_nil.rb +71 -0
  289. data/test/soap/test_no_indent.rb +89 -0
  290. data/test/soap/test_property.rb +429 -0
  291. data/test/soap/test_response_as_xml.rb +118 -0
  292. data/test/soap/test_soapelement.rb +139 -0
  293. data/test/soap/test_streamhandler.rb +271 -0
  294. data/test/soap/test_styleuse.rb +327 -0
  295. data/test/soap/wsdlDriver/README.txt +2 -0
  296. data/test/soap/wsdlDriver/calc.wsdl +126 -0
  297. data/test/soap/wsdlDriver/document.wsdl +54 -0
  298. data/test/soap/wsdlDriver/echo_version.rb +30 -0
  299. data/test/soap/wsdlDriver/simpletype.wsdl +63 -0
  300. data/test/soap/wsdlDriver/test_calc.rb +72 -0
  301. data/test/soap/wsdlDriver/test_document.rb +72 -0
  302. data/test/soap/wsdlDriver/test_simpletype.rb +82 -0
  303. data/test/testutil.rb +55 -0
  304. data/test/wsdl/abstract/abstract.wsdl +176 -0
  305. data/test/wsdl/abstract/test_abstract.rb +160 -0
  306. data/test/wsdl/anonymous/expectedClassDef.rb +129 -0
  307. data/test/wsdl/anonymous/expectedDriver.rb +60 -0
  308. data/test/wsdl/anonymous/expectedMappingRegistry.rb +177 -0
  309. data/test/wsdl/anonymous/lp.wsdl +147 -0
  310. data/test/wsdl/anonymous/test_anonymous.rb +131 -0
  311. data/test/wsdl/any/any.wsdl +114 -0
  312. data/test/wsdl/any/expectedDriver.rb +69 -0
  313. data/test/wsdl/any/expectedEcho.rb +58 -0
  314. data/test/wsdl/any/expectedMappingRegistry.rb +64 -0
  315. data/test/wsdl/any/expectedService.rb +70 -0
  316. data/test/wsdl/any/test_any.rb +194 -0
  317. data/test/wsdl/axisArray/axisArray.wsdl +87 -0
  318. data/test/wsdl/axisArray/test_axisarray.rb +125 -0
  319. data/test/wsdl/choice/choice.wsdl +167 -0
  320. data/test/wsdl/choice/test_choice.rb +311 -0
  321. data/test/wsdl/complexcontent/complexContent.wsdl +83 -0
  322. data/test/wsdl/complexcontent/test_echo.rb +91 -0
  323. data/test/wsdl/datetime/DatetimeService.rb +45 -0
  324. data/test/wsdl/datetime/datetime.rb +0 -0
  325. data/test/wsdl/datetime/datetime.wsdl +45 -0
  326. data/test/wsdl/datetime/datetimeServant.rb +23 -0
  327. data/test/wsdl/datetime/test_datetime.rb +88 -0
  328. data/test/wsdl/document/array/double.wsdl +161 -0
  329. data/test/wsdl/document/array/test_array.rb +202 -0
  330. data/test/wsdl/document/document.wsdl +76 -0
  331. data/test/wsdl/document/number.wsdl +54 -0
  332. data/test/wsdl/document/ping_nosoapaction.wsdl +66 -0
  333. data/test/wsdl/document/test_nosoapaction.rb +103 -0
  334. data/test/wsdl/document/test_number.rb +93 -0
  335. data/test/wsdl/document/test_rpc.rb +356 -0
  336. data/test/wsdl/emptycomplextype.wsdl +31 -0
  337. data/test/wsdl/fault/fault.wsdl +79 -0
  338. data/test/wsdl/fault/multifault.wsdl +96 -0
  339. data/test/wsdl/fault/test_fault.rb +120 -0
  340. data/test/wsdl/fault/test_multifault.rb +135 -0
  341. data/test/wsdl/group/expectedClassdef.rb +59 -0
  342. data/test/wsdl/group/expectedDriver.rb +52 -0
  343. data/test/wsdl/group/expectedMappingRegistry.rb +68 -0
  344. data/test/wsdl/group/group.wsdl +88 -0
  345. data/test/wsdl/group/test_rpc.rb +146 -0
  346. data/test/wsdl/list/list.wsdl +93 -0
  347. data/test/wsdl/list/test_list.rb +125 -0
  348. data/test/wsdl/map/map.wsdl +92 -0
  349. data/test/wsdl/map/map.xml +43 -0
  350. data/test/wsdl/map/test_map.rb +100 -0
  351. data/test/wsdl/marshal/person.wsdl +21 -0
  352. data/test/wsdl/marshal/person_org.rb +24 -0
  353. data/test/wsdl/marshal/test_wsdlmarshal.rb +76 -0
  354. data/test/wsdl/multiplefault.wsdl +75 -0
  355. data/test/wsdl/oneway/oneway.wsdl +36 -0
  356. data/test/wsdl/oneway/test_oneway.rb +109 -0
  357. data/test/wsdl/overload/expectedClient.rb +38 -0
  358. data/test/wsdl/overload/expectedDriver.rb +62 -0
  359. data/test/wsdl/overload/expectedServant.rb +36 -0
  360. data/test/wsdl/overload/overload.wsdl +70 -0
  361. data/test/wsdl/overload/test_overload.rb +132 -0
  362. data/test/wsdl/qualified/lp.wsdl +47 -0
  363. data/test/wsdl/qualified/lp.xsd +26 -0
  364. data/test/wsdl/qualified/np.wsdl +51 -0
  365. data/test/wsdl/qualified/test_qualified.rb +138 -0
  366. data/test/wsdl/qualified/test_unqualified.rb +139 -0
  367. data/test/wsdl/raa/RAAService.rb +126 -0
  368. data/test/wsdl/raa/README.txt +8 -0
  369. data/test/wsdl/raa/expectedClassDef.rb +101 -0
  370. data/test/wsdl/raa/expectedDriver.rb +97 -0
  371. data/test/wsdl/raa/expectedMappingRegistry.rb +122 -0
  372. data/test/wsdl/raa/raa.wsdl +264 -0
  373. data/test/wsdl/raa/test_raa.rb +127 -0
  374. data/test/wsdl/ref/expectedDriver.rb +52 -0
  375. data/test/wsdl/ref/expectedProduct.rb +244 -0
  376. data/test/wsdl/ref/product.wsdl +147 -0
  377. data/test/wsdl/ref/test_ref.rb +269 -0
  378. data/test/wsdl/rpc/rpc.wsdl +109 -0
  379. data/test/wsdl/rpc/test-rpc-lit.wsdl +371 -0
  380. data/test/wsdl/rpc/test_rpc.rb +177 -0
  381. data/test/wsdl/rpc/test_rpc_lit.rb +471 -0
  382. data/test/wsdl/simplecontent/simplecontent.wsdl +84 -0
  383. data/test/wsdl/simplecontent/test_simplecontent.rb +103 -0
  384. data/test/wsdl/simpletype/rpc/expectedClient.rb +35 -0
  385. data/test/wsdl/simpletype/rpc/expectedDriver.rb +59 -0
  386. data/test/wsdl/simpletype/rpc/expectedEchoVersion.rb +37 -0
  387. data/test/wsdl/simpletype/rpc/expectedMappingRegistry.rb +58 -0
  388. data/test/wsdl/simpletype/rpc/expectedServant.rb +33 -0
  389. data/test/wsdl/simpletype/rpc/expectedService.rb +56 -0
  390. data/test/wsdl/simpletype/rpc/rpc.wsdl +98 -0
  391. data/test/wsdl/simpletype/rpc/test_rpc.rb +53 -0
  392. data/test/wsdl/simpletype/simpletype.wsdl +114 -0
  393. data/test/wsdl/simpletype/test_simpletype.rb +93 -0
  394. data/test/wsdl/soap/soapbodyparts.wsdl +103 -0
  395. data/test/wsdl/soap/test_soapbodyparts.rb +80 -0
  396. data/test/wsdl/soap/wsdl2ruby/expectedClassdef.rb +22 -0
  397. data/test/wsdl/soap/wsdl2ruby/expectedClient.rb +35 -0
  398. data/test/wsdl/soap/wsdl2ruby/expectedDriver.rb +59 -0
  399. data/test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb +37 -0
  400. data/test/wsdl/soap/wsdl2ruby/expectedServant.rb +33 -0
  401. data/test/wsdl/soap/wsdl2ruby/expectedService.cgi +49 -0
  402. data/test/wsdl/soap/wsdl2ruby/expectedService.rb +56 -0
  403. data/test/wsdl/soap/wsdl2ruby/rpc.wsdl +80 -0
  404. data/test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb +38 -0
  405. data/test/wsdl/soap/wsdl2ruby/section/section.xsd +31 -0
  406. data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +54 -0
  407. data/test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl +64 -0
  408. data/test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb +84 -0
  409. data/test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb +103 -0
  410. data/test/wsdl/soaptype/soaptype.wsdl +61 -0
  411. data/test/wsdl/soaptype/test_soaptype.rb +179 -0
  412. data/test/wsdl/test_emptycomplextype.rb +22 -0
  413. data/test/wsdl/test_fault.rb +51 -0
  414. data/test/wsdl/test_multiplefault.rb +42 -0
  415. data/test/xsd/codegen/test_classdef.rb +245 -0
  416. data/test/xsd/noencoding.xml +4 -0
  417. data/test/xsd/test_noencoding.rb +33 -0
  418. data/test/xsd/test_ns.rb +42 -0
  419. data/test/xsd/test_xmlschemaparser.rb +23 -0
  420. data/test/xsd/test_xsd.rb +1639 -0
  421. data/test/xsd/xmllang.xml +43 -0
  422. data/test/xsd/xmlschema.xml +12 -0
  423. data/test/xsd/xsd2ruby/expected_mysample.rb +66 -0
  424. data/test/xsd/xsd2ruby/expected_mysample_mapper.rb +12 -0
  425. data/test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb +52 -0
  426. data/test/xsd/xsd2ruby/section.xsd +49 -0
  427. data/test/xsd/xsd2ruby/test_xsd2ruby.rb +91 -0
  428. metadata +485 -0
@@ -0,0 +1,55 @@
1
+ # encoding: ASCII-8BIT
2
+ module TestUtil
3
+ # MT-unsafe
4
+ def self.require(dir, *features)
5
+ begin
6
+ # avoid 'already initialized constant FizzBuzz' warning
7
+ silent do
8
+ $:.unshift(dir)
9
+ features.each do |feature|
10
+ Kernel.require feature
11
+ end
12
+ $:.shift
13
+ end
14
+ ensure
15
+ features.each do |feature|
16
+ $".delete(feature)
17
+ end
18
+ end
19
+ end
20
+
21
+ # MT-unsafe
22
+ def self.silent
23
+ if $DEBUG
24
+ yield
25
+ else
26
+ back = $VERBOSE
27
+ $VERBOSE = nil
28
+ begin
29
+ yield
30
+ ensure
31
+ $VERBOSE = back
32
+ end
33
+ end
34
+ end
35
+
36
+ def self.filecompare(expectedfile, actualfile)
37
+ expected = loadfile(expectedfile)
38
+ actual = loadfile(actualfile)
39
+ if expected != actual
40
+ raise "#{File.basename(actualfile)} is different from #{File.basename(expectedfile)}"
41
+ end
42
+ end
43
+
44
+ def self.loadfile(file)
45
+ File.open(file) { |f| f.read }
46
+ end
47
+
48
+ def self.start_server_thread(server)
49
+ t = Thread.new {
50
+ Thread.current.abort_on_exception = true
51
+ server.start
52
+ }
53
+ t
54
+ end
55
+ end
@@ -0,0 +1,176 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <wsdl:definitions
3
+ name="abstract"
4
+ targetNamespace="urn:www.example.org:abstract"
5
+ xmlns="http://schemas.xmlsoap.org/wsdl/"
6
+ xmlns:tns="urn:www.example.org:abstract"
7
+ xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
8
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
9
+ xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
10
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
11
+
12
+ <wsdl:types>
13
+ <schema targetNamespace="urn:www.example.org:abstract"
14
+ xmlns="http://www.w3.org/2001/XMLSchema">
15
+
16
+ <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
17
+
18
+ <complexType name="Book">
19
+ <sequence>
20
+ <element name="name" type="xsd:string"/>
21
+ <element name="author" type="tns:Author"/>
22
+ </sequence>
23
+ </complexType>
24
+
25
+ <element name="Author" type="tns:Author"/>
26
+ <complexType abstract="true" name="Author">
27
+ <sequence>
28
+ <element name="firstname" type="xsd:string"/>
29
+ <element name="lastname" type="xsd:string"/>
30
+ </sequence>
31
+ </complexType>
32
+
33
+ <complexType name="UserAuthor">
34
+ <complexContent>
35
+ <extension base="tns:Author">
36
+ <sequence>
37
+ <element name="userid" type="xsd:string"/>
38
+ </sequence>
39
+ </extension>
40
+ </complexContent>
41
+ </complexType>
42
+
43
+ <complexType name="NonUserAuthor">
44
+ <complexContent>
45
+ <extension base="tns:Author">
46
+ <sequence>
47
+ <element name="nonuserid" type="xsd:string"/>
48
+ </sequence>
49
+ </extension>
50
+ </complexContent>
51
+ </complexType>
52
+
53
+ <complexType name="BaseClass">
54
+ <sequence>
55
+ <element name="id" type="xsd:unsignedInt" minOccurs="1"
56
+ maxOccurs="1"/>
57
+ </sequence>
58
+ </complexType>
59
+
60
+ <complexType name="DerivedClass1">
61
+ <complexContent>
62
+ <extension base="tns:BaseClass">
63
+ <sequence>
64
+ <element name="someVar1" type="xsd:string"
65
+ minOccurs="0" maxOccurs="unbounded"/>
66
+ </sequence>
67
+ </extension>
68
+ </complexContent>
69
+ </complexType>
70
+
71
+ <complexType name="DerivedClass2">
72
+ <complexContent>
73
+ <extension base="tns:BaseClass">
74
+ <sequence>
75
+ <element name="someVar2" type="xsd:string"
76
+ minOccurs="0" maxOccurs="unbounded"/>
77
+ </sequence>
78
+ </extension>
79
+ </complexContent>
80
+ </complexType>
81
+ </schema>
82
+ </wsdl:types>
83
+
84
+ <wsdl:message name="echoRequest">
85
+ <wsdl:part name="name" type="xsd:string"/>
86
+ <wsdl:part name="author" type="tns:Author"/>
87
+ </wsdl:message>
88
+
89
+ <wsdl:message name="echoResponse">
90
+ <wsdl:part name="return" type="tns:Book"/>
91
+ </wsdl:message>
92
+
93
+ <wsdl:message name="echoLiteralRequest">
94
+ <wsdl:part name="author" element="tns:Author"/>
95
+ </wsdl:message>
96
+
97
+ <wsdl:message name="echoLiteralResponse">
98
+ <wsdl:part name="return" element="tns:Author"/>
99
+ </wsdl:message>
100
+
101
+ <wsdl:message name="echoDerivedRequest">
102
+ <wsdl:part name="parameter" type="tns:BaseClass"/>
103
+ </wsdl:message>
104
+
105
+ <wsdl:message name="echoDerivedResponse">
106
+ <wsdl:part name="return" type="tns:BaseClass"/>
107
+ </wsdl:message>
108
+
109
+ <wsdl:portType name="AbstractService">
110
+ <wsdl:operation name="echo" parameterOrder="obj typename">
111
+ <wsdl:input message="tns:echoRequest" name="echoRequest"/>
112
+ <wsdl:output message="tns:echoResponse" name="echoResponse"/>
113
+ </wsdl:operation>
114
+
115
+ <wsdl:operation name="echoLiteral">
116
+ <wsdl:input message="tns:echoLiteralRequest"/>
117
+ <wsdl:output message="tns:echoLiteralResponse"/>
118
+ </wsdl:operation>
119
+
120
+ <wsdl:operation name="echoDerived">
121
+ <wsdl:input message="tns:echoDerivedRequest" name="echoDerivedRequest"/>
122
+ <wsdl:output message="tns:echoDerivedResponse" name="echoDerivedResponse"/>
123
+ </wsdl:operation>
124
+ </wsdl:portType>
125
+
126
+ <wsdl:binding name="AbstractServiceSoapBinding"
127
+ type="tns:AbstractService">
128
+
129
+ <wsdlsoap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
130
+
131
+ <wsdl:operation name="echo">
132
+ <wsdlsoap:operation style="rpc" soapAction=""/>
133
+ <wsdl:input name="echoRequest">
134
+ <wsdlsoap:body
135
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
136
+ namespace="urn:www.example.org:abstract" use="encoded"/>
137
+ </wsdl:input>
138
+ <wsdl:output name="echoResponse">
139
+ <wsdlsoap:body
140
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
141
+ namespace="urn:www.example.org:abstract" use="encoded"/>
142
+ </wsdl:output>
143
+ </wsdl:operation>
144
+
145
+ <wsdl:operation name="echoLiteral">
146
+ <wsdlsoap:operation style="document" soapAction=""/>
147
+ <wsdl:input name="echoLiteralRequest">
148
+ <wsdlsoap:body namespace="urn:www.example.org:abstract" use="literal"/>
149
+ </wsdl:input>
150
+ <wsdl:output name="echoLiteralResponse">
151
+ <wsdlsoap:body namespace="urn:www.example.org:abstract" use="literal"/>
152
+ </wsdl:output>
153
+ </wsdl:operation>
154
+
155
+ <wsdl:operation name="echoDerived">
156
+ <wsdlsoap:operation style="rpc" soapAction=""/>
157
+ <wsdl:input name="echoDerivedRequest">
158
+ <wsdlsoap:body
159
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
160
+ namespace="urn:www.example.org:abstract" use="encoded"/>
161
+ </wsdl:input>
162
+ <wsdl:output name="echoDerivedResponse">
163
+ <wsdlsoap:body
164
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
165
+ namespace="urn:www.example.org:abstract" use="encoded"/>
166
+ </wsdl:output>
167
+ </wsdl:operation>
168
+ </wsdl:binding>
169
+
170
+ <wsdl:service name="AbstractServiceService">
171
+ <wsdl:port name="AbstractService"
172
+ binding="tns:AbstractServiceSoapBinding">
173
+ <wsdlsoap:address location="http://localhost:8080/"/>
174
+ </wsdl:port>
175
+ </wsdl:service>
176
+ </wsdl:definitions>
@@ -0,0 +1,160 @@
1
+ # encoding: ASCII-8BIT
2
+ require 'helper'
3
+ require 'testutil'
4
+ require 'wsdl/parser'
5
+ require 'wsdl/soap/wsdl2ruby'
6
+ require 'soap/rpc/standaloneServer'
7
+ require 'soap/wsdlDriver'
8
+
9
+
10
+ module WSDL; module Abstract
11
+
12
+
13
+ class TestAbstract < Test::Unit::TestCase
14
+ class Server < ::SOAP::RPC::StandaloneServer
15
+ def on_init
16
+ add_rpc_method(self, 'echo', 'name', 'author')
17
+ add_rpc_method(self, 'echoDerived', 'parameter')
18
+ add_document_operation(
19
+ self,
20
+ "",
21
+ "echoLiteral",
22
+ [ [:in, "author", ["::SOAP::SOAPElement", "urn:www.example.org:abstract", "Author"]],
23
+ [:out, "return", ["::SOAP::SOAPElement", "urn:www.example.org:abstract", "Book"]] ],
24
+ { :request_style => :document, :request_use => :literal,
25
+ :response_style => :document, :response_use => :literal,
26
+ :faults => {} }
27
+ )
28
+ self.mapping_registry = AbstractMappingRegistry::EncodedRegistry
29
+ self.literal_mapping_registry = AbstractMappingRegistry::LiteralRegistry
30
+ end
31
+
32
+ def echo(name, author)
33
+ Book.new(name, author)
34
+ end
35
+
36
+ def echoLiteral(author)
37
+ author
38
+ end
39
+
40
+ def echoDerived(parameter)
41
+ parameter
42
+ end
43
+ end
44
+
45
+ DIR = File.dirname(File.expand_path(__FILE__))
46
+
47
+ Port = 17171
48
+
49
+ def setup
50
+ setup_classdef
51
+ setup_server
52
+ @client = nil
53
+ end
54
+
55
+ def teardown
56
+ teardown_server if @server
57
+ unless $DEBUG
58
+ File.unlink(pathname('abstract.rb'))
59
+ File.unlink(pathname('abstractMappingRegistry.rb'))
60
+ File.unlink(pathname('abstractDriver.rb'))
61
+ end
62
+ @client.reset_stream if @client
63
+ end
64
+
65
+ def setup_server
66
+ @server = Server.new('Test', "urn:www.example.org:abstract", '0.0.0.0', Port)
67
+ @server.level = Logger::Severity::ERROR
68
+ @server_thread = TestUtil.start_server_thread(@server)
69
+ end
70
+
71
+ def setup_classdef
72
+ gen = WSDL::SOAP::WSDL2Ruby.new
73
+ gen.location = pathname("abstract.wsdl")
74
+ gen.basedir = DIR
75
+ gen.logger.level = Logger::FATAL
76
+ gen.opt['classdef'] = nil
77
+ gen.opt['mapping_registry'] = nil
78
+ gen.opt['module_path'] = self.class.to_s.sub(/::[^:]+$/, '')
79
+ gen.opt['driver'] = nil
80
+ gen.opt['force'] = true
81
+ gen.run
82
+ TestUtil.require(DIR, 'abstractDriver.rb', 'abstract.rb', 'abstractMappingRegistry.rb')
83
+ end
84
+
85
+ def teardown_server
86
+ @server.shutdown
87
+ @server_thread.kill
88
+ @server_thread.join
89
+ end
90
+
91
+ def pathname(filename)
92
+ File.join(DIR, filename)
93
+ end
94
+
95
+ def test_wsdl
96
+ wsdl = File.join(DIR, 'abstract.wsdl')
97
+ @client = ::SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver
98
+ @client.mapping_registry = AbstractMappingRegistry::EncodedRegistry
99
+ @client.endpoint_url = "http://localhost:#{Port}/"
100
+ @client.wiredump_dev = STDERR if $DEBUG
101
+
102
+ author = UserAuthor.new("first", "last", "uid")
103
+ ret = @client.echo("book1", author)
104
+ assert_equal("book1", ret.name)
105
+ assert_equal(author.firstname, ret.author.firstname)
106
+ assert_equal(author.lastname, ret.author.lastname)
107
+ assert_equal(author.userid, ret.author.userid)
108
+
109
+ author = NonUserAuthor.new("first", "last", "nonuserid")
110
+ ret = @client.echo("book2", author)
111
+ assert_equal("book2", ret.name)
112
+ assert_equal(author.firstname, ret.author.firstname)
113
+ assert_equal(author.lastname, ret.author.lastname)
114
+ assert_equal(author.nonuserid, ret.author.nonuserid)
115
+ end
116
+
117
+ def test_stub
118
+ @client = AbstractService.new("http://localhost:#{Port}/")
119
+ @client.wiredump_dev = STDERR if $DEBUG
120
+
121
+ author = UserAuthor.new("first", "last", "uid")
122
+ ret = @client.echo("book1", author)
123
+ assert_equal("book1", ret.name)
124
+ assert_equal(author.firstname, ret.author.firstname)
125
+ assert_equal(author.lastname, ret.author.lastname)
126
+ assert_equal(author.userid, ret.author.userid)
127
+ #
128
+ author = NonUserAuthor.new("first", "last", "nonuserid")
129
+ ret = @client.echo("book2", author)
130
+ assert_equal("book2", ret.name)
131
+ assert_equal(author.firstname, ret.author.firstname)
132
+ assert_equal(author.lastname, ret.author.lastname)
133
+ assert_equal(author.nonuserid, ret.author.nonuserid)
134
+ end
135
+
136
+ def test_literal_stub
137
+ @client = AbstractService.new("http://localhost:#{Port}/")
138
+ @client.wiredump_dev = STDERR if $DEBUG
139
+ author = NonUserAuthor.new("first", "last", "nonuserid")
140
+ ret = @client.echoLiteral(author)
141
+ assert_equal(author.firstname, ret.firstname)
142
+ assert_equal(author.lastname, ret.lastname)
143
+ assert_equal(author.nonuserid, ret.nonuserid)
144
+ assert_equal(NonUserAuthor, ret.class)
145
+ end
146
+
147
+ def test_stub_derived
148
+ @client = AbstractService.new("http://localhost:#{Port}/")
149
+ @client.wiredump_dev = STDERR if $DEBUG
150
+
151
+ parameter = DerivedClass1.new(123, "someVar1")
152
+ ret = @client.echoDerived(parameter)
153
+ assert_equal(123, ret.id)
154
+ assert_equal(["someVar1"], ret.someVar1)
155
+ assert_equal(DerivedClass1, ret.class)
156
+ end
157
+ end
158
+
159
+
160
+ end; end
@@ -0,0 +1,129 @@
1
+ # encoding: ASCII-8BIT
2
+ require 'xsd/qname'
3
+
4
+ module WSDL; module Anonymous
5
+
6
+
7
+ # {urn:lp}Header
8
+ # header3 - SOAP::SOAPString
9
+ class Header
10
+ attr_accessor :header3
11
+
12
+ def initialize(header3 = nil)
13
+ @header3 = header3
14
+ end
15
+ end
16
+
17
+ # {urn:lp}ExtraInfo
18
+ class ExtraInfo < ::Array
19
+
20
+ # {}Entry
21
+ # key - SOAP::SOAPString
22
+ # value - SOAP::SOAPString
23
+ class Entry
24
+ attr_accessor :key
25
+ attr_accessor :value
26
+
27
+ def initialize(key = nil, value = nil)
28
+ @key = key
29
+ @value = value
30
+ end
31
+ end
32
+ end
33
+
34
+ # {urn:lp}loginResponse
35
+ # loginResult - WSDL::Anonymous::LoginResponse::LoginResult
36
+ class LoginResponse
37
+
38
+ # inner class for member: loginResult
39
+ # {}loginResult
40
+ # sessionID - SOAP::SOAPString
41
+ class LoginResult
42
+ attr_accessor :sessionID
43
+
44
+ def initialize(sessionID = nil)
45
+ @sessionID = sessionID
46
+ end
47
+ end
48
+
49
+ attr_accessor :loginResult
50
+
51
+ def initialize(loginResult = nil)
52
+ @loginResult = loginResult
53
+ end
54
+ end
55
+
56
+ # {urn:lp}Pack
57
+ # header - WSDL::Anonymous::Pack::Header
58
+ class Pack
59
+
60
+ # inner class for member: Header
61
+ # {}Header
62
+ # header1 - SOAP::SOAPString
63
+ class Header
64
+ attr_accessor :header1
65
+
66
+ def initialize(header1 = nil)
67
+ @header1 = header1
68
+ end
69
+ end
70
+
71
+ attr_accessor :header
72
+
73
+ def initialize(header = nil)
74
+ @header = header
75
+ end
76
+ end
77
+
78
+ # {urn:lp}Envelope
79
+ # header - WSDL::Anonymous::Envelope::Header
80
+ class Envelope
81
+
82
+ # inner class for member: Header
83
+ # {}Header
84
+ # header2 - SOAP::SOAPString
85
+ class Header
86
+ attr_accessor :header2
87
+
88
+ def initialize(header2 = nil)
89
+ @header2 = header2
90
+ end
91
+ end
92
+
93
+ attr_accessor :header
94
+
95
+ def initialize(header = nil)
96
+ @header = header
97
+ end
98
+ end
99
+
100
+ # {urn:lp}login
101
+ # loginRequest - WSDL::Anonymous::Login::LoginRequest
102
+ class Login
103
+
104
+ # inner class for member: loginRequest
105
+ # {}loginRequest
106
+ # username - SOAP::SOAPString
107
+ # password - SOAP::SOAPString
108
+ # timezone - SOAP::SOAPString
109
+ class LoginRequest
110
+ attr_accessor :username
111
+ attr_accessor :password
112
+ attr_accessor :timezone
113
+
114
+ def initialize(username = nil, password = nil, timezone = nil)
115
+ @username = username
116
+ @password = password
117
+ @timezone = timezone
118
+ end
119
+ end
120
+
121
+ attr_accessor :loginRequest
122
+
123
+ def initialize(loginRequest = nil)
124
+ @loginRequest = loginRequest
125
+ end
126
+ end
127
+
128
+
129
+ end; end