mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 23:13:04 +00:00
1797 lines
50 KiB
TypeScript
1797 lines
50 KiB
TypeScript
import { of as observableOf } from 'rxjs';
|
|
import { ResourceType } from '../../core/shared/resource-type';
|
|
import { OpenaireBrokerTopicObject } from '../../core/openaire/broker/models/openaire-broker-topic.model';
|
|
import { OpenaireBrokerEventObject } from '../../core/openaire/broker/models/openaire-broker-event.model';
|
|
import { OpenaireBrokerTopicRestService } from '../../core/openaire/broker/topics/openaire-broker-topic-rest.service';
|
|
import { OpenaireBrokerEventRestService } from '../../core/openaire/broker/events/openaire-broker-event-rest.service';
|
|
import { DSpaceObject } from '../../core/shared/dspace-object.model';
|
|
import { OpenaireStateService } from '../../openaire/openaire-state.service';
|
|
import { Item } from '../../core/shared/item.model';
|
|
import {
|
|
createNoContentRemoteDataObject$,
|
|
createSuccessfulRemoteDataObject,
|
|
createSuccessfulRemoteDataObject$
|
|
} from '../remote-data.utils';
|
|
import { SearchResult } from '../search/models/search-result.model';
|
|
|
|
// REST Mock ---------------------------------------------------------------------
|
|
// -------------------------------------------------------------------------------
|
|
|
|
// Items
|
|
// -------------------------------------------------------------------------------
|
|
|
|
const ItemMockPid1: Item = Object.assign(
|
|
new Item(),
|
|
{
|
|
handle: '10077/21486',
|
|
lastModified: '2017-04-24T19:44:08.178+0000',
|
|
isArchived: true,
|
|
isDiscoverable: true,
|
|
isWithdrawn: false,
|
|
_links:{
|
|
self: {
|
|
href: 'https://rest.api/rest/api/core/items/0ec7ff22-f211-40ab-a69e-c819b0b1f357'
|
|
}
|
|
},
|
|
id: 'ITEM4567-e89b-12d3-a456-426614174001',
|
|
uuid: 'ITEM4567-e89b-12d3-a456-426614174001',
|
|
type: 'item',
|
|
metadata: {
|
|
'dc.creator': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Doe, Jane'
|
|
}
|
|
],
|
|
'dc.date.accessioned': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.available': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.issued': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26'
|
|
}
|
|
],
|
|
'dc.identifier.issn': [
|
|
{
|
|
language: 'en_US',
|
|
value: '123456789'
|
|
}
|
|
],
|
|
'dc.identifier.uri': [
|
|
{
|
|
language: null,
|
|
value: 'http://dspace7.4science.it/xmlui/handle/10673/6'
|
|
}
|
|
],
|
|
'dc.description.abstract': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'This is really just a sample abstract. If it was a real abstract it would contain useful information about this test document. Sorry though, nothing useful in this paragraph. You probably shouldn\'t have even bothered to read it!'
|
|
}
|
|
],
|
|
'dc.description.provenance': [
|
|
{
|
|
language: 'en',
|
|
value: 'Made available in DSpace on 2012-06-26T19:58:25Z (GMT). No. of bitstreams: 2\r\ntest_ppt.ppt: 12707328 bytes, checksum: a353fc7d29b3c558c986f7463a41efd3 (MD5)\r\ntest_ppt.pptx: 12468572 bytes, checksum: 599305edb4ebee329667f2c35b14d1d6 (MD5)'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T09:17:34Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T11:04:16Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2017-04-24T19:44:08Z (GMT).'
|
|
}
|
|
],
|
|
'dc.language': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'en'
|
|
}
|
|
],
|
|
'dc.rights': [
|
|
{
|
|
language: 'en_US',
|
|
value: '© Jane Doe'
|
|
}
|
|
],
|
|
'dc.subject': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword1'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword2'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword3'
|
|
}
|
|
],
|
|
'dc.title': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Index nominum et rerum'
|
|
}
|
|
],
|
|
'dc.type': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'text'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
);
|
|
|
|
const ItemMockPid2: Item = Object.assign(
|
|
new Item(),
|
|
{
|
|
handle: '10077/21486',
|
|
lastModified: '2017-04-24T19:44:08.178+0000',
|
|
isArchived: true,
|
|
isDiscoverable: true,
|
|
isWithdrawn: false,
|
|
_links:{
|
|
self: {
|
|
href: 'https://rest.api/rest/api/core/items/0ec7ff22-f211-40ab-a69e-c819b0b1f357'
|
|
}
|
|
},
|
|
id: 'ITEM4567-e89b-12d3-a456-426614174004',
|
|
uuid: 'ITEM4567-e89b-12d3-a456-426614174004',
|
|
type: 'item',
|
|
metadata: {
|
|
'dc.creator': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Doe, Jane'
|
|
}
|
|
],
|
|
'dc.date.accessioned': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.available': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.issued': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26'
|
|
}
|
|
],
|
|
'dc.identifier.issn': [
|
|
{
|
|
language: 'en_US',
|
|
value: '123456789'
|
|
}
|
|
],
|
|
'dc.identifier.uri': [
|
|
{
|
|
language: null,
|
|
value: 'http://dspace7.4science.it/xmlui/handle/10673/6'
|
|
}
|
|
],
|
|
'dc.description.abstract': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'This is really just a sample abstract. If it was a real abstract it would contain useful information about this test document. Sorry though, nothing useful in this paragraph. You probably shouldn\'t have even bothered to read it!'
|
|
}
|
|
],
|
|
'dc.description.provenance': [
|
|
{
|
|
language: 'en',
|
|
value: 'Made available in DSpace on 2012-06-26T19:58:25Z (GMT). No. of bitstreams: 2\r\ntest_ppt.ppt: 12707328 bytes, checksum: a353fc7d29b3c558c986f7463a41efd3 (MD5)\r\ntest_ppt.pptx: 12468572 bytes, checksum: 599305edb4ebee329667f2c35b14d1d6 (MD5)'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T09:17:34Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T11:04:16Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2017-04-24T19:44:08Z (GMT).'
|
|
}
|
|
],
|
|
'dc.language': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'en'
|
|
}
|
|
],
|
|
'dc.rights': [
|
|
{
|
|
language: 'en_US',
|
|
value: '© Jane Doe'
|
|
}
|
|
],
|
|
'dc.subject': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword1'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword2'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword3'
|
|
}
|
|
],
|
|
'dc.title': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'UNA NUOVA RILETTURA DELL\u0027 ARISTOTELE DI FRANZ BRENTANO ALLA LUCE DI ALCUNI INEDITI'
|
|
}
|
|
],
|
|
'dc.type': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'text'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
);
|
|
|
|
const ItemMockPid3: Item = Object.assign(
|
|
new Item(),
|
|
{
|
|
handle: '10077/21486',
|
|
lastModified: '2017-04-24T19:44:08.178+0000',
|
|
isArchived: true,
|
|
isDiscoverable: true,
|
|
isWithdrawn: false,
|
|
_links:{
|
|
self: {
|
|
href: 'https://rest.api/rest/api/core/items/0ec7ff22-f211-40ab-a69e-c819b0b1f357'
|
|
}
|
|
},
|
|
id: 'ITEM4567-e89b-12d3-a456-426614174005',
|
|
uuid: 'ITEM4567-e89b-12d3-a456-426614174005',
|
|
type: 'item',
|
|
metadata: {
|
|
'dc.creator': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Doe, Jane'
|
|
}
|
|
],
|
|
'dc.date.accessioned': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.available': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.issued': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26'
|
|
}
|
|
],
|
|
'dc.identifier.issn': [
|
|
{
|
|
language: 'en_US',
|
|
value: '123456789'
|
|
}
|
|
],
|
|
'dc.identifier.uri': [
|
|
{
|
|
language: null,
|
|
value: 'http://dspace7.4science.it/xmlui/handle/10673/6'
|
|
}
|
|
],
|
|
'dc.description.abstract': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'This is really just a sample abstract. If it was a real abstract it would contain useful information about this test document. Sorry though, nothing useful in this paragraph. You probably shouldn\'t have even bothered to read it!'
|
|
}
|
|
],
|
|
'dc.description.provenance': [
|
|
{
|
|
language: 'en',
|
|
value: 'Made available in DSpace on 2012-06-26T19:58:25Z (GMT). No. of bitstreams: 2\r\ntest_ppt.ppt: 12707328 bytes, checksum: a353fc7d29b3c558c986f7463a41efd3 (MD5)\r\ntest_ppt.pptx: 12468572 bytes, checksum: 599305edb4ebee329667f2c35b14d1d6 (MD5)'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T09:17:34Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T11:04:16Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2017-04-24T19:44:08Z (GMT).'
|
|
}
|
|
],
|
|
'dc.language': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'en'
|
|
}
|
|
],
|
|
'dc.rights': [
|
|
{
|
|
language: 'en_US',
|
|
value: '© Jane Doe'
|
|
}
|
|
],
|
|
'dc.subject': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword1'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword2'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword3'
|
|
}
|
|
],
|
|
'dc.title': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Sustainable development'
|
|
}
|
|
],
|
|
'dc.type': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'text'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
);
|
|
|
|
const ItemMockPid4: Item = Object.assign(
|
|
new Item(),
|
|
{
|
|
handle: '10077/21486',
|
|
lastModified: '2017-04-24T19:44:08.178+0000',
|
|
isArchived: true,
|
|
isDiscoverable: true,
|
|
isWithdrawn: false,
|
|
_links:{
|
|
self: {
|
|
href: 'https://rest.api/rest/api/core/items/0ec7ff22-f211-40ab-a69e-c819b0b1f357'
|
|
}
|
|
},
|
|
id: 'ITEM4567-e89b-12d3-a456-426614174006',
|
|
uuid: 'ITEM4567-e89b-12d3-a456-426614174006',
|
|
type: 'item',
|
|
metadata: {
|
|
'dc.creator': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Doe, Jane'
|
|
}
|
|
],
|
|
'dc.date.accessioned': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.available': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.issued': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26'
|
|
}
|
|
],
|
|
'dc.identifier.issn': [
|
|
{
|
|
language: 'en_US',
|
|
value: '123456789'
|
|
}
|
|
],
|
|
'dc.identifier.uri': [
|
|
{
|
|
language: null,
|
|
value: 'http://dspace7.4science.it/xmlui/handle/10673/6'
|
|
}
|
|
],
|
|
'dc.description.abstract': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'This is really just a sample abstract. If it was a real abstract it would contain useful information about this test document. Sorry though, nothing useful in this paragraph. You probably shouldn\'t have even bothered to read it!'
|
|
}
|
|
],
|
|
'dc.description.provenance': [
|
|
{
|
|
language: 'en',
|
|
value: 'Made available in DSpace on 2012-06-26T19:58:25Z (GMT). No. of bitstreams: 2\r\ntest_ppt.ppt: 12707328 bytes, checksum: a353fc7d29b3c558c986f7463a41efd3 (MD5)\r\ntest_ppt.pptx: 12468572 bytes, checksum: 599305edb4ebee329667f2c35b14d1d6 (MD5)'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T09:17:34Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T11:04:16Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2017-04-24T19:44:08Z (GMT).'
|
|
}
|
|
],
|
|
'dc.language': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'en'
|
|
}
|
|
],
|
|
'dc.rights': [
|
|
{
|
|
language: 'en_US',
|
|
value: '© Jane Doe'
|
|
}
|
|
],
|
|
'dc.subject': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword1'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword2'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword3'
|
|
}
|
|
],
|
|
'dc.title': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Reply to Critics'
|
|
}
|
|
],
|
|
'dc.type': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'text'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
);
|
|
|
|
const ItemMockPid5: Item = Object.assign(
|
|
new Item(),
|
|
{
|
|
handle: '10077/21486',
|
|
lastModified: '2017-04-24T19:44:08.178+0000',
|
|
isArchived: true,
|
|
isDiscoverable: true,
|
|
isWithdrawn: false,
|
|
_links:{
|
|
self: {
|
|
href: 'https://rest.api/rest/api/core/items/0ec7ff22-f211-40ab-a69e-c819b0b1f357'
|
|
}
|
|
},
|
|
id: 'ITEM4567-e89b-12d3-a456-426614174007',
|
|
uuid: 'ITEM4567-e89b-12d3-a456-426614174007',
|
|
type: 'item',
|
|
metadata: {
|
|
'dc.creator': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Doe, Jane'
|
|
}
|
|
],
|
|
'dc.date.accessioned': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.available': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.issued': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26'
|
|
}
|
|
],
|
|
'dc.identifier.issn': [
|
|
{
|
|
language: 'en_US',
|
|
value: '123456789'
|
|
}
|
|
],
|
|
'dc.identifier.uri': [
|
|
{
|
|
language: null,
|
|
value: 'http://dspace7.4science.it/xmlui/handle/10673/6'
|
|
}
|
|
],
|
|
'dc.description.abstract': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'This is really just a sample abstract. If it was a real abstract it would contain useful information about this test document. Sorry though, nothing useful in this paragraph. You probably shouldn\'t have even bothered to read it!'
|
|
}
|
|
],
|
|
'dc.description.provenance': [
|
|
{
|
|
language: 'en',
|
|
value: 'Made available in DSpace on 2012-06-26T19:58:25Z (GMT). No. of bitstreams: 2\r\ntest_ppt.ppt: 12707328 bytes, checksum: a353fc7d29b3c558c986f7463a41efd3 (MD5)\r\ntest_ppt.pptx: 12468572 bytes, checksum: 599305edb4ebee329667f2c35b14d1d6 (MD5)'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T09:17:34Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T11:04:16Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2017-04-24T19:44:08Z (GMT).'
|
|
}
|
|
],
|
|
'dc.language': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'en'
|
|
}
|
|
],
|
|
'dc.rights': [
|
|
{
|
|
language: 'en_US',
|
|
value: '© Jane Doe'
|
|
}
|
|
],
|
|
'dc.subject': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword1'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword2'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword3'
|
|
}
|
|
],
|
|
'dc.title': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'PROGETTAZIONE, SINTESI E VALUTAZIONE DELL\u0027ATTIVITA\u0027 ANTIMICOBATTERICA ED ANTIFUNGINA DI NUOVI DERIVATI ETEROCICLICI'
|
|
}
|
|
],
|
|
'dc.type': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'text'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
);
|
|
|
|
const ItemMockPid6: Item = Object.assign(
|
|
new Item(),
|
|
{
|
|
handle: '10077/21486',
|
|
lastModified: '2017-04-24T19:44:08.178+0000',
|
|
isArchived: true,
|
|
isDiscoverable: true,
|
|
isWithdrawn: false,
|
|
_links:{
|
|
self: {
|
|
href: 'https://rest.api/rest/api/core/items/0ec7ff22-f211-40ab-a69e-c819b0b1f357'
|
|
}
|
|
},
|
|
id: 'ITEM4567-e89b-12d3-a456-426614174008',
|
|
uuid: 'ITEM4567-e89b-12d3-a456-426614174008',
|
|
type: 'item',
|
|
metadata: {
|
|
'dc.creator': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Doe, Jane'
|
|
}
|
|
],
|
|
'dc.date.accessioned': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.available': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.issued': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26'
|
|
}
|
|
],
|
|
'dc.identifier.issn': [
|
|
{
|
|
language: 'en_US',
|
|
value: '123456789'
|
|
}
|
|
],
|
|
'dc.identifier.uri': [
|
|
{
|
|
language: null,
|
|
value: 'http://dspace7.4science.it/xmlui/handle/10673/6'
|
|
}
|
|
],
|
|
'dc.description.abstract': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'This is really just a sample abstract. If it was a real abstract it would contain useful information about this test document. Sorry though, nothing useful in this paragraph. You probably shouldn\'t have even bothered to read it!'
|
|
}
|
|
],
|
|
'dc.description.provenance': [
|
|
{
|
|
language: 'en',
|
|
value: 'Made available in DSpace on 2012-06-26T19:58:25Z (GMT). No. of bitstreams: 2\r\ntest_ppt.ppt: 12707328 bytes, checksum: a353fc7d29b3c558c986f7463a41efd3 (MD5)\r\ntest_ppt.pptx: 12468572 bytes, checksum: 599305edb4ebee329667f2c35b14d1d6 (MD5)'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T09:17:34Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T11:04:16Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2017-04-24T19:44:08Z (GMT).'
|
|
}
|
|
],
|
|
'dc.language': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'en'
|
|
}
|
|
],
|
|
'dc.rights': [
|
|
{
|
|
language: 'en_US',
|
|
value: '© Jane Doe'
|
|
}
|
|
],
|
|
'dc.subject': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword1'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword2'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword3'
|
|
}
|
|
],
|
|
'dc.title': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Donald Davidson'
|
|
}
|
|
],
|
|
'dc.type': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'text'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
);
|
|
|
|
const ItemMockPid7: Item = Object.assign(
|
|
new Item(),
|
|
{
|
|
handle: '10077/21486',
|
|
lastModified: '2017-04-24T19:44:08.178+0000',
|
|
isArchived: true,
|
|
isDiscoverable: true,
|
|
isWithdrawn: false,
|
|
_links:{
|
|
self: {
|
|
href: 'https://rest.api/rest/api/core/items/0ec7ff22-f211-40ab-a69e-c819b0b1f357'
|
|
}
|
|
},
|
|
id: 'ITEM4567-e89b-12d3-a456-426614174009',
|
|
uuid: 'ITEM4567-e89b-12d3-a456-426614174009',
|
|
type: 'item',
|
|
metadata: {
|
|
'dc.creator': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Doe, Jane'
|
|
}
|
|
],
|
|
'dc.date.accessioned': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.available': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.issued': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26'
|
|
}
|
|
],
|
|
'dc.identifier.issn': [
|
|
{
|
|
language: 'en_US',
|
|
value: '123456789'
|
|
}
|
|
],
|
|
'dc.identifier.uri': [
|
|
{
|
|
language: null,
|
|
value: 'http://dspace7.4science.it/xmlui/handle/10673/6'
|
|
}
|
|
],
|
|
'dc.description.abstract': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'This is really just a sample abstract. If it was a real abstract it would contain useful information about this test document. Sorry though, nothing useful in this paragraph. You probably shouldn\'t have even bothered to read it!'
|
|
}
|
|
],
|
|
'dc.description.provenance': [
|
|
{
|
|
language: 'en',
|
|
value: 'Made available in DSpace on 2012-06-26T19:58:25Z (GMT). No. of bitstreams: 2\r\ntest_ppt.ppt: 12707328 bytes, checksum: a353fc7d29b3c558c986f7463a41efd3 (MD5)\r\ntest_ppt.pptx: 12468572 bytes, checksum: 599305edb4ebee329667f2c35b14d1d6 (MD5)'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T09:17:34Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T11:04:16Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2017-04-24T19:44:08Z (GMT).'
|
|
}
|
|
],
|
|
'dc.language': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'en'
|
|
}
|
|
],
|
|
'dc.rights': [
|
|
{
|
|
language: 'en_US',
|
|
value: '© Jane Doe'
|
|
}
|
|
],
|
|
'dc.subject': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword1'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword2'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword3'
|
|
}
|
|
],
|
|
'dc.title': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Missing abstract article'
|
|
}
|
|
],
|
|
'dc.type': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'text'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
);
|
|
|
|
export const ItemMockPid8: Item = Object.assign(
|
|
new Item(),
|
|
{
|
|
handle: '10077/21486',
|
|
lastModified: '2017-04-24T19:44:08.178+0000',
|
|
isArchived: true,
|
|
isDiscoverable: true,
|
|
isWithdrawn: false,
|
|
_links:{
|
|
self: {
|
|
href: 'https://rest.api/rest/api/core/items/0ec7ff22-f211-40ab-a69e-c819b0b1f357'
|
|
}
|
|
},
|
|
id: 'ITEM4567-e89b-12d3-a456-426614174002',
|
|
uuid: 'ITEM4567-e89b-12d3-a456-426614174002',
|
|
type: 'item',
|
|
metadata: {
|
|
'dc.creator': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Doe, Jane'
|
|
}
|
|
],
|
|
'dc.date.accessioned': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.available': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.issued': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26'
|
|
}
|
|
],
|
|
'dc.identifier.issn': [
|
|
{
|
|
language: 'en_US',
|
|
value: '123456789'
|
|
}
|
|
],
|
|
'dc.identifier.uri': [
|
|
{
|
|
language: null,
|
|
value: 'http://dspace7.4science.it/xmlui/handle/10673/6'
|
|
}
|
|
],
|
|
'dc.description.abstract': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'This is really just a sample abstract. If it was a real abstract it would contain useful information about this test document. Sorry though, nothing useful in this paragraph. You probably shouldn\'t have even bothered to read it!'
|
|
}
|
|
],
|
|
'dc.description.provenance': [
|
|
{
|
|
language: 'en',
|
|
value: 'Made available in DSpace on 2012-06-26T19:58:25Z (GMT). No. of bitstreams: 2\r\ntest_ppt.ppt: 12707328 bytes, checksum: a353fc7d29b3c558c986f7463a41efd3 (MD5)\r\ntest_ppt.pptx: 12468572 bytes, checksum: 599305edb4ebee329667f2c35b14d1d6 (MD5)'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T09:17:34Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T11:04:16Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2017-04-24T19:44:08Z (GMT).'
|
|
}
|
|
],
|
|
'dc.language': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'en'
|
|
}
|
|
],
|
|
'dc.rights': [
|
|
{
|
|
language: 'en_US',
|
|
value: '© Jane Doe'
|
|
}
|
|
],
|
|
'dc.subject': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword1'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword2'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword3'
|
|
}
|
|
],
|
|
'dc.title': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Egypt, crossroad of translations and literary interweavings (3rd-6th centuries). A reconsideration of earlier Coptic literature'
|
|
}
|
|
],
|
|
'dc.type': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'text'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
);
|
|
|
|
export const ItemMockPid9: Item = Object.assign(
|
|
new Item(),
|
|
{
|
|
handle: '10077/21486',
|
|
lastModified: '2017-04-24T19:44:08.178+0000',
|
|
isArchived: true,
|
|
isDiscoverable: true,
|
|
isWithdrawn: false,
|
|
_links:{
|
|
self: {
|
|
href: 'https://rest.api/rest/api/core/items/0ec7ff22-f211-40ab-a69e-c819b0b1f357'
|
|
}
|
|
},
|
|
id: 'ITEM4567-e89b-12d3-a456-426614174003',
|
|
uuid: 'ITEM4567-e89b-12d3-a456-426614174003',
|
|
type: 'item',
|
|
metadata: {
|
|
'dc.creator': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Doe, Jane'
|
|
}
|
|
],
|
|
'dc.date.accessioned': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.available': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.issued': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26'
|
|
}
|
|
],
|
|
'dc.identifier.issn': [
|
|
{
|
|
language: 'en_US',
|
|
value: '123456789'
|
|
}
|
|
],
|
|
'dc.identifier.uri': [
|
|
{
|
|
language: null,
|
|
value: 'http://dspace7.4science.it/xmlui/handle/10673/6'
|
|
}
|
|
],
|
|
'dc.description.abstract': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'This is really just a sample abstract. If it was a real abstract it would contain useful information about this test document. Sorry though, nothing useful in this paragraph. You probably shouldn\'t have even bothered to read it!'
|
|
}
|
|
],
|
|
'dc.description.provenance': [
|
|
{
|
|
language: 'en',
|
|
value: 'Made available in DSpace on 2012-06-26T19:58:25Z (GMT). No. of bitstreams: 2\r\ntest_ppt.ppt: 12707328 bytes, checksum: a353fc7d29b3c558c986f7463a41efd3 (MD5)\r\ntest_ppt.pptx: 12468572 bytes, checksum: 599305edb4ebee329667f2c35b14d1d6 (MD5)'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T09:17:34Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T11:04:16Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2017-04-24T19:44:08Z (GMT).'
|
|
}
|
|
],
|
|
'dc.language': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'en'
|
|
}
|
|
],
|
|
'dc.rights': [
|
|
{
|
|
language: 'en_US',
|
|
value: '© Jane Doe'
|
|
}
|
|
],
|
|
'dc.subject': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword1'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword2'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword3'
|
|
}
|
|
],
|
|
'dc.title': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Morocco, crossroad of translations and literary interweavings (3rd-6th centuries). A reconsideration of earlier Coptic literature'
|
|
}
|
|
],
|
|
'dc.type': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'text'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
);
|
|
|
|
export const ItemMockPid10: Item = Object.assign(
|
|
new Item(),
|
|
{
|
|
handle: '10713/29832',
|
|
lastModified: '2017-04-24T19:44:08.178+0000',
|
|
isArchived: true,
|
|
isDiscoverable: true,
|
|
isWithdrawn: false,
|
|
_links:{
|
|
self: {
|
|
href: 'https://rest.api/rest/api/core/items/0ec7ff22-f211-40ab-a69e-c819b0b1f357'
|
|
}
|
|
},
|
|
id: 'P23e4567-e89b-12d3-a456-426614174002',
|
|
uuid: 'P23e4567-e89b-12d3-a456-426614174002',
|
|
type: 'item',
|
|
metadata: {
|
|
'dc.creator': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Doe, Jane'
|
|
}
|
|
],
|
|
'dc.date.accessioned': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.available': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.issued': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26'
|
|
}
|
|
],
|
|
'dc.identifier.issn': [
|
|
{
|
|
language: 'en_US',
|
|
value: '123456789'
|
|
}
|
|
],
|
|
'dc.identifier.uri': [
|
|
{
|
|
language: null,
|
|
value: 'http://dspace7.4science.it/xmlui/handle/10673/6'
|
|
}
|
|
],
|
|
'dc.description.abstract': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'This is really just a sample abstract. If it was a real abstract it would contain useful information about this test document. Sorry though, nothing useful in this paragraph. You probably shouldn\'t have even bothered to read it!'
|
|
}
|
|
],
|
|
'dc.description.provenance': [
|
|
{
|
|
language: 'en',
|
|
value: 'Made available in DSpace on 2012-06-26T19:58:25Z (GMT). No. of bitstreams: 2\r\ntest_ppt.ppt: 12707328 bytes, checksum: a353fc7d29b3c558c986f7463a41efd3 (MD5)\r\ntest_ppt.pptx: 12468572 bytes, checksum: 599305edb4ebee329667f2c35b14d1d6 (MD5)'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T09:17:34Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T11:04:16Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2017-04-24T19:44:08Z (GMT).'
|
|
}
|
|
],
|
|
'dc.language': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'en'
|
|
}
|
|
],
|
|
'dc.rights': [
|
|
{
|
|
language: 'en_US',
|
|
value: '© Jane Doe'
|
|
}
|
|
],
|
|
'dc.subject': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword1'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword2'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword3'
|
|
}
|
|
],
|
|
'dc.title': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Tracking Papyrus and Parchment Paths: An Archaeological Atlas of Coptic Literature.\nLiterary Texts in their Geographical Context: Production, Copying, Usage, Dissemination and Storage'
|
|
}
|
|
],
|
|
'dc.type': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'text'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
);
|
|
|
|
export const OpenaireMockDspaceObject: SearchResult<DSpaceObject> = Object.assign(
|
|
new SearchResult<DSpaceObject>(),
|
|
{
|
|
handle: '10713/29832',
|
|
lastModified: '2017-04-24T19:44:08.178+0000',
|
|
isArchived: true,
|
|
isDiscoverable: true,
|
|
isWithdrawn: false,
|
|
_links:{
|
|
self: {
|
|
href: 'https://rest.api/rest/api/core/items/0ec7ff22-f211-40ab-a69e-c819b0b1f357'
|
|
}
|
|
},
|
|
id: 'P23e4567-e89b-12d3-a456-426614174002',
|
|
uuid: 'P23e4567-e89b-12d3-a456-426614174002',
|
|
type: 'item',
|
|
metadata: {
|
|
'dc.creator': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Doe, Jane'
|
|
}
|
|
],
|
|
'dc.date.accessioned': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.available': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26T19:58:25Z'
|
|
}
|
|
],
|
|
'dc.date.issued': [
|
|
{
|
|
language: null,
|
|
value: '1650-06-26'
|
|
}
|
|
],
|
|
'dc.identifier.issn': [
|
|
{
|
|
language: 'en_US',
|
|
value: '123456789'
|
|
}
|
|
],
|
|
'dc.identifier.uri': [
|
|
{
|
|
language: null,
|
|
value: 'http://dspace7.4science.it/xmlui/handle/10673/6'
|
|
}
|
|
],
|
|
'dc.description.abstract': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'This is really just a sample abstract. If it was a real abstract it would contain useful information about this test document. Sorry though, nothing useful in this paragraph. You probably shouldn\'t have even bothered to read it!'
|
|
}
|
|
],
|
|
'dc.description.provenance': [
|
|
{
|
|
language: 'en',
|
|
value: 'Made available in DSpace on 2012-06-26T19:58:25Z (GMT). No. of bitstreams: 2\r\ntest_ppt.ppt: 12707328 bytes, checksum: a353fc7d29b3c558c986f7463a41efd3 (MD5)\r\ntest_ppt.pptx: 12468572 bytes, checksum: 599305edb4ebee329667f2c35b14d1d6 (MD5)'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T09:17:34Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2013-06-13T11:04:16Z (GMT).'
|
|
},
|
|
{
|
|
language: 'en',
|
|
value: 'Restored into DSpace on 2017-04-24T19:44:08Z (GMT).'
|
|
}
|
|
],
|
|
'dc.language': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'en'
|
|
}
|
|
],
|
|
'dc.rights': [
|
|
{
|
|
language: 'en_US',
|
|
value: '© Jane Doe'
|
|
}
|
|
],
|
|
'dc.subject': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword1'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword2'
|
|
},
|
|
{
|
|
language: 'en_US',
|
|
value: 'keyword3'
|
|
}
|
|
],
|
|
'dc.title': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'Tracking Papyrus and Parchment Paths: An Archaeological Atlas of Coptic Literature.\nLiterary Texts in their Geographical Context: Production, Copying, Usage, Dissemination and Storage'
|
|
}
|
|
],
|
|
'dc.type': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'text'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
);
|
|
|
|
// Topics
|
|
// -------------------------------------------------------------------------------
|
|
|
|
export const openaireBrokerTopicObjectMorePid: OpenaireBrokerTopicObject = {
|
|
type: new ResourceType('nbtopic'),
|
|
id: 'ENRICH!MORE!PID',
|
|
name: 'ENRICH/MORE/PID',
|
|
lastEvent: '2020/10/09 10:11 UTC',
|
|
totalEvents: 33,
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbtopics/ENRICH!MORE!PID'
|
|
}
|
|
}
|
|
};
|
|
|
|
export const openaireBrokerTopicObjectMoreAbstract: OpenaireBrokerTopicObject = {
|
|
type: new ResourceType('nbtopic'),
|
|
id: 'ENRICH!MORE!ABSTRACT',
|
|
name: 'ENRICH/MORE/ABSTRACT',
|
|
lastEvent: '2020/09/08 21:14 UTC',
|
|
totalEvents: 5,
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbtopics/ENRICH!MORE!ABSTRACT'
|
|
}
|
|
}
|
|
};
|
|
|
|
export const openaireBrokerTopicObjectMissingPid: OpenaireBrokerTopicObject = {
|
|
type: new ResourceType('nbtopic'),
|
|
id: 'ENRICH!MISSING!PID',
|
|
name: 'ENRICH/MISSING/PID',
|
|
lastEvent: '2020/10/01 07:36 UTC',
|
|
totalEvents: 4,
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbtopics/ENRICH!MISSING!PID'
|
|
}
|
|
}
|
|
};
|
|
|
|
export const openaireBrokerTopicObjectMissingAbstract: OpenaireBrokerTopicObject = {
|
|
type: new ResourceType('nbtopic'),
|
|
id: 'ENRICH!MISSING!ABSTRACT',
|
|
name: 'ENRICH/MISSING/ABSTRACT',
|
|
lastEvent: '2020/10/08 16:14 UTC',
|
|
totalEvents: 71,
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbtopics/ENRICH!MISSING!ABSTRACT'
|
|
}
|
|
}
|
|
};
|
|
|
|
export const openaireBrokerTopicObjectMissingAcm: OpenaireBrokerTopicObject = {
|
|
type: new ResourceType('nbtopic'),
|
|
id: 'ENRICH!MISSING!SUBJECT!ACM',
|
|
name: 'ENRICH/MISSING/SUBJECT/ACM',
|
|
lastEvent: '2020/09/21 17:51 UTC',
|
|
totalEvents: 18,
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbtopics/ENRICH!MISSING!SUBJECT!ACM'
|
|
}
|
|
}
|
|
};
|
|
|
|
export const openaireBrokerTopicObjectMissingProject: OpenaireBrokerTopicObject = {
|
|
type: new ResourceType('nbtopic'),
|
|
id: 'ENRICH!MISSING!PROJECT',
|
|
name: 'ENRICH/MISSING/PROJECT',
|
|
lastEvent: '2020/09/17 10:28 UTC',
|
|
totalEvents: 6,
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbtopics/ENRICH!MISSING!PROJECT'
|
|
}
|
|
}
|
|
};
|
|
|
|
// Events
|
|
// -------------------------------------------------------------------------------
|
|
|
|
export const openaireBrokerEventObjectMissingPid: OpenaireBrokerEventObject = {
|
|
id: '123e4567-e89b-12d3-a456-426614174001',
|
|
uuid: '123e4567-e89b-12d3-a456-426614174001',
|
|
type: new ResourceType('nbevent'),
|
|
originalId: 'oai:www.openstarts.units.it:10077/21486',
|
|
title: 'Index nominum et rerum',
|
|
trust: 0.375,
|
|
eventDate: '2020/10/09 10:11 UTC',
|
|
status: 'PENDING',
|
|
message: {
|
|
type: 'doi',
|
|
value: '10.18848/1447-9494/cgp/v15i09/45934',
|
|
abstract: null,
|
|
openaireId: null,
|
|
acronym: null,
|
|
code: null,
|
|
funder: null,
|
|
fundingProgram: null,
|
|
jurisdiction: null,
|
|
title: null
|
|
},
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174001',
|
|
},
|
|
target: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174001/target'
|
|
},
|
|
related: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174001/related'
|
|
}
|
|
},
|
|
target: observableOf(createSuccessfulRemoteDataObject(ItemMockPid1)),
|
|
related: observableOf(createSuccessfulRemoteDataObject(ItemMockPid10))
|
|
};
|
|
|
|
export const openaireBrokerEventObjectMissingPid2: OpenaireBrokerEventObject = {
|
|
id: '123e4567-e89b-12d3-a456-426614174004',
|
|
uuid: '123e4567-e89b-12d3-a456-426614174004',
|
|
type: new ResourceType('openaireBrokerEvent'),
|
|
originalId: 'oai:www.openstarts.units.it:10077/21486',
|
|
title: 'UNA NUOVA RILETTURA DELL\u0027 ARISTOTELE DI FRANZ BRENTANO ALLA LUCE DI ALCUNI INEDITI',
|
|
trust: 1.0,
|
|
eventDate: '2020/10/09 10:11 UTC',
|
|
status: 'PENDING',
|
|
message: {
|
|
type: 'urn',
|
|
value: 'http://thesis2.sba.units.it/store/handle/item/12238',
|
|
abstract: null,
|
|
openaireId: null,
|
|
acronym: null,
|
|
code: null,
|
|
funder: null,
|
|
fundingProgram: null,
|
|
jurisdiction: null,
|
|
title: null
|
|
},
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174004'
|
|
},
|
|
target: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174004/target'
|
|
},
|
|
related: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174004/related'
|
|
}
|
|
},
|
|
target: observableOf(createSuccessfulRemoteDataObject(ItemMockPid2)),
|
|
related: observableOf(createSuccessfulRemoteDataObject(ItemMockPid10))
|
|
};
|
|
|
|
export const openaireBrokerEventObjectMissingPid3: OpenaireBrokerEventObject = {
|
|
id: '123e4567-e89b-12d3-a456-426614174005',
|
|
uuid: '123e4567-e89b-12d3-a456-426614174005',
|
|
type: new ResourceType('openaireBrokerEvent'),
|
|
originalId: 'oai:www.openstarts.units.it:10077/554',
|
|
title: 'Sustainable development',
|
|
trust: 0.375,
|
|
eventDate: '2020/10/09 10:11 UTC',
|
|
status: 'PENDING',
|
|
message: {
|
|
type: 'doi',
|
|
value: '10.4324/9780203408889',
|
|
abstract: null,
|
|
openaireId: null,
|
|
acronym: null,
|
|
code: null,
|
|
funder: null,
|
|
fundingProgram: null,
|
|
jurisdiction: null,
|
|
title: null
|
|
},
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174005'
|
|
},
|
|
target: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174005/target'
|
|
},
|
|
related: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174005/related'
|
|
}
|
|
},
|
|
target: observableOf(createSuccessfulRemoteDataObject(ItemMockPid3)),
|
|
related: observableOf(createSuccessfulRemoteDataObject(ItemMockPid10))
|
|
};
|
|
|
|
export const openaireBrokerEventObjectMissingPid4: OpenaireBrokerEventObject = {
|
|
id: '123e4567-e89b-12d3-a456-426614174006',
|
|
uuid: '123e4567-e89b-12d3-a456-426614174006',
|
|
type: new ResourceType('openaireBrokerEvent'),
|
|
originalId: 'oai:www.openstarts.units.it:10077/10787',
|
|
title: 'Reply to Critics',
|
|
trust: 1.0,
|
|
eventDate: '2020/10/09 10:11 UTC',
|
|
status: 'PENDING',
|
|
message: {
|
|
type: 'doi',
|
|
value: '10.1080/13698230.2018.1430104',
|
|
abstract: null,
|
|
openaireId: null,
|
|
acronym: null,
|
|
code: null,
|
|
funder: null,
|
|
fundingProgram: null,
|
|
jurisdiction: null,
|
|
title: null
|
|
},
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174006'
|
|
},
|
|
target: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174006/target'
|
|
},
|
|
related: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174006/related'
|
|
}
|
|
},
|
|
target: observableOf(createSuccessfulRemoteDataObject(ItemMockPid4)),
|
|
related: observableOf(createSuccessfulRemoteDataObject(ItemMockPid10))
|
|
};
|
|
|
|
export const openaireBrokerEventObjectMissingPid5: OpenaireBrokerEventObject = {
|
|
id: '123e4567-e89b-12d3-a456-426614174007',
|
|
uuid: '123e4567-e89b-12d3-a456-426614174007',
|
|
type: new ResourceType('openaireBrokerEvent'),
|
|
originalId: 'oai:www.openstarts.units.it:10077/11339',
|
|
title: 'PROGETTAZIONE, SINTESI E VALUTAZIONE DELL\u0027ATTIVITA\u0027 ANTIMICOBATTERICA ED ANTIFUNGINA DI NUOVI DERIVATI ETEROCICLICI',
|
|
trust: 0.375,
|
|
eventDate: '2020/10/09 10:11 UTC',
|
|
status: 'PENDING',
|
|
message: {
|
|
type: 'urn',
|
|
value: 'http://thesis2.sba.units.it/store/handle/item/12477',
|
|
abstract: null,
|
|
openaireId: null,
|
|
acronym: null,
|
|
code: null,
|
|
funder: null,
|
|
fundingProgram: null,
|
|
jurisdiction: null,
|
|
title: null
|
|
},
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174007'
|
|
},
|
|
target: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174007/target'
|
|
},
|
|
related: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174007/related'
|
|
}
|
|
},
|
|
target: observableOf(createSuccessfulRemoteDataObject(ItemMockPid5)),
|
|
related: observableOf(createSuccessfulRemoteDataObject(ItemMockPid10))
|
|
};
|
|
|
|
export const openaireBrokerEventObjectMissingPid6: OpenaireBrokerEventObject = {
|
|
id: '123e4567-e89b-12d3-a456-426614174008',
|
|
uuid: '123e4567-e89b-12d3-a456-426614174008',
|
|
type: new ResourceType('openaireBrokerEvent'),
|
|
originalId: 'oai:www.openstarts.units.it:10077/29860',
|
|
title: 'Donald Davidson',
|
|
trust: 0.375,
|
|
eventDate: '2020/10/09 10:11 UTC',
|
|
status: 'PENDING',
|
|
message: {
|
|
type: 'doi',
|
|
value: '10.1111/j.1475-4975.2004.00098.x',
|
|
abstract: null,
|
|
openaireId: null,
|
|
acronym: null,
|
|
code: null,
|
|
funder: null,
|
|
fundingProgram: null,
|
|
jurisdiction: null,
|
|
title: null
|
|
},
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174008'
|
|
},
|
|
target: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174008/target'
|
|
},
|
|
related: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174008/related'
|
|
}
|
|
},
|
|
target: observableOf(createSuccessfulRemoteDataObject(ItemMockPid6)),
|
|
related: observableOf(createSuccessfulRemoteDataObject(ItemMockPid10))
|
|
};
|
|
|
|
export const openaireBrokerEventObjectMissingAbstract: OpenaireBrokerEventObject = {
|
|
id: '123e4567-e89b-12d3-a456-426614174009',
|
|
uuid: '123e4567-e89b-12d3-a456-426614174009',
|
|
type: new ResourceType('openaireBrokerEvent'),
|
|
originalId: 'oai:www.openstarts.units.it:10077/21110',
|
|
title: 'Missing abstract article',
|
|
trust: 0.751,
|
|
eventDate: '2020/10/09 10:11 UTC',
|
|
status: 'PENDING',
|
|
message: {
|
|
type: null,
|
|
value: null,
|
|
abstract: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla scelerisque vestibulum tellus sed lacinia. Aenean vitae sapien a quam congue ultrices. Sed vehicula sollicitudin ligula, vitae lacinia velit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla scelerisque vestibulum tellus sed lacinia. Aenean vitae sapien a quam congue ultrices. Sed vehicula sollicitudin ligula, vitae lacinia velit.',
|
|
openaireId: null,
|
|
acronym: null,
|
|
code: null,
|
|
funder: null,
|
|
fundingProgram: null,
|
|
jurisdiction: null,
|
|
title: null
|
|
},
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174009'
|
|
},
|
|
target: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174009/target'
|
|
},
|
|
related: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174009/related'
|
|
}
|
|
},
|
|
target: observableOf(createSuccessfulRemoteDataObject(ItemMockPid7)),
|
|
related: observableOf(createSuccessfulRemoteDataObject(ItemMockPid10))
|
|
};
|
|
|
|
export const openaireBrokerEventObjectMissingProjectFound: OpenaireBrokerEventObject = {
|
|
id: '123e4567-e89b-12d3-a456-426614174002',
|
|
uuid: '123e4567-e89b-12d3-a456-426614174002',
|
|
type: new ResourceType('openaireBrokerEvent'),
|
|
originalId: 'oai:www.openstarts.units.it:10077/21838',
|
|
title: 'Egypt, crossroad of translations and literary interweavings (3rd-6th centuries). A reconsideration of earlier Coptic literature',
|
|
trust: 1.0,
|
|
eventDate: '2020/10/09 10:11 UTC',
|
|
status: 'PENDING',
|
|
message: {
|
|
type: null,
|
|
value: null,
|
|
abstract: null,
|
|
openaireId: null,
|
|
acronym: 'PAThs',
|
|
code: '687567',
|
|
funder: 'EC',
|
|
fundingProgram: 'H2020',
|
|
jurisdiction: 'EU',
|
|
title: 'Tracking Papyrus and Parchment Paths: An Archaeological Atlas of Coptic Literature.\nLiterary Texts in their Geographical Context: Production, Copying, Usage, Dissemination and Storage'
|
|
},
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174002'
|
|
},
|
|
target: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174002/target'
|
|
},
|
|
related: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174002/related'
|
|
}
|
|
},
|
|
target: createSuccessfulRemoteDataObject$(ItemMockPid8),
|
|
related: createSuccessfulRemoteDataObject$(ItemMockPid10)
|
|
};
|
|
|
|
export const openaireBrokerEventObjectMissingProjectNotFound: OpenaireBrokerEventObject = {
|
|
id: '123e4567-e89b-12d3-a456-426614174003',
|
|
uuid: '123e4567-e89b-12d3-a456-426614174003',
|
|
type: new ResourceType('openaireBrokerEvent'),
|
|
originalId: 'oai:www.openstarts.units.it:10077/21838',
|
|
title: 'Morocco, crossroad of translations and literary interweavings (3rd-6th centuries). A reconsideration of earlier Coptic literature',
|
|
trust: 1.0,
|
|
eventDate: '2020/10/09 10:11 UTC',
|
|
status: 'PENDING',
|
|
message: {
|
|
type: null,
|
|
value: null,
|
|
abstract: null,
|
|
openaireId: null,
|
|
acronym: 'PAThs',
|
|
code: '687567B',
|
|
funder: 'EC',
|
|
fundingProgram: 'H2021',
|
|
jurisdiction: 'EU',
|
|
title: 'Tracking Unknown Papyrus and Parchment Paths: An Archaeological Atlas of Coptic Literature.\nLiterary Texts in their Geographical Context: Production, Copying, Usage, Dissemination and Storage'
|
|
},
|
|
_links: {
|
|
self: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174003'
|
|
},
|
|
target: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174003/target'
|
|
},
|
|
related: {
|
|
href: 'https://rest.api/rest/api/integration/nbevents/123e4567-e89b-12d3-a456-426614174003/related'
|
|
}
|
|
},
|
|
target: createSuccessfulRemoteDataObject$(ItemMockPid9),
|
|
related: createNoContentRemoteDataObject$()
|
|
};
|
|
|
|
// Classes
|
|
// -------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Mock for [[OpenaireStateService]]
|
|
*/
|
|
export function getMockOpenaireStateService(): any {
|
|
return jasmine.createSpyObj('OpenaireStateService', {
|
|
getOpenaireBrokerTopics: jasmine.createSpy('getOpenaireBrokerTopics'),
|
|
isOpenaireBrokerTopicsLoading: jasmine.createSpy('isOpenaireBrokerTopicsLoading'),
|
|
isOpenaireBrokerTopicsLoaded: jasmine.createSpy('isOpenaireBrokerTopicsLoaded'),
|
|
isOpenaireBrokerTopicsProcessing: jasmine.createSpy('isOpenaireBrokerTopicsProcessing'),
|
|
getOpenaireBrokerTopicsTotalPages: jasmine.createSpy('getOpenaireBrokerTopicsTotalPages'),
|
|
getOpenaireBrokerTopicsCurrentPage: jasmine.createSpy('getOpenaireBrokerTopicsCurrentPage'),
|
|
getOpenaireBrokerTopicsTotals: jasmine.createSpy('getOpenaireBrokerTopicsTotals'),
|
|
dispatchRetrieveOpenaireBrokerTopics: jasmine.createSpy('dispatchRetrieveOpenaireBrokerTopics'),
|
|
dispatchMarkUserSuggestionsAsVisitedAction: jasmine.createSpy('dispatchMarkUserSuggestionsAsVisitedAction')
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Mock for [[OpenaireBrokerTopicRestService]]
|
|
*/
|
|
export function getMockOpenaireBrokerTopicRestService(): OpenaireBrokerTopicRestService {
|
|
return jasmine.createSpyObj('OpenaireBrokerTopicRestService', {
|
|
getTopics: jasmine.createSpy('getTopics'),
|
|
getTopic: jasmine.createSpy('getTopic'),
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Mock for [[OpenaireBrokerEventRestService]]
|
|
*/
|
|
export function getMockOpenaireBrokerEventRestService(): OpenaireBrokerEventRestService {
|
|
return jasmine.createSpyObj('OpenaireBrokerEventRestService', {
|
|
getEventsByTopic: jasmine.createSpy('getEventsByTopic'),
|
|
getEvent: jasmine.createSpy('getEvent'),
|
|
patchEvent: jasmine.createSpy('patchEvent'),
|
|
boundProject: jasmine.createSpy('boundProject'),
|
|
removeProject: jasmine.createSpy('removeProject'),
|
|
clearFindByTopicRequests: jasmine.createSpy('.clearFindByTopicRequests')
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Mock for [[OpenaireBrokerEventRestService]]
|
|
*/
|
|
export function getMockSuggestionsService(): any {
|
|
return jasmine.createSpyObj('SuggestionsService', {
|
|
getTargets: jasmine.createSpy('getTargets'),
|
|
getSuggestions: jasmine.createSpy('getSuggestions'),
|
|
clearSuggestionRequests: jasmine.createSpy('clearSuggestionRequests'),
|
|
deleteReviewedSuggestion: jasmine.createSpy('deleteReviewedSuggestion'),
|
|
retrieveCurrentUserSuggestions: jasmine.createSpy('retrieveCurrentUserSuggestions'),
|
|
getTargetUuid: jasmine.createSpy('getTargetUuid'),
|
|
});
|
|
}
|