import {shallow} from 'sentry-test/enzyme';
import BulkNotice from 'sentry/components/bulkController/bulkNotice';
const props = {
allRowsCount: 64,
selectedRowsCount: 10,
bulkLimit: undefined,
onUnselectAllRows: () => {},
onSelectAllRows: () => {},
columnsCount: 4,
isPageSelected: false,
isAllSelected: false,
};
describe('BulkNotice', function () {
it('does not render if the whole page is not selected', function () {
const wrapper = shallow();
expect(wrapper.isEmptyRender()).toBe(true);
});
it('shows the right page summary', function () {
const wrapper = shallow();
expect(wrapper.text()).toBe(
`${props.selectedRowsCount} items on this page selected. Select all ${props.allRowsCount} items.`
);
expect(
shallow().text()
).toContain('Select all items across all pages');
expect(
shallow(
).text()
).toContain('Select the first 1000 items.');
});
it('can select all rows across all pages', function () {
const onSelectAllRows = jest.fn();
const wrapper = shallow(
);
wrapper.find('AlertButton').simulate('click');
expect(onSelectAllRows).toHaveBeenCalled();
});
it('can deselect all once everything is selected', function () {
const onUnselectAllRows = jest.fn();
const wrapper = shallow(
);
expect(wrapper.text()).toBe(
`Selected all ${props.allRowsCount} items. Cancel selection.`
);
wrapper.find('AlertButton').simulate('click');
expect(onUnselectAllRows).toHaveBeenCalled();
});
it('show the right selected all across all pages summary', function () {
expect(
shallow(
).text()
).toContain('Selected all items across all pages.');
expect(
shallow(
).text()
).toContain('Selected all 123 items.');
expect(
shallow(
).text()
).toContain('Selected up to the first 1000 items.');
});
});