Files
element-web/test/stores/RoomViewStore-test.js
T

48 lines
1.8 KiB
JavaScript
Raw Normal View History

2017-05-24 16:56:13 +01:00
import RoomViewStore from '../../src/stores/RoomViewStore';
2021-11-25 17:49:43 -03:00
import { Action } from '../../src/dispatcher/actions';
2021-06-29 13:11:58 +01:00
import { MatrixClientPeg as peg } from '../../src/MatrixClientPeg';
2017-05-24 16:56:13 +01:00
import * as testUtils from '../test-utils';
const dispatch = testUtils.getDispatchForStore(RoomViewStore);
describe('RoomViewStore', function() {
beforeEach(function() {
2019-12-16 11:12:48 +00:00
testUtils.stubClient();
2017-05-24 16:56:13 +01: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 11:47:01 +00:00
peg.get().joinRoom = async (roomAddress) => {
2017-06-08 17:47:48 +01:00
expect(roomAddress).toBe("!randomcharacters:aser.ver");
2017-05-24 16:56:13 +01:00
done();
};
2021-11-25 17:49:43 -03:00
dispatch({ action: Action.ViewRoom, room_id: '!randomcharacters:aser.ver' });
2017-05-24 16:56:13 +01:00
dispatch({ action: 'join_room' });
expect(RoomViewStore.isJoining()).toBe(true);
});
it('can be used to view a room by alias and join', function(done) {
const token = RoomViewStore.addListener(() => {
2017-06-02 09:22:48 +01: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 16:56:13 +01:00
2021-06-29 13:11:58 +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();
};
2021-11-25 17:49:43 -03:00
dispatch({ action: Action.ViewRoom, room_alias: '#somealias2:aser.ver' });
2017-05-24 16:56:13 +01:00
});
});