Как мне выполнить юнит-тестирование для auth guard?
Не знаю, с чего начать, кто-нибудь может мне помочь?
Это мой authguard.component:
import { Injectable } from '@angular/core';
import {
Router,
CanActivate,
ActivatedRouteSnapshot,
RouterStateSnapshot
} from '@angular/router';
import { LoginService } from '../services/login/login.service';
@Injectable({
providedIn: 'root'
})
export class AuthGuard implements CanActivate {
constructor(private router: Router, private loginService: LoginService) {}
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot) {
const currentUser = this.loginService.currentUserValue;
if (currentUser) {
// Authorized so return true
return !0;
}
// not authorized so redirect to signin page with the return url
this.router.navigate(['/login'], {
queryParams: { returnUrl: state.url }
});
return !1;
}
}