Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DARIAH-DE OAI-PMH Services
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
DARIAH-DE
DARIAH-DE OAI-PMH Services
Commits
ef137371
Commit
ef137371
authored
9 years ago
by
mbrodhu
Browse files
Options
Downloads
Patches
Plain Diff
set properties in beans for set deliverer
parent
4514e9ae
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
oaipmh-core/src/test/java/info/textgrid/middleware/OaiPmhTest.java
+36
-49
36 additions, 49 deletions
...re/src/test/java/info/textgrid/middleware/OaiPmhTest.java
oaipmh-webapp/src/main/webapp/WEB-INF/beans.xml
+7
-0
7 additions, 0 deletions
oaipmh-webapp/src/main/webapp/WEB-INF/beans.xml
with
43 additions
and
49 deletions
oaipmh-core/src/test/java/info/textgrid/middleware/OaiPmhTest.java
+
36
−
49
View file @
ef137371
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
oaipmh-webapp/src/main/webapp/WEB-INF/beans.xml
+
7
−
0
View file @
ef137371
...
...
@@ -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"
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment