/* * 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 { render, mount } from 'enzyme'; import { requiredProps, takeMountedSnapshot } from '../../test'; import { OuiContextMenu, SIZES } from './context_menu'; import { setTimeout } from 'timers'; const panel3 = { id: 3, title: '3', items: [ { name: foo, key: 'foo', }, ], }; const panel2 = { id: 2, title: '2', content:
2
, }; const panel1 = { id: 1, title: '1', width: 400, items: [ { name: '2a', panel: 2, }, { name: '2b', panel: 2, }, { name: '2c', panel: 2, }, ], }; const panel0 = { id: 0, title: '0', items: [ { name: '1', panel: 1, }, ], }; const panels = [panel0, panel1, panel2, panel3]; export const tick = (ms = 0) => new Promise((resolve) => { setTimeout(resolve, ms); }); describe('OuiContextMenu', () => { test('is rendered', () => { const component = render(); expect(component).toMatchSnapshot(); }); it('panel item can contain JSX', () => { const component = render( ); expect(component).toMatchSnapshot(); }); it('panel item can be a separator line', () => { const component = render( ); expect(component).toMatchSnapshot(); }); it('can pass-through horizontal rule props', () => { const component = render( ); expect(component).toMatchSnapshot(); }); describe('props', () => { describe('panels and initialPanelId', () => { it('renders the referenced panel', () => { const component = render( ); expect(component).toMatchSnapshot(); }); it('allows you to click the title button to go back to the previous panel', async () => { const component = mount( ); await tick(20); expect(takeMountedSnapshot(component)).toMatchSnapshot(); // Navigate to a different panel. component .find('[data-test-subj="contextMenuPanelTitleButton"]') .simulate('click'); await tick(20); expect(takeMountedSnapshot(component)).toMatchSnapshot(); }); }); describe('size', () => { SIZES.forEach((size) => { it(`${size} is rendered`, () => { const component = render( ); expect(component).toMatchSnapshot(); }); }); }); }); });