d99e6db93d
13 integration suites driving the real sync pipeline end to end — OAuth connect via the actual `/auth/google-apis/get-access-token` / `microsoft-apis` callbacks (transient token + mocked provider token exchange), real queue workers, provider APIs mocked at the HTTP layer with msw. **Messaging (8):** Gmail list fetch + import, Gmail folder discovery, Microsoft folder discovery, history-based incremental sync, stale-sync recovery, sync failure lifecycle (429 throttle → exhaustion → relaunch; declined refresh token → insufficient permissions), token refresh, connected-account cleanup cascade. **Calendar (5):** Google events import (full + sync-token incremental), Microsoft events import (delta fetch + import), stale-sync recovery, failure lifecycle, cleanup cascade. <!-- This is an auto-generated description by cubic. --> <a href="https://cubic.dev/pr/twentyhq/twenty/pull/22567?utm_source=github" target="_blank" rel="noopener noreferrer" data-no-image-dialog="true"><picture><source media="(prefers-color-scheme: dark)" srcset="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://www.cubic.dev/buttons/review-in-cubic-light.svg"><img alt="Review in cubic" src="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"></picture></a> <!-- End of auto-generated description by cubic. -->
33 lines
897 B
TypeScript
33 lines
897 B
TypeScript
import { randomUUID } from 'node:crypto';
|
|
|
|
import { type gmail_v1 } from 'googleapis';
|
|
|
|
export const gmailMessage = (
|
|
overrides: Partial<gmail_v1.Schema$Message> = {},
|
|
): gmail_v1.Schema$Message => {
|
|
const id = overrides.id ?? `gmail-msg-${randomUUID()}`;
|
|
|
|
return {
|
|
id,
|
|
threadId: id,
|
|
historyId: '987654321',
|
|
internalDate: '1700000000000',
|
|
labelIds: ['INBOX'],
|
|
payload: {
|
|
mimeType: 'text/plain',
|
|
headers: [
|
|
{ name: 'From', value: `sender-${id}@example.com` },
|
|
{ name: 'To', value: `recipient-${id}@example.com` },
|
|
{ name: 'Subject', value: `Subject ${id}` },
|
|
{ name: 'Message-ID', value: `<${id}@example.com>` },
|
|
{ name: 'Date', value: 'Wed, 15 Nov 2023 00:00:00 +0000' },
|
|
],
|
|
body: {
|
|
data: Buffer.from(`body ${id}`).toString('base64'),
|
|
size: 10,
|
|
},
|
|
},
|
|
...overrides,
|
|
};
|
|
};
|