AFFiNE/packages/backend/server/tests/mailer.e2e.ts

70 lines
1.9 KiB
TypeScript
Raw Normal View History

/// <reference types="../src/global.d.ts" />
2023-09-02 21:13:59 +03:00
// This test case is for testing the mailer service.
// Please use local SMTP server for testing.
// See: https://github.com/mailhog/MailHog
2023-09-13 08:11:19 +03:00
import {
getCurrentMailMessageCount,
getLatestMailMessage,
} from '@affine-test/kit/utils/cloud';
import { TestingModule } from '@nestjs/testing';
2023-09-02 21:13:59 +03:00
import { PrismaClient } from '@prisma/client';
import ava, { type TestFn } from 'ava';
2023-09-02 21:13:59 +03:00
import { ConfigModule } from '../src/fundamentals/config';
import { AuthService } from '../src/modules/auth/service';
import { createTestingModule } from './utils';
2023-09-02 21:13:59 +03:00
const test = ava as TestFn<{
auth: AuthService;
module: TestingModule;
skip: boolean;
}>;
2023-09-02 21:13:59 +03:00
// cleanup database before each test
test.beforeEach(async () => {
const client = new PrismaClient();
await client.$connect();
await client.user.deleteMany({});
});
test.beforeEach(async t => {
t.context.module = await createTestingModule({
2023-09-02 21:13:59 +03:00
imports: [
ConfigModule.forRoot({
auth: {
accessTokenExpiresIn: 1,
refreshTokenExpiresIn: 1,
leeway: 1,
},
}),
],
});
t.context.auth = t.context.module.get(AuthService);
2023-09-02 21:13:59 +03:00
});
test.afterEach.always(async t => {
await t.context.module.close();
2023-09-02 21:13:59 +03:00
});
test('should include callbackUrl in sending email', async t => {
const { auth } = t.context;
await auth.signUp('Alex Yang', 'alexyang@example.org', '123456');
2023-09-02 21:13:59 +03:00
for (const fn of [
'sendSetPasswordEmail',
'sendChangeEmail',
'sendChangePasswordEmail',
'sendVerifyChangeEmail',
2023-09-02 21:13:59 +03:00
] as const) {
const prev = await getCurrentMailMessageCount();
await auth[fn]('alexyang@example.org', 'https://test.com/callback');
const current = await getCurrentMailMessageCount();
const mail = await getLatestMailMessage();
t.regex(
mail?.Content?.Body,
2023-09-02 21:13:59 +03:00
/https:\/\/test.com\/callback/,
`should include callbackUrl when calling ${fn}`
);
t.is(current, prev + 1, `calling ${fn}`);
}
});