import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { ChangeDetectionStrategy, NO_ERRORS_SCHEMA } from '@angular/core'; import { By } from '@angular/platform-browser'; import { of as observableOf } from 'rxjs'; import { TruncatePipe } from '../../../utils/truncate.pipe'; import { Item } from '../../../../core/shared/item.model'; import { ItemListPreviewComponent } from './item-list-preview.component'; import { TranslateLoader, TranslateModule } from '@ngx-translate/core'; import { TranslateLoaderMock } from '../../../mocks/translate-loader.mock'; import { NoopAnimationsModule } from '@angular/platform-browser/animations'; let component: ItemListPreviewComponent; let fixture: ComponentFixture; const mockItemWithAuthorAndDate: Item = Object.assign(new Item(), { bundles: observableOf({}), metadata: { 'dc.contributor.author': [ { language: 'en_US', value: 'Smith, Donald' } ], 'dc.date.issued': [ { language: null, value: '2015-06-26' } ] } }); const mockItemWithoutAuthorAndDate: Item = Object.assign(new Item(), { bundles: observableOf({}), metadata: { 'dc.title': [ { language: 'en_US', value: 'This is just another title' } ], 'dc.type': [ { language: null, value: 'Article' } ] } }); const mockItemWithEntityType: Item = Object.assign(new Item(), { bundles: observableOf({}), metadata: { 'dc.title': [ { language: 'en_US', value: 'This is just another title' } ], 'dspace.entity.type': [ { language: null, value: 'Publication' } ] } }); describe('ItemListPreviewComponent', () => { beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ imports: [ TranslateModule.forRoot({ loader: { provide: TranslateLoader, useClass: TranslateLoaderMock } }), NoopAnimationsModule ], declarations: [ItemListPreviewComponent, TruncatePipe], providers: [ { provide: 'objectElementProvider', useValue: { mockItemWithAuthorAndDate } } ], schemas: [NO_ERRORS_SCHEMA] }).overrideComponent(ItemListPreviewComponent, { set: { changeDetection: ChangeDetectionStrategy.Default } }).compileComponents(); })); beforeEach(waitForAsync(() => { fixture = TestBed.createComponent(ItemListPreviewComponent); component = fixture.componentInstance; })); beforeEach(() => { component.object = { hitHighlights: {} } as any; }); describe('When the item has an author', () => { beforeEach(() => { component.item = mockItemWithAuthorAndDate; fixture.detectChanges(); }); it('should show the author paragraph', () => { const itemAuthorField = fixture.debugElement.query(By.css('span.item-list-authors')); expect(itemAuthorField).not.toBeNull(); }); }); describe('When the item has no author', () => { beforeEach(() => { component.item = mockItemWithoutAuthorAndDate; fixture.detectChanges(); }); it('should not show the author paragraph', () => { const itemAuthorField = fixture.debugElement.query(By.css('span.item-list-authors')); expect(itemAuthorField).toBeNull(); }); }); describe('When the item has an issuedate', () => { beforeEach(() => { component.item = mockItemWithAuthorAndDate; fixture.detectChanges(); }); it('should show the issuedate span', () => { const dateField = fixture.debugElement.query(By.css('span.item-list-date')); expect(dateField).not.toBeNull(); }); }); describe('When the item has no issuedate', () => { beforeEach(() => { component.item = mockItemWithoutAuthorAndDate; fixture.detectChanges(); }); it('should show the issuedate empty placeholder', () => { const dateField = fixture.debugElement.query(By.css('span.item-list-date')); expect(dateField).not.toBeNull(); }); }); describe('When the item has an entity type', () => { beforeEach(() => { component.item = mockItemWithEntityType; fixture.detectChanges(); }); it('should show the entity type span', () => { const entityField = fixture.debugElement.query(By.css('ds-type-badge')); expect(entityField).not.toBeNull(); }); }); });