xml-toolkit 1.0.19 → 1.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/SOAP11.js +3 -3
- package/lib/XMLSchemata.js +2 -2
- package/package.json +1 -1
- package/test/smev-message-exchange-basic-1.1.xsd +380 -0
- package/test/smev-message-exchange-faults-1.1.xsd +365 -0
- package/test/smev-message-exchange-service-1.1.xsd +643 -0
- package/test/smev-message-exchange-types-1.1.xsd +697 -0
- package/test/test.js +11 -1
package/test/test.js
CHANGED
|
@@ -386,6 +386,14 @@ async function test_008_schemata (fn) {
|
|
|
386
386
|
|
|
387
387
|
}
|
|
388
388
|
|
|
389
|
+
async function test_009_schemata (fn) {
|
|
390
|
+
|
|
391
|
+
const xs = new XMLSchemata ('test/' + fn)
|
|
392
|
+
|
|
393
|
+
console.log (xs)
|
|
394
|
+
|
|
395
|
+
}
|
|
396
|
+
|
|
389
397
|
function test_010_node () {
|
|
390
398
|
|
|
391
399
|
for (const s of
|
|
@@ -460,8 +468,10 @@ async function main () {
|
|
|
460
468
|
// await test_004_schemata ()
|
|
461
469
|
// await test_005_schemata ()
|
|
462
470
|
// await test_006_schemata ()
|
|
463
|
-
await test_007_wsdl ()
|
|
471
|
+
// await test_007_wsdl ()
|
|
464
472
|
// await test_008_schemata ()
|
|
473
|
+
test_009_schemata ('smev-message-exchange-service-1.1.xsd')
|
|
474
|
+
// test_009_schemata ('sign.xsd')
|
|
465
475
|
|
|
466
476
|
// test_010_node ()
|
|
467
477
|
// test_011_iterator ('param_types.xml')
|