/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. * * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ /* * Licensed to Elasticsearch B.V. under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch B.V. 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 React from 'react'; import { mount, ReactWrapper } from 'enzyme'; import { findTestSubject } from '../../test'; import { OuiBasicTable, OuiBasicTableProps } from './basic_table'; describe('OuiBasicTable', () => { describe('behavior', () => { describe('selected items', () => { let props: OuiBasicTableProps<{ id: string; name: string }>; let component: ReactWrapper; beforeEach(() => { props = { items: [ { id: '1', name: 'name1' }, { id: '2', name: 'name2' }, ], itemId: 'id', columns: [ { field: 'name', name: 'Name', description: 'description', }, ], selection: { onSelectionChange: () => {}, }, onChange: () => {}, }; component = mount(); }); test('check the select all checkbox when all are selected', () => { findTestSubject(component, 'checkboxSelectRow-1').simulate('change', { target: { checked: true }, }); findTestSubject(component, 'checkboxSelectRow-2').simulate('change', { target: { checked: true }, }); expect( findTestSubject(component, 'checkboxSelectAll').prop('checked') ).toBe(true); }); test('uncheck the select all checkbox when some are selected', () => { findTestSubject(component, 'checkboxSelectRow-1').simulate('change', { target: { checked: true }, }); expect( findTestSubject(component, 'checkboxSelectAll').prop('checked') ).toBe(false); }); test('are all selected when the select all checkbox is checked', () => { findTestSubject(component, 'checkboxSelectAll').simulate('change', { target: { checked: true }, }); expect( findTestSubject(component, 'checkboxSelectRow-1').prop('checked') ).toBe(true); expect( findTestSubject(component, 'checkboxSelectRow-2').prop('checked') ).toBe(true); }); test('select all checkbox becomes unchecked when selected items are deleted', () => { findTestSubject(component, 'checkboxSelectAll').simulate('change', { target: { checked: true }, }); props.items = []; component.setProps(props); expect( findTestSubject(component, 'checkboxSelectAll').prop('checked') ).toBe(false); }); }); }); });