mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
360fac9510
events yet
50 lines
1.2 KiB
CoffeeScript
50 lines
1.2 KiB
CoffeeScript
should = require('chai').should()
|
|
SandboxedModule = require('sandboxed-module')
|
|
assert = require('assert')
|
|
path = require('path')
|
|
sinon = require('sinon')
|
|
modulePath = path.join __dirname, "../../../../app/js/Features/Email/EmailSender.js"
|
|
expect = require("chai").expect
|
|
|
|
describe "Email", ->
|
|
|
|
beforeEach ->
|
|
|
|
@settings =
|
|
ses:
|
|
key: "key"
|
|
secret: "secret"
|
|
@sesClient =
|
|
sendemail: sinon.stub()
|
|
@ses =
|
|
createClient: => @sesClient
|
|
@sender = SandboxedModule.require modulePath, requires:
|
|
'node-ses': @ses
|
|
"settings-sharelatex":@settings
|
|
"logger-sharelatex":
|
|
log:->
|
|
warn:->
|
|
err:->
|
|
|
|
describe "sendEmail", ->
|
|
|
|
it "should set the properties on the email to send", (done)->
|
|
@sesClient.sendemail.callsArgWith(1)
|
|
|
|
opts =
|
|
to: "bob@bob.com"
|
|
subject: "new email"
|
|
html: "<hello></hello>"
|
|
replyTo: "sarah@bob.com"
|
|
@sender.sendEmail opts, =>
|
|
args = @sesClient.sendemail.args[0][0]
|
|
args.message.should.equal opts.html
|
|
args.to.should.equal opts.to
|
|
args.subject.should.equal opts.subject
|
|
done()
|
|
|
|
it "should return the error", (done)->
|
|
@sesClient.sendemail.callsArgWith(1, "error")
|
|
@sender.sendEmail {}, (err)=>
|
|
err.should.equal "error"
|
|
done()
|