mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
9dd22a3757
* everything except plugin server and sync_available_features * sync_available_features_done, some plugin_server done? * and a tiny bit more * linting * try to fix some tests * more test fixes/ * clean up typos * weed wacking bugs * more test shenanigans * fix plugin server * actually fix plugin server test? * still fixing tests * another attempt * some pr feedback * small fix * fix database query accessor * fix functional tests * fix tests * Update query snapshots * Update query snapshots * Update query snapshots * update some comments and fxn names * fix plugin server test * Update query snapshots * Update query snapshots * Update query snapshots --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
115 lines
4.4 KiB
Python
115 lines
4.4 KiB
Python
from unittest.mock import patch
|
|
|
|
import pytest
|
|
from rest_framework import status
|
|
|
|
from ee.api.test.base import APILicensedTest
|
|
from posthog.models.dashboard import Dashboard
|
|
from posthog.models.filters.filter import Filter
|
|
from posthog.models.insight import Insight
|
|
from posthog.models.subscription import Subscription
|
|
|
|
|
|
@patch("ee.api.subscription.subscriptions")
|
|
class TestSubscription(APILicensedTest):
|
|
subscription: Subscription = None # type: ignore
|
|
dashboard: Dashboard = None # type: ignore
|
|
insight: Insight = None # type: ignore
|
|
|
|
insight_filter_dict = {
|
|
"events": [{"id": "$pageview"}],
|
|
"properties": [{"key": "$browser", "value": "Mac OS X"}],
|
|
}
|
|
|
|
@classmethod
|
|
def setUpTestData(cls):
|
|
super().setUpTestData()
|
|
|
|
cls.dashboard = Dashboard.objects.create(team=cls.team, name="example dashboard", created_by=cls.user)
|
|
cls.insight = Insight.objects.create(
|
|
filters=Filter(data=cls.insight_filter_dict).to_dict(),
|
|
team=cls.team,
|
|
created_by=cls.user,
|
|
)
|
|
|
|
def _create_subscription(self, **kwargs):
|
|
payload = {
|
|
"insight": self.insight.id,
|
|
"target_type": "email",
|
|
"target_value": "test@posthog.com",
|
|
"frequency": "weekly",
|
|
"interval": 1,
|
|
"start_date": "2022-01-01T00:00:00",
|
|
"title": "My Subscription",
|
|
"invite_message": "hey there!",
|
|
}
|
|
|
|
payload.update(kwargs)
|
|
return self.client.post(f"/api/projects/{self.team.id}/subscriptions", payload)
|
|
|
|
@pytest.mark.skip_on_multitenancy
|
|
def test_cannot_list_subscriptions_without_proper_license(self, mock_subscription_tasks):
|
|
self.organization.available_product_features = []
|
|
self.organization.save()
|
|
response = self.client.get(f"/api/projects/{self.team.id}/subscriptions/")
|
|
assert response.status_code == status.HTTP_402_PAYMENT_REQUIRED
|
|
assert response.json() == self.license_required_response()
|
|
|
|
def test_can_create_new_subscription(self, mock_subscription_tasks):
|
|
response = self._create_subscription()
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
data = response.json()
|
|
assert data == {
|
|
"id": data["id"],
|
|
"dashboard": None,
|
|
"insight": self.insight.id,
|
|
"target_type": "email",
|
|
"target_value": "test@posthog.com",
|
|
"frequency": "weekly",
|
|
"interval": 1,
|
|
"byweekday": None,
|
|
"bysetpos": None,
|
|
"count": None,
|
|
"start_date": "2022-01-01T00:00:00Z",
|
|
"until_date": None,
|
|
"created_at": data["created_at"],
|
|
"created_by": data["created_by"],
|
|
"deleted": False,
|
|
"title": "My Subscription",
|
|
"next_delivery_date": data["next_delivery_date"],
|
|
"invite_message": None,
|
|
"summary": "sent every week",
|
|
}
|
|
|
|
mock_subscription_tasks.handle_subscription_value_change.delay.assert_called_once_with(
|
|
data["id"], "", "hey there!"
|
|
)
|
|
|
|
def test_can_create_new_subscription_without_invite_message(self, mock_subscription_tasks):
|
|
response = self._create_subscription(invite_message=None)
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
data = response.json()
|
|
|
|
mock_subscription_tasks.handle_subscription_value_change.delay.assert_called_once_with(data["id"], "", None)
|
|
|
|
def test_can_update_existing_subscription(self, mock_subscription_tasks):
|
|
response = self._create_subscription(invite_message=None)
|
|
data = response.json()
|
|
|
|
mock_subscription_tasks.handle_subscription_value_change.delay.assert_called_once_with(data["id"], "", None)
|
|
|
|
mock_subscription_tasks.handle_subscription_value_change.delay.reset_mock()
|
|
response = self.client.patch(
|
|
f"/api/projects/{self.team.id}/subscriptions/{data['id']}",
|
|
{
|
|
"target_value": "test@posthog.com,new_user@posthog.com",
|
|
"invite_message": "hi new user",
|
|
},
|
|
)
|
|
updated_data = response.json()
|
|
assert updated_data["target_value"] == "test@posthog.com,new_user@posthog.com"
|
|
|
|
mock_subscription_tasks.handle_subscription_value_change.delay.assert_called_once_with(
|
|
data["id"], "test@posthog.com", "hi new user"
|
|
)
|