1
0
mirror of https://github.com/eleith/emailjs.git synced 2024-06-30 18:30:58 +00:00
emailjs/test/authplain.ts

71 lines
1.6 KiB
TypeScript
Raw Normal View History

2020-04-21 03:20:42 +00:00
import test from 'ava';
2020-04-25 03:03:31 +00:00
import mailparser from 'mailparser';
import smtp from 'smtp-server';
2020-04-21 03:20:42 +00:00
import { client as c, message as m } from '../email';
type UnPromisify<T> = T extends Promise<infer U> ? U : T;
const port = 2526;
2020-04-23 04:26:49 +00:00
const client = new c.Client({
port,
user: 'pooh',
password: 'honey',
ssl: true,
});
2020-04-25 03:03:31 +00:00
const server = new smtp.SMTPServer({ secure: true, authMethods: ['LOGIN'] });
2020-04-21 03:20:42 +00:00
2020-04-23 04:26:49 +00:00
const send = (
message: m.Message,
2020-04-25 03:03:31 +00:00
verify: (
mail: UnPromisify<ReturnType<typeof mailparser.simpleParser>>
) => void
2020-04-23 04:26:49 +00:00
) => {
2020-04-21 03:20:42 +00:00
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'; // prevent CERT_HAS_EXPIRED errors
2020-04-25 03:03:31 +00:00
server.onData = (
2020-04-23 04:26:49 +00:00
stream: import('stream').Readable,
_session,
callback: () => void
) => {
2020-04-25 03:03:31 +00:00
mailparser.simpleParser(stream).then(verify);
2020-04-21 03:20:42 +00:00
stream.on('end', callback);
};
2020-04-23 04:26:49 +00:00
client.send(message, (err) => {
2020-04-21 03:20:42 +00:00
if (err) {
throw err;
}
});
};
test.before(() => {
2020-04-25 03:03:31 +00:00
server.listen(port, function () {
server.onAuth = function (auth, _session, callback) {
2020-04-21 03:20:42 +00:00
if (auth.username == 'pooh' && auth.password == 'honey') {
callback(null, { user: 'pooh' });
} else {
return callback(new Error('invalid user / pass'));
}
};
});
});
2020-04-25 03:03:31 +00:00
test.after(() => server.close());
2020-04-21 03:20:42 +00:00
2020-04-23 04:26:49 +00:00
test.cb('authorize plain', (t) => {
2020-04-21 03:20:42 +00:00
const msg = {
subject: 'this is a test TEXT message from emailjs',
from: 'piglet@gmail.com',
to: 'pooh@gmail.com',
text: "It is hard to be brave when you're only a Very Small Animal.",
};
2020-04-23 04:26:49 +00:00
send(new m.Message(msg), (mail) => {
2020-04-21 03:20:42 +00:00
t.is(mail.text, msg.text + '\n\n\n');
t.is(mail.subject, msg.subject);
t.is(mail.from?.text, msg.from);
t.is(mail.to?.text, msg.to);
t.end();
});
});