/* * Tencent is pleased to support the open source community by making TMagicEditor available. * * Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved. * * Licensed 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 { mount } from '@vue/test-utils'; import ElementPlus, { ElDropdown } from 'element-plus'; import ToolButton from '@editor/components/ToolButton.vue'; // ResizeObserver mock globalThis.ResizeObserver = globalThis.ResizeObserver || jest.fn().mockImplementation(() => ({ disconnect: jest.fn(), observe: jest.fn(), unobserve: jest.fn(), })); const editorState: Record = { node: 'node', }; // mock const editorService = { get: jest.fn((key: string) => editorState[key]), remove: jest.fn(), redo: jest.fn(), undo: jest.fn(), }; // mock const historyService = { state: { canUndo: true, canRedo: true, }, }; // mock const uiService = { set: jest.fn(), get: jest.fn(() => 0.5), }; const getWrapper = ( props: any = { data: 'delete', }, ) => mount(ToolButton as any, { props, global: { plugins: [ElementPlus as any], provide: { services: { editorService, historyService, uiService, }, }, }, }); describe('ToolButton', () => { it('删除', (done) => { const wrapper = getWrapper(); setTimeout(async () => { const icon = wrapper.find('.el-button'); await icon.trigger('click'); expect(editorService.remove.mock.calls[0][0]).toBe('node'); done(); }, 0); }); it('后退', (done) => { const wrapper = getWrapper({ data: 'undo' }); setTimeout(async () => { const icon = wrapper.find('.el-button'); await icon.trigger('click'); expect(editorService.undo).toBeCalled(); done(); }, 0); }); it('前进', (done) => { const wrapper = getWrapper({ data: 'redo' }); setTimeout(async () => { const icon = wrapper.find('.el-button'); await icon.trigger('click'); expect(editorService.redo).toBeCalled(); done(); }, 0); }); it('放大', (done) => { const wrapper = getWrapper({ data: 'zoom-in' }); setTimeout(async () => { const icon = wrapper.find('.el-button'); await icon.trigger('click'); expect(uiService.get).toBeCalled(); expect(uiService.set.mock.calls[0]).toEqual(['zoom', 0.6]); done(); }, 0); }); it('缩小', (done) => { const wrapper = getWrapper({ data: 'zoom-out' }); setTimeout(async () => { const icon = wrapper.find('.el-button'); await icon.trigger('click'); expect(uiService.set.mock.calls[1]).toEqual(['zoom', 0.4]); done(); }, 0); }); it('data无匹配值', () => { getWrapper({ data: 'default' }); }); it('自定义display', () => { const display = jest.fn(); getWrapper({ data: { display }, }); expect(display).toBeCalled(); }); it('点击下拉菜单项', (done) => { const wrapper = getWrapper({ data: { type: 'dropdown', }, }); setTimeout(async () => { const dropDown = wrapper.findComponent(ElDropdown); const handler = jest.fn(); dropDown.vm.$emit('command', { item: { handler }, }); expect(handler).toBeCalled(); done(); }, 0); }); it('按钮不可用', (done) => { const wrapper = getWrapper({ data: { icon: 'disabled-icon', type: 'button', disabled: true, }, }); setTimeout(async () => { // disabled 后会有 is-disabled class const iconBtn = wrapper.find('.el-button.el-button--text.is-disabled'); await iconBtn.trigger('click'); done(); }, 0); }); it('菜单项handler未定义', () => { const wrapper = getWrapper({ data: { type: 'dropdown', }, }); const dropDown = wrapper.findComponent(ElDropdown); dropDown.vm.$emit('command', { item: {}, }); }); it('参数data为undefined', () => { const wrapper = getWrapper({ data: undefined }); expect(wrapper.find('div[class="menu-item"]').exists()).toBe(false); }); it('自定义display', () => { const wrapper = getWrapper({ data: { display: false, }, }); expect(wrapper.find('div[class="menu-item"]').exists()).toBe(false); }); });