blob: a7c2a557f38af37411de15f07e484208bc0f546c [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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 userEvent from '@testing-library/user-event';
import React from 'react';
import { render, screen } from 'spec/helpers/testing-library';
import SubMenu, { ButtonProps } from './SubMenu';
const mockedProps = {
name: 'Title',
tabs: [
{
name: 'Page1',
label: 'Page1',
url: '/page1',
usesRouter: true,
},
{
name: 'Page2',
label: 'Page2',
url: '/page2',
usesRouter: true,
},
{
name: 'Page3',
label: 'Page3',
url: '/page3',
usesRouter: false,
},
],
};
test('should render', () => {
const { container } = render(<SubMenu {...mockedProps} />);
expect(container).toBeInTheDocument();
});
test('should render the navigation', () => {
render(<SubMenu {...mockedProps} />);
expect(screen.getByRole('navigation')).toBeInTheDocument();
});
test('should render the brand', () => {
render(<SubMenu {...mockedProps} />);
expect(screen.getByText('Title')).toBeInTheDocument();
});
test('should render the right number of tabs', () => {
render(<SubMenu {...mockedProps} />);
expect(screen.getAllByRole('tab')).toHaveLength(3);
});
test('should render all the tabs links', () => {
const { tabs } = mockedProps;
render(<SubMenu {...mockedProps} />);
tabs.forEach(tab => {
const tabItem = screen.getByText(tab.label);
expect(tabItem).toHaveAttribute('href', tab.url);
});
});
test('should render the buttons', () => {
const mockFunc = jest.fn();
const buttons = [
{
name: 'test_button',
onClick: mockFunc,
buttonStyle: 'primary' as ButtonProps['buttonStyle'],
},
{
name: 'danger_button',
onClick: mockFunc,
buttonStyle: 'danger' as ButtonProps['buttonStyle'],
},
];
const buttonsProps = {
...mockedProps,
buttons,
};
render(<SubMenu {...buttonsProps} />);
const testButton = screen.getByText(buttons[0].name);
expect(screen.getAllByRole('button')).toHaveLength(2);
userEvent.click(testButton);
expect(mockFunc).toHaveBeenCalled();
});