mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 06:35:35 +08:00
ba8e37a84e
Don't include src in resolve root for the karma test, as otherwise modules from react sdk get pulled in instead of npm libraries like 'extend' which breaks everything in really subtle ways.
119 lines
3.9 KiB
JavaScript
119 lines
3.9 KiB
JavaScript
/*
|
|
Copyright 2016 OpenMarket Ltd
|
|
|
|
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 expect from 'expect';
|
|
import q from 'q';
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import ReactTestUtils from 'react-addons-test-utils';
|
|
import sinon from 'sinon';
|
|
|
|
import sdk from 'matrix-react-sdk';
|
|
import MatrixClientPeg from '../../../../src/MatrixClientPeg';
|
|
|
|
import * as test_utils from '../../../test-utils';
|
|
|
|
const InteractiveAuthDialog = sdk.getComponent(
|
|
'views.dialogs.InteractiveAuthDialog'
|
|
);
|
|
|
|
describe('InteractiveAuthDialog', function () {
|
|
var parentDiv;
|
|
var sandbox;
|
|
|
|
beforeEach(function() {
|
|
test_utils.beforeEach(this);
|
|
sandbox = test_utils.stubClient(sandbox);
|
|
parentDiv = document.createElement('div');
|
|
document.body.appendChild(parentDiv);
|
|
});
|
|
|
|
afterEach(function() {
|
|
ReactDOM.unmountComponentAtNode(parentDiv);
|
|
parentDiv.remove();
|
|
sandbox.restore();
|
|
});
|
|
|
|
it('Should successfully complete a password flow', function(done) {
|
|
const onFinished = sinon.spy();
|
|
const doRequest = sinon.stub().returns(q({a:1}));
|
|
|
|
// tell the stub matrixclient to return a real userid
|
|
var client = MatrixClientPeg.get();
|
|
client.credentials = {userId: "@user:id"};
|
|
|
|
const dlg = ReactDOM.render(
|
|
<InteractiveAuthDialog
|
|
matrixClient={client}
|
|
authData={{
|
|
session: "sess",
|
|
flows: [
|
|
{"stages":["m.login.password"]}
|
|
]
|
|
}}
|
|
makeRequest={doRequest}
|
|
onFinished={onFinished}
|
|
/>, parentDiv);
|
|
|
|
// wait for a password box and a submit button
|
|
test_utils.waitForRenderedDOMComponentWithTag(dlg, "form").then((formNode) => {
|
|
const inputNodes = ReactTestUtils.scryRenderedDOMComponentsWithTag(
|
|
dlg, "input"
|
|
);
|
|
let passwordNode;
|
|
let submitNode;
|
|
for (const node of inputNodes) {
|
|
if (node.type == 'password') {
|
|
passwordNode = node;
|
|
} else if (node.type == 'submit') {
|
|
submitNode = node;
|
|
}
|
|
}
|
|
expect(passwordNode).toExist();
|
|
expect(submitNode).toExist();
|
|
|
|
// submit should be disabled
|
|
expect(submitNode.disabled).toBe(true);
|
|
|
|
// put something in the password box, and hit enter; that should
|
|
// trigger a request
|
|
passwordNode.value = "s3kr3t";
|
|
ReactTestUtils.Simulate.change(passwordNode);
|
|
expect(submitNode.disabled).toBe(false);
|
|
ReactTestUtils.Simulate.submit(formNode, {});
|
|
|
|
expect(doRequest.callCount).toEqual(1);
|
|
expect(doRequest.calledWithExactly({
|
|
session: "sess",
|
|
type: "m.login.password",
|
|
password: "s3kr3t",
|
|
user: "@user:id",
|
|
})).toBe(true);
|
|
|
|
// there should now be a spinner
|
|
ReactTestUtils.findRenderedComponentWithType(
|
|
dlg, sdk.getComponent('elements.Spinner'),
|
|
);
|
|
|
|
// let the request complete
|
|
return q.delay(1);
|
|
}).then(() => {
|
|
expect(onFinished.callCount).toEqual(1);
|
|
expect(onFinished.calledWithExactly(true, {a:1})).toBe(true);
|
|
}).done(done, done);
|
|
});
|
|
});
|