2022-02-16 12:19:28 +01:00
|
|
|
/*
|
|
|
|
Copyright 2017 - 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.
|
|
|
|
*/
|
|
|
|
|
2022-02-14 20:31:13 +01:00
|
|
|
import '../skinned-sdk'; // Must be first for skinning to work
|
2017-05-24 17:56:13 +02:00
|
|
|
import RoomViewStore from '../../src/stores/RoomViewStore';
|
2021-11-25 21:49:43 +01:00
|
|
|
import { Action } from '../../src/dispatcher/actions';
|
2021-06-29 14:11:58 +02:00
|
|
|
import { MatrixClientPeg as peg } from '../../src/MatrixClientPeg';
|
2017-05-24 17:56:13 +02:00
|
|
|
import * as testUtils from '../test-utils';
|
|
|
|
|
|
|
|
const dispatch = testUtils.getDispatchForStore(RoomViewStore);
|
|
|
|
|
2022-02-14 20:31:13 +01:00
|
|
|
jest.mock('../../src/utils/DMRoomMap', () => {
|
|
|
|
const mock = {
|
|
|
|
getUserIdForRoomId: jest.fn(),
|
|
|
|
getDMRoomsForUserId: jest.fn(),
|
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
shared: jest.fn().mockReturnValue(mock),
|
|
|
|
sharedInstance: mock,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2017-05-24 17:56:13 +02:00
|
|
|
describe('RoomViewStore', function() {
|
|
|
|
beforeEach(function() {
|
2019-12-16 12:12:48 +01:00
|
|
|
testUtils.stubClient();
|
2017-05-24 17:56:13 +02:00
|
|
|
peg.get().credentials = { userId: "@test:example.com" };
|
|
|
|
|
|
|
|
// Reset the state of the store
|
|
|
|
RoomViewStore.reset();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('can be used to view a room by ID and join', function(done) {
|
2019-12-17 12:47:01 +01:00
|
|
|
peg.get().joinRoom = async (roomAddress) => {
|
2017-06-08 18:47:48 +02:00
|
|
|
expect(roomAddress).toBe("!randomcharacters:aser.ver");
|
2017-05-24 17:56:13 +02:00
|
|
|
done();
|
|
|
|
};
|
|
|
|
|
2021-11-25 21:49:43 +01:00
|
|
|
dispatch({ action: Action.ViewRoom, room_id: '!randomcharacters:aser.ver' });
|
2017-05-24 17:56:13 +02:00
|
|
|
dispatch({ action: 'join_room' });
|
|
|
|
expect(RoomViewStore.isJoining()).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('can be used to view a room by alias and join', function(done) {
|
2019-12-17 12:53:18 +01:00
|
|
|
const token = RoomViewStore.addListener(() => {
|
2017-06-02 10:22:48 +02:00
|
|
|
// Wait until the room alias has resolved and the room ID is
|
|
|
|
if (!RoomViewStore.isRoomLoading()) {
|
|
|
|
expect(RoomViewStore.getRoomId()).toBe("!randomcharacters:aser.ver");
|
|
|
|
dispatch({ action: 'join_room' });
|
|
|
|
expect(RoomViewStore.isJoining()).toBe(true);
|
|
|
|
}
|
|
|
|
});
|
2017-05-24 17:56:13 +02:00
|
|
|
|
2021-06-29 14:11:58 +02:00
|
|
|
peg.get().getRoomIdForAlias.mockResolvedValue({ room_id: "!randomcharacters:aser.ver" });
|
2019-12-17 12:53:18 +01:00
|
|
|
peg.get().joinRoom = async (roomAddress) => {
|
|
|
|
token.remove(); // stop RVS listener
|
|
|
|
expect(roomAddress).toBe("#somealias2:aser.ver");
|
|
|
|
done();
|
|
|
|
};
|
|
|
|
|
2021-11-25 21:49:43 +01:00
|
|
|
dispatch({ action: Action.ViewRoom, room_alias: '#somealias2:aser.ver' });
|
2017-05-24 17:56:13 +02:00
|
|
|
});
|
|
|
|
});
|