mirror of https://github.com/vector-im/riot-web
				
				
				
			
		
			
				
	
	
		
			83 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
/*
 | 
						|
Copyright 2022 The Matrix.org Foundation C.I.C.
 | 
						|
 | 
						|
Licensed 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 { fireEvent, render } from "@testing-library/react";
 | 
						|
 | 
						|
import { Alignment } from "../../../../src/components/views/elements/Tooltip";
 | 
						|
import TooltipTarget from "../../../../src/components/views/elements/TooltipTarget";
 | 
						|
 | 
						|
describe("<TooltipTarget />", () => {
 | 
						|
    const defaultProps = {
 | 
						|
        "tooltipTargetClassName": "test tooltipTargetClassName",
 | 
						|
        "className": "test className",
 | 
						|
        "tooltipClassName": "test tooltipClassName",
 | 
						|
        "label": "test label",
 | 
						|
        "alignment": Alignment.Left,
 | 
						|
        "id": "test id",
 | 
						|
        "data-testid": "test",
 | 
						|
    };
 | 
						|
 | 
						|
    const getComponent = (props = {}) => {
 | 
						|
        const wrapper = render(
 | 
						|
            // wrap in element so renderIntoDocument can render functional component
 | 
						|
            <span>
 | 
						|
                <TooltipTarget {...defaultProps} {...props}>
 | 
						|
                    <span>child</span>
 | 
						|
                </TooltipTarget>
 | 
						|
            </span>,
 | 
						|
        );
 | 
						|
        return wrapper.getByTestId("test");
 | 
						|
    };
 | 
						|
 | 
						|
    const getVisibleTooltip = () => document.querySelector(".mx_Tooltip.mx_Tooltip_visible");
 | 
						|
 | 
						|
    it("renders container", () => {
 | 
						|
        const component = getComponent();
 | 
						|
        expect(component).toMatchSnapshot();
 | 
						|
        expect(getVisibleTooltip()).toBeFalsy();
 | 
						|
    });
 | 
						|
 | 
						|
    const alignmentKeys = Object.keys(Alignment).filter((o: any) => isNaN(o));
 | 
						|
    it.each(alignmentKeys)("displays %s aligned tooltip on mouseover", async (alignment: any) => {
 | 
						|
        const wrapper = getComponent({ alignment: Alignment[alignment] })!;
 | 
						|
        fireEvent.mouseOver(wrapper);
 | 
						|
        expect(getVisibleTooltip()).toMatchSnapshot();
 | 
						|
    });
 | 
						|
 | 
						|
    it("hides tooltip on mouseleave", () => {
 | 
						|
        const wrapper = getComponent()!;
 | 
						|
        fireEvent.mouseOver(wrapper);
 | 
						|
        expect(getVisibleTooltip()).toBeTruthy();
 | 
						|
        fireEvent.mouseLeave(wrapper);
 | 
						|
        expect(getVisibleTooltip()).toBeFalsy();
 | 
						|
    });
 | 
						|
 | 
						|
    it("displays tooltip on focus", () => {
 | 
						|
        const wrapper = getComponent()!;
 | 
						|
        fireEvent.focus(wrapper);
 | 
						|
        expect(getVisibleTooltip()).toBeTruthy();
 | 
						|
    });
 | 
						|
 | 
						|
    it("hides tooltip on blur", async () => {
 | 
						|
        const wrapper = getComponent()!;
 | 
						|
        fireEvent.focus(wrapper);
 | 
						|
        expect(getVisibleTooltip()).toBeTruthy();
 | 
						|
        fireEvent.blur(wrapper);
 | 
						|
        expect(getVisibleTooltip()).toBeFalsy();
 | 
						|
    });
 | 
						|
});
 |