-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* extract delete confirm modal * extract the export modal * add data-test-subj to confirm modal * add comment on why we can't use EuiConfirmModal
- Loading branch information
1 parent
4d2937b
commit de9a71a
Showing
10 changed files
with
582 additions
and
400 deletions.
There are no files selected for viewing
238 changes: 50 additions & 188 deletions
238
...t/public/management_section/objects_table/__snapshots__/saved_objects_table.test.tsx.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
97 changes: 97 additions & 0 deletions
97
...nagement/public/management_section/objects_table/components/delete_confirm_modal.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/* | ||
* 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 { mountWithIntl } from '@kbn/test/jest'; | ||
import { SavedObjectWithMetadata } from '../../../../common'; | ||
import { DeleteConfirmModal } from './delete_confirm_modal'; | ||
|
||
const createObject = (): SavedObjectWithMetadata => ({ | ||
id: 'foo', | ||
type: 'bar', | ||
attributes: {}, | ||
references: [], | ||
meta: {}, | ||
}); | ||
|
||
describe('DeleteConfirmModal', () => { | ||
let onConfirm: jest.Mock; | ||
let onCancel: jest.Mock; | ||
|
||
beforeEach(() => { | ||
onConfirm = jest.fn(); | ||
onCancel = jest.fn(); | ||
}); | ||
|
||
it('displays a loader if `isDeleting` is true', () => { | ||
const wrapper = mountWithIntl( | ||
<DeleteConfirmModal | ||
isDeleting={true} | ||
onConfirm={onConfirm} | ||
onCancel={onCancel} | ||
selectedObjects={[]} | ||
/> | ||
); | ||
expect(wrapper.find('EuiLoadingElastic')).toHaveLength(1); | ||
expect(wrapper.find('EuiModal')).toHaveLength(0); | ||
}); | ||
|
||
it('lists the objects to delete', () => { | ||
const objs = [createObject(), createObject(), createObject()]; | ||
const wrapper = mountWithIntl( | ||
<DeleteConfirmModal | ||
isDeleting={false} | ||
onConfirm={onConfirm} | ||
onCancel={onCancel} | ||
selectedObjects={objs} | ||
/> | ||
); | ||
expect(wrapper.find('.euiTableRow')).toHaveLength(3); | ||
}); | ||
|
||
it('calls `onCancel` when clicking on the cancel button', () => { | ||
const wrapper = mountWithIntl( | ||
<DeleteConfirmModal | ||
isDeleting={false} | ||
onConfirm={onConfirm} | ||
onCancel={onCancel} | ||
selectedObjects={[]} | ||
/> | ||
); | ||
wrapper.find('EuiButtonEmpty').simulate('click'); | ||
|
||
expect(onCancel).toHaveBeenCalledTimes(1); | ||
expect(onConfirm).not.toHaveBeenCalled(); | ||
}); | ||
|
||
it('calls `onDelete` when clicking on the delete button', () => { | ||
const wrapper = mountWithIntl( | ||
<DeleteConfirmModal | ||
isDeleting={false} | ||
onConfirm={onConfirm} | ||
onCancel={onCancel} | ||
selectedObjects={[]} | ||
/> | ||
); | ||
wrapper.find('EuiButton').simulate('click'); | ||
|
||
expect(onConfirm).toHaveBeenCalledTimes(1); | ||
expect(onCancel).not.toHaveBeenCalled(); | ||
}); | ||
}); |
Oops, something went wrong.