mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 18:26:15 +01:00
925a54b5ad
* feat: Slack Subscription Invites
128 lines
5.3 KiB
Python
128 lines
5.3 KiB
Python
from datetime import datetime
|
|
from typing import List
|
|
from unittest.mock import MagicMock, call, patch
|
|
|
|
import pytz
|
|
from freezegun import freeze_time
|
|
|
|
from ee.tasks.subscriptions import (
|
|
deliver_subscription_report,
|
|
handle_subscription_value_change,
|
|
schedule_all_subscriptions,
|
|
)
|
|
from ee.tasks.test.subscriptions.subscriptions_test_factory import create_subscription
|
|
from posthog.models.dashboard import Dashboard
|
|
from posthog.models.dashboard_tile import DashboardTile
|
|
from posthog.models.exported_asset import ExportedAsset
|
|
from posthog.models.insight import Insight
|
|
from posthog.models.instance_setting import set_instance_setting
|
|
from posthog.models.subscription import Subscription
|
|
from posthog.test.base import APIBaseTest
|
|
|
|
|
|
@patch("ee.tasks.subscriptions.send_slack_subscription_report")
|
|
@patch("ee.tasks.subscriptions.send_email_subscription_report")
|
|
@patch("ee.tasks.subscriptions.generate_assets")
|
|
@freeze_time("2022-02-02T08:55:00.000Z")
|
|
class TestSubscriptionsTasks(APIBaseTest):
|
|
subscriptions: List[Subscription] = None # type: ignore
|
|
dashboard: Dashboard
|
|
insight: Insight
|
|
tiles: List[DashboardTile] = None # type: ignore
|
|
asset: ExportedAsset
|
|
|
|
def setUp(self) -> None:
|
|
self.dashboard = Dashboard.objects.create(team=self.team, name="private dashboard", created_by=self.user)
|
|
self.insight = Insight.objects.create(team=self.team, short_id="123456", name="My Test subscription")
|
|
self.asset = ExportedAsset.objects.create(team=self.team, insight_id=self.insight.id, export_format="image/png")
|
|
self.tiles = []
|
|
for _ in range(10):
|
|
self.tiles.append(DashboardTile.objects.create(dashboard=self.dashboard, insight=self.insight))
|
|
|
|
set_instance_setting("EMAIL_HOST", "fake_host")
|
|
set_instance_setting("EMAIL_ENABLED", True)
|
|
|
|
@patch("ee.tasks.subscriptions.deliver_subscription_report")
|
|
def test_subscription_delivery_scheduling(
|
|
self,
|
|
mock_deliver_task: MagicMock,
|
|
mock_gen_assets: MagicMock,
|
|
mock_send_email: MagicMock,
|
|
mock_send_slack: MagicMock,
|
|
) -> None:
|
|
subscriptions = [
|
|
create_subscription(team=self.team, insight=self.insight, created_by=self.user),
|
|
create_subscription(team=self.team, insight=self.insight, created_by=self.user),
|
|
create_subscription(team=self.team, dashboard=self.dashboard, created_by=self.user),
|
|
create_subscription(team=self.team, dashboard=self.dashboard, created_by=self.user, deleted=True),
|
|
]
|
|
# Modify a subscription to have its target time at least an hour ahead
|
|
subscriptions[2].start_date = datetime(2022, 1, 1, 10, 0).replace(tzinfo=pytz.UTC)
|
|
subscriptions[2].save()
|
|
assert subscriptions[2].next_delivery_date == datetime(2022, 2, 2, 10, 0).replace(tzinfo=pytz.UTC)
|
|
|
|
schedule_all_subscriptions()
|
|
|
|
assert mock_deliver_task.delay.mock_calls == [call(subscriptions[0].id), call(subscriptions[1].id)]
|
|
|
|
def test_deliver_subscription_report_email(
|
|
self, mock_gen_assets: MagicMock, mock_send_email: MagicMock, mock_send_slack: MagicMock,
|
|
) -> None:
|
|
subscription = create_subscription(team=self.team, insight=self.insight, created_by=self.user)
|
|
mock_gen_assets.return_value = [self.insight], [self.asset]
|
|
|
|
deliver_subscription_report(subscription.id)
|
|
|
|
assert mock_send_email.call_count == 2
|
|
|
|
assert mock_send_email.call_args_list == [
|
|
call("test1@posthog.com", subscription, [self.asset], invite_message=None, total_asset_count=1),
|
|
call("test2@posthog.com", subscription, [self.asset], invite_message=None, total_asset_count=1),
|
|
]
|
|
|
|
def test_handle_subscription_value_change_email(
|
|
self, mock_gen_assets: MagicMock, mock_send_email: MagicMock, mock_send_slack: MagicMock,
|
|
) -> None:
|
|
subscription = create_subscription(
|
|
team=self.team,
|
|
insight=self.insight,
|
|
created_by=self.user,
|
|
target_value="test_existing@posthog.com,test_new@posthog.com",
|
|
)
|
|
mock_gen_assets.return_value = [self.insight], [self.asset]
|
|
|
|
handle_subscription_value_change(
|
|
subscription.id, previous_value="test_existing@posthog.com", invite_message="My invite message"
|
|
)
|
|
|
|
assert mock_send_email.call_count == 1
|
|
|
|
assert mock_send_email.call_args_list == [
|
|
call(
|
|
"test_new@posthog.com",
|
|
subscription,
|
|
[self.asset],
|
|
invite_message="My invite message",
|
|
total_asset_count=1,
|
|
),
|
|
]
|
|
|
|
def test_deliver_subscription_report_slack(
|
|
self, mock_gen_assets: MagicMock, mock_send_email: MagicMock, mock_send_slack: MagicMock,
|
|
) -> None:
|
|
subscription = create_subscription(
|
|
team=self.team,
|
|
insight=self.insight,
|
|
created_by=self.user,
|
|
target_type="slack",
|
|
target_value="C12345|#test-channel",
|
|
)
|
|
mock_gen_assets.return_value = [self.insight], [self.asset]
|
|
|
|
deliver_subscription_report(subscription.id)
|
|
|
|
assert mock_send_slack.call_count == 1
|
|
assert mock_send_slack.call_args_list == [
|
|
call(subscription, [self.asset], total_asset_count=1, is_new_subscription=False),
|
|
]
|