mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
fae9fe5238
* fix doubled up and change name * Fix test Co-authored-by: Tim Glaser <tim@glsr.nl>
47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
from unittest.mock import call, patch
|
|
|
|
import pytz
|
|
from django.utils.timezone import now
|
|
|
|
from ee.tasks.webhooks_ee import post_event_to_webhook_ee
|
|
from posthog.api.test.base import BaseTest
|
|
from posthog.models.action import Action
|
|
from posthog.models.action_step import ActionStep
|
|
from posthog.models.event import Event
|
|
|
|
|
|
def _create_action(**kwargs):
|
|
team = kwargs.pop("team")
|
|
name = kwargs.pop("name")
|
|
post_to_slack = kwargs.pop("post_to_slack")
|
|
action = Action.objects.create(team=team, name=name, post_to_slack=post_to_slack)
|
|
ActionStep.objects.create(action=action, event=name)
|
|
return action
|
|
|
|
|
|
class TestWebhooksEE(BaseTest):
|
|
@patch("requests.post")
|
|
def test_post_event_to_webhook_ee(self, requests_post):
|
|
|
|
self.team.slack_incoming_webhook = "http://slack.com/hook"
|
|
self.team.save()
|
|
_create_action(team=self.team, name="user paid", post_to_slack=True)
|
|
_create_action(team=self.team, name="user not paid", post_to_slack=True)
|
|
|
|
_now = now()
|
|
|
|
event = {
|
|
"event": "user paid",
|
|
"properties": {},
|
|
"distinct_id": "test",
|
|
"timestamp": _now,
|
|
"elements_list": {},
|
|
}
|
|
site_url = "http://testserver"
|
|
post_event_to_webhook_ee(event, self.team.pk, site_url)
|
|
self.assertEqual(requests_post.call_count, 1)
|
|
|
|
events = Event.objects.filter(event="User paid")
|
|
|
|
self.assertEqual(list(events), [])
|