/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. * * Any modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ /* * Licensed to Elasticsearch B.V. under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch B.V. licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import React from 'react'; import { act } from 'react-dom/test-utils'; import { RenderingService } from './rendering_service'; import { applicationServiceMock } from '../application/application_service.mock'; import { chromeServiceMock } from '../chrome/chrome_service.mock'; import { overlayServiceMock } from '../overlays/overlay_service.mock'; import { BehaviorSubject } from 'rxjs'; describe('RenderingService#start', () => { let application: ReturnType; let chrome: ReturnType; let overlays: ReturnType; let targetDomElement: HTMLDivElement; let rendering: RenderingService; beforeEach(() => { application = applicationServiceMock.createInternalStartContract(); application.getComponent.mockReturnValue(
Hello application!
); chrome = chromeServiceMock.createStartContract(); chrome.getHeaderComponent.mockReturnValue(
Hello chrome!
); overlays = overlayServiceMock.createStartContract(); overlays.banners.getComponent.mockReturnValue(
I'm a banner!
); targetDomElement = document.createElement('div'); rendering = new RenderingService(); }); const startService = () => { return rendering.start({ application, chrome, overlays, targetDomElement, }); }; it('renders application service into provided DOM element', () => { startService(); expect(targetDomElement.querySelector('div.application')).toMatchInlineSnapshot(`
Hello application!
`); }); it('adds the `chrome-hidden` class to the AppWrapper when chrome is hidden', () => { const isVisible$ = new BehaviorSubject(true); chrome.getIsVisible$.mockReturnValue(isVisible$); startService(); const appWrapper = targetDomElement.querySelector('div.app-wrapper')!; expect(appWrapper.className).toEqual('app-wrapper'); act(() => isVisible$.next(false)); expect(appWrapper.className).toEqual('app-wrapper hidden-chrome'); act(() => isVisible$.next(true)); expect(appWrapper.className).toEqual('app-wrapper'); }); it('adds the application classes to the AppContainer', () => { const applicationClasses$ = new BehaviorSubject([]); chrome.getApplicationClasses$.mockReturnValue(applicationClasses$); startService(); const appContainer = targetDomElement.querySelector('div.application')!; expect(appContainer.className).toEqual('application'); act(() => applicationClasses$.next(['classA', 'classB'])); expect(appContainer.className).toEqual('application classA classB'); act(() => applicationClasses$.next(['classC'])); expect(appContainer.className).toEqual('application classC'); act(() => applicationClasses$.next([])); expect(appContainer.className).toEqual('application'); }); it('contains wrapper divs', () => { startService(); expect(targetDomElement.querySelector('div.app-wrapper')).toBeDefined(); expect(targetDomElement.querySelector('div.app-wrapper-pannel')).toBeDefined(); }); it('renders the banner UI', () => { startService(); expect(targetDomElement.querySelector('#globalBannerList')).toMatchInlineSnapshot(`
I'm a banner!
`); }); });