element-web/test/components/structures/auth/Registration-test.tsx

109 lines
3.5 KiB
TypeScript
Raw Normal View History

2019-02-05 10:26:45 +01:00
/*
Copyright 2019 New Vector Ltd
Copyright 2022 The Matrix.org Foundation C.I.C.
2019-02-05 10:26:45 +01:00
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 ReactDOM from 'react-dom';
import ReactTestUtils from 'react-dom/test-utils';
import { createClient } from 'matrix-js-sdk/src/matrix';
import { mocked } from 'jest-mock';
import SdkConfig, { DEFAULTS } from '../../../../src/SdkConfig';
import { createTestClient, mkServerConfig } from "../../../test-utils";
import Registration from "../../../../src/components/structures/auth/Registration";
import RegistrationForm from "../../../../src/components/views/auth/RegistrationForm";
jest.mock('matrix-js-sdk/src/matrix');
jest.useFakeTimers();
2019-02-05 10:26:45 +01:00
describe('Registration', function() {
let parentDiv;
beforeEach(function() {
SdkConfig.put({
...DEFAULTS,
disable_custom_urls: true,
});
2019-02-05 10:26:45 +01:00
parentDiv = document.createElement('div');
document.body.appendChild(parentDiv);
mocked(createClient).mockImplementation(() => createTestClient());
2019-02-05 10:26:45 +01:00
});
afterEach(function() {
ReactDOM.unmountComponentAtNode(parentDiv);
parentDiv.remove();
SdkConfig.unset(); // we touch the config, so clean up
2019-02-05 10:26:45 +01:00
});
const defaultProps = {
defaultDeviceDisplayName: 'test-device-display-name',
serverConfig: mkServerConfig("https://matrix.org", "https://vector.im"),
makeRegistrationUrl: jest.fn(),
onLoggedIn: jest.fn(),
onLoginClick: jest.fn(),
onServerConfigChange: jest.fn(),
};
2019-02-05 10:26:45 +01:00
function render() {
return ReactDOM.render<typeof Registration>(<Registration
{...defaultProps}
/>, parentDiv) as React.Component<typeof Registration>;
2019-02-05 10:26:45 +01:00
}
it('should show server picker', async function() {
2019-02-05 10:26:45 +01:00
const root = render();
2020-11-25 11:22:16 +01:00
const selector = ReactTestUtils.findRenderedDOMComponentWithClass(root, "mx_ServerPicker");
2019-02-05 10:26:45 +01:00
expect(selector).toBeTruthy();
});
it('should show form when custom URLs disabled', async function() {
2019-02-05 10:26:45 +01:00
const root = render();
2019-08-16 16:36:41 +02:00
// Set non-empty flows & matrixClient to get past the loading spinner
2019-02-05 10:26:45 +01:00
root.setState({
flows: [{
stages: [],
}],
2019-06-11 14:16:49 +02:00
matrixClient: {},
busy: false,
2019-02-05 10:26:45 +01:00
});
const form = ReactTestUtils.findRenderedComponentWithType(
root,
RegistrationForm,
2019-02-05 10:26:45 +01:00
);
expect(form).toBeTruthy();
});
2020-11-25 11:22:16 +01:00
it("should show SSO options if those are available", async () => {
2020-11-25 11:22:16 +01:00
const root = render();
// Set non-empty flows & matrixClient to get past the loading spinner
root.setState({
flows: [{
stages: [],
}],
ssoFlow: {
type: "m.login.sso",
},
matrixClient: {},
busy: false,
});
const ssoButton = ReactTestUtils.findRenderedDOMComponentWithClass(root, "mx_SSOButton");
expect(ssoButton).toBeTruthy();
});
2019-02-05 10:26:45 +01:00
});