-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Webhooks groups properties #23822
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,9 @@ import { UUIDT } from '../src/utils/utils' | |
import { | ||
capture, | ||
createAction, | ||
createGroup, | ||
createGroupType, | ||
createHook, | ||
createOrganization, | ||
createOrganizationRaw, | ||
createTeam, | ||
createUser, | ||
|
@@ -39,9 +40,13 @@ test.concurrent(`webhooks: fires slack webhook`, async () => { | |
|
||
const distinctId = new UUIDT().toString() | ||
|
||
const organizationId = await createOrganization() | ||
const organizationId = await createOrganizationRaw({ | ||
available_product_features: `array ['{ "key": "group_analytics", "name": "group_analytics" }'::jsonb]`, | ||
}) | ||
const teamId = await createTeam(organizationId, `http://localhost:${server.address()?.port}`) | ||
const user = await createUser(teamId, new UUIDT().toString()) | ||
await createGroupType(teamId, 0, 'organization') | ||
await createGroup(teamId, 0, 'TestWebhookOrg', { name: 'test-webhooks' }) | ||
const action = await createAction({ | ||
team_id: teamId, | ||
name: 'slack', | ||
|
@@ -51,7 +56,7 @@ test.concurrent(`webhooks: fires slack webhook`, async () => { | |
deleted: false, | ||
post_to_slack: true, | ||
slack_message_format: | ||
'[event.name] with [event.properties.name] was triggered by [person.properties.email]', | ||
'[event.name] with [event.properties.name] was triggered by [person.properties.email] of [groups.organization.properties.name]', | ||
created_by_id: user.id, | ||
is_calculating: false, | ||
last_calculated_at: new Date().toISOString(), | ||
|
@@ -86,6 +91,7 @@ test.concurrent(`webhooks: fires slack webhook`, async () => { | |
$current_url: 'http://localhost:8000', | ||
$elements: [{ tag_name: 'div', nth_child: 1, nth_of_type: 2, $el_text: 'text' }], | ||
$set: { email: '[email protected]' }, | ||
$groups: { organization: 'TestWebhookOrg' }, | ||
}, | ||
}) | ||
|
||
|
@@ -96,7 +102,7 @@ test.concurrent(`webhooks: fires slack webhook`, async () => { | |
await new Promise((resolve) => setTimeout(resolve, 1000)) | ||
} | ||
|
||
expect(webHookCalledWith).toEqual({ text: `$autocapture with hehe was triggered by [email protected]` }) | ||
expect(webHookCalledWith).toEqual({ text: `$autocapture with hehe was triggered by [email protected] of test-webhooks` }) | ||
} finally { | ||
server.close() | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just noting for others that the previous group code used a Redis cache before Postgres: https://github.com/PostHog/posthog/pull/22962/files#diff-0769dccc3458a7eb730036617ac32002072330fcdc5ec5a1d11364769d5dd5b6L488
Since this is just for Webhooks now and we're using a PG read replica this seems fine for now. If anything, it would be nice to do one query for all of them rather than a query each...