Ionic アプリに資格情報トークンのストレージがあり、ログアウト アクションを実行するには、そこに保存されているトークンを削除する必要があります。これが私のLoginServiceになります:
// imports skipped;
export class LoginService implements CanActivate {
private authToken: string;
private httpService: string;
constructor(
private handler: HttpBackend,
private router: Router,
private storage: Storage
) {
this.httpService = new HttpClient(handler);
}
private generateToken(login: string, password: string) {
return btoa(`${login}:${password}`);
}
authenticate(login: string, password: string, webserviceURL: string) {
const httpOptions = {
headers: new HttpHeaders({
'Content-Type': 'application/json',
Authorization: `Basic ${this.generateToken(login, password)}`
})
};
return this.httpClient.get(`http://${webserviceURL}/api/version/`, httpOptions);
}
async saveToken(login: string, password: string) {
this.authToken = this.generateToken(login, password);
return await this.storage.set('AUTH_TOKEN', this.authToken);
}
async getToken() {
return await this.storage.get('AUTH_TOKEN');
}
async clearData() {
this.authToken = null;
return await this.storage.remove('AUTH_TOKEN');
}
canActivate() {
if (this.authToken) {
return true;
}
this.router.navigateByUrl('login');
}
}
このサービスのテストでは、次のことがわかりました。
const expectedToken = btoa('testLogin:testPassword');
service.saveToken('testLogin', 'testPassword').then(() => {
service.getToken().then(savedToken => {
expect(savedToken).toEqual(expectedToken);
});
});
service.clearData().then(() => {
service.getToken().then(savedToken => {
expect(savedToken).toBe(null);
});
});
テストを実行するたびに、何らかの理由でトークンがストレージから削除されないため、最後のテスト ケースが失敗します。テスト出力は次のとおりError: Expected 'dGVzdExvZ2luOnRlc3RQYXNzd29yZA==' to be null
です。ストレージからの値の削除を正しく処理するにはどうすればよいですか?