use of org.collectionspace.csp.helper.core.ConfigFinder in project application by collectionspace.
the class ServicesBaseClass method getServiceManager.
private CSPManager getServiceManager() throws CSPDependencyException {
CSPManager cspm = new CSPManagerImpl();
cspm.register(new CoreConfig());
cspm.register(new Spec());
cspm.register(new ServicesStorageGenerator());
cspm.go();
cspm.configure(getRootSource(), new ConfigFinder(null), false);
return cspm;
}
use of org.collectionspace.csp.helper.core.ConfigFinder in project application by collectionspace.
the class TestService method testXMLJSONConversion.
@Test
public void testXMLJSONConversion() throws Exception {
CSPManager cspm = new CSPManagerImpl();
cspm.register(new CoreConfig());
cspm.register(new Spec());
cspm.register(new ServicesStorageGenerator());
cspm.go();
// argh - test break when config changes *sob*
cspm.configure(getRootSource(), new ConfigFinder(null), false);
ConfigRoot root = cspm.getConfigRoot();
Spec spec = (Spec) root.getRoot(Spec.SPEC_ROOT);
testXMLJSON(spec, "location", "location.xml", "location.json");
testXMLJSON(spec, "concept", "concept.xml", "concept.json");
testXMLJSON(spec, "place", "placeXMLJSON.xml", "placeJSON.json");
testXMLJSON(spec, "citation", "citation.xml", "citation.json");
testXMLJSON(spec, "work", "work.xml", "work.json");
testXMLJSON(spec, "collection-object", "objectsXMLJSON.xml", "objectsJSON.json");
testXMLJSON(spec, "acquisition", "acquisitionXMLJSON.xml", "acquisitionJSON.json");
testXMLJSON(spec, "intake", "intake.xml", "intake.json");
testXMLJSON(spec, "loanin", "loanin.xml", "loanin.json");
testXMLJSON(spec, "loanout", "loanout.xml", "loanout.json");
testXMLJSON(spec, "valuationcontrol", "valuationcontrol.xml", "valuationcontrol.json");
testXMLJSON(spec, "movement", "movement.xml", "movement.json");
testXMLJSON(spec, "objectexit", "objectexit.xml", "objectexit.json");
testXMLJSON(spec, "group", "group.xml", "group.json");
testXMLJSON(spec, "media", "media.xml", "mediaJSON.json");
testXMLJSON(spec, "conditioncheck", "conditioncheck.xml", "conditioncheck.json");
testXMLJSON(spec, "conservation", "conservation.xml", "conservation.json");
testXMLJSON(spec, "exhibition", "exhibition.xml", "exhibition.json");
testXMLJSON(spec, "role", "role.xml", "role.json");
testXMLJSON(spec, "permrole", "rolepermissions.xml", "rolepermissions.json");
testXMLJSON(spec, "userrole", "accountrole.xml", "accountrole.json");
// testXMLJSON(spec,
// "permission","permissionXMLJSON.xml","permissionsJSON.json");
// testXMLJSON(spec,
// "organization","orgauthref.xml","permissionsJSON.json");
}
use of org.collectionspace.csp.helper.core.ConfigFinder in project application by collectionspace.
the class ServiceConfigGeneration method getServiceManager.
private CSPManager getServiceManager(File configFile) throws Exception {
CSPManager result = null;
CSPManager cspm = new CSPManagerImpl();
cspm.register(new CoreConfig());
cspm.register(new Spec());
cspm.register(new ServicesStorageGenerator());
// Do more initialization of our CSPManagerImpl instance (i.e., cspm)
cspm.go();
File configBase = configFile.getParentFile();
// Saves a copy of the base config directory
cspm.setConfigBase(configBase);
cspm.configure(getSource(configFile), new ConfigFinder(null, configBase), true);
this.setConfigBase(configBase);
this.setConfigFile(configFile);
result = cspm;
return result;
}
use of org.collectionspace.csp.helper.core.ConfigFinder in project application by collectionspace.
the class TestSchema method testSchema.
@Test
public void testSchema() {
CSPManager cspm = new CSPManagerImpl();
cspm.register(new CoreConfig());
cspm.register(new Spec());
try {
cspm.go();
// finds "src/main/resources/default.xml" when running tests
InputSource configsource = getSource("config.xml");
// pieces together the set of config/settings files for parsing
cspm.configure(configsource, new ConfigFinder(null), false);
} catch (CSPDependencyException e) {
log.error("CSPManagerImpl failed");
log.error(e.getLocalizedMessage());
}
ConfigRoot root = cspm.getConfigRoot();
Spec spec = (Spec) root.getRoot(Spec.SPEC_ROOT);
assertNotNull(spec);
// spec.dump()
Record r_obj = spec.getRecord("collection-object");
if (log.isTraceEnabled()) {
try {
String recordDump = r_obj.dumpFields();
log.trace(recordDump);
} catch (JSONException e) {
// TODO Auto-generated catch block
log.trace("JSONException encountered trying to log debugging information", e);
}
}
assertNotNull(r_obj);
assertEquals("collection-object", r_obj.getID());
assertEquals("cataloging", r_obj.getWebURL());
StringBuffer dumpBuffer = new StringBuffer(1000);
r_obj.dump(dumpBuffer);
System.out.println(dumpBuffer.toString());
// log.info(spec.dump());
JSONObject out = new JSONObject();
Boolean ignore = false;
String t = "";
for (Record r : spec.getAllRecords()) {
// log.info(r.getID());
if (r.getID().equals("termlist")) {
ignore = true;
}
if (!ignore) {
try {
t = spec.getRecord(r.getID()).dumpFields();
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
// log.info(t.toString());
}
}
/* RECORD/field -> FIELD(type) */
/*
rules.addRule("record",new String[]{"field"},"field",new SectionGenerator() {
public void step(Section milestone,Map<String, String> data) {
milestone.addValue("field.type",milestone.getParent().getValue("/record/type"));
}
},new Target(){
public Object populate(Object parent, ReadOnlySection milestone) {
Field f=new Field();
f.type=(String)milestone.getValue("field.type");
((Record)parent).fields.add(f);
return f;
}
});
// MAIN/persistence/service -> URL(url)
rules.addRule("main",new String[]{"persistence","service"},"url",new SectionGenerator() {
public void step(Section milestone,Map<String, String> data) {
milestone.addValue("service.url",data.get("/service/url"));
}
},null);
*/
}
use of org.collectionspace.csp.helper.core.ConfigFinder in project application by collectionspace.
the class TestService method testJSONXMLConversion.
/**
* I wouldn't call this a robust multipart test - needs more work but works
* fine for single part multipart xml
*
* @throws Exception
*/
@Test
public void testJSONXMLConversion() throws Exception {
CSPManager cspm = new CSPManagerImpl();
cspm.register(new CoreConfig());
cspm.register(new Spec());
cspm.register(new ServicesStorageGenerator());
cspm.go();
// argh - test break when config changes *sob*
cspm.configure(getRootSource(), new ConfigFinder(null), false);
ConfigRoot root = cspm.getConfigRoot();
Spec spec = (Spec) root.getRoot(Spec.SPEC_ROOT);
testJSONXML(spec, "location", "location.xml", "location.json");
testJSONXML(spec, "concept", "concept.xml", "concept.json");
testJSONXML(spec, "citation", "citation.xml", "citation.json");
testJSONXML(spec, "place", "placeXMLJSON.xml", "placeJSON.json");
testJSONXML(spec, "work", "work.xml", "work.json");
// CSPACE-6135: In CollectionObject, the computedCurrentLocation field is services-readonly,
// so the JSON->XML->JSON conversion produces JSON that does not match the initial JSON
// (computedCurrentLocation is omitted from the XML, so it does not appear in the JSON
// converted back from the XML). In this case, we need to supply a third parameter to
// specify the expected round-trip JSON. objectsReturnedJSON.json is identical to
// objectsJSON.json, except computedCurrentLocation has been removed.
testJSONXML(spec, "collection-object", "objectsXMLJSON.xml", "objectsJSON.json", "objectsReturnedJSON.json");
testJSONXML(spec, "acquisition", "acquisitionXMLJSON.xml", "acquisitionJSON.json");
testJSONXML(spec, "media", "media.xml", "mediaJSON.json");
testJSONXML(spec, "loanin", "loanin.xml", "loanin.json");
testJSONXML(spec, "loanout", "loanout.xml", "loanout.json");
testJSONXML(spec, "intake", "intake.xml", "intake.json");
testJSONXML(spec, "movement", "movement.xml", "movement.json");
testJSONXML(spec, "valuationcontrol", "valuationcontrol.xml", "valuationcontrol.json");
testJSONXML(spec, "objectexit", "objectexit.xml", "objectexit.json");
testJSONXML(spec, "group", "group.xml", "group.json");
testJSONXML(spec, "conditioncheck", "conditioncheck.xml", "conditioncheck.json");
testJSONXML(spec, "conservation", "conservation.xml", "conservation.json");
testJSONXML(spec, "exhibition", "exhibition.xml", "exhibition.json");
testJSONXML(spec, "role", "role.xml", "role.json");
// testJSONXML(spec,"permrole","rolepermissions.xml","rolepermissions.json");
// testJSONXML(spec, "userrole","accountrole.xml","accountrole.json");
// testJSONXML(spec,
// "permission","permissionXMLJSON.xml","permissionsJSON.json");
}
Aggregations