kill-the-newsletter/src/test.ts

81 lines
2.2 KiB
TypeScript
Raw Normal View History

2020-03-20 22:31:46 +01:00
import { webServer, emailServer, feedEmail } from ".";
2020-03-19 15:48:31 +01:00
import nodemailer from "nodemailer";
2020-03-20 18:48:53 +01:00
import axios from "axios";
import qs from "qs";
2020-03-18 20:21:44 +01:00
2020-03-19 02:44:21 +01:00
test("create feed", async () => {
2020-03-20 20:08:04 +01:00
const identifier = await createFeed();
2020-03-18 20:33:10 +01:00
2020-03-20 20:08:04 +01:00
expect(await readFeed(identifier)).toMatch("My Feed");
2020-03-18 20:21:44 +01:00
});
2020-03-19 01:16:00 +01:00
2020-03-19 05:20:28 +01:00
describe("receive email", () => {
2020-03-19 15:48:31 +01:00
const transporter = nodemailer.createTransport({
2020-03-19 05:20:28 +01:00
host: "localhost",
port: 2525,
tls: { rejectUnauthorized: false }
});
test("HTML content", async () => {
2020-03-20 20:08:04 +01:00
const identifier = await createFeed();
2020-03-19 05:20:28 +01:00
await transporter.sendMail({
from: "publisher@example.com",
2020-03-20 20:08:04 +01:00
to: feedEmail(identifier),
2020-03-19 05:20:28 +01:00
subject: "New Message",
html: "<p>HTML content</p>"
});
2020-03-20 20:08:04 +01:00
const feed = await readFeed(identifier);
2020-03-19 05:20:28 +01:00
expect(feed).toMatch("publisher@example.com");
expect(feed).toMatch("New Message");
expect(feed).toMatch("HTML content");
});
test("text content", async () => {
2020-03-20 20:08:04 +01:00
const identifier = await createFeed();
2020-03-19 05:20:28 +01:00
await transporter.sendMail({
from: "publisher@example.com",
2020-03-20 20:08:04 +01:00
to: feedEmail(identifier),
2020-03-19 05:20:28 +01:00
subject: "New Message",
text: "TEXT content"
});
2020-03-20 20:08:04 +01:00
const feed = await readFeed(identifier);
2020-03-19 05:20:28 +01:00
expect(feed).toMatch("TEXT content");
});
test("truncation", async () => {
2020-03-20 20:08:04 +01:00
const identifier = await createFeed();
2020-03-19 05:20:28 +01:00
for (const repetition of [...new Array(4).keys()])
await transporter.sendMail({
from: "publisher@example.com",
2020-03-20 20:08:04 +01:00
to: feedEmail(identifier),
2020-03-19 05:20:28 +01:00
subject: "New Message",
text: `REPETITION ${repetition} `.repeat(10_000)
});
2020-03-20 20:08:04 +01:00
const feed = await readFeed(identifier);
2020-03-19 05:20:28 +01:00
expect(feed).toMatch("REPETITION 3");
expect(feed).not.toMatch("REPETITION 0");
}, 10_000);
});
2020-03-19 04:36:02 +01:00
2020-03-19 01:16:00 +01:00
afterAll(() => {
2020-03-20 22:31:46 +01:00
webServer.close();
2020-03-20 19:03:19 +01:00
// FIXME: https://github.com/DefinitelyTyped/DefinitelyTyped/pull/43268
2020-03-20 22:31:46 +01:00
emailServer.close(() => {});
2020-03-19 01:16:00 +01:00
});
2020-03-19 04:36:02 +01:00
async function createFeed(): Promise<string> {
2020-03-20 18:48:53 +01:00
return (
await axios.post(
"http://localhost:8000",
qs.stringify({
name: "My Feed"
})
)
).data.match(/(\w{20}).xml/)![1];
2020-03-19 04:36:02 +01:00
}
2020-03-19 05:20:28 +01:00
2020-03-20 20:08:04 +01:00
async function readFeed(identifier: string): Promise<string> {
return (await axios.get(`http://localhost:8000/feeds/${identifier}.xml`))
.data;
2020-03-19 05:20:28 +01:00
}