227 lines
		
	
	
		
			8.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			227 lines
		
	
	
		
			8.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
| /*
 | |
| Copyright 2022 The Matrix.org Foundation C.I.C.
 | |
| 
 | |
| 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 "@testing-library/jest-dom";
 | |
| import React from "react";
 | |
| import { render, screen, waitFor } from "@testing-library/react";
 | |
| import { WysiwygProps } from "@matrix-org/matrix-wysiwyg";
 | |
| 
 | |
| import MatrixClientContext from "../../../../../src/contexts/MatrixClientContext";
 | |
| import RoomContext from "../../../../../src/contexts/RoomContext";
 | |
| import defaultDispatcher from "../../../../../src/dispatcher/dispatcher";
 | |
| import { Action } from "../../../../../src/dispatcher/actions";
 | |
| import { IRoomState } from "../../../../../src/components/structures/RoomView";
 | |
| import { createTestClient, getRoomContext, mkEvent, mkStubRoom } from "../../../../test-utils";
 | |
| import { EditWysiwygComposer }
 | |
|     from "../../../../../src/components/views/rooms/wysiwyg_composer";
 | |
| import EditorStateTransfer from "../../../../../src/utils/EditorStateTransfer";
 | |
| 
 | |
| const mockClear = jest.fn();
 | |
| 
 | |
| let initialContent: string;
 | |
| const defaultContent = '<b>html</b>';
 | |
| let mockContent = defaultContent;
 | |
| 
 | |
| // The wysiwyg fetch wasm bytes and a specific workaround is needed to make it works in a node (jest) environnement
 | |
| // See https://github.com/matrix-org/matrix-wysiwyg/blob/main/platforms/web/test.setup.ts
 | |
| jest.mock("@matrix-org/matrix-wysiwyg", () => ({
 | |
|     useWysiwyg: (props: WysiwygProps) => {
 | |
|         initialContent = props.initialContent;
 | |
|         return {
 | |
|             ref: { current: null },
 | |
|             content: mockContent,
 | |
|             isWysiwygReady: true,
 | |
|             wysiwyg: { clear: mockClear },
 | |
|             formattingStates: {
 | |
|                 bold: 'enabled',
 | |
|                 italic: 'enabled',
 | |
|                 underline: 'enabled',
 | |
|                 strikeThrough: 'enabled',
 | |
|             },
 | |
|         };
 | |
|     },
 | |
| }));
 | |
| 
 | |
| describe('EditWysiwygComposer', () => {
 | |
|     afterEach(() => {
 | |
|         jest.resetAllMocks();
 | |
|         mockContent = defaultContent;
 | |
|     });
 | |
| 
 | |
|     const mockClient = createTestClient();
 | |
|     const mockEvent = mkEvent({
 | |
|         type: "m.room.message",
 | |
|         room: 'myfakeroom',
 | |
|         user: 'myfakeuser',
 | |
|         content: {
 | |
|             "msgtype": "m.text",
 | |
|             "body": "Replying to this",
 | |
|             "format": "org.matrix.custom.html",
 | |
|             "formatted_body": "Replying <b>to</b> this new content",
 | |
|         },
 | |
|         event: true,
 | |
|     });
 | |
|     const mockRoom = mkStubRoom('myfakeroom', 'myfakeroom', mockClient) as any;
 | |
|     mockRoom.findEventById = jest.fn(eventId => {
 | |
|         return eventId === mockEvent.getId() ? mockEvent : null;
 | |
|     });
 | |
| 
 | |
|     const defaultRoomContext: IRoomState = getRoomContext(mockRoom, {});
 | |
| 
 | |
|     const editorStateTransfer = new EditorStateTransfer(mockEvent);
 | |
| 
 | |
|     const customRender = (disabled = false, _editorStateTransfer = editorStateTransfer) => {
 | |
|         return render(
 | |
|             <MatrixClientContext.Provider value={mockClient}>
 | |
|                 <RoomContext.Provider value={defaultRoomContext}>
 | |
|                     <EditWysiwygComposer disabled={disabled} editorStateTransfer={_editorStateTransfer} />
 | |
|                 </RoomContext.Provider>
 | |
|             </MatrixClientContext.Provider>,
 | |
|         );
 | |
|     };
 | |
| 
 | |
|     describe('Initialize with content', () => {
 | |
|         it('Should initialize useWysiwyg with html content', async () => {
 | |
|             // When
 | |
|             customRender(true);
 | |
| 
 | |
|             // Then
 | |
|             expect(initialContent).toBe(mockEvent.getContent()['formatted_body']);
 | |
|         });
 | |
| 
 | |
|         it('Should initialize useWysiwyg with plain text content', async () => {
 | |
|             // When
 | |
|             const mockEvent = mkEvent({
 | |
|                 type: "m.room.message",
 | |
|                 room: 'myfakeroom',
 | |
|                 user: 'myfakeuser',
 | |
|                 content: {
 | |
|                     "msgtype": "m.text",
 | |
|                     "body": "Replying to this",
 | |
|                 },
 | |
|                 event: true,
 | |
|             });
 | |
|             const editorStateTransfer = new EditorStateTransfer(mockEvent);
 | |
| 
 | |
|             customRender(true, editorStateTransfer);
 | |
| 
 | |
|             // Then
 | |
|             expect(initialContent).toBe(mockEvent.getContent().body);
 | |
|         });
 | |
|     });
 | |
| 
 | |
|     describe('Edit and save actions', () => {
 | |
|         const spyDispatcher = jest.spyOn(defaultDispatcher, "dispatch");
 | |
|         afterEach(() => {
 | |
|             spyDispatcher.mockRestore();
 | |
|         });
 | |
| 
 | |
|         it('Should cancel edit on cancel button click', async () => {
 | |
|             // When
 | |
|             customRender(true);
 | |
|             (await screen.findByText('Cancel')).click();
 | |
| 
 | |
|             // Then
 | |
|             expect(spyDispatcher).toBeCalledWith({
 | |
|                 action: Action.EditEvent,
 | |
|                 event: null,
 | |
|                 timelineRenderingType: defaultRoomContext.timelineRenderingType,
 | |
|             });
 | |
|             expect(spyDispatcher).toBeCalledWith({
 | |
|                 action: Action.FocusSendMessageComposer,
 | |
|                 context: defaultRoomContext.timelineRenderingType,
 | |
|             });
 | |
|         });
 | |
| 
 | |
|         it('Should send message on save button click', async () => {
 | |
|             // When
 | |
|             const spyDispatcher = jest.spyOn(defaultDispatcher, "dispatch");
 | |
| 
 | |
|             const renderer = customRender(true);
 | |
| 
 | |
|             mockContent = 'my new content';
 | |
|             renderer.rerender(<MatrixClientContext.Provider value={mockClient}>
 | |
|                 <RoomContext.Provider value={defaultRoomContext}>
 | |
|                     <EditWysiwygComposer editorStateTransfer={editorStateTransfer} />
 | |
|                 </RoomContext.Provider>
 | |
|             </MatrixClientContext.Provider>);
 | |
| 
 | |
|             (await screen.findByText('Save')).click();
 | |
| 
 | |
|             // Then
 | |
|             const expectedContent = {
 | |
|                 "body": ` * ${mockContent}`,
 | |
|                 "format": "org.matrix.custom.html",
 | |
|                 "formatted_body": ` * ${mockContent}`,
 | |
|                 "m.new_content": {
 | |
|                     "body": mockContent,
 | |
|                     "format": "org.matrix.custom.html",
 | |
|                     "formatted_body": mockContent,
 | |
|                     "msgtype": "m.text",
 | |
|                 },
 | |
|                 "m.relates_to": {
 | |
|                     "event_id": mockEvent.getId(),
 | |
|                     "rel_type": "m.replace",
 | |
|                 },
 | |
|                 "msgtype": "m.text",
 | |
|             };
 | |
|             expect(mockClient.sendMessage).toBeCalledWith(mockEvent.getRoomId(), null, expectedContent);
 | |
|             expect(spyDispatcher).toBeCalledWith({ action: 'message_sent' });
 | |
|         });
 | |
|     });
 | |
| 
 | |
|     it('Should focus when receiving an Action.FocusEditMessageComposer action', async () => {
 | |
|         // Given we don't have focus
 | |
|         customRender();
 | |
|         screen.getByLabelText('Bold').focus();
 | |
|         expect(screen.getByRole('textbox')).not.toHaveFocus();
 | |
| 
 | |
|         // When we send the right action
 | |
|         defaultDispatcher.dispatch({
 | |
|             action: Action.FocusEditMessageComposer,
 | |
|             context: null,
 | |
|         });
 | |
| 
 | |
|         // Then the component gets the focus
 | |
|         await waitFor(() => expect(screen.getByRole('textbox')).toHaveFocus());
 | |
|     });
 | |
| 
 | |
|     it('Should not focus when disabled', async () => {
 | |
|         // Given we don't have focus and we are disabled
 | |
|         customRender(true);
 | |
|         screen.getByLabelText('Bold').focus();
 | |
|         expect(screen.getByRole('textbox')).not.toHaveFocus();
 | |
| 
 | |
|         // When we send an action that would cause us to get focus
 | |
|         defaultDispatcher.dispatch({
 | |
|             action: Action.FocusEditMessageComposer,
 | |
|             context: null,
 | |
|         });
 | |
|         // (Send a second event to exercise the clearTimeout logic)
 | |
|         defaultDispatcher.dispatch({
 | |
|             action: Action.FocusEditMessageComposer,
 | |
|             context: null,
 | |
|         });
 | |
| 
 | |
|         // Wait for event dispatch to happen
 | |
|         await new Promise((r) => setTimeout(r, 200));
 | |
| 
 | |
|         // Then we don't get it because we are disabled
 | |
|         expect(screen.getByRole('textbox')).not.toHaveFocus();
 | |
|     });
 | |
| });
 | |
| 
 |