Fix ongoing broadcast recording after connection error (#9974)

Co-authored-by: Andy Balaam <andy.balaam@matrix.org>
This commit is contained in:
Michael Weimann 2023-01-24 11:36:31 +01:00 committed by GitHub
parent 533b250bb6
commit 7df973d569
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 5 deletions

View file

@ -205,6 +205,22 @@ describe("VoiceBroadcastRecorder", () => {
});
});
});
describe("and calling stop() with recording.stop error)", () => {
let stopPayload: ChunkRecordedPayload;
beforeEach(async () => {
mocked(voiceRecording.stop).mockRejectedValue("Error");
stopPayload = await voiceBroadcastRecorder.stop();
});
it("should return the remaining chunk", () => {
expect(stopPayload).toEqual({
buffer: concat(headers1, headers2, chunk1),
length: 23,
});
});
});
});
describe("when some chunks have been received", () => {