zulip/zerver/webhooks/beeminder/tests.py

44 lines
2.1 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
import time
2018-01-08 18:59:16 +01:00
from typing import Text
from zerver.lib.test_classes import WebhookTestCase
class BeeminderHookTests(WebhookTestCase):
STREAM_NAME = 'beeminder'
URL_TEMPLATE = u"/api/v1/external/beeminder?api_key={api_key}&email=AARON@zulip.com"
def test_beeminder_derail(self) -> None:
# Important: These checks need to be in the test to avoid a race.
# TODO: We should mock time.time for these tests
current_time = float(time.time())
time_delta_in_hours = (float(1517759100) - current_time)/float(3600)
2018-01-08 18:59:16 +01:00
expected_subject = u"beekeeper"
expected_message = u"Hello **aaron**! I am the Beeminder bot! :octopus: \n You are going to derail \
from goal **gainweight** in **{:0.1f} hours** \n You need **+2 in 7 days (60)** to avoid derailing \n * Pledge: **0$** :relieved:".format(time_delta_in_hours)
2018-01-08 18:59:16 +01:00
self.send_and_test_stream_message('derail',
expected_subject,
expected_message,
content_type="application/x-www-form-urlencoded")
def test_beeminder_derail_pm(self) -> None:
# Important: These checks need to be in the test to avoid a race.
# TODO: We should mock time.time for these tests
current_time = float(time.time())
time_delta_in_hours = (float(1517759100) - current_time)/float(3600)
2018-01-08 18:59:16 +01:00
self.url = self.build_webhook_url(
email="AARON@zulip.com",
username="aaron",
user_ip="127.0.0.1"
)
expected_message = u"I am the Beeminder bot! :octopus: \n You are going to derail from \
goal **gainweight** in **{:0.1f} hours** \n You need **+2 in 7 days (60)** to avoid derailing \n * Pledge: **5$**:worried:".format(time_delta_in_hours)
2018-01-08 18:59:16 +01:00
self.send_and_test_private_message('derail_pm',
expected_message,
content_type="application/json")
def get_body(self, fixture_name: Text) -> Text:
return self.fixture_data("beeminder", fixture_name, file_type="json")