2022-02-15 03:31:13 +08:00
|
|
|
import '../skinned-sdk'; // Must be first for skinning to work
|
2017-05-24 23:56:13 +08:00
|
|
|
import RoomViewStore from '../../src/stores/RoomViewStore';
|
2021-11-26 04:49:43 +08:00
|
|
|
import { Action } from '../../src/dispatcher/actions';
|
2021-06-29 20:11:58 +08:00
|
|
|
import { MatrixClientPeg as peg } from '../../src/MatrixClientPeg';
|
2017-05-24 23:56:13 +08:00
|
|
|
import * as testUtils from '../test-utils';
|
|
|
|
|
|
|
|
const dispatch = testUtils.getDispatchForStore(RoomViewStore);
|
|
|
|
|
2022-02-15 03:31:13 +08: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 23:56:13 +08:00
|
|
|
describe('RoomViewStore', function() {
|
|
|
|
beforeEach(function() {
|
2019-12-16 19:12:48 +08:00
|
|
|
testUtils.stubClient();
|
2017-05-24 23:56:13 +08: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 19:47:01 +08:00
|
|
|
peg.get().joinRoom = async (roomAddress) => {
|
2017-06-09 00:47:48 +08:00
|
|
|
expect(roomAddress).toBe("!randomcharacters:aser.ver");
|
2017-05-24 23:56:13 +08:00
|
|
|
done();
|
|
|
|
};
|
|
|
|
|
2021-11-26 04:49:43 +08:00
|
|
|
dispatch({ action: Action.ViewRoom, room_id: '!randomcharacters:aser.ver' });
|
2017-05-24 23:56:13 +08: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 19:53:18 +08:00
|
|
|
const token = RoomViewStore.addListener(() => {
|
2017-06-02 16:22:48 +08: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 23:56:13 +08:00
|
|
|
|
2021-06-29 20:11:58 +08:00
|
|
|
peg.get().getRoomIdForAlias.mockResolvedValue({ room_id: "!randomcharacters:aser.ver" });
|
2019-12-17 19:53:18 +08:00
|
|
|
peg.get().joinRoom = async (roomAddress) => {
|
|
|
|
token.remove(); // stop RVS listener
|
|
|
|
expect(roomAddress).toBe("#somealias2:aser.ver");
|
|
|
|
done();
|
|
|
|
};
|
|
|
|
|
2021-11-26 04:49:43 +08:00
|
|
|
dispatch({ action: Action.ViewRoom, room_alias: '#somealias2:aser.ver' });
|
2017-05-24 23:56:13 +08:00
|
|
|
});
|
|
|
|
});
|