/* * 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. * * 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 { mount } from 'enzyme'; import { OuiDelayHide } from './index'; describe('when OuiDelayHide is visible initially', () => { function getWrapper() { jest.useFakeTimers(); return mount(
Hello World
} /> ); } test('it should be visible initially', async () => { const wrapper = getWrapper(); wrapper.setProps({ hide: true }); expect(wrapper.html()).toEqual('
Hello World
'); }); test('it should be visible after 900ms', () => { const wrapper = getWrapper(); wrapper.setProps({ hide: true }); jest.advanceTimersByTime(900); expect(wrapper.html()).toEqual('
Hello World
'); }); test('it should be hidden after 1100ms', () => { const wrapper = getWrapper(); wrapper.setProps({ hide: true }); jest.advanceTimersByTime(1100); wrapper.setProps({}); expect(wrapper.html()).toEqual(null); }); test('it should be visible after 1100ms regardless of prop changes in-between', () => { const wrapper = getWrapper(); wrapper.setProps({ hide: true }); wrapper.setProps({ hide: false }); jest.advanceTimersByTime(1100); expect(wrapper.html()).toEqual('
Hello World
'); }); test('it should hide immediately after prop change, if it has been displayed for 1100ms', () => { const wrapper = getWrapper(); const currentTime = Date.now(); jest.advanceTimersByTime(1100); jest.spyOn(Date, 'now').mockReturnValue(currentTime + 1100); expect(wrapper.html()).toEqual('
Hello World
'); wrapper.setProps({ hide: true }); expect(wrapper.html()).toEqual(null); }); }); describe('when OuiDelayHide parent updates', () => { it('should still hide correctly', () => { jest.useFakeTimers(); const wrapper = mount(
Hello World
} /> ); wrapper.setProps({ hide: false }); jest.advanceTimersByTime(1100); wrapper.setProps({}); // simulate parent component re-rendering wrapper.setProps({ hide: true }); jest.advanceTimersByTime(1100); expect(wrapper.html()).toEqual(null); }); }); describe('when OuiDelayHide is hidden initially', () => { function getWrapper() { jest.useFakeTimers(); return mount(
Hello World
} /> ); } test('it should be hidden initially', async () => { const wrapper = getWrapper(); expect(wrapper.html()).toEqual(null); }); test('it should become visible immediately after prop change', async () => { const wrapper = getWrapper(); wrapper.setProps({ hide: false }); expect(wrapper.html()).toEqual('
Hello World
'); }); test('it should be visible for at least 1100ms before hiding', async () => { const wrapper = getWrapper(); wrapper.setProps({ hide: false }); wrapper.setProps({ hide: true }); jest.advanceTimersByTime(900); expect(wrapper.html()).toEqual('
Hello World
'); jest.advanceTimersByTime(200); wrapper.setProps({}); expect(wrapper.html()).toEqual(null); }); }); describe('when OuiDelayHide is visible initially and has a minimumDuration of 2000ms ', () => { function getWrapper() { jest.useFakeTimers(); const wrapper = mount(
Hello World
} /> ); wrapper.setProps({ hide: true }); return wrapper; } test('it should be visible initially', async () => { const wrapper = getWrapper(); expect(wrapper.html()).toEqual('
Hello World
'); }); test('it should be visible after 1900ms', () => { const wrapper = getWrapper(); jest.advanceTimersByTime(1900); expect(wrapper.html()).toEqual('
Hello World
'); }); test('it should be hidden after 2100ms', () => { const wrapper = getWrapper(); jest.advanceTimersByTime(2100); wrapper.setProps({}); expect(wrapper.html()).toEqual(null); }); }); describe('when OuiDelayHide has been visible and become hidden', () => { it('should still be visible for the minimum duration the second time', () => { jest.useFakeTimers(); const wrapper = mount(
Hello World
} /> ); wrapper.setProps({ hide: false }); jest.advanceTimersByTime(1100); wrapper.setProps({ hide: true }); jest.advanceTimersByTime(100); wrapper.setProps({ hide: false }); wrapper.setProps({ hide: true }); expect(wrapper.html()).toEqual('
Hello World
'); jest.advanceTimersByTime(1100); wrapper.setProps({}); expect(wrapper.html()).toEqual(null); }); });