import { async, TestBed } 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 { Item } from '../../../../core/shared/item.model'; import { TruncatePipe } from '../../../../shared/utils/truncate.pipe'; import { TruncatableService } from '../../../../shared/truncatable/truncatable.service'; import { PersonListElementComponent } from '../person/person-list-element.component'; import { ProjectListElementComponent } from './project-list-element.component'; const mockItem: Item = Object.assign(new Item(), { bitstreams: observableOf({}), metadata: { 'dc.title': [ { language: 'en_US', value: 'This is just another title' } ], // 'project.identifier.status': [ // { // language: 'en_US', // value: 'A status about the project' // } // ] } }); describe('ProjectListElementComponent', () => { let comp; let fixture; const truncatableServiceStub: any = { isCollapsed: (id: number) => observableOf(true), }; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ProjectListElementComponent, TruncatePipe], providers: [ { provide: TruncatableService, useValue: truncatableServiceStub }, ], schemas: [NO_ERRORS_SCHEMA] }).overrideComponent(ProjectListElementComponent, { set: { changeDetection: ChangeDetectionStrategy.Default } }).compileComponents(); })); beforeEach(async(() => { fixture = TestBed.createComponent(ProjectListElementComponent); comp = fixture.componentInstance; })); describe(`when the project is rendered`, () => { beforeEach(() => { comp.object = mockItem; fixture.detectChanges(); }); it(`should contain a ProjectListElementComponent`, () => { const projectListElement = fixture.debugElement.query(By.css(`ds-project-search-result-list-element`)); expect(projectListElement).not.toBeNull(); }); }); });