mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
118 lines
3.8 KiB
TypeScript
118 lines
3.8 KiB
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { ChangeDetectionStrategy, NO_ERRORS_SCHEMA } from '@angular/core';
|
|
import { By } from '@angular/platform-browser';
|
|
import { JournalIssueListElementComponent } from './journal-issue-list-element.component';
|
|
import { of as observableOf } from 'rxjs';
|
|
import { Item } from '../../../../core/shared/item.model';
|
|
import { TruncatePipe } from '../../../../shared/utils/truncate.pipe';
|
|
import { ITEM } from '../../../../shared/items/switcher/item-type-switcher.component';
|
|
import { TruncatableService } from '../../../../shared/truncatable/truncatable.service';
|
|
|
|
let journalIssueListElementComponent: JournalIssueListElementComponent;
|
|
let fixture: ComponentFixture<JournalIssueListElementComponent>;
|
|
|
|
const mockItemWithMetadata: Item = Object.assign(new Item(), {
|
|
bitstreams: observableOf({}),
|
|
metadata: {
|
|
'dc.title': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'This is just another title'
|
|
}
|
|
],
|
|
'journalvolume.identifier.volume': [
|
|
{
|
|
language: 'en_US',
|
|
value: '1234'
|
|
}
|
|
],
|
|
'journalissue.identifier.number': [
|
|
{
|
|
language: 'en_US',
|
|
value: '5678'
|
|
}
|
|
]
|
|
}
|
|
});
|
|
const mockItemWithoutMetadata: Item = Object.assign(new Item(), {
|
|
bitstreams: observableOf({}),
|
|
metadata: {
|
|
'dc.title': [
|
|
{
|
|
language: 'en_US',
|
|
value: 'This is just another title'
|
|
}
|
|
]
|
|
}
|
|
});
|
|
|
|
describe('JournalIssueListElementComponent', () => {
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ JournalIssueListElementComponent , TruncatePipe],
|
|
providers: [
|
|
{ provide: ITEM, useValue: mockItemWithMetadata},
|
|
{ provide: TruncatableService, useValue: {} }
|
|
],
|
|
|
|
schemas: [ NO_ERRORS_SCHEMA ]
|
|
}).overrideComponent(JournalIssueListElementComponent, {
|
|
set: { changeDetection: ChangeDetectionStrategy.Default }
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(async(() => {
|
|
fixture = TestBed.createComponent(JournalIssueListElementComponent);
|
|
journalIssueListElementComponent = fixture.componentInstance;
|
|
|
|
}));
|
|
|
|
describe('When the item has a journal identifier', () => {
|
|
beforeEach(() => {
|
|
journalIssueListElementComponent.item = mockItemWithMetadata;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should show the journal issues span', () => {
|
|
const journalIdentifierField = fixture.debugElement.query(By.css('span.item-list-journal-issues'));
|
|
expect(journalIdentifierField).not.toBeNull();
|
|
});
|
|
});
|
|
|
|
describe('When the item has no journal identifier', () => {
|
|
beforeEach(() => {
|
|
journalIssueListElementComponent.item = mockItemWithoutMetadata;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should not show the journal issues span', () => {
|
|
const journalIdentifierField = fixture.debugElement.query(By.css('span.item-list-journal-issues'));
|
|
expect(journalIdentifierField).toBeNull();
|
|
});
|
|
});
|
|
|
|
describe('When the item has a journal number', () => {
|
|
beforeEach(() => {
|
|
journalIssueListElementComponent.item = mockItemWithMetadata;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should show the journal issue numbers span', () => {
|
|
const journalNumberField = fixture.debugElement.query(By.css('span.item-list-journal-issue-numbers'));
|
|
expect(journalNumberField).not.toBeNull();
|
|
});
|
|
});
|
|
|
|
describe('When the item has no journal number', () => {
|
|
beforeEach(() => {
|
|
journalIssueListElementComponent.item = mockItemWithoutMetadata;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should not show the journal issue numbers span', () => {
|
|
const journalNumberField = fixture.debugElement.query(By.css('span.item-list-journal-issue-numbers'));
|
|
expect(journalNumberField).toBeNull();
|
|
});
|
|
});
|
|
});
|