/*
* 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, ReactWrapper } from 'enzyme';
import { requiredProps, findTestSubject } from '../../test';
import { act } from 'react-dom/test-utils';
import { keys } from '../../services';
import { OuiImage } from './image';
describe('OuiImage', () => {
test('is rendered', () => {
const component = render(
);
expect(component).toMatchSnapshot();
});
test('is rendered and allows full screen', () => {
const component = render(
);
expect(component).toMatchSnapshot();
});
test('is rendered with src', () => {
const component = render(
);
expect(component).toMatchSnapshot();
});
test('is rendered with a float', () => {
const component = render(
);
expect(component).toMatchSnapshot();
});
test('is rendered with a margin', () => {
const component = render();
expect(component).toMatchSnapshot();
});
test('is rendered with custom size', () => {
const component = render();
expect(component).toMatchSnapshot();
});
test('is rendered with a node as the caption', () => {
const component = render(
caption} url="/cat.jpg" />
);
expect(component).toMatchSnapshot();
});
describe('Full screen behaviour', () => {
let component: ReactWrapper;
beforeEach(() => {
const testProps = {
...requiredProps,
'data-test-subj': 'ouiImage',
};
component = mount(
);
findTestSubject(component, 'activateFullScreenButton').simulate('click');
});
test('full screen image is rendered', () => {
const overlayMask = document.querySelectorAll(
'[data-test-subj=fullScreenOverlayMask]'
);
expect(overlayMask.length).toBe(1);
const fullScreenImage = overlayMask[0].querySelectorAll(
'[data-test-subj=ouiImage]'
);
expect(fullScreenImage.length).toBe(1);
});
test('close using close icon', () => {
const deactivateFullScreenBtn = document.querySelectorAll(
'[data-test-subj=deactivateFullScreenButton]'
);
expect(deactivateFullScreenBtn.length).toBe(1);
act(() => {
(deactivateFullScreenBtn[0] as HTMLElement).click();
});
const overlayMask = document.querySelectorAll(
'[data-test-subj=fullScreenOverlayMask]'
);
expect(overlayMask.length).toBe(0);
});
test('close using ESCAPE key', () => {
const deactivateFullScreenBtn = document.querySelectorAll(
'[data-test-subj=deactivateFullScreenButton]'
);
expect(deactivateFullScreenBtn.length).toBe(1);
act(() => {
const escapeKeydownEvent = new KeyboardEvent('keydown', {
key: keys.ESCAPE,
bubbles: true,
});
(deactivateFullScreenBtn[0] as HTMLElement).dispatchEvent(
escapeKeydownEvent
);
});
const overlayMask = document.querySelectorAll(
'[data-test-subj=fullScreenOverlayMask]'
);
expect(overlayMask.length).toBe(0);
});
test('close using overlay mask', () => {
let overlayMask = document.querySelectorAll(
'[data-test-subj=fullScreenOverlayMask]'
);
expect(overlayMask.length).toBe(1);
act(() => {
(overlayMask[0] as HTMLElement).click();
});
overlayMask = document.querySelectorAll(
'[data-test-subj=fullScreenOverlayMask]'
);
expect(overlayMask.length).toBe(0);
});
});
});