2017-05-24 17:56:13 +02:00
|
|
|
import RoomViewStore from '../../src/stores/RoomViewStore';
|
|
|
|
|
2020-01-10 01:23:27 +01: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);
|
|
|
|
|
|
|
|
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();
|
|
|
|
};
|
|
|
|
|
|
|
|
dispatch({ action: 'view_room', room_id: '!randomcharacters:aser.ver' });
|
|
|
|
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
|
|
|
|
2019-12-17 12:53:18 +01:00
|
|
|
peg.get().getRoomIdForAlias.mockResolvedValue({room_id: "!randomcharacters:aser.ver"});
|
|
|
|
peg.get().joinRoom = async (roomAddress) => {
|
|
|
|
token.remove(); // stop RVS listener
|
|
|
|
expect(roomAddress).toBe("#somealias2:aser.ver");
|
|
|
|
done();
|
|
|
|
};
|
|
|
|
|
2017-06-02 10:22:48 +02:00
|
|
|
dispatch({ action: 'view_room', room_alias: '#somealias2:aser.ver' });
|
2017-05-24 17:56:13 +02:00
|
|
|
});
|
|
|
|
});
|