/* * 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 { shallow } from 'enzyme'; import { Welcome } from './welcome'; import { telemetryPluginMock } from '../../../../telemetry/public/mocks'; jest.mock('../opensearch_dashboards_services', () => ({ getServices: () => ({ addBasePath: (path: string) => `root${path}`, trackUiMetric: () => {}, }), })); /* test('should render a Welcome screen with the telemetry disclaimer', () => { const telemetry = telemetryPluginMock.createStartContract(); const component = shallow( {}} telemetry={telemetry} />); expect(component).toMatchSnapshot(); }); */ const branding = { darkMode: false, mark: { defaultUrl: '/', }, applicationTitle: 'OpenSearch Dashboards', }; describe('Welcome page ', () => { describe('should render a Welcome screen ', () => { test('with the telemetry disclaimer when optIn is true', () => { const telemetry = telemetryPluginMock.createStartContract(); telemetry.telemetryService.getIsOptedIn = jest.fn().mockReturnValue(true); const component = shallow( {}} telemetry={telemetry} branding={branding} /> ); expect(component).toMatchSnapshot(); }); test('with the telemetry disclaimer when optIn is false', () => { const telemetry = telemetryPluginMock.createStartContract(); telemetry.telemetryService.getIsOptedIn = jest.fn().mockReturnValue(false); const component = shallow( {}} telemetry={telemetry} branding={branding} /> ); expect(component).toMatchSnapshot(); }); test('with no telemetry disclaimer', () => { const component = shallow( {}} branding={branding} />); expect(component).toMatchSnapshot(); }); test('fires opt-in seen when mounted', () => { const telemetry = telemetryPluginMock.createStartContract(); const mockSetOptedInNoticeSeen = jest.fn(); telemetry.telemetryNotifications.setOptedInNoticeSeen = mockSetOptedInNoticeSeen; shallow( {}} telemetry={telemetry} branding={branding} /> ); expect(mockSetOptedInNoticeSeen).toHaveBeenCalled(); }); }); describe('should render welcome logo in default mode ', () => { test('using mark default mode URL', () => { const customBranding = { darkMode: false, mark: { defaultUrl: '/defaultModeMark', }, applicationTitle: 'custom title', }; const component = shallow( {}} branding={customBranding} /> ); expect(component).toMatchSnapshot(); }); test('using the original OpenSearch Dashboards logo', () => { const defaultBranding = { darkMode: false, mark: {}, applicationTitle: 'OpenSearch Dashboards', }; const component = shallow( {}} branding={defaultBranding} /> ); expect(component).toMatchSnapshot(); }); }); describe('should render welcome logo in dark mode ', () => { test('using mark dark mode URL', () => { const customBranding = { darkMode: true, mark: { defaultUrl: '/defaultModeMark', darkModeUrl: '/darkModeMark', }, title: 'custom title', }; const component = shallow( {}} branding={customBranding} /> ); expect(component).toMatchSnapshot(); }); test('using mark default mode URL', () => { const customBranding = { darkMode: true, mark: { defaultUrl: '/defaultModeMark', }, title: 'custom title', }; const component = shallow( {}} branding={customBranding} /> ); expect(component).toMatchSnapshot(); }); test('using the original opensearch logo', () => { const customBranding = { darkMode: true, mark: {}, title: 'custom title', }; const component = shallow( {}} branding={customBranding} /> ); expect(component).toMatchSnapshot(); }); }); });