<spyOn>: не удалось найти объект для шпионажа для входа в систему () - Angular TestBed
Я пытаюсь написать модульный тест для одного из компонентов с именем Login.Component.ts, код которого приведен ниже. Я пробовал разные подходы, но не смог получить успешный ответ. Прежде чем объяснить компонент и сервисный код, я хочу знать -
TestBed
- Насколько я понимаю, испытательный стенд в угловой системе инициирует и настраивает весь шаблонный код (необходимый для тестирования, такого как создание представления, инициализация и внедрение службы, создание маршрутизаторов и все это только для среды тестирования), и все, что нам нужно сделать, это написать несколько минимальный код, как показано ниже -beforeEach(() => { TestBed.configureTestingModule({ imports:[RouterTestingModule.withRoutes([])], declarations: [LoginComponent], providers: [AuthenticationService] }) .compileComponents(); fixture = TestBed.createComponent(LoginComponent); component = fixture.componentInstance; authenticationservice = TestBed.get(AuthenticationService);
});
Но похоже, что мое понимание неверно, так как компонент и служба аутентификации не похожи на объекты, как видно из ошибки, которую я получаю -
<spyOn> : could not find an object to spy upon for login() - Angular TestBed
Login.Component.ts -
@Component({
selector: 'app-login',
templateUrl: './login.component.html'
})
export class LoginComponent implements OnInit {
constructor(
private authenticationService: AuthenticationService,
private router: Router
) { }
ngOnInit() {
}
login({ formValue }: { formValue: LoginRequest }) {
this.authenticationService.login(formValue.user, formValue.password)
.subscribe(
res => {
this.router.navigate(['/']);
},
error => {
Console.log(“Login Error”);
});
}
}
Authentication.service.ts
@Injectable()
export class AuthenticationService {
constructor(private httpClient: HttpClient) { }
login(user: string, pass: string): Observable<authToken> {
return this.httpClient.post<authToken >(SomeURI+'/oauth/token', {},
{
params: new HttpParams()
.set('username', userId)
.set('password', password)
}
).do(this.htoken);
}
private htoken(token: authToken) {
//some local storage logic here
}
approutes.module.ts
const appRoutes: Routes = [
30. { path: '', component: HomeComponent, canActivate: [IsAuthenticatedActivateGuard] },
{ path: 'login', component: LoginComponent},
{ path: '**', component: NotFoundComponent, canActivate: [IsAuthenticatedActivateGuard] }
];
@NgModule({
imports: [
RouterModule.forRoot(
appRoutes
)
],
exports: [
RouterModule
]
})
export class AppRoutingModule { }
Письменный тест -
Подход 1 -
//imports
fdescribe('LoginComponent', () => {
let component: LoginComponent;
let authenticationservice: AuthenticationService;
let router: Router;
let spyService: any;
let httpClient: HttpClient;
interface LoginRequest {
user: string;
password: string;
}
let creds: LoginRequest = {
user: "username",
password: "userpasswd"
}
let m: MenuConfig = {
}
let oToken: OauthToken = {
access_token: "abc",
token_type: "jj",
refresh_token: "y",
expires_in: 10,
scope: "g",
acessibleMenuItems: m
};
beforeEach(() => {
component = new LoginComponent(authenticationservice, router, null);
authenticationservice = new AuthenticationService(httpClient);
});
fit('should login successfully', () => {
spyService = spyOn(authenticationservice, 'login').and.callFake(() => {
return Observable.of(oToken);
});
component.login({ value: creds });
expect(spyService).toHaveBeenCalledTimes(1);
})
});
Ошибка -
TypeError: Cannot read property 'navigate' of undefined
Подход 2 - Когда я думал об использовании TestBed, предполагая, что он позаботится обо всем,
//imports
describe('LoginComponent', () => {
let component: LoginComponent;
let fixture: ComponentFixture<LoginComponent>;
let authenticationservice: AuthenticationService;
let router: Router;
let spyService: any;
let spyRouter: any;
let httpClient: HttpClient;
interface LoginRequest {
user: string;
password: string;
}
let creds: LoginRequest = {
user: "username",
password: "userpasswd"
}
let m: MenuConfig = {
}
let oToken: OauthToken = {
access_token: "abc",
token_type: "jj",
refresh_token: "y",
expires_in: 10,
scope: "g",
acessibleMenuItems: m
};
beforeEach(() => {
TestBed.configureTestingModule({
imports:[RouterTestingModule.withRoutes([])],
declarations: [LoginComponent],
providers: [AuthenticationService]
})
.compileComponents();
fixture = TestBed.createComponent(LoginComponent);
component = fixture.componentInstance;
authenticationservice = TestBed.get(AuthenticationService);
//fixture.detectChanges();
});
it('should login successfully', () => {
spyService = spyOn(authenticationservice, 'login').and.callFake(() => {
return Observable.of(oToken);
});
//spyRouter = spyOn((<any>component).router, 'navigate').and.callThrough();
component.login({ value: creds });
expect(spyService).toHaveBeenCalledTimes(1);
//expect(spyRouter).toHaveBeenCalledTimes(1);
})
});
Ошибка -
Error: Template parse errors:
'app-messages' is not a known element:
1. If 'app-messages' is an Angular component, then verify that it is part of this module.
2. If 'app-messages' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. ("<h4>Login</h4>
<hr>
[ERROR ->]<app-messages></app-messages>
<!-- Really good forms resource: https://toddmotto.com/angular-2-forms-"): ng:///DynamicTestModule/LoginComponent.html@2:0
There is no directive with "exportAs" set to "ngForm" ("nputs 'name' attribute -->
<form name="form" class="form-horizontal" novalidateautocomplete="false" [ERROR ->]#f="ngForm" (ngSubmit)="login(f)">
<div class="form-group">
<label for="user-input">User Id</la"): ng:///DynamicTestModule/LoginComponent.html@6:73
There is no directive with "exportAs" set to "ngModel" (" <input class="form-control" type="text" id="user-input" placeholder="User Id" ngModel name="user" [ERROR ->]#user="ngModel" required>
<app-input-validation-messages [model]="user"></app-input-validation-me"): ng:///DynamicTestModule/LoginComponent.html@9:102
Can't bind to 'model' since it isn't a known property of 'app-input-validation-messages'.
1. If 'app-input-validation-messages' is an Angular component and it has 'model' input, then verify that it is part of this module.
2. If 'app-input-validation-messages' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. ("ceholder="User Id" ngModel name="user" #user="ngModel" required>
<app-input-validation-messages [ERROR ->][model]="user"></app-input-validation-messages>
</div>
<div class="form-group">
"): ng:///DynamicTestModule/LoginComponent.html@10:35
'app-input-validation-messages' is not a known element:
1. If 'app-input-validation-messages' is an Angular component, then verify that it is part of this module.
2. If 'app-input-validation-messages' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. ("type="text" id="user-input" placeholder="User Id" ngModel name="user" #user="ngModel" required>
[ERROR ->]<app-input-validation-messages [model]="user"></app-input-validation-messages>
А также
Error: <spyOn> : could not find an object to spy upon for login()
Usage: spyOn(<object>, <methodName>)
at SpyRegistry.spyOn (http://localhost:9877/base/node_modules/jasmine-core/lib/jasmine-core/jasmine.js?da99c5b057693d025fad3d7685e1590600ca376d:4364:15)
at Env.spyOn (http://localhost:9877/base/node_modules/jasmine-core/lib/jasmine-core/jasmine.js?da99c5b057693d025fad3d7685e1590600ca376d:925:32)
at spyOn (http://localhost:9877/base/node_modules/jasmine-core/lib/jasmine-core/jasmine.js?da99c5b057693d025fad3d7685e1590600ca376d:4203:18)
Понятия не имею, что я здесь делаю не так. Я испортил это?
Подход 3 - Каким-то образом, кажется, работает, не уверен, что я сделал по-другому. Тем не менее, я не могу понять, как проверить путь ошибки компонента здесь во втором тесте ниже, т.е. утверждать какое-либо сообщение об ошибке или что-то еще.
describe('LoginComponent', () => {
let component: any;
let fixture: ComponentFixture<LoginComponent>;
let authenticationservice: any;
let router: Router;
let spyService: any;
let spyRouter: any;
let httpClient: HttpClient;
interface LoginRequest {
user: string;
password: string;
}
let creds: LoginRequest = {
user: "username",
password: "userpasswd"
}
let m: Config = {
}
let oToken: authToken = {
access_token: "abc",
token_type: "jj",
};
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
SharedModule,
FormsModule,
RouterTestingModule
],
declarations: [
LoginComponent
],
providers: [
]
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(LoginComponent);
component = fixture.componentInstance;
authenticationservice = TestBed.get(AuthenticationService);
});
it('should login successfully', () => {
spyService = spyOn(authenticationservice, 'login').and.callFake(() => {
return Observable.of(oToken);
});
spyRouter = spyOn((<any>component).router, 'navigate');//.and.callThrough();
component.login({ value: creds });
expect(spyService).toHaveBeenCalledTimes(1);
expect(spyRouter).toHaveBeenCalledTimes(1);
});
it('should throw error message - bad credentials', () => {
spyService = spyOn(authenticationservice, 'login').and.returnValue(Observable.throw("Could not log in: Bad credentials"));
spyRouter = spyOn((<any>component).router, 'navigate');
var out = component.login({ value: creds });
console.log(":::::::"+out);
//how to put an assertion for Login Error Message here assuming that is returned by the catch block.
expect(spyService).toHaveBeenCalledTimes(1);
})
});
1 ответ
Согласно документации:
Вы также можете получить услугу от корневого инжектора через
TestBed.get()
, Это легче запомнить и менее многословно. Но это работает только тогда, когда Angular внедряет компонент с экземпляром службы в корневой инжектор теста.
Поэтому, возможно, вам стоит попробовать использовать инжектор:
Самый безопасный способ получить внедренный сервис, способ, который всегда работает, это получить его от инжектора тестируемого компонента. Инжектор компонента является свойством DebugElement прибора.
authenticationservice = fixture.debugElement.injector.get(AuthenticationService)
РЕДАКТИРОВАТЬ Попробуйте ввести зависимость непосредственно в ваш тест
it('should login successfully', inject([AuthenticationService], (service: AuthenticationService) => {...}));