]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/api/auth.service.spec.ts
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / api / auth.service.spec.ts
1 import { HttpClientTestingModule, HttpTestingController } from '@angular/common/http/testing';
2 import { fakeAsync, TestBed, tick } from '@angular/core/testing';
3 import { Router, Routes } from '@angular/router';
4 import { RouterTestingModule } from '@angular/router/testing';
5
6 import { configureTestBed } from '~/testing/unit-test-helper';
7 import { AuthStorageService } from '../services/auth-storage.service';
8 import { AuthService } from './auth.service';
9
10 describe('AuthService', () => {
11 let service: AuthService;
12 let httpTesting: HttpTestingController;
13
14 const routes: Routes = [{ path: 'login', children: [] }];
15
16 configureTestBed({
17 providers: [AuthService, AuthStorageService],
18 imports: [HttpClientTestingModule, RouterTestingModule.withRoutes(routes)]
19 });
20
21 beforeEach(() => {
22 service = TestBed.inject(AuthService);
23 httpTesting = TestBed.inject(HttpTestingController);
24 });
25
26 afterEach(() => {
27 httpTesting.verify();
28 });
29
30 it('should be created', () => {
31 expect(service).toBeTruthy();
32 });
33
34 it('should login and save the user', fakeAsync(() => {
35 const fakeCredentials = { username: 'foo', password: 'bar' };
36 const fakeResponse = { username: 'foo' };
37 service.login(fakeCredentials).subscribe();
38 const req = httpTesting.expectOne('api/auth');
39 expect(req.request.method).toBe('POST');
40 expect(req.request.body).toEqual(fakeCredentials);
41 req.flush(fakeResponse);
42 tick();
43 expect(localStorage.getItem('dashboard_username')).toBe('foo');
44 }));
45
46 it('should logout and remove the user', () => {
47 const router = TestBed.inject(Router);
48 spyOn(router, 'navigate').and.stub();
49
50 service.logout();
51 const req = httpTesting.expectOne('api/auth/logout');
52 expect(req.request.method).toBe('POST');
53 req.flush({ redirect_url: '#/login' });
54 expect(localStorage.getItem('dashboard_username')).toBe(null);
55 expect(router.navigate).toBeCalledTimes(1);
56 });
57 });