2016-12-24 15:50:46 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from typing import Text
|
|
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
|
|
|
class GreenhouseHookTests(WebhookTestCase):
|
|
|
|
STREAM_NAME = 'greenhouse'
|
|
|
|
URL_TEMPLATE = "/api/v1/external/greenhouse?stream={stream}&api_key={api_key}"
|
|
|
|
FIXTURE_DIR_NAME = 'greenhouse'
|
|
|
|
CONTENT_TYPE = "application/x-www-form-urlencoded"
|
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_message_candidate_hired(self) -> None:
|
2016-12-24 15:50:46 +01:00
|
|
|
expected_subject = "Hire Candidate - 19"
|
|
|
|
expected_message = ("Hire Candidate\n>Johnny Smith\nID: 19"
|
|
|
|
"\nApplying for role:\nDeveloper\n**Emails:**"
|
|
|
|
"\nPersonal\npersonal@example.com\nWork\nwork@example.com\n\n\n>"
|
2017-02-12 04:22:13 +01:00
|
|
|
"**Attachments:**\n[Resume](https://prod-heroku.s3.amazonaws.com/...)")
|
2016-12-24 15:50:46 +01:00
|
|
|
|
|
|
|
self.send_and_test_stream_message('candidate_hired',
|
|
|
|
expected_subject,
|
|
|
|
expected_message,
|
|
|
|
content_type=self.CONTENT_TYPE)
|
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_message_candidate_rejected(self) -> None:
|
2016-12-24 15:50:46 +01:00
|
|
|
expected_subject = "Reject Candidate - 265788"
|
|
|
|
expected_message = ("Reject Candidate\n>Hector Porter\nID: "
|
|
|
|
"265788\nApplying for role:\nDesigner"
|
|
|
|
"\n**Emails:**\nPersonal\n"
|
|
|
|
"hector.porter.265788@example.com\n\n\n>"
|
2017-02-12 04:22:13 +01:00
|
|
|
"**Attachments:**\n[Resume](https://prod-heroku.s3.amazonaws.com/...)")
|
2016-12-24 15:50:46 +01:00
|
|
|
|
|
|
|
self.send_and_test_stream_message('candidate_rejected',
|
|
|
|
expected_subject,
|
|
|
|
expected_message,
|
|
|
|
content_type=self.CONTENT_TYPE)
|
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_message_candidate_stage_change(self) -> None:
|
2016-12-24 15:50:46 +01:00
|
|
|
expected_subject = "Candidate Stage Change - 265772"
|
|
|
|
expected_message = ("Candidate Stage Change\n>Giuseppe Hurley"
|
|
|
|
"\nID: 265772\nApplying for role:\n"
|
|
|
|
"Designer\n**Emails:**\nPersonal"
|
|
|
|
"\ngiuseppe.hurley@example.com\n\n\n>"
|
|
|
|
"**Attachments:**\n[Resume](https://prod-heroku.s3.amazonaws.com/...)"
|
|
|
|
"\n[Cover_Letter](https://prod-heroku.s3.amazonaws.com/...)"
|
2017-02-12 04:22:13 +01:00
|
|
|
"\n[Attachment](https://prod-heroku.s3.amazonaws.com/...)")
|
2016-12-24 15:50:46 +01:00
|
|
|
|
|
|
|
self.send_and_test_stream_message('candidate_stage_change',
|
|
|
|
expected_subject,
|
|
|
|
expected_message,
|
|
|
|
content_type=self.CONTENT_TYPE)
|
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_message_prospect_created(self) -> None:
|
2016-12-24 15:50:46 +01:00
|
|
|
expected_subject = "New Prospect Application - 968190"
|
|
|
|
expected_message = ("New Prospect Application\n>Trisha Troy"
|
|
|
|
"\nID: 968190\nApplying for role:\n"
|
|
|
|
"Designer\n**Emails:**\nPersonal"
|
|
|
|
"\nt.troy@example.com\n\n\n>**Attachments:**"
|
2017-02-12 04:22:13 +01:00
|
|
|
"\n[Resume](https://prod-heroku.s3.amazonaws.com/...)")
|
2016-12-24 15:50:46 +01:00
|
|
|
|
|
|
|
self.send_and_test_stream_message('prospect_created',
|
|
|
|
expected_subject,
|
|
|
|
expected_message,
|
|
|
|
content_type=self.CONTENT_TYPE)
|
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def get_body(self, fixture_name: Text) -> Text:
|
2016-12-24 15:50:46 +01:00
|
|
|
return self.fixture_data("greenhouse", fixture_name, file_type="json")
|