-
Notifications
You must be signed in to change notification settings - Fork 11k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
81 additions
and
5 deletions.
There are no files selected for viewing
77 changes: 77 additions & 0 deletions
77
apps/meteor/tests/unit/server/livechat/lib/requestPdfTranscript.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
import { expect } from 'chai'; | ||
import { describe, it, beforeEach, after } from 'mocha'; | ||
import proxyquire from 'proxyquire'; | ||
import sinon from 'sinon'; | ||
|
||
const setStub = sinon.stub(); | ||
const workOnPdfStub = sinon.stub(); | ||
const queueWorkStub = sinon.stub(); | ||
|
||
const { requestPdfTranscript } = proxyquire | ||
.noCallThru() | ||
.load('../../../../../ee/app/livechat-enterprise/server/lib/requestPdfTranscript.ts', { | ||
'@rocket.chat/models': { | ||
LivechatRooms: { | ||
setTranscriptRequestedPdfById: setStub, | ||
}, | ||
}, | ||
'@rocket.chat/core-services': { | ||
OmnichannelTranscript: { | ||
workOnPdf: workOnPdfStub, | ||
}, | ||
QueueWorker: { | ||
queueWork: queueWorkStub, | ||
}, | ||
}, | ||
}); | ||
|
||
describe('requestPdfTranscript', () => { | ||
const currentTestModeValue = process.env.TEST_MODE; | ||
|
||
beforeEach(() => { | ||
setStub.reset(); | ||
workOnPdfStub.reset(); | ||
queueWorkStub.reset(); | ||
}); | ||
|
||
after(() => { | ||
process.env.TEST_MODE = currentTestModeValue; | ||
}); | ||
|
||
it('should throw an error if room parameter is null', async () => { | ||
await expect(requestPdfTranscript(null, 'userId')).to.be.rejectedWith('room-not-found'); | ||
}); | ||
it('should throw an error if room is still open', async () => { | ||
await expect(requestPdfTranscript({ open: true }, 'userId')).to.be.rejectedWith('room-still-open'); | ||
}); | ||
it('should throw an error if room doesnt have a v property', async () => { | ||
await expect(requestPdfTranscript({}, 'userId')).to.be.rejectedWith('improper-room-state'); | ||
}); | ||
it('should not request a transcript if it was already requested', async () => { | ||
await requestPdfTranscript({ v: 1, pdfTranscriptRequested: true }, 'userId'); | ||
expect(setStub.callCount).to.equal(0); | ||
expect(workOnPdfStub.callCount).to.equal(0); | ||
expect(queueWorkStub.callCount).to.equal(0); | ||
}); | ||
it('should set pdfTranscriptRequested to true on room', async () => { | ||
await requestPdfTranscript({ _id: 'roomId', v: {}, pdfTranscriptRequested: false }, 'userId'); | ||
expect(setStub.calledWith('roomId')).to.be.true; | ||
}); | ||
it('should call workOnPdf if TEST_MODE is true', async () => { | ||
process.env.TEST_MODE = 'true'; | ||
await requestPdfTranscript({ _id: 'roomId', v: {} }, 'userId'); | ||
expect(workOnPdfStub.getCall(0).calledWithExactly({ details: { rid: 'roomId', userId: 'userId', from: 'omnichannel-transcript' } })).to | ||
.be.true; | ||
expect(queueWorkStub.calledOnce).to.be.false; | ||
}); | ||
it('should queue work if TEST_MODE is not set', async () => { | ||
delete process.env.TEST_MODE; | ||
await requestPdfTranscript({ _id: 'roomId', v: {} }, 'userId'); | ||
expect(workOnPdfStub.calledOnce).to.be.false; | ||
expect( | ||
queueWorkStub.getCall(0).calledWithExactly('work', 'omnichannel-transcript.workOnPdf', { | ||
details: { rid: 'roomId', userId: 'userId', from: 'omnichannel-transcript' }, | ||
}), | ||
).to.be.true; | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,5 +43,8 @@ | |
"typings": "./dist/index.d.ts", | ||
"files": [ | ||
"/dist" | ||
] | ||
], | ||
"volta": { | ||
"extends": "../../../package.json" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters