datasurvey/src/main/webapp/app/entities/usuario-extra/delete/usuario-extra-delete-dialog...

66 lines
2.2 KiB
TypeScript

jest.mock('@ng-bootstrap/ng-bootstrap');
import { ComponentFixture, TestBed, inject, fakeAsync, tick } from '@angular/core/testing';
import { HttpResponse } from '@angular/common/http';
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { of } from 'rxjs';
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
import { UsuarioExtraService } from '../service/usuario-extra.service';
import { UsuarioExtraDeleteDialogComponent } from './usuario-extra-delete-dialog.component';
describe('Component Tests', () => {
describe('UsuarioExtra Management Delete Component', () => {
let comp: UsuarioExtraDeleteDialogComponent;
let fixture: ComponentFixture<UsuarioExtraDeleteDialogComponent>;
let service: UsuarioExtraService;
let mockActiveModal: NgbActiveModal;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule],
declarations: [UsuarioExtraDeleteDialogComponent],
providers: [NgbActiveModal],
})
.overrideTemplate(UsuarioExtraDeleteDialogComponent, '')
.compileComponents();
fixture = TestBed.createComponent(UsuarioExtraDeleteDialogComponent);
comp = fixture.componentInstance;
service = TestBed.inject(UsuarioExtraService);
mockActiveModal = TestBed.inject(NgbActiveModal);
});
describe('confirmDelete', () => {
it('Should call delete service on confirmDelete', inject(
[],
fakeAsync(() => {
// GIVEN
jest.spyOn(service, 'delete').mockReturnValue(of(new HttpResponse({})));
// WHEN
comp.confirmDelete(123);
tick();
// THEN
expect(service.delete).toHaveBeenCalledWith(123);
expect(mockActiveModal.close).toHaveBeenCalledWith('deleted');
})
));
it('Should not call delete service on clear', () => {
// GIVEN
jest.spyOn(service, 'delete');
// WHEN
comp.cancel();
// THEN
expect(service.delete).not.toHaveBeenCalled();
expect(mockActiveModal.close).not.toHaveBeenCalled();
expect(mockActiveModal.dismiss).toHaveBeenCalled();
});
});
});
});