0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-21 21:49:51 +01:00
posthog/plugin-server/functional_tests/analytics-ingestion/historical.test.ts

94 lines
2.4 KiB
TypeScript

import { UUIDT } from '../../src/utils/utils'
import { capture, createOrganization, createTeam, fetchEvents } from '../api'
import { waitForExpect } from '../expectations'
let organizationId: string
beforeAll(async () => {
organizationId = await createOrganization()
})
const HISTORICAL_TOPIC = 'events_plugin_ingestion_historical'
test(`event ingestion: can ingest into the historical topic`, async () => {
const teamId = await createTeam(organizationId)
const distinctId = new UUIDT().toString()
const groupIdentityUuid = new UUIDT().toString()
await capture({
teamId,
distinctId,
uuid: groupIdentityUuid,
event: '$groupidentify',
properties: {
distinct_id: distinctId,
$group_type: 'organization',
$group_key: 'posthog',
$group_set: {
prop: 'value',
},
},
topic: HISTORICAL_TOPIC,
})
const firstEventUuid = new UUIDT().toString()
await capture({
teamId,
distinctId,
uuid: firstEventUuid,
event: 'custom event',
properties: {
name: 'haha',
$group_0: 'posthog',
},
topic: HISTORICAL_TOPIC,
})
await waitForExpect(async () => {
const [event] = await fetchEvents(teamId, firstEventUuid)
expect(event).toEqual(
expect.objectContaining({
$group_0: 'posthog',
})
)
})
const secondGroupIdentityUuid = new UUIDT().toString()
await capture({
teamId,
distinctId,
uuid: secondGroupIdentityUuid,
event: '$groupidentify',
properties: {
distinct_id: distinctId,
$group_type: 'organization',
$group_key: 'posthog',
$group_set: {
prop: 'updated value',
},
},
topic: HISTORICAL_TOPIC,
})
const secondEventUuid = new UUIDT().toString()
await capture({
teamId,
distinctId,
uuid: secondEventUuid,
event: 'custom event',
properties: {
name: 'haha',
$group_0: 'posthog',
},
topic: HISTORICAL_TOPIC,
})
await waitForExpect(async () => {
const [event] = await fetchEvents(teamId, secondEventUuid)
expect(event).toEqual(
expect.objectContaining({
$group_0: 'posthog',
})
)
})
})