mirror of
https://github.com/sartography/cr-connect-bpmn.git
synced 2025-02-18 11:26:52 +00:00
Adds unit tests
This commit is contained in:
parent
e00d5d01eb
commit
96903b5fcd
@ -1,14 +1,69 @@
|
|||||||
|
import {HttpHeaders} from '@angular/common/http';
|
||||||
|
import {HttpClientTestingModule, HttpTestingController} from '@angular/common/http/testing';
|
||||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
import {MAT_DIALOG_DATA, MatDialogModule, MatDialogRef} from '@angular/material/dialog';
|
||||||
|
import {MatIconModule} from '@angular/material/icon';
|
||||||
|
import {MatSnackBarModule} from '@angular/material/snack-bar';
|
||||||
|
import {BrowserDynamicTestingModule} from '@angular/platform-browser-dynamic/testing';
|
||||||
|
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
|
||||||
|
import {of} from 'rxjs';
|
||||||
|
import {ApiService, FileMeta, FileType, MockEnvironment, mockFileMetaReference0} from 'sartography-workflow-lib';
|
||||||
|
import {OpenFileDialogComponent} from '../_dialogs/open-file-dialog/open-file-dialog.component';
|
||||||
|
import * as FileSaver from 'file-saver';
|
||||||
import { ReferenceFilesComponent } from './reference-files.component';
|
import { ReferenceFilesComponent } from './reference-files.component';
|
||||||
|
import createClone from 'rfdc';
|
||||||
|
|
||||||
describe('ReferenceFilesComponent', () => {
|
describe('ReferenceFilesComponent', () => {
|
||||||
|
let httpMock: HttpTestingController;
|
||||||
let component: ReferenceFilesComponent;
|
let component: ReferenceFilesComponent;
|
||||||
let fixture: ComponentFixture<ReferenceFilesComponent>;
|
let fixture: ComponentFixture<ReferenceFilesComponent>;
|
||||||
|
|
||||||
|
// Mock file and response headers
|
||||||
|
const mockDocMeta: FileMeta = createClone()(mockFileMetaReference0);
|
||||||
|
mockDocMeta.type = FileType.XLSX;
|
||||||
|
|
||||||
|
const expectedFile = new File([], mockDocMeta.name, {
|
||||||
|
type: mockDocMeta.content_type,
|
||||||
|
lastModified: mockDocMeta.file.lastModified
|
||||||
|
});
|
||||||
|
|
||||||
|
const mockHeaders = new HttpHeaders()
|
||||||
|
.append('last-modified', expectedFile.lastModified.toString())
|
||||||
|
.append('content-type', mockDocMeta.content_type);
|
||||||
|
|
||||||
|
const mockArrayBuffer = new ArrayBuffer(8);
|
||||||
|
|
||||||
beforeEach(async(() => {
|
beforeEach(async(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [ ReferenceFilesComponent ]
|
imports: [
|
||||||
|
BrowserAnimationsModule,
|
||||||
|
HttpClientTestingModule,
|
||||||
|
MatDialogModule,
|
||||||
|
MatIconModule,
|
||||||
|
MatSnackBarModule,
|
||||||
|
],
|
||||||
|
declarations: [
|
||||||
|
OpenFileDialogComponent,
|
||||||
|
ReferenceFilesComponent,
|
||||||
|
],
|
||||||
|
providers: [
|
||||||
|
ApiService,
|
||||||
|
{provide: 'APP_ENVIRONMENT', useClass: MockEnvironment},
|
||||||
|
{
|
||||||
|
provide: MatDialogRef,
|
||||||
|
useValue: {
|
||||||
|
close: (dialogResult: any) => {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{provide: MAT_DIALOG_DATA, useValue: []},
|
||||||
|
]
|
||||||
|
}).overrideModule(BrowserDynamicTestingModule, {
|
||||||
|
set: {
|
||||||
|
entryComponents: [
|
||||||
|
OpenFileDialogComponent,
|
||||||
|
]
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
}));
|
}));
|
||||||
@ -16,10 +71,53 @@ describe('ReferenceFilesComponent', () => {
|
|||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
fixture = TestBed.createComponent(ReferenceFilesComponent);
|
fixture = TestBed.createComponent(ReferenceFilesComponent);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
|
httpMock = TestBed.inject(HttpTestingController);
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
|
|
||||||
|
const req = httpMock.expectOne('apiRoot/reference_file');
|
||||||
|
expect(req.request.method).toEqual('GET');
|
||||||
|
req.flush([mockFileMetaReference0]);
|
||||||
|
expect(component.referenceFiles.length).toEqual(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
afterEach(() => {
|
||||||
|
httpMock.verify();
|
||||||
|
fixture.destroy();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should create', () => {
|
it('should create', () => {
|
||||||
expect(component).toBeTruthy();
|
expect(component).toBeTruthy();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should update existing file from file dialog', () => {
|
||||||
|
const openDialogSpy = spyOn(component.dialog, 'open')
|
||||||
|
.and.returnValue({afterClosed: () => of({fileMetaId: mockFileMetaReference0.id, file: mockFileMetaReference0.file})} as any);
|
||||||
|
const _loadReferenceFilesSpy = spyOn((component as any), '_loadReferenceFiles').and.stub();
|
||||||
|
|
||||||
|
component.openFileDialog(mockFileMetaReference0);
|
||||||
|
|
||||||
|
const fReq = httpMock.expectOne(`apiRoot/reference_file/${mockDocMeta.name}`);
|
||||||
|
expect(fReq.request.method).toEqual('GET');
|
||||||
|
fReq.flush(mockArrayBuffer, {headers: mockHeaders});
|
||||||
|
|
||||||
|
const updateReq = httpMock.expectOne(`apiRoot/reference_file/${mockFileMetaReference0.name}`);
|
||||||
|
expect(updateReq.request.method).toEqual('PUT');
|
||||||
|
updateReq.flush(mockArrayBuffer, {headers: mockHeaders});
|
||||||
|
|
||||||
|
expect(openDialogSpy).toHaveBeenCalled();
|
||||||
|
expect(_loadReferenceFilesSpy).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should save file', () => {
|
||||||
|
const fileSaverSpy = spyOn(FileSaver, 'saveAs').and.stub();
|
||||||
|
|
||||||
|
component.downloadFile(mockDocMeta);
|
||||||
|
|
||||||
|
const fReq = httpMock.expectOne(`apiRoot/reference_file/${mockDocMeta.name}`);
|
||||||
|
expect(fReq.request.method).toEqual('GET');
|
||||||
|
fReq.flush(mockArrayBuffer, {headers: mockHeaders});
|
||||||
|
|
||||||
|
expect(fileSaverSpy).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -44,13 +44,12 @@ export class ReferenceFilesComponent implements OnInit {
|
|||||||
|
|
||||||
dialogRef.afterClosed().subscribe((data: OpenFileDialogData) => {
|
dialogRef.afterClosed().subscribe((data: OpenFileDialogData) => {
|
||||||
if (data && data.file) {
|
if (data && data.file) {
|
||||||
console.log('data', data);
|
|
||||||
this.apiService.updateReferenceFile(fm.name, data.file).subscribe(() => {
|
this.apiService.updateReferenceFile(fm.name, data.file).subscribe(() => {
|
||||||
|
this.snackBar.open(`Updated file ${fm.name}.`, 'Ok', {duration: 3000});
|
||||||
this._loadReferenceFiles();
|
this._loadReferenceFiles();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user