Skip to content
Snippets Groups Projects
Commit ef137371 authored by mbrodhu's avatar mbrodhu
Browse files

set properties in beans for set deliverer

parent 4514e9ae
No related branches found
No related tags found
No related merge requests found
......@@ -22,50 +22,36 @@ import org.junit.Test;
public class OaiPmhTest {
private static OAI_ESClient oaiEsClient;
DeletedRecordType bla = DeletedRecordType.NO;
GranularityType bla2 = GranularityType.YYYY_MM_DD_THH_MM_SS_Z;
private RepIdentification rep = new RepIdentification(
"TextGrid-Repository",
"www.textgridrep.de",
this.bla,
"2011-06-11T02:32:40Z",
this.bla2,
"2.0",
"textgrid-support@gwdg.de");
private static OAI_ESClient oaiEsClient;
DeletedRecordType bla = DeletedRecordType.NO;
GranularityType bla2 = GranularityType.YYYY_MM_DD_THH_MM_SS_Z;
private RepIdentification rep = new RepIdentification(
"TextGrid-Repository", "www.textgridrep.de", this.bla,
"2011-06-11T02:32:40Z", this.bla2, "2.0",
"textgrid-support@gwdg.de");
// private RecordDeliverer record = new RecordDeliverer(
// oaiEsClient,
// TGConstants.TGWorkFields,
// true, false);
private RecordDeliverer record = new RecordDeliverer(
oaiEsClient,
DARIAHConstants.DARIAHFields,
false, true);
private RecordListDeliverer recordList = new RecordListDeliverer(
oaiEsClient,
DARIAHConstants.DARIAHFields,
DARIAHConstants.DARIAHCollectionFields,
false, true);
private boolean textgrid;
private boolean dariah;
private RecordDeliverer record = new RecordDeliverer(oaiEsClient,
DARIAHConstants.DARIAHFields, false, true);
private RecordListDeliverer recordList = new RecordListDeliverer(
oaiEsClient, DARIAHConstants.DARIAHFields,
DARIAHConstants.DARIAHCollectionFields, false, true);
private boolean textgrid;
private boolean dariah;
// private RecordListDeliverer recordList = new
// RecordListDeliverer(oaiEsClient, TGConstants.TGFields,
// TGConstants.TGWorkFields, true, false);
private MetadataFormatListDeliverer metadataFormatList = new MetadataFormatListDeliverer(
oaiEsClient);
private SetDeliverer setList = new SetDeliverer(
oaiEsClient);
private IdentifierListDeliverer identifierList = new IdentifierListDeliverer(oaiEsClient, true, false);
private OAIPMHImpl request = new OAIPMHImpl(
oaiEsClient,
this.rep,
this.record,
this.recordList,
this.metadataFormatList,
this.setList,
this.identifierList
);
private MetadataFormatListDeliverer metadataFormatList = new MetadataFormatListDeliverer(
oaiEsClient);
private SetDeliverer setList = new SetDeliverer(oaiEsClient);
private IdentifierListDeliverer identifierList = new IdentifierListDeliverer(
oaiEsClient, true, false);
private OAIPMHImpl request = new OAIPMHImpl(oaiEsClient, this.rep,
this.record, this.recordList, this.metadataFormatList,
this.setList, this.identifierList);
/**
* @throws Exception
......@@ -73,13 +59,13 @@ public class OaiPmhTest {
@BeforeClass
public static void setUp() throws Exception {
//oaiEsClient = new OAI_ESClient("localhost", 9302,
// "dariah-repository-prototype");
// oaiEsClient = new OAI_ESClient("localhost", 9302,
// "dariah-repository-prototype");
oaiEsClient = new OAI_ESClient("localhost", 9302,
"tg-dev1-test-instance");
//oaiEsClient.setEsIndex("textgrid-public");
//oaiEsClient.setEsType("metadata");
"tg-dev1-test-instance");
// oaiEsClient.setEsIndex("textgrid-public");
// oaiEsClient.setEsType("metadata");
oaiEsClient.setEsIndex("dariahreptest");
oaiEsClient.setEsType("oai");
}
......@@ -370,7 +356,7 @@ public class OaiPmhTest {
* @throws ParseException
*/
@Test
@Ignore
// @Ignore
public void testListRecordsDariah() throws ParseException {
this.recordList.setContributor(DARIAHConstants.CONTRIBUTOR_LIST);
......@@ -457,24 +443,25 @@ public class OaiPmhTest {
this.identifierList.setDateOfObjectCreation(TGConstants.CREATED);
this.identifierList.setIdentifierField("textgridUri");
this.identifierList.setRepositoryObjectURIPrefix("textgridUri:");
JAXBElement<OAIPMHType> r = this.request.getRequest("ListIdentifiers",
"", "oai_dc", "", "", "", "");
JAXB.marshal(r, System.out);
System.out.println("-----------------------------------\n");
}
@Test
@Ignore
public void testListIdentifiersDARIAH() throws ParseException {
this.identifierList.setFieldForRange(DARIAHConstants.RANGE_FIELD);
this.identifierList .setIdentifierListFields(DARIAHConstants.IDENTIFIER_LIST_FIELDS);
this.identifierList
.setIdentifierListFields(DARIAHConstants.IDENTIFIER_LIST_FIELDS);
this.identifierList.setFormatField(DARIAHConstants.FORMAT);
//this.identifierList.setFormatToFilter(TextGridMimetypes.EDITION);
// this.identifierList.setFormatToFilter(TextGridMimetypes.EDITION);
this.identifierList.setDateOfObjectCreation(DARIAHConstants.CREATED);
this.identifierList.setRepositoryObjectURIPrefix("hdl:");
this.identifierList.setIdentifierField(DARIAHConstants.IDENTIFIER);
JAXBElement<OAIPMHType> r = this.request.getRequest("ListIdentifiers",
"", "oai_dc", "", "", "", "");
JAXB.marshal(r, System.out);
......
......@@ -164,6 +164,13 @@
<bean id="SetDeliverer" class="info.textgrid.middleware.SetDeliverer">
<constructor-arg ref="ElasticSearchClient" />
<property name="formatField" value="${formatField}"/>
<property name="formatToFilter" value="${formatToFilter}"/>
<property name="identifierField" value="${identifierField}"/>
<property name="repositoryObjectURIPrefix" value="${repositoryObjectURIPrefix}"/>
<property name="specField" value="${titleField}"/>
<property name="specFieldPrefix" value="${specFieldPrefix}"/>
</bean>
<bean id="MetadataFormatList" class="info.textgrid.middleware.MetadataFormatListDeliverer">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment