kanban / webapp /src /components /viewHeader /newCardButton.test.tsx
Leon4gr45's picture
Upload folder using huggingface_hub
13555f3 verified
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React from 'react'
import {render, screen} from '@testing-library/react'
import {Provider as ReduxProvider} from 'react-redux'
import '@testing-library/jest-dom'
import userEvent from '@testing-library/user-event'
import {wrapIntl, mockStateStore} from '../../testUtils'
import {TestBlockFactory} from '../../test/testBlockFactory'
import NewCardButton from './newCardButton'
const board = TestBlockFactory.createBoard()
const activeView = TestBlockFactory.createBoardView(board)
describe('components/viewHeader/newCardButton', () => {
const state = {
users: {
me: {
id: 'user-id-1',
username: 'username_1'},
},
boards: {
current: board.id,
boards: {
[board.id]: board,
},
},
cards: {
templates: [],
},
views: {
current: 0,
views: [activeView],
},
}
const store = mockStateStore([], state)
const mockFunction = jest.fn()
beforeEach(() => {
jest.clearAllMocks()
})
test('return NewCardButton', () => {
const {container} = render(
wrapIntl(
<ReduxProvider store={store}>
<NewCardButton
addCard={jest.fn()}
addCardTemplate={jest.fn()}
addCardFromTemplate={jest.fn()}
editCardTemplate={jest.fn()}
/>
</ReduxProvider>,
),
)
const buttonElement = screen.getByRole('button', {name: 'menuwrapper'})
userEvent.click(buttonElement)
expect(container).toMatchSnapshot()
})
test('return NewCardButton and addCard', () => {
const {container} = render(
wrapIntl(
<ReduxProvider store={store}>
<NewCardButton
addCard={mockFunction}
addCardTemplate={jest.fn()}
addCardFromTemplate={jest.fn()}
editCardTemplate={jest.fn()}
/>
</ReduxProvider>,
),
)
const buttonElement = screen.getByRole('button', {name: 'menuwrapper'})
userEvent.click(buttonElement)
expect(container).toMatchSnapshot()
const buttonAdd = screen.getByRole('button', {name: 'Empty card'})
userEvent.click(buttonAdd)
expect(mockFunction).toBeCalledTimes(1)
})
test('return NewCardButton and addCardTemplate', () => {
const {container} = render(
wrapIntl(
<ReduxProvider store={store}>
<NewCardButton
addCard={jest.fn()}
addCardTemplate={mockFunction}
addCardFromTemplate={jest.fn()}
editCardTemplate={jest.fn()}
/>
</ReduxProvider>,
),
)
const buttonElement = screen.getByRole('button', {name: 'menuwrapper'})
userEvent.click(buttonElement)
expect(container).toMatchSnapshot()
const buttonAddTemplate = screen.getByRole('button', {name: 'New template'})
userEvent.click(buttonAddTemplate)
expect(mockFunction).toBeCalledTimes(1)
})
})