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 "EmailSender", -> beforeEach -> @settings = email: transport: "ses" parameters: AWSAccessKeyID: "key" AWSSecretKey: "secret" fromAddress: "bob@bob.com" replyToAddress: "sally@gmail.com" @sesClient = sendMail: sinon.stub() @ses = createTransport: => @sesClient @sender = SandboxedModule.require modulePath, requires: 'nodemailer': @ses "settings-sharelatex":@settings "logger-sharelatex": log:-> warn:-> err:-> "../../infrastructure/Metrics": inc:-> @opts = to: "bob@bob.com" subject: "new email" html: "" describe "sendEmail", -> it "should set the properties on the email to send", (done)-> @sesClient.sendMail.callsArgWith(1) @sender.sendEmail @opts, => args = @sesClient.sendMail.args[0][0] args.html.should.equal @opts.html args.to.should.equal @opts.to args.subject.should.equal @opts.subject done() it "should return the error", (done)-> @sesClient.sendMail.callsArgWith(1, "error") @sender.sendEmail {}, (err)=> err.should.equal "error" done() it "should use the from address from settings", (done)-> @sesClient.sendMail.callsArgWith(1) @sender.sendEmail @opts, => args = @sesClient.sendMail.args[0][0] args.from.should.equal @settings.email.fromAddress done() it "should use the reply to address from settings", (done)-> @sesClient.sendMail.callsArgWith(1) @sender.sendEmail @opts, => args = @sesClient.sendMail.args[0][0] args.replyTo.should.equal @settings.email.replyToAddress done() it "should use the reply to address in options as an override", (done)-> @sesClient.sendMail.callsArgWith(1) @opts.replyTo = "someone@else.com" @sender.sendEmail @opts, => args = @sesClient.sendMail.args[0][0] args.replyTo.should.equal @opts.replyTo done()