mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 02:24:11 +00:00
101 lines
2.8 KiB
TypeScript
101 lines
2.8 KiB
TypeScript
import { Component, NO_ERRORS_SCHEMA } from '@angular/core';
|
|
import { async, ComponentFixture, inject, TestBed } from '@angular/core/testing';
|
|
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
import { createTestComponent } from '../../../../../shared/testing/utils';
|
|
import { mockUploadFiles } from '../../../../../shared/mocks/mock-submission';
|
|
import { FormComponent } from '../../../../../shared/form/form.component';
|
|
import { SubmissionSectionUploadFileViewComponent } from './section-upload-file-view.component';
|
|
import { TruncatePipe } from '../../../../../shared/utils/truncate.pipe';
|
|
import { Metadata } from '../../../../../core/shared/metadata.utils';
|
|
|
|
describe('SubmissionSectionUploadFileViewComponent test suite', () => {
|
|
|
|
let comp: SubmissionSectionUploadFileViewComponent;
|
|
let compAsAny: any;
|
|
let fixture: ComponentFixture<SubmissionSectionUploadFileViewComponent>;
|
|
|
|
const fileData: any = mockUploadFiles[0];
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [
|
|
TranslateModule.forRoot()
|
|
],
|
|
declarations: [
|
|
TruncatePipe,
|
|
FormComponent,
|
|
SubmissionSectionUploadFileViewComponent,
|
|
TestComponent
|
|
],
|
|
providers: [
|
|
SubmissionSectionUploadFileViewComponent
|
|
],
|
|
schemas: [NO_ERRORS_SCHEMA]
|
|
}).compileComponents().then();
|
|
}));
|
|
|
|
describe('', () => {
|
|
let testComp: TestComponent;
|
|
let testFixture: ComponentFixture<TestComponent>;
|
|
|
|
// synchronous beforeEach
|
|
beforeEach(() => {
|
|
const html = `
|
|
<ds-submission-section-upload-file-view [fileData]="fileData"></ds-submission-section-upload-file-view>`;
|
|
|
|
testFixture = createTestComponent(html, TestComponent) as ComponentFixture<TestComponent>;
|
|
testComp = testFixture.componentInstance;
|
|
});
|
|
|
|
afterEach(() => {
|
|
testFixture.destroy();
|
|
});
|
|
|
|
it('should create SubmissionSectionUploadFileViewComponent', inject([SubmissionSectionUploadFileViewComponent], (app: SubmissionSectionUploadFileViewComponent) => {
|
|
|
|
expect(app).toBeDefined();
|
|
|
|
}));
|
|
});
|
|
|
|
describe('', () => {
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(SubmissionSectionUploadFileViewComponent);
|
|
comp = fixture.componentInstance;
|
|
compAsAny = comp;
|
|
});
|
|
|
|
afterEach(() => {
|
|
fixture.destroy();
|
|
comp = null;
|
|
compAsAny = null;
|
|
});
|
|
|
|
it('should init metadata array properly', () => {
|
|
comp.fileData = fileData;
|
|
const expectMetadataMap = {
|
|
[comp.fileTitleKey]: Metadata.all(fileData.metadata, 'dc.title'),
|
|
[comp.fileDescrKey]: [],
|
|
};
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(comp.metadata).toEqual(expectMetadataMap);
|
|
|
|
});
|
|
|
|
});
|
|
});
|
|
|
|
// declare a test component
|
|
@Component({
|
|
selector: 'ds-test-cmp',
|
|
template: ``
|
|
})
|
|
class TestComponent {
|
|
|
|
fileData;
|
|
}
|