This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 833
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds happy path test for <AddPriviligedUsers /> component
- Loading branch information
1 parent
027a044
commit bd9e453
Showing
3 changed files
with
146 additions
and
21 deletions.
There are no files selected for viewing
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
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
114 changes: 114 additions & 0 deletions
114
test/components/views/settings/AddPrivilegedUsers-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,114 @@ | ||
/* | ||
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 React from 'react'; | ||
import { act, fireEvent, render, waitFor } from '@testing-library/react'; | ||
import userEvent from "@testing-library/user-event"; | ||
import { mocked } from "jest-mock"; | ||
|
||
import { | ||
getMockClientWithEventEmitter, | ||
makeRoomWithStateEvents, | ||
} from "../../../test-utils"; | ||
import MatrixClientContext from '../../../../src/contexts/MatrixClientContext'; | ||
import { AddPrivilegedUsers } from "../../../../src/components/views/settings/AddPrivilegedUsers"; | ||
import UserProvider from "../../../../src/autocomplete/UserProvider"; | ||
|
||
jest.mock('../../../../src/autocomplete/UserProvider'); | ||
|
||
describe('<AddPrivilegedUsers />', () => { | ||
const provider = mocked(UserProvider, { shallow: true }); | ||
provider.prototype.getCompletions.mockResolvedValue([ | ||
{ type: 'user', completion: 'user_1', completionId: '@user_1:host.local', range: { start: 1, end: 1 } }, | ||
{ type: 'user', completion: 'user_2', completionId: '@user_2:host.local', range: { start: 1, end: 1 } }, | ||
]); | ||
|
||
const mockClient = getMockClientWithEventEmitter({ | ||
// `makeRoomWithStateEvents` only work's if `getRoom` is present. | ||
getRoom: jest.fn(), | ||
setPowerLevel: jest.fn(), | ||
}); | ||
const room = makeRoomWithStateEvents([], { roomId: 'room_id', mockClient: mockClient }); | ||
|
||
const getComponent = () => | ||
<MatrixClientContext.Provider value={mockClient}> | ||
<AddPrivilegedUsers | ||
room={room} | ||
defaultUserLevel={0} | ||
/> | ||
</MatrixClientContext.Provider>; | ||
|
||
it('checks whether form submit works as intended', async () => { | ||
const { getByTestId, queryAllByTestId } = render(getComponent()); | ||
|
||
// Verify that the submit button is disabled initially. | ||
const submitButton = getByTestId('add-privileged-users-submit-button'); | ||
expect(submitButton).toBeDisabled(); | ||
|
||
// Find some suggestions and select them. | ||
const autocompleteInput = getByTestId('autocomplete-input'); | ||
|
||
act(() => { | ||
fireEvent.focus(autocompleteInput); | ||
fireEvent.change(autocompleteInput, { target: { value: 'u' } }); | ||
}); | ||
|
||
await waitFor(() => expect(provider.mock.instances[0].getCompletions).toHaveBeenCalledTimes(1)); | ||
const matchOne = getByTestId('autocomplete-suggestion-item-@user_1:host.local'); | ||
const matchTwo = getByTestId('autocomplete-suggestion-item-@user_2:host.local'); | ||
|
||
act(() => { | ||
fireEvent.mouseDown(matchOne); | ||
}); | ||
|
||
act(() => { | ||
fireEvent.mouseDown(matchTwo); | ||
}); | ||
|
||
// Check that `defaultUserLevel` is initially set and select a higher power level. | ||
expect((getByTestId('power-level-option-0') as HTMLOptionElement).selected).toBeTruthy(); | ||
expect((getByTestId('power-level-option-50') as HTMLOptionElement).selected).toBeFalsy(); | ||
expect((getByTestId('power-level-option-100') as HTMLOptionElement).selected).toBeFalsy(); | ||
|
||
const powerLevelSelect = getByTestId('power-level-select-element'); | ||
await userEvent.selectOptions(powerLevelSelect, "100"); | ||
|
||
expect((getByTestId('power-level-option-0') as HTMLOptionElement).selected).toBeFalsy(); | ||
expect((getByTestId('power-level-option-50') as HTMLOptionElement).selected).toBeFalsy(); | ||
expect((getByTestId('power-level-option-100') as HTMLOptionElement).selected).toBeTruthy(); | ||
|
||
// The submit button should be enabled now. | ||
expect(submitButton).toBeEnabled(); | ||
|
||
// Submit the form. | ||
act(() => { | ||
fireEvent.submit(submitButton); | ||
}); | ||
|
||
await waitFor(() => expect(mockClient.setPowerLevel).toHaveBeenCalledTimes(1)); | ||
|
||
// Verify that the submit button is disabled again. | ||
expect(submitButton).toBeDisabled(); | ||
|
||
// Verify that previously selected items are reset. | ||
const selectionItems = queryAllByTestId('autocomplete-selection-item', { exact: false }); | ||
expect(selectionItems).toHaveLength(0); | ||
|
||
// Verify that power level select is reset to `defaultUserLevel`. | ||
expect((getByTestId('power-level-option-0') as HTMLOptionElement).selected).toBeTruthy(); | ||
expect((getByTestId('power-level-option-50') as HTMLOptionElement).selected).toBeFalsy(); | ||
expect((getByTestId('power-level-option-100') as HTMLOptionElement).selected).toBeFalsy(); | ||
}); | ||
}); |