У меня есть служба, которая получает класс в своем конструкторе.Я издевался над внедренным сервисом и добавил его в качестве поставщика как в тестовом модуле, так и переопределил в тестовом компоненте, но я все еще получаю NullInjectorError: No provider for UserService!
Вот тест - пожалуйста, будьте уверены, что я 'я импортировал все, что мне нужно:
describe('DataConsentComponent', () => {
let component: DataConsentComponent;
let fixture: ComponentFixture<DataConsentComponent>;
class UserMock extends User {
constructor () {
super();
}
}
class UserServiceMock {
constructor () {
}
}
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [DataConsentComponent],
providers: [
{ provide: 'UserService', useClass: UserServiceMock },
{ provide: 'User', useClass: UserMock }
]
});
TestBed.overrideComponent(
DataConsentComponent,
{
set: {
providers: [
{ provide: 'UserService', useClass: UserServiceMock },
{ provide: 'User', useClass: UserMock }
]
}
});
fixture = TestBed.createComponent(DataConsentComponent);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', inject([UserService], () => {
expect(component).toBeTruthy();
}));
});
И тестируемый класс:
import { Component, OnInit } from '@angular/core';
import { UserService } from '@team/user.service';
import { User } from '@team/user.model';
import { GDPR_IS_ACTIVE } from '../../config/constants';
@Component({
selector: 'app-data-consent',
template: ''
})
export class DataConsentComponent {
public User: User;
constructor(private UserService: UserService){
this.UserService.UserSource$.subscribe(
(User: ETMUser) => {
this.User = User;
});
}
getGDPRIsActive(): boolean {
return GDPR_IS_ACTIVE() || false;
}
getIfUserIsClient() {
return this.UserService.getUserIsClient();
}
getIfUserIsEmployee() {
return this.UserService.getUserIsEmployee();
}
showCandidateGDPRInformation (candidate) {
return true;
}
getNavigateLinkLabel(candidate):any {
return 'View';
}
shouldShowNavigate(candidate) {
return true;
}
isSelectable(candidate) {
return true;
}
}
Если есть лучший способ получить эту услугу, я более чем готов к рефакторингу.