|
15 | 15 |
|
16 | 16 | import { httpServerMock } from '../../../../../../src/core/server/http/http_server.mocks';
|
17 | 17 |
|
18 |
| -import { OpenSearchDashboardsRequest } from '../../../../../../src/core/server/http/router'; |
| 18 | +import { |
| 19 | + OpenSearchDashboardsRequest, |
| 20 | + ResponseHeaders, |
| 21 | +} from '../../../../../../src/core/server/http/router'; |
19 | 22 |
|
20 | 23 | import { OpenIdAuthentication } from './openid_auth';
|
21 | 24 | import { SecurityPluginConfigType } from '../../../index';
|
22 | 25 | import { SecuritySessionCookie } from '../../../session/security_cookie';
|
23 | 26 | import { deflateValue } from '../../../utils/compression';
|
24 | 27 | import { getObjectProperties } from '../../../utils/object_properties_defined';
|
25 | 28 | import {
|
26 |
| - IRouter, |
| 29 | + AuthResult, |
| 30 | + AuthResultParams, |
| 31 | + AuthResultType, |
| 32 | + AuthToolkit, |
27 | 33 | CoreSetup,
|
28 | 34 | ILegacyClusterClient,
|
| 35 | + IRouter, |
29 | 36 | SessionStorageFactory,
|
30 | 37 | } from '../../../../../../src/core/server';
|
| 38 | +import { coreMock } from '../../../../../../src/core/public/mocks'; |
31 | 39 |
|
32 | 40 | interface Logger {
|
33 | 41 | debug(message: string): void;
|
| 42 | + |
34 | 43 | info(message: string): void;
|
| 44 | + |
35 | 45 | warn(message: string): void;
|
| 46 | + |
36 | 47 | error(message: string): void;
|
| 48 | + |
37 | 49 | fatal(message: string): void;
|
38 | 50 | }
|
39 | 51 |
|
@@ -334,3 +346,205 @@ describe('test OpenId authHeaderValue', () => {
|
334 | 346 | global.Date.now = realDateNow;
|
335 | 347 | });
|
336 | 348 | });
|
| 349 | + |
| 350 | +describe('Test OpenID Unauthorized Flows', () => { |
| 351 | + let router: IRouter; |
| 352 | + let core: CoreSetup; |
| 353 | + let esClient: ILegacyClusterClient; |
| 354 | + let sessionStorageFactory: SessionStorageFactory<SecuritySessionCookie>; |
| 355 | + |
| 356 | + // Consistent with auth_handler_factory.test.ts |
| 357 | + beforeEach(() => {}); |
| 358 | + |
| 359 | + const config = ({ |
| 360 | + cookie: { |
| 361 | + secure: false, |
| 362 | + }, |
| 363 | + openid: { |
| 364 | + header: 'authorization', |
| 365 | + scope: [], |
| 366 | + extra_storage: { |
| 367 | + cookie_prefix: 'testcookie', |
| 368 | + additional_cookies: 5, |
| 369 | + }, |
| 370 | + }, |
| 371 | + } as unknown) as SecurityPluginConfigType; |
| 372 | + |
| 373 | + const logger = { |
| 374 | + debug: (message: string) => {}, |
| 375 | + info: (message: string) => {}, |
| 376 | + warn: (message: string) => {}, |
| 377 | + error: (message: string) => {}, |
| 378 | + fatal: (message: string) => {}, |
| 379 | + }; |
| 380 | + |
| 381 | + const authToolkit: AuthToolkit = { |
| 382 | + authenticated(data: AuthResultParams = {}): AuthResult { |
| 383 | + return { |
| 384 | + type: AuthResultType.authenticated, |
| 385 | + state: data.state, |
| 386 | + requestHeaders: data.requestHeaders, |
| 387 | + responseHeaders: data.responseHeaders, |
| 388 | + }; |
| 389 | + }, |
| 390 | + notHandled(): AuthResult { |
| 391 | + return { |
| 392 | + type: AuthResultType.notHandled, |
| 393 | + }; |
| 394 | + }, |
| 395 | + redirected(headers: { location: string } & ResponseHeaders): AuthResult { |
| 396 | + return { |
| 397 | + type: AuthResultType.redirected, |
| 398 | + headers, |
| 399 | + }; |
| 400 | + }, |
| 401 | + }; |
| 402 | + |
| 403 | + test('Ensure non pageRequest returns an unauthorized response', () => { |
| 404 | + const openIdAuthentication = new OpenIdAuthentication( |
| 405 | + config, |
| 406 | + sessionStorageFactory, |
| 407 | + router, |
| 408 | + esClient, |
| 409 | + core, |
| 410 | + logger |
| 411 | + ); |
| 412 | + |
| 413 | + const mockRequest = httpServerMock.createRawRequest({ |
| 414 | + url: { |
| 415 | + pathname: '/unknownPath/', |
| 416 | + }, |
| 417 | + }); |
| 418 | + const osRequest = OpenSearchDashboardsRequest.from(mockRequest); |
| 419 | + |
| 420 | + const mockLifecycleFactory = httpServerMock.createLifecycleResponseFactory(); |
| 421 | + |
| 422 | + openIdAuthentication.handleUnauthedRequest(osRequest, mockLifecycleFactory, authToolkit); |
| 423 | + |
| 424 | + expect(mockLifecycleFactory.unauthorized).toBeCalledTimes(1); |
| 425 | + }); |
| 426 | + |
| 427 | + test('Ensure request without path redirects to default route', () => { |
| 428 | + const mockCore = coreMock.createSetup(); |
| 429 | + const openIdAuthentication = new OpenIdAuthentication( |
| 430 | + config, |
| 431 | + sessionStorageFactory, |
| 432 | + router, |
| 433 | + esClient, |
| 434 | + mockCore, |
| 435 | + logger |
| 436 | + ); |
| 437 | + |
| 438 | + const mockRequest = httpServerMock.createRawRequest(); |
| 439 | + const osRequest = OpenSearchDashboardsRequest.from(mockRequest); |
| 440 | + |
| 441 | + const mockLifecycleFactory = httpServerMock.createLifecycleResponseFactory(); |
| 442 | + |
| 443 | + const authToolKitSpy = jest.spyOn(authToolkit, 'redirected'); |
| 444 | + |
| 445 | + openIdAuthentication.handleUnauthedRequest(osRequest, mockLifecycleFactory, authToolkit); |
| 446 | + |
| 447 | + expect(authToolKitSpy).toHaveBeenCalledWith({ |
| 448 | + location: '/auth/openid/captureUrlFragment?nextUrl=/', |
| 449 | + 'set-cookie': |
| 450 | + 'security_authentication=; Max-Age=0; Expires=Thu, 01 Jan 1970 00:00:00 GMT; HttpOnly; Path=/', |
| 451 | + }); |
| 452 | + }); |
| 453 | + |
| 454 | + test('Verify cookie is set "Secure" if configured', () => { |
| 455 | + const mockCore = coreMock.createSetup(); |
| 456 | + const openIdAuthentication = new OpenIdAuthentication( |
| 457 | + { |
| 458 | + ...config, |
| 459 | + cookie: { |
| 460 | + secure: true, |
| 461 | + }, |
| 462 | + }, |
| 463 | + sessionStorageFactory, |
| 464 | + router, |
| 465 | + esClient, |
| 466 | + mockCore, |
| 467 | + logger |
| 468 | + ); |
| 469 | + |
| 470 | + const mockRequest = httpServerMock.createRawRequest(); |
| 471 | + const osRequest = OpenSearchDashboardsRequest.from(mockRequest); |
| 472 | + |
| 473 | + const mockLifecycleFactory = httpServerMock.createLifecycleResponseFactory(); |
| 474 | + |
| 475 | + const authToolKitSpy = jest.spyOn(authToolkit, 'redirected'); |
| 476 | + |
| 477 | + openIdAuthentication.handleUnauthedRequest(osRequest, mockLifecycleFactory, authToolkit); |
| 478 | + |
| 479 | + expect(authToolKitSpy).toHaveBeenCalledWith({ |
| 480 | + location: '/auth/openid/captureUrlFragment?nextUrl=/', |
| 481 | + 'set-cookie': |
| 482 | + 'security_authentication=; Max-Age=0; Expires=Thu, 01 Jan 1970 00:00:00 GMT; Secure; HttpOnly; Path=/', |
| 483 | + }); |
| 484 | + }); |
| 485 | + |
| 486 | + test('Ensure nextUrl points to original request pathname', () => { |
| 487 | + const mockCore = coreMock.createSetup(); |
| 488 | + const openIdAuthentication = new OpenIdAuthentication( |
| 489 | + config, |
| 490 | + sessionStorageFactory, |
| 491 | + router, |
| 492 | + esClient, |
| 493 | + mockCore, |
| 494 | + logger |
| 495 | + ); |
| 496 | + |
| 497 | + const mockRequest = httpServerMock.createRawRequest({ |
| 498 | + url: { |
| 499 | + pathname: '/app/dashboards', |
| 500 | + }, |
| 501 | + }); |
| 502 | + const osRequest = OpenSearchDashboardsRequest.from(mockRequest); |
| 503 | + |
| 504 | + const mockLifecycleFactory = httpServerMock.createLifecycleResponseFactory(); |
| 505 | + |
| 506 | + const authToolKitSpy = jest.spyOn(authToolkit, 'redirected'); |
| 507 | + |
| 508 | + openIdAuthentication.handleUnauthedRequest(osRequest, mockLifecycleFactory, authToolkit); |
| 509 | + |
| 510 | + expect(authToolKitSpy).toHaveBeenCalledWith({ |
| 511 | + location: '/auth/openid/captureUrlFragment?nextUrl=/app/dashboards', |
| 512 | + 'set-cookie': |
| 513 | + 'security_authentication=; Max-Age=0; Expires=Thu, 01 Jan 1970 00:00:00 GMT; HttpOnly; Path=/', |
| 514 | + }); |
| 515 | + }); |
| 516 | + |
| 517 | + test('Ensure nextUrl points to original request pathname including security_tenant', () => { |
| 518 | + const mockCore = coreMock.createSetup(); |
| 519 | + const openIdAuthentication = new OpenIdAuthentication( |
| 520 | + config, |
| 521 | + sessionStorageFactory, |
| 522 | + router, |
| 523 | + esClient, |
| 524 | + mockCore, |
| 525 | + logger |
| 526 | + ); |
| 527 | + |
| 528 | + const mockRequest = httpServerMock.createRawRequest({ |
| 529 | + url: { |
| 530 | + pathname: '/app/dashboards', |
| 531 | + search: 'security_tenant=testing', |
| 532 | + }, |
| 533 | + }); |
| 534 | + const osRequest = OpenSearchDashboardsRequest.from(mockRequest); |
| 535 | + |
| 536 | + const mockLifecycleFactory = httpServerMock.createLifecycleResponseFactory(); |
| 537 | + |
| 538 | + const authToolKitSpy = jest.spyOn(authToolkit, 'redirected'); |
| 539 | + |
| 540 | + openIdAuthentication.handleUnauthedRequest(osRequest, mockLifecycleFactory, authToolkit); |
| 541 | + |
| 542 | + expect(authToolKitSpy).toHaveBeenCalledWith({ |
| 543 | + location: `/auth/openid/captureUrlFragment?nextUrl=${escape( |
| 544 | + '/app/dashboards?security_tenant=testing' |
| 545 | + )}`, |
| 546 | + 'set-cookie': |
| 547 | + 'security_authentication=; Max-Age=0; Expires=Thu, 01 Jan 1970 00:00:00 GMT; HttpOnly; Path=/', |
| 548 | + }); |
| 549 | + }); |
| 550 | +}); |
0 commit comments