import * as React from 'react';
import { render, screen } from '@testing-library/react';
import * as UiReactModule from '@aws-amplify/ui-react';
import { useMessageProps } from '../../hooks';
import { BLOCK_CLASS } from '../constants';
import { BannerMessage } from '../BannerMessage';
import { BannerMessageProps } from '../types';
jest.mock('../../hooks/');
jest.mock('../../MessageLayout', () => ({
  MessageLayout: () => 'MessageLayout',
}));
type Alignment = BannerMessageProps['alignment'];
type Position = BannerMessageProps['position'];
type Locations = [Alignment, Position][];
const BANNER_ALIGNMENTS: Alignment[] = ['left', 'center', 'right'];
const BANNER_POSITIONS: Position[] = ['top', 'middle', 'bottom'];
const BANNER_LOCATIONS = BANNER_ALIGNMENTS.reduce(
  (acc: Locations, alignment) => {
    BANNER_POSITIONS.forEach((position) => acc.push([alignment, position]));
    return acc;
  },
  []
);
const TEST_PROPS: BannerMessageProps = { layout: 'TOP_BANNER' };
const mockUseMessageProps = useMessageProps as jest.Mock;
const useBreakpointValueSpy = jest.spyOn(UiReactModule, 'useBreakpointValue');
describe('BannerMessage component', () => {
  beforeEach(() => {
    jest.clearAllMocks();
    mockUseMessageProps.mockReturnValue({ shouldRenderMessage: true });
    useBreakpointValueSpy.mockReturnValue(false);
  });
  it('should render', () => {
    render();
    const bannerMessage = screen.queryByRole('dialog');
    expect(bannerMessage).toBeInTheDocument();
    expect(bannerMessage).toHaveClass(BLOCK_CLASS);
    // top right by default
    expect(bannerMessage).toHaveClass(
      `${BLOCK_CLASS}--right`,
      `${BLOCK_CLASS}--top`
    );
  });
  it.each(BANNER_LOCATIONS)(
    'should render with %s alignment and %s position',
    (alignment, position) => {
      const isCenteredBanner = alignment === 'center' && position === 'middle';
      const expectedClasses = isCenteredBanner
        ? [`${BLOCK_CLASS}--${alignment}-${position}`]
        : [`${BLOCK_CLASS}--${alignment}`, `${BLOCK_CLASS}--${position}`];
      render(
        
      );
      const bannerMessage = screen.queryByRole('dialog');
      expect(bannerMessage).toHaveClass(...expectedClasses);
    }
  );
  it('should render with full-width modifier', () => {
    useBreakpointValueSpy.mockReturnValue(true);
    render();
    const bannerMessage = screen.getByRole('dialog');
    expect(bannerMessage).toHaveClass(`${BLOCK_CLASS}--full-width`);
  });
  it('returns null when not ready to be rendered', () => {
    mockUseMessageProps.mockReturnValue({
      shouldRenderMessage: false,
    });
    render();
    const bannerMessage = screen.queryByRole('dialog');
    expect(bannerMessage).not.toBeInTheDocument();
  });
});