You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-08-07 23:02:56 +03:00
Add unit tests
This commit is contained in:
106
spec/unit/ToDeviceMessageQueue.spec.ts
Normal file
106
spec/unit/ToDeviceMessageQueue.spec.ts
Normal file
@@ -0,0 +1,106 @@
|
|||||||
|
import { ConnectionError } from "../../src/http-api/errors";
|
||||||
|
import { ClientEvent, MatrixClient, Store } from "../../src/client";
|
||||||
|
import { ToDeviceMessageQueue } from "../../src/ToDeviceMessageQueue";
|
||||||
|
import { getMockClientWithEventEmitter } from "../test-utils/client";
|
||||||
|
import { StubStore } from "../../src/store/stub";
|
||||||
|
import { IndexedToDeviceBatch } from "../../src/models/ToDeviceMessage";
|
||||||
|
import { SyncState } from "../../src/sync";
|
||||||
|
|
||||||
|
describe("onResumedSync", () => {
|
||||||
|
let batch: IndexedToDeviceBatch | null;
|
||||||
|
let shouldFailSendToDevice: Boolean;
|
||||||
|
let onSendToDeviceFailure: () => void;
|
||||||
|
let onSendToDeviceSuccess: () => void;
|
||||||
|
let resumeSync: (newState: SyncState, oldState: SyncState) => void;
|
||||||
|
|
||||||
|
let store: Store;
|
||||||
|
let mockClient: MatrixClient;
|
||||||
|
let queue: ToDeviceMessageQueue;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
batch = {
|
||||||
|
id: 0,
|
||||||
|
txnId: "123",
|
||||||
|
eventType: "m.dummy",
|
||||||
|
batch: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
shouldFailSendToDevice = true;
|
||||||
|
onSendToDeviceFailure = () => {};
|
||||||
|
onSendToDeviceSuccess = () => {};
|
||||||
|
resumeSync = (newState, oldState) => {
|
||||||
|
shouldFailSendToDevice = false;
|
||||||
|
mockClient.emit(ClientEvent.Sync, newState, oldState);
|
||||||
|
};
|
||||||
|
|
||||||
|
store = new StubStore();
|
||||||
|
store.getOldestToDeviceBatch = jest.fn().mockImplementation(() => {
|
||||||
|
return batch;
|
||||||
|
});
|
||||||
|
store.removeToDeviceBatch = jest.fn().mockImplementation(() => {
|
||||||
|
batch = null;
|
||||||
|
});
|
||||||
|
|
||||||
|
mockClient = getMockClientWithEventEmitter({});
|
||||||
|
mockClient.store = store;
|
||||||
|
mockClient.sendToDevice = jest.fn().mockImplementation(async () => {
|
||||||
|
if (shouldFailSendToDevice) {
|
||||||
|
await Promise.reject(new ConnectionError("")).finally(() => {
|
||||||
|
setTimeout(onSendToDeviceFailure, 0);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
await Promise.resolve({}).finally(() => {
|
||||||
|
setTimeout(onSendToDeviceSuccess, 0);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
queue = new ToDeviceMessageQueue(mockClient);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("resends queue after connectivity restored", (done) => {
|
||||||
|
onSendToDeviceFailure = () => {
|
||||||
|
expect(store.getOldestToDeviceBatch).toHaveBeenCalledTimes(1);
|
||||||
|
expect(store.removeToDeviceBatch).not.toHaveBeenCalled();
|
||||||
|
|
||||||
|
resumeSync(SyncState.Syncing, SyncState.Catchup);
|
||||||
|
expect(store.getOldestToDeviceBatch).toHaveBeenCalledTimes(2);
|
||||||
|
};
|
||||||
|
|
||||||
|
onSendToDeviceSuccess = () => {
|
||||||
|
expect(store.getOldestToDeviceBatch).toHaveBeenCalledTimes(3);
|
||||||
|
expect(store.removeToDeviceBatch).toHaveBeenCalled();
|
||||||
|
done();
|
||||||
|
};
|
||||||
|
|
||||||
|
queue.start();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("does not resend queue if client sync still catching up", (done) => {
|
||||||
|
onSendToDeviceFailure = () => {
|
||||||
|
expect(store.getOldestToDeviceBatch).toHaveBeenCalledTimes(1);
|
||||||
|
expect(store.removeToDeviceBatch).not.toHaveBeenCalled();
|
||||||
|
|
||||||
|
resumeSync(SyncState.Catchup, SyncState.Catchup);
|
||||||
|
expect(store.getOldestToDeviceBatch).toHaveBeenCalledTimes(1);
|
||||||
|
done();
|
||||||
|
};
|
||||||
|
|
||||||
|
queue.start();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("does not resend queue if connectivity restored after queue stopped", (done) => {
|
||||||
|
onSendToDeviceFailure = () => {
|
||||||
|
expect(store.getOldestToDeviceBatch).toHaveBeenCalledTimes(1);
|
||||||
|
expect(store.removeToDeviceBatch).not.toHaveBeenCalled();
|
||||||
|
|
||||||
|
queue.stop();
|
||||||
|
|
||||||
|
resumeSync(SyncState.Syncing, SyncState.Catchup);
|
||||||
|
expect(store.getOldestToDeviceBatch).toHaveBeenCalledTimes(1);
|
||||||
|
done();
|
||||||
|
};
|
||||||
|
|
||||||
|
queue.start();
|
||||||
|
});
|
||||||
|
});
|
@@ -16,7 +16,8 @@ limitations under the License.
|
|||||||
|
|
||||||
import { ToDeviceMessageId } from "./@types/event";
|
import { ToDeviceMessageId } from "./@types/event";
|
||||||
import { logger } from "./logger";
|
import { logger } from "./logger";
|
||||||
import { MatrixError, MatrixClient, ClientEvent } from "./matrix";
|
import { MatrixClient, ClientEvent } from "./client";
|
||||||
|
import { MatrixError } from "./http-api";
|
||||||
import { IndexedToDeviceBatch, ToDeviceBatch, ToDeviceBatchWithTxnId, ToDevicePayload } from "./models/ToDeviceMessage";
|
import { IndexedToDeviceBatch, ToDeviceBatch, ToDeviceBatchWithTxnId, ToDevicePayload } from "./models/ToDeviceMessage";
|
||||||
import { MatrixScheduler } from "./scheduler";
|
import { MatrixScheduler } from "./scheduler";
|
||||||
import { SyncState } from "./sync";
|
import { SyncState } from "./sync";
|
||||||
|
Reference in New Issue
Block a user