Tests
This commit is contained in:
parent
c6930f213d
commit
aa58648d64
|
@ -22,6 +22,12 @@
|
|||
{"fileset" :{"_type" : "RegisteredFileSet"}},
|
||||
{"title" : {"_max" : 1, "_min" : 1}}
|
||||
]
|
||||
},
|
||||
"pianteFineScavo" : { "_max" : -1, "_min" : 1,
|
||||
"children" : [
|
||||
{"fileset" :{"_type" : "RegisteredFileSet"}},
|
||||
{"title" : {"_max" : 1, "_min" : 1}}
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -56,8 +62,8 @@
|
|||
"type" : "Materializer",
|
||||
"configuration" : {
|
||||
"registeredFileSetPaths" : [
|
||||
{"schemaField" : "pianteFineScavo","documentPath" : "pianteFineScavo[*]"},
|
||||
{"schemaField" : "posizionamentoScavo","documentPath" : "posizionamentoScavo"}
|
||||
{"schemaField" : "pianteFineScavo","documentPath" : "pianteFineScavo[*].fileset"},
|
||||
{"schemaField" : "posizionamentoScavo","documentPath" : "posizionamentoScavo.fileset"}
|
||||
]
|
||||
}
|
||||
},
|
||||
|
|
|
@ -116,6 +116,15 @@ public class DummyProfiledDocumentTest extends AbstractProfiledDocumentsTests{
|
|||
req.setStepID("SUBMIT-FOR-REVIEW");
|
||||
doc=step(doc.get_id(),req);
|
||||
System.out.println(doc);
|
||||
if(doc.getLifecycleInformation().getErrorMessages()!=null) {
|
||||
System.out.println("ERROR MESSAGES");
|
||||
doc.getLifecycleInformation().getErrorMessages().forEach(s -> System.out.println(s));
|
||||
}
|
||||
if(doc.getLifecycleInformation().getWarningMessages()!=null) {
|
||||
System.out.println("WARNING MESSAGES");
|
||||
doc.getLifecycleInformation().getWarningMessages().forEach(s -> System.out.println(s));
|
||||
}
|
||||
|
||||
assertTrue(doc.getLifecycleInformation().getLastOperationStatus().equals(LifecycleInformation.Status.OK));
|
||||
JSONPathWrapper wrapper = new JSONPathWrapper(doc.getTheDocument().toJson());
|
||||
RegisteredFileSet fs = Serialization.convert(wrapper.getByPath("$..fileset").get(0),RegisteredFileSet.class);
|
||||
|
|
Loading…
Reference in New Issue