I have overridden the @angular/core ErrorHandler and I am trying to test it, however I am getting an error. The service works properly but the test fails somewhere.
exception-handler.service.ts
import { Injectable, ErrorHandler, forwardRef, Inject } from '@angular/core';
import { BkHttp } from './http.service';
@Injectable()
export class BkExceptionHandlerService implements ErrorHandler {
constructor( private bkHttp: BkHttp) { }
handleError(error) {
let originalError = this.controlError(error);
this.sendToConsole(originalError);
this.sendToBitacora( originalError );
throw( error );
}
controlError(error: any): any {
let originalError: Object = this.findOriginalError( error );
return originalError;
}
findOriginalError( error: any ) : any {
while ( error && error.originalError ) {
error = error.originalError;
}
return( error );
}
getPrueba():string {
return 'prueba!!!';
}
sendToConsole(error:any): void {
try {
console.group( 'START ErrorHandler' );
console.error( error );
console.error( error.message );
console.error( error.stack );
console.groupEnd();
} catch (handlingError) {
console.group( 'START ErrorHandler' );
console.warn( 'Error when trying to output error. Pure Irony' );
console.error( handlingError );
console.groupEnd();
}
}
sendToBitacora(error:any): void {
let body: Object = {
name: error.name,
message: error.message,
stack: error.stack,
location: window.location.href
};
this.bkHttp.post('http://google.es', body).subscribe(res => { });
//this.bkHttp.post('http://fgooffglffffe.es', body);
}
}
An here it is the test file
import { Component, DebugElement } from '@angular/core';
import { TestBed, ComponentFixture, async } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { Observable } from 'rxjs';
import { Response, Http } from '@angular/http';
import { BkHttp } from './http.service';
import { BkExceptionHandlerService } from './exception-handler.service';
const ERROR_MESSAGE = 'Dummy Error';
@Component({
selector: 'dummy-component',
template: `<button (click)="throwError()">Throw an error!!!</button>`
})
export class MockComponent {
public throwError(): void {
throw Error(ERROR_MESSAGE);
}
}
describe('FancyService without the TestBed', () => {
let bkExceptionHandlerService: BkExceptionHandlerService;
let bkHttp: BkHttp;
let fixture: ComponentFixture<MockComponent>;
let loggerSpy: jasmine.Spy;
let consoleSpy: jasmine.Spy;
let errorObservableSpy: jasmine.Spy;
let comp: MockComponent;
beforeEach( async(() => {
TestBed.configureTestingModule({
declarations: [ MockComponent ],
})
.compileComponents(); // compile template and css
}));
beforeEach(() => {
bkExceptionHandlerService = new BkExceptionHandlerService(bkHttp);
loggerSpy = spyOn(bkExceptionHandlerService, 'controlError').and.callThrough();
consoleSpy = spyOn(console, 'error');
errorObservableSpy = jasmine.createSpy('log event observable subscription');
fixture = TestBed.createComponent(MockComponent);
comp = fixture.componentInstance;
fixture = TestBed.createComponent(MockComponent);
});
it('should log error to the console', () => {
let elem = fixture.debugElement.query(By.css('button'));
elem.triggerEventHandler('click', null);
expect(loggerSpy).toHaveBeenCalledWith(jasmine.any(Error), ERROR_MESSAGE);
});
});
And finally the error
Error: Error in ./MockComponent class MockComponent - inline template:0:0 caused by: Dummy Error in node_modules/@bankular/development-tools/config/karma-test-shim.js (line 49231)
Could you guys help me?
Aucun commentaire:
Enregistrer un commentaire