mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 12:33:40 +00:00
Previously, only the action value `created` was supported. Now, all 16 are supported. Fixes: #26064.
782 lines
48 KiB
Python
782 lines
48 KiB
Python
from unittest.mock import patch
|
|
|
|
import orjson
|
|
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
from zerver.lib.webhooks.git import COMMITS_LIMIT
|
|
|
|
TOPIC_REPO = "public-repo"
|
|
TOPIC_ISSUE = "public-repo / issue #2 Spelling error in the README file"
|
|
TOPIC_PR = "public-repo / PR #1 Update the README with new information"
|
|
TOPIC_DEPLOYMENT = "public-repo / Deployment on production"
|
|
TOPIC_ORGANIZATION = "baxterandthehackers organization"
|
|
TOPIC_BRANCH = "public-repo / changes"
|
|
TOPIC_WIKI = "public-repo / wiki pages"
|
|
TOPIC_DISCUSSION = "webhook-tester discussion #3: Tips for Writing Clear and ..."
|
|
TOPIC_DISCUSSION_ANSWERS = "webhook-tester discussion #5: Understanding Project Direc..."
|
|
TOPIC_DISCUSSION_COMMENT = "testing-gh discussion #20: Lets discuss"
|
|
TOPIC_SPONSORS = "sponsors"
|
|
|
|
|
|
class GitHubWebhookTest(WebhookTestCase):
|
|
CHANNEL_NAME = "github"
|
|
URL_TEMPLATE = "/api/v1/external/github?stream={stream}&api_key={api_key}"
|
|
WEBHOOK_DIR_NAME = "github"
|
|
|
|
def test_ping_event(self) -> None:
|
|
expected_message = "GitHub webhook has been successfully configured by TomaszKolek."
|
|
self.check_webhook("ping", TOPIC_REPO, expected_message)
|
|
|
|
def test_star_event(self) -> None:
|
|
expected_message = "[Codertocat](https://github.com/Codertocat) starred the repository [Codertocat/Hello-World](https://github.com/Codertocat/Hello-World)."
|
|
expected_topic_name = "Hello-World"
|
|
self.check_webhook("star", expected_topic_name, expected_message)
|
|
|
|
def test_ping_organization_event(self) -> None:
|
|
expected_message = "GitHub webhook has been successfully configured by eeshangarg."
|
|
self.check_webhook("ping__organization", "zulip-test-org", expected_message)
|
|
|
|
def test_push_delete_branch(self) -> None:
|
|
expected_message = "eeshangarg [deleted](https://github.com/eeshangarg/public-repo/compare/2e8cf535fb38...000000000000) the branch feature."
|
|
self.check_webhook("push__delete_branch", "public-repo / feature", expected_message)
|
|
|
|
def test_push_force_1_commit(self) -> None:
|
|
expected_message = "sbansal1999 [force pushed](https://github.com/sbansal1999/zulip/compare/b6de8891fc10...971d76ca3094) 1 commit to branch temp.\n\n* log: Add important.txt which is useful for logging errors. ([971d76ca309](https://github.com/sbansal1999/zulip/commit/971d76ca309446a9c20381f6271cea8a59b4e40a))"
|
|
self.check_webhook("push__force_1_commit", "zulip / temp", expected_message)
|
|
|
|
def test_push__force_remove_commits(self) -> None:
|
|
expected_message = "sbansal1999 [force pushed](https://github.com/sbansal1999/zulip/compare/2084a91af9ca...9a8749ea8fe7) the branch temp."
|
|
self.check_webhook("push__force_remove_commits", "zulip / temp", expected_message)
|
|
|
|
def test_push_local_branch_without_commits(self) -> None:
|
|
expected_message = "eeshangarg [pushed](https://github.com/eeshangarg/public-repo/compare/feature) the branch feature."
|
|
self.check_webhook(
|
|
"push__local_branch_without_commits", "public-repo / feature", expected_message
|
|
)
|
|
|
|
def test_push_merege_queue_ignore(self) -> None:
|
|
self.url = self.build_webhook_url()
|
|
payload = self.get_body("push__merge_queue")
|
|
self.verify_post_is_ignored(payload, "push")
|
|
|
|
def test_push_1_commit(self) -> None:
|
|
expected_message = "baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 1 commit to branch changes.\n\n* Update README.md ([0d1a26e67d8](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c))"
|
|
self.check_webhook("push__1_commit", TOPIC_BRANCH, expected_message)
|
|
|
|
def test_push_1_commit_private_repository_skipped(self) -> None:
|
|
self.url = self.build_webhook_url(ignore_private_repositories="true")
|
|
self.check_webhook(
|
|
fixture_name="push__1_commit_private_repository",
|
|
expected_topic_name=None,
|
|
expected_message=None,
|
|
expect_noop=True,
|
|
)
|
|
|
|
def test_push_1_commit_without_username(self) -> None:
|
|
expected_message = "eeshangarg [pushed](https://github.com/eeshangarg/public-repo/compare/0383613da871...2e8cf535fb38) 1 commit to branch changes. Commits by John Snow (1).\n\n* Update the README ([2e8cf535fb3](https://github.com/eeshangarg/public-repo/commit/2e8cf535fb38a3dab2476cdf856efda904ad4c94))"
|
|
self.check_webhook("push__1_commit_without_username", TOPIC_BRANCH, expected_message)
|
|
|
|
def test_push_1_commit_filtered_by_branches(self) -> None:
|
|
self.url = self.build_webhook_url("master,changes")
|
|
expected_message = "baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 1 commit to branch changes.\n\n* Update README.md ([0d1a26e67d8](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c))"
|
|
self.check_webhook("push__1_commit", TOPIC_BRANCH, expected_message)
|
|
|
|
def test_push_multiple_committers(self) -> None:
|
|
commits_info = "* Update README.md ([0d1a26e67d8](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c))\n"
|
|
expected_message = f"""baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 6 commits to branch changes. Commits by Tomasz (3), Ben (2) and baxterthehacker (1).\n\n{commits_info * 5}* Update README.md ([0d1a26e67d8](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c))"""
|
|
|
|
self.check_webhook("push__multiple_committers", TOPIC_BRANCH, expected_message)
|
|
|
|
def test_push_multiple_committers_with_others(self) -> None:
|
|
commits_info = "* Update README.md ([0d1a26e67d8](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c))\n"
|
|
expected_message = f"""baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 10 commits to branch changes. Commits by Tomasz (4), Ben (3), James (2) and others (1).\n\n{commits_info * 9}* Update README.md ([0d1a26e67d8](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c))"""
|
|
|
|
self.check_webhook("push__multiple_committers_with_others", TOPIC_BRANCH, expected_message)
|
|
|
|
def test_push_multiple_committers_filtered_by_branches(self) -> None:
|
|
self.url = self.build_webhook_url("master,changes")
|
|
commits_info = "* Update README.md ([0d1a26e67d8](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c))\n"
|
|
expected_message = f"""baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 6 commits to branch changes. Commits by Tomasz (3), Ben (2) and baxterthehacker (1).\n\n{commits_info * 5}* Update README.md ([0d1a26e67d8](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c))"""
|
|
|
|
self.check_webhook("push__multiple_committers", TOPIC_BRANCH, expected_message)
|
|
|
|
def test_push_multiple_committers_with_others_filtered_by_branches(self) -> None:
|
|
self.url = self.build_webhook_url("master,changes")
|
|
commits_info = "* Update README.md ([0d1a26e67d8](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c))\n"
|
|
expected_message = f"""baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 10 commits to branch changes. Commits by Tomasz (4), Ben (3), James (2) and others (1).\n\n{commits_info * 9}* Update README.md ([0d1a26e67d8](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c))"""
|
|
|
|
self.check_webhook("push__multiple_committers_with_others", TOPIC_BRANCH, expected_message)
|
|
|
|
def test_push_50_commits(self) -> None:
|
|
commit_info = "* Update README.md ([0d1a26e67d8](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c))\n"
|
|
expected_message = f"baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 50 commits to branch changes.\n\n{commit_info * COMMITS_LIMIT}[and 30 more commit(s)]"
|
|
self.check_webhook("push__50_commits", TOPIC_BRANCH, expected_message)
|
|
|
|
def test_push_50_commits_filtered_by_branches(self) -> None:
|
|
self.url = self.build_webhook_url(branches="master,changes")
|
|
commit_info = "* Update README.md ([0d1a26e67d8](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c))\n"
|
|
expected_message = f"baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 50 commits to branch changes.\n\n{commit_info * COMMITS_LIMIT}[and 30 more commit(s)]"
|
|
self.check_webhook("push__50_commits", TOPIC_BRANCH, expected_message)
|
|
|
|
def test_commit_comment_msg(self) -> None:
|
|
expected_message = "baxterthehacker [commented](https://github.com/baxterthehacker/public-repo/commit/9049f1265b7d61be4a8904a9a27120d2064dab3b#commitcomment-11056394) on [9049f1265b7](https://github.com/baxterthehacker/public-repo/commit/9049f1265b7d61be4a8904a9a27120d2064dab3b):\n~~~ quote\nThis is a really good change! :+1:\n~~~"
|
|
self.check_webhook("commit_comment", TOPIC_REPO, expected_message)
|
|
|
|
def test_create_msg(self) -> None:
|
|
expected_message = "baxterthehacker created tag 0.0.1."
|
|
self.check_webhook("create", TOPIC_REPO, expected_message)
|
|
|
|
def test_delete_msg(self) -> None:
|
|
expected_message = "baxterthehacker deleted tag simple-tag."
|
|
self.check_webhook("delete", TOPIC_REPO, expected_message)
|
|
|
|
def test_deployment_msg(self) -> None:
|
|
expected_message = "baxterthehacker created new deployment."
|
|
self.check_webhook("deployment", TOPIC_DEPLOYMENT, expected_message)
|
|
|
|
def test_deployment_status_msg(self) -> None:
|
|
expected_message = "Deployment changed status to success."
|
|
self.check_webhook("deployment_status", TOPIC_DEPLOYMENT, expected_message)
|
|
|
|
def test_fork_msg(self) -> None:
|
|
expected_message = "baxterandthehackers forked [public-repo](https://github.com/baxterandthehackers/public-repo)."
|
|
self.check_webhook("fork", TOPIC_REPO, expected_message)
|
|
|
|
def test_issue_comment_msg(self) -> None:
|
|
expected_message = "baxterthehacker [commented](https://github.com/baxterthehacker/public-repo/issues/2#issuecomment-99262140) on [issue #2](https://github.com/baxterthehacker/public-repo/issues/2):\n\n~~~ quote\nYou are totally right! I'll get this fixed right away.\n~~~"
|
|
self.check_webhook("issue_comment", TOPIC_ISSUE, expected_message)
|
|
|
|
def test_issue_comment_deleted_msg(self) -> None:
|
|
expected_topic_name = "Scheduler / issue #5 This is a new issue"
|
|
expected_message = "eeshangarg deleted a [comment](https://github.com/eeshangarg/Scheduler/issues/5#issuecomment-425164194) on [issue #5](https://github.com/eeshangarg/Scheduler/issues/5):\n\n~~~ quote\nThis is a comment on this new issue.\n~~~"
|
|
self.check_webhook("issue_comment__deleted", expected_topic_name, expected_message)
|
|
|
|
def test_issue_comment_msg_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="notifications")
|
|
expected_topic_name = "notifications"
|
|
expected_message = "baxterthehacker [commented](https://github.com/baxterthehacker/public-repo/issues/2#issuecomment-99262140) on [issue #2 Spelling error in the README file](https://github.com/baxterthehacker/public-repo/issues/2):\n\n~~~ quote\nYou are totally right! I'll get this fixed right away.\n~~~"
|
|
self.check_webhook("issue_comment", expected_topic_name, expected_message)
|
|
|
|
def test_issue_comment_pull_request_comment_msg(self) -> None:
|
|
expected_message = "sbansal1999 [commented](https://github.com/sbansal1999/public-repo/pull/1#issuecomment-1631445420) on [PR #1](https://github.com/sbansal1999/public-repo/pull/1):\n\n~~~ quote\nSome comment\n~~~"
|
|
self.check_webhook("issue_comment__pull_request_comment", TOPIC_PR, expected_message)
|
|
|
|
def test_issue_msg(self) -> None:
|
|
expected_message = "baxterthehacker opened [issue #2](https://github.com/baxterthehacker/public-repo/issues/2):\n\n~~~ quote\nIt looks like you accidentally spelled 'commit' with two 't's.\n~~~"
|
|
self.check_webhook("issues", TOPIC_ISSUE, expected_message)
|
|
|
|
def test_issue_msg_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="notifications")
|
|
expected_topic_name = "notifications"
|
|
expected_message = "baxterthehacker opened [issue #2 Spelling error in the README file](https://github.com/baxterthehacker/public-repo/issues/2):\n\n~~~ quote\nIt looks like you accidentally spelled 'commit' with two 't's.\n~~~"
|
|
self.check_webhook("issues", expected_topic_name, expected_message)
|
|
|
|
def test_issue_assigned(self) -> None:
|
|
expected_message = "sbansal1999 assigned sbansal1999 to [issue #7](https://github.com/sbansal1999/testing-gh/issues/7)."
|
|
expected_topic_name = "testing-gh / issue #7 Testing when issue assigned!"
|
|
self.check_webhook("issues__assigned", expected_topic_name, expected_message)
|
|
|
|
def test_issue_assigned_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="notifications")
|
|
expected_topic_name = "notifications"
|
|
expected_message = "sbansal1999 assigned sbansal1999 to [issue #7 Testing when issue assigned!](https://github.com/sbansal1999/testing-gh/issues/7)"
|
|
self.check_webhook("issues__assigned", expected_topic_name, expected_message)
|
|
|
|
def test_issue_unassigned(self) -> None:
|
|
expected_message = "sbansal1999 unassigned sbansal1999 from [issue #9](https://github.com/sbansal1999/testing-gh/issues/9)."
|
|
expected_topic_name = "testing-gh / issue #9 idk man"
|
|
self.check_webhook("issues__unassigned", expected_topic_name, expected_message)
|
|
|
|
def test_issue_unassigned_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="notifications")
|
|
expected_topic_name = "notifications"
|
|
expected_message = "sbansal1999 unassigned sbansal1999 from [issue #9 idk man](https://github.com/sbansal1999/testing-gh/issues/9)."
|
|
self.check_webhook("issues__unassigned", expected_topic_name, expected_message)
|
|
|
|
def test_issue_labeled(self) -> None:
|
|
expected_topic_name = "testing-gh / issue #9 idk man"
|
|
expected_message = "[sbansal1999](https://github.com/sbansal1999) added the bug label to [Issue #9](https://github.com/sbansal1999/testing-gh/issues/9)."
|
|
self.check_webhook("issues__labeled", expected_topic_name, expected_message)
|
|
|
|
def test_issue_labeled_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="notifications")
|
|
expected_topic_name = "notifications"
|
|
expected_message = "[sbansal1999](https://github.com/sbansal1999) added the bug label to [Issue #9 idk man](https://github.com/sbansal1999/testing-gh/issues/9)."
|
|
self.check_webhook("issues__labeled", expected_topic_name, expected_message)
|
|
|
|
def test_issue_unlabeled(self) -> None:
|
|
expected_topic_name = "testing-gh / issue #9 idk man"
|
|
expected_message = "[sbansal1999](https://github.com/sbansal1999) removed the bug label from [Issue #9](https://github.com/sbansal1999/testing-gh/issues/9)."
|
|
self.check_webhook("issues__unlabeled", expected_topic_name, expected_message)
|
|
|
|
def test_issue_milestoned(self) -> None:
|
|
expected_topic_name = "testing-gh / issue #6 This is a sample issue to test GH I..."
|
|
expected_message = "[sbansal1999](https://github.com/sbansal1999) added milestone [some_random_milestone](https://github.com/sbansal1999/testing-gh/milestone/1) to [issue #6](https://github.com/sbansal1999/testing-gh/issues/6)."
|
|
|
|
self.check_webhook("issues__milestoned", expected_topic_name, expected_message)
|
|
|
|
def test_issue_milestoned_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="notifications")
|
|
expected_topic_name = "notifications"
|
|
expected_message = "[sbansal1999](https://github.com/sbansal1999) added milestone [some_random_milestone](https://github.com/sbansal1999/testing-gh/milestone/1) to [issue #6 This is a sample issue to test GH Integration Func](https://github.com/sbansal1999/testing-gh/issues/6)."
|
|
|
|
self.check_webhook("issues__milestoned", expected_topic_name, expected_message)
|
|
|
|
def test_issue_demilestoned(self) -> None:
|
|
expected_topic_name = "testing-gh / issue #6 This is a sample issue to test GH I..."
|
|
expected_message = "[sbansal1999](https://github.com/sbansal1999) removed milestone [some_random_milestone](https://github.com/sbansal1999/testing-gh/milestone/1) from [issue #6](https://github.com/sbansal1999/testing-gh/issues/6)."
|
|
|
|
self.check_webhook("issues__demilestoned", expected_topic_name, expected_message)
|
|
|
|
def test_issue_transfer_transferred_message(self) -> None:
|
|
expected_message = "Aditya8840 transferred [issue #4 Fixture collection](https://github.com/CrisisCollab/TestWebhook/issues/4) to [CrisisCollab/admin-frontend-mvp/#4](https://github.com/CrisisCollab/admin-frontend-mvp/issues/4)."
|
|
expected_topic_name = "TestWebhook / issue #4 Fixture collection"
|
|
self.check_webhook(
|
|
"issues__transferred",
|
|
expected_topic_name,
|
|
expected_message,
|
|
)
|
|
|
|
def test_issue_transfer_opened_message(self) -> None:
|
|
expected_message = "[Issue #4 Fixture collection](https://github.com/CrisisCollab/admin-frontend-mvp/issues/4) was transferred from [CrisisCollab/TestWebhook#4](https://github.com/CrisisCollab/TestWebhook/issues/4)."
|
|
expected_topic_name = "admin-frontend-mvp / issue #4 Fixture collection"
|
|
self.check_webhook(
|
|
"issues__opened_via_transfer",
|
|
expected_topic_name,
|
|
expected_message,
|
|
)
|
|
|
|
def test_membership_msg(self) -> None:
|
|
expected_message = (
|
|
"baxterthehacker added [kdaigle](https://github.com/kdaigle) to the Contractors team."
|
|
)
|
|
self.check_webhook("membership", TOPIC_ORGANIZATION, expected_message)
|
|
|
|
def test_membership_removal_msg(self) -> None:
|
|
expected_message = "baxterthehacker removed [kdaigle](https://github.com/kdaigle) from the Contractors team."
|
|
self.check_webhook("membership__removal", TOPIC_ORGANIZATION, expected_message)
|
|
|
|
def test_member_msg(self) -> None:
|
|
expected_message = "baxterthehacker added [octocat](https://github.com/octocat) to [public-repo](https://github.com/baxterthehacker/public-repo)."
|
|
self.check_webhook("member", TOPIC_REPO, expected_message)
|
|
|
|
def test_pull_request_opened_msg(self) -> None:
|
|
expected_message = "baxterthehacker opened [PR #1](https://github.com/baxterthehacker/public-repo/pull/1) from `baxterthehacker:changes` to `baxterthehacker:master`:\n\n~~~ quote\nThis is a pretty simple change that we need to pull into master.\n~~~"
|
|
self.check_webhook("pull_request__opened", TOPIC_PR, expected_message)
|
|
|
|
def test_pull_request_opened_with_preassigned_assignee_msg(self) -> None:
|
|
expected_topic_name = "Scheduler / PR #4 Improve README"
|
|
expected_message = "eeshangarg opened [PR #4](https://github.com/eeshangarg/Scheduler/pull/4) from `eeshangarg:improve-readme-2` to `eeshangarg:master` (assigned to eeshangarg)."
|
|
self.check_webhook(
|
|
"pull_request__opened_with_preassigned_assignee", expected_topic_name, expected_message
|
|
)
|
|
|
|
def test_pull_request_opened_msg_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="notifications")
|
|
expected_topic_name = "notifications"
|
|
expected_message = "baxterthehacker opened [PR #1 Update the README with new information](https://github.com/baxterthehacker/public-repo/pull/1) from `baxterthehacker:changes` to `baxterthehacker:master`:\n\n~~~ quote\nThis is a pretty simple change that we need to pull into master.\n~~~"
|
|
self.check_webhook("pull_request__opened", expected_topic_name, expected_message)
|
|
|
|
def test_pull_request_synchronized_msg(self) -> None:
|
|
expected_message = "baxterthehacker updated [PR #1](https://github.com/baxterthehacker/public-repo/pull/1)."
|
|
self.check_webhook("pull_request__synchronized", TOPIC_PR, expected_message)
|
|
|
|
def test_pull_request_closed_msg(self) -> None:
|
|
expected_message = "baxterthehacker closed without merge [PR #1](https://github.com/baxterthehacker/public-repo/pull/1)."
|
|
self.check_webhook("pull_request__closed", TOPIC_PR, expected_message)
|
|
|
|
def test_pull_request_closed_msg_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="notifications")
|
|
expected_topic_name = "notifications"
|
|
expected_message = "baxterthehacker closed without merge [PR #1 Update the README with new information](https://github.com/baxterthehacker/public-repo/pull/1)."
|
|
self.check_webhook("pull_request__closed", expected_topic_name, expected_message)
|
|
|
|
def test_pull_request_merged_msg(self) -> None:
|
|
expected_message = (
|
|
"baxterthehacker merged [PR #1](https://github.com/baxterthehacker/public-repo/pull/1)."
|
|
)
|
|
self.check_webhook("pull_request__merged", TOPIC_PR, expected_message)
|
|
|
|
def test_pull_request_merged_msg_private_repository_skipped(self) -> None:
|
|
self.url = self.build_webhook_url(ignore_private_repositories="true")
|
|
self.check_webhook(
|
|
fixture_name="pull_request__merged_private_repository",
|
|
expected_topic_name=None,
|
|
expected_message=None,
|
|
expect_noop=True,
|
|
)
|
|
|
|
def test_public_msg(self) -> None:
|
|
expected_message = "baxterthehacker made the repository [baxterthehacker/public-repo](https://github.com/baxterthehacker/public-repo) public."
|
|
self.check_webhook("public", TOPIC_REPO, expected_message)
|
|
|
|
def test_wiki_pages_msg(self) -> None:
|
|
expected_message = "jasonrudolph:\n* created [Home](https://github.com/baxterthehacker/public-repo/wiki/Home)\n* created [Home](https://github.com/baxterthehacker/public-repo/wiki/Home)"
|
|
self.check_webhook("gollum__wiki_pages", TOPIC_WIKI, expected_message)
|
|
|
|
def test_watch_msg(self) -> None:
|
|
expected_message = "baxterthehacker starred the repository [baxterthehacker/public-repo](https://github.com/baxterthehacker/public-repo)."
|
|
self.check_webhook("watch__repository", TOPIC_REPO, expected_message)
|
|
|
|
def test_repository_msg(self) -> None:
|
|
expected_message = "baxterthehacker created the repository [baxterandthehackers/public-repo](https://github.com/baxterandthehackers/public-repo)."
|
|
self.check_webhook("repository", TOPIC_REPO, expected_message)
|
|
|
|
def test_private_repository_msg(self) -> None:
|
|
expected_message = "baxterthehacker created the repository [baxterandthehackers/public-repo](https://github.com/baxterandthehackers/public-repo)."
|
|
self.check_webhook("repository", TOPIC_REPO, expected_message)
|
|
|
|
def test_private_repository_skipped_msg(self) -> None:
|
|
self.url = self.build_webhook_url(ignore_private_repositories="true")
|
|
self.check_webhook(
|
|
fixture_name="repository_private",
|
|
expected_topic_name=None,
|
|
expected_message=None,
|
|
expect_noop=True,
|
|
)
|
|
|
|
def test_team_add_msg(self) -> None:
|
|
expected_message = "The repository [baxterandthehackers/public-repo](https://github.com/baxterandthehackers/public-repo) was added to team github."
|
|
self.check_webhook("team_add", TOPIC_REPO, expected_message)
|
|
|
|
def test_release_msg(self) -> None:
|
|
expected_message = "baxterthehacker published release [0.0.1](https://github.com/baxterthehacker/public-repo/releases/tag/0.0.1) for tag 0.0.1."
|
|
self.check_webhook("release", TOPIC_REPO, expected_message)
|
|
|
|
def test_release_msg_with_name(self) -> None:
|
|
expected_message = "baxterthehacker published release [0.0.1](https://github.com/baxterthehacker/public-repo/releases/tag/0.0.1) for tag 0.0.1."
|
|
self.check_webhook("release__with_name", TOPIC_REPO, expected_message)
|
|
|
|
def test_page_build_msg(self) -> None:
|
|
expected_message = (
|
|
"GitHub Pages build, triggered by baxterthehacker, has finished building."
|
|
)
|
|
self.check_webhook("page_build", TOPIC_REPO, expected_message)
|
|
|
|
def test_page_build_errored_msg(self) -> None:
|
|
expected_message = "GitHub Pages build, triggered by baxterthehacker, has failed: \n~~~ quote\nSomething went wrong.\n~~~."
|
|
self.check_webhook("page_build__errored", TOPIC_REPO, expected_message)
|
|
|
|
def test_status_msg(self) -> None:
|
|
expected_message = "[9049f1265b7](https://github.com/baxterthehacker/public-repo/commit/9049f1265b7d61be4a8904a9a27120d2064dab3b) changed its status to success."
|
|
self.check_webhook("status", TOPIC_REPO, expected_message)
|
|
|
|
def test_status_with_target_url_msg(self) -> None:
|
|
expected_message = "[9049f1265b7](https://github.com/baxterthehacker/public-repo/commit/9049f1265b7d61be4a8904a9a27120d2064dab3b) changed its status to [success](https://example.com/build/status)."
|
|
self.check_webhook("status__with_target_url", TOPIC_REPO, expected_message)
|
|
|
|
def test_pull_request_review_msg(self) -> None:
|
|
expected_message = "baxterthehacker submitted [PR review](https://github.com/baxterthehacker/public-repo/pull/1#pullrequestreview-2626884):\n\n~~~ quote\nLooks great!\n~~~"
|
|
self.check_webhook("pull_request_review", TOPIC_PR, expected_message)
|
|
|
|
def test_pull_request_review_msg_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="notifications")
|
|
expected_topic_name = "notifications"
|
|
expected_message = "baxterthehacker submitted [PR review for #1 Update the README with new information](https://github.com/baxterthehacker/public-repo/pull/1#pullrequestreview-2626884):\n\n~~~ quote\nLooks great!\n~~~"
|
|
self.check_webhook("pull_request_review", expected_topic_name, expected_message)
|
|
|
|
def test_pull_request_review_msg_with_empty_body(self) -> None:
|
|
expected_topic_name = "groonga / PR #1581 grn_db_value_lock: unlock GRN_TYPE obj..."
|
|
expected_message = "kou submitted [PR review](https://github.com/groonga/groonga/pull/1581#pullrequestreview-1483047907)."
|
|
self.check_webhook("pull_request_review__empty_body", expected_topic_name, expected_message)
|
|
|
|
def test_pull_request_review_comment_msg(self) -> None:
|
|
expected_message = "baxterthehacker created [PR review comment](https://github.com/baxterthehacker/public-repo/pull/1#discussion_r29724692):\n\n~~~ quote\nMaybe you should use more emojji on this line.\n~~~"
|
|
self.check_webhook("pull_request_review_comment", TOPIC_PR, expected_message)
|
|
|
|
def test_pull_request_review_comment_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="notifications")
|
|
expected_topic_name = "notifications"
|
|
expected_message = "baxterthehacker created [PR review comment on #1 Update the README with new information](https://github.com/baxterthehacker/public-repo/pull/1#discussion_r29724692):\n\n~~~ quote\nMaybe you should use more emojji on this line.\n~~~"
|
|
self.check_webhook("pull_request_review_comment", expected_topic_name, expected_message)
|
|
|
|
def test_pull_request_locked(self) -> None:
|
|
expected_message = "tushar912 has locked [PR #1](https://github.com/tushar912/public-repo/pull/1) as off-topic and limited conversation to collaborators."
|
|
self.check_webhook("pull_request__locked", TOPIC_PR, expected_message)
|
|
|
|
def test_pull_request_unlocked(self) -> None:
|
|
expected_message = (
|
|
"tushar912 has unlocked [PR #1](https://github.com/tushar912/public-repo/pull/1)."
|
|
)
|
|
self.check_webhook("pull_request__unlocked", TOPIC_PR, expected_message)
|
|
|
|
def test_pull_request_auto_merge_enabled(self) -> None:
|
|
expected_message = "tushar912 has enabled auto merge for [PR #1](https://github.com/tushar912/public-repo/pull/1)."
|
|
self.check_webhook("pull_request__auto_merge_enabled", TOPIC_PR, expected_message)
|
|
|
|
def test_pull_request_auto_merge_disabled(self) -> None:
|
|
expected_message = "tushar912 has disabled auto merge for [PR #1](https://github.com/tushar912/public-repo/pull/1)."
|
|
self.check_webhook("pull_request__auto_merge_disabled", TOPIC_PR, expected_message)
|
|
|
|
def test_push_tag_msg(self) -> None:
|
|
expected_message = "baxterthehacker pushed tag abc."
|
|
self.check_webhook("push__tag", TOPIC_REPO, expected_message)
|
|
|
|
def test_pull_request_edited_msg(self) -> None:
|
|
expected_message = (
|
|
"baxterthehacker edited [PR #1](https://github.com/baxterthehacker/public-repo/pull/1)."
|
|
)
|
|
self.check_webhook("pull_request__edited", TOPIC_PR, expected_message)
|
|
|
|
def test_pull_request_edited_with_body_change(self) -> None:
|
|
expected_message = "cozyrohan edited [PR #1](https://github.com/cozyrohan/public-repo/pull/1):\n\n~~~ quote\nPR EDITED\n~~~"
|
|
self.check_webhook("pull_request__edited_with_body_change", TOPIC_PR, expected_message)
|
|
|
|
def test_pull_request_synchronized_with_body(self) -> None:
|
|
expected_message = "baxterthehacker updated [PR #1](https://github.com/baxterthehacker/public-repo/pull/1)."
|
|
self.check_webhook("pull_request__synchronized_with_body", TOPIC_PR, expected_message)
|
|
|
|
def test_pull_request_assigned_msg(self) -> None:
|
|
expected_message = "baxterthehacker assigned baxterthehacker to [PR #1](https://github.com/baxterthehacker/public-repo/pull/1)."
|
|
self.check_webhook("pull_request__assigned", TOPIC_PR, expected_message)
|
|
|
|
def test_pull_request_assigned_msg_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="notifications")
|
|
expected_topic_name = "notifications"
|
|
expected_message = "baxterthehacker assigned baxterthehacker to [PR #1 Update the README with new information](https://github.com/baxterthehacker/public-repo/pull/1)."
|
|
self.check_webhook("pull_request__assigned", expected_topic_name, expected_message)
|
|
|
|
def test_pull_request_unassigned_msg(self) -> None:
|
|
expected_message = "eeshangarg unassigned eeshangarg from [PR #1](https://github.com/zulip-test-org/helloworld/pull/1)."
|
|
expected_topic_name = "helloworld / PR #1 Mention that Zulip rocks!"
|
|
self.check_webhook("pull_request__unassigned", expected_topic_name, expected_message)
|
|
|
|
def test_pull_request_unassigned_msg_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="notifications")
|
|
expected_topic_name = "notifications"
|
|
expected_message = "eeshangarg unassigned eeshangarg from [PR #1 Mention that Zulip rocks!](https://github.com/zulip-test-org/helloworld/pull/1)"
|
|
self.check_webhook("pull_request__unassigned", expected_topic_name, expected_message)
|
|
|
|
def test_pull_request_ready_for_review_msg(self) -> None:
|
|
expected_message = "**Hypro999** has marked [PR #2](https://github.com/Hypro999/temp-test-github-webhook/pull/2) as ready for review."
|
|
self.check_webhook(
|
|
"pull_request__ready_for_review",
|
|
"temp-test-github-webhook / PR #2 Test",
|
|
expected_message,
|
|
)
|
|
|
|
def test_pull_request_review_requested_msg(self) -> None:
|
|
expected_message = "**eeshangarg** requested [showell](https://github.com/showell) for a review on [PR #1](https://github.com/eeshangarg/Scheduler/pull/1)."
|
|
self.check_webhook(
|
|
"pull_request__review_requested",
|
|
"Scheduler / PR #1 This is just a test commit",
|
|
expected_message,
|
|
)
|
|
|
|
def test_pull_request__review_requested_team_reviewer_msg(self) -> None:
|
|
expected_message = "**singhsourabh** requested [authority](https://github.com/orgs/test-org965/teams/authority) for a review on [PR #4](https://github.com/test-org965/webhook-test/pull/4)."
|
|
self.check_webhook(
|
|
"pull_request__review_requested_team_reviewer",
|
|
"webhook-test / PR #4 testing webhook",
|
|
expected_message,
|
|
)
|
|
|
|
def test_pull_request_review_requested_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="notifications")
|
|
expected_topic_name = "notifications"
|
|
expected_message = "**eeshangarg** requested [showell](https://github.com/showell) for a review on [PR #1 This is just a test commit](https://github.com/eeshangarg/Scheduler/pull/1)."
|
|
self.check_webhook("pull_request__review_requested", expected_topic_name, expected_message)
|
|
|
|
def test_check_run(self) -> None:
|
|
expected_topic_name = "hello-world / checks"
|
|
expected_message = """
|
|
Check [randscape](http://github.com/github/hello-world/runs/4) completed (success). ([d6fde92930d](http://github.com/github/hello-world/commit/d6fde92930d4715a2b49857d24b940956b26d2d3))
|
|
""".strip()
|
|
self.check_webhook("check_run__completed", expected_topic_name, expected_message)
|
|
|
|
def test_team_edited_description(self) -> None:
|
|
expected_topic_name = "team Testing"
|
|
expected_message = """\
|
|
**Hypro999** changed the team description to:
|
|
\n~~~ quote
|
|
A temporary team so that I can get some webhook fixtures!
|
|
~~~"""
|
|
self.check_webhook("team__edited_description", expected_topic_name, expected_message)
|
|
|
|
def test_team_edited_name(self) -> None:
|
|
expected_topic_name = "team Testing Team"
|
|
expected_message = """Team `Testing` was renamed to `Testing Team`."""
|
|
self.check_webhook("team__edited_name", expected_topic_name, expected_message)
|
|
|
|
def test_team_edited_privacy(self) -> None:
|
|
expected_topic_name = "team Testing Team"
|
|
expected_message = """Team visibility changed to `secret`"""
|
|
self.check_webhook("team__edited_privacy_secret", expected_topic_name, expected_message)
|
|
|
|
def verify_post_is_ignored(self, payload: str, http_x_github_event: str) -> None:
|
|
with patch("zerver.webhooks.github.view.check_send_webhook_message") as m:
|
|
result = self.client_post(
|
|
self.url,
|
|
payload,
|
|
HTTP_X_GITHUB_EVENT=http_x_github_event,
|
|
content_type="application/json",
|
|
)
|
|
self.assertFalse(m.called)
|
|
self.assert_json_success(result)
|
|
|
|
def test_check_run_in_progress_ignore(self) -> None:
|
|
payload = self.get_body("check_run__in_progress")
|
|
self.verify_post_is_ignored(payload, "check_run")
|
|
|
|
def test_ignored_pull_request_actions(self) -> None:
|
|
ignored_actions = [
|
|
"approved",
|
|
"converted_to_draft",
|
|
"labeled",
|
|
"review_request_removed",
|
|
"unlabeled",
|
|
]
|
|
for action in ignored_actions:
|
|
data = dict(action=action)
|
|
payload = orjson.dumps(data).decode()
|
|
self.verify_post_is_ignored(payload, "pull_request")
|
|
|
|
def test_pull_request_review_edited_empty_changes_ignore(self) -> None:
|
|
payload = self.get_body("pull_request_review__edited_empty_changes")
|
|
self.verify_post_is_ignored(payload, "pull_request_review")
|
|
|
|
def test_ignored_team_actions(self) -> None:
|
|
ignored_actions = [
|
|
"added_to_repository",
|
|
"created",
|
|
"deleted",
|
|
"removed_from_repository",
|
|
]
|
|
for action in ignored_actions:
|
|
data = dict(action=action)
|
|
payload = orjson.dumps(data).decode()
|
|
self.verify_post_is_ignored(payload, "team")
|
|
|
|
def test_push_1_commit_filtered_by_branches_ignore(self) -> None:
|
|
self.url = self.build_webhook_url(branches="master,development")
|
|
payload = self.get_body("push__1_commit")
|
|
self.verify_post_is_ignored(payload, "push")
|
|
|
|
def test_push_50_commits_filtered_by_branches_ignore(self) -> None:
|
|
self.url = self.build_webhook_url(branches="master,development")
|
|
payload = self.get_body("push__50_commits")
|
|
self.verify_post_is_ignored(payload, "push")
|
|
|
|
def test_push_multiple_committers_filtered_by_branches_ignore(self) -> None:
|
|
self.url = self.build_webhook_url(branches="master,development")
|
|
payload = self.get_body("push__multiple_committers")
|
|
self.verify_post_is_ignored(payload, "push")
|
|
|
|
def test_push_multiple_committers_with_others_filtered_by_branches_ignore(self) -> None:
|
|
self.url = self.build_webhook_url(branches="master,development")
|
|
payload = self.get_body("push__multiple_committers_with_others")
|
|
self.verify_post_is_ignored(payload, "push")
|
|
|
|
def test_repository_vulnerability_alert_ignore(self) -> None:
|
|
self.url = self.build_webhook_url()
|
|
payload = self.get_body("repository_vulnerability_alert")
|
|
self.verify_post_is_ignored(payload, "repository_vulnerability_alert")
|
|
|
|
def test_ignored_events(self) -> None:
|
|
# The payload for these events never gets looked at in the
|
|
# webhook itself; it only needs to be valid JSON.
|
|
payload = "{}"
|
|
|
|
ignored_events = [
|
|
"check_suite",
|
|
"label",
|
|
"meta",
|
|
"milestone",
|
|
"organization",
|
|
"project_card",
|
|
"repository_vulnerability_alert",
|
|
]
|
|
|
|
for event in ignored_events:
|
|
self.verify_post_is_ignored(payload, event)
|
|
|
|
def test_team_edited_with_unsupported_keys(self) -> None:
|
|
self.subscribe(self.test_user, self.CHANNEL_NAME)
|
|
|
|
event = "team"
|
|
payload = dict(
|
|
action="edited",
|
|
changes=dict(
|
|
bogus_key1={},
|
|
bogus_key2={},
|
|
),
|
|
team=dict(name="My Team"),
|
|
)
|
|
|
|
log_mock = patch("zerver.decorator.webhook_unsupported_events_logger.exception")
|
|
|
|
with log_mock as m:
|
|
channel_message = self.send_webhook_payload(
|
|
self.test_user,
|
|
self.url,
|
|
payload,
|
|
HTTP_X_GITHUB_EVENT=event,
|
|
content_type="application/json",
|
|
)
|
|
|
|
self.assert_channel_message(
|
|
message=channel_message,
|
|
channel_name=self.CHANNEL_NAME,
|
|
topic_name="team My Team",
|
|
content="Team has changes to `bogus_key1/bogus_key2` data.",
|
|
)
|
|
|
|
m.assert_called_once()
|
|
msg = m.call_args[0][0]
|
|
stack_info = m.call_args[1]["stack_info"]
|
|
|
|
self.assertIn(
|
|
"The 'team/edited (changes: bogus_key1/bogus_key2)' event isn't currently supported by the GitHub webhook; ignoring",
|
|
msg,
|
|
)
|
|
self.assertTrue(stack_info)
|
|
|
|
def test_discussion_answered(self) -> None:
|
|
expected_message = "Niloth-p marked [comment #11460065](https://github.com/Niloth-p/webhook-tester/discussions/5#discussioncomment-11460065) as the answer:\n\n~~~ quote\nIf you're looking for a detailed explanation of the project structure, I'd recommend checking out our CONTRIBUTING.md file. It includes a breakdown of the different directories and files, as well as some guidelines for contributing to the project.\n~~~"
|
|
self.check_webhook("discussion__answered", TOPIC_DISCUSSION_ANSWERS, expected_message)
|
|
|
|
def test_discussion_category_changed(self) -> None:
|
|
expected_message = "Niloth-p changed the category of [discussion #3](https://github.com/Niloth-p/webhook-tester/discussions/3) from General to Ideas."
|
|
self.check_webhook("discussion__category_changed", TOPIC_DISCUSSION, expected_message)
|
|
|
|
def test_discussion_category_changed_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="discussions")
|
|
expected_topic_name = "discussions"
|
|
expected_message = "Niloth-p changed the category of [discussion #3 Tips for Writing Clear and Concise Commit Messages](https://github.com/Niloth-p/webhook-tester/discussions/3) from General to Ideas."
|
|
self.check_webhook("discussion__category_changed", expected_topic_name, expected_message)
|
|
|
|
def test_discussion_created(self) -> None:
|
|
expected_message = "Niloth-p created [discussion #3](https://github.com/Niloth-p/webhook-tester/discussions/3) in General:\n\n~~~ quote\n### Tips for Writing Clear and Concise Commit Messages\nWriting good commit messages is an art, but it's also an important part of maintaining a clear and understandable project history. What are some tips and tricks you've learned for writing clear and concise commit messages? Do you have any favorite templates or formats?\n~~~"
|
|
self.check_webhook("discussion__created", TOPIC_DISCUSSION, expected_message)
|
|
|
|
def test_discussion_closed(self) -> None:
|
|
expected_message = "Cordelia closed [discussion #3](https://github.com/Niloth-p/webhook-tester/discussions/3) as resolved."
|
|
self.check_webhook("discussion__closed", TOPIC_DISCUSSION, expected_message)
|
|
|
|
def test_discussion_deleted(self) -> None:
|
|
expected_message = "Niloth-p deleted discussion #3."
|
|
self.check_webhook("discussion__deleted", TOPIC_DISCUSSION, expected_message)
|
|
|
|
def test_discussion_edited_title(self) -> None:
|
|
expected_topic = "webhook-tester discussion #3: Tips for Writing Good Commi..."
|
|
expected_message = "Niloth-p edited the title of [discussion #3](https://github.com/Niloth-p/webhook-tester/discussions/3):\n\n~~~ quote\n### Tips for Writing Good Commit Messages\n~~~"
|
|
self.check_webhook("discussion__edited_title", expected_topic, expected_message)
|
|
|
|
def test_discussion_edited_body(self) -> None:
|
|
expected_message = "Niloth-p edited [discussion #3](https://github.com/Niloth-p/webhook-tester/discussions/3):\n\n~~~ quote\nWriting good commit messages is an art, but it's also an important part of maintaining a clear and understandable project history. What are some tips and tricks you've learned for writing clear and concise commit messages? Do you have any favorite templates or formats?\r\nAny advice would be greatly appreciated!\n~~~"
|
|
self.check_webhook("discussion__edited_body", TOPIC_DISCUSSION, expected_message)
|
|
|
|
def test_discussion_labeled(self) -> None:
|
|
expected_message = "Niloth-p added the enhancement label to [discussion #3](https://github.com/Niloth-p/webhook-tester/discussions/3)."
|
|
self.check_webhook("discussion__labeled", TOPIC_DISCUSSION, expected_message)
|
|
|
|
def test_discussion_locked(self) -> None:
|
|
expected_message = "Niloth-p locked [discussion #3](https://github.com/Niloth-p/webhook-tester/discussions/3) as resolved."
|
|
self.check_webhook("discussion__locked", TOPIC_DISCUSSION, expected_message)
|
|
|
|
def test_discussion_pinned(self) -> None:
|
|
expected_message = "Niloth-p pinned [discussion #3](https://github.com/Niloth-p/webhook-tester/discussions/3)."
|
|
self.check_webhook("discussion__pinned", TOPIC_DISCUSSION, expected_message)
|
|
|
|
def test_discussion_reopened(self) -> None:
|
|
expected_message = "Niloth-p reopened [discussion #3](https://github.com/Niloth-p/webhook-tester/discussions/3)."
|
|
self.check_webhook("discussion__reopened", TOPIC_DISCUSSION, expected_message)
|
|
|
|
def test_discussion_transferred(self) -> None:
|
|
expected_message = "Niloth-p transferred discussion #3 from webhook-tester to another-webhook-tester as [discussion #1](https://github.com/Niloth-p/webhook-tester/discussions/3)."
|
|
self.check_webhook("discussion__transferred", TOPIC_DISCUSSION, expected_message)
|
|
|
|
def test_discussion_unlabeled(self) -> None:
|
|
expected_message = "Niloth-p removed the enhancement label from [discussion #3](https://github.com/Niloth-p/webhook-tester/discussions/3)."
|
|
self.check_webhook("discussion__unlabeled", TOPIC_DISCUSSION, expected_message)
|
|
|
|
def test_discussion_unlocked(self) -> None:
|
|
expected_message = "Niloth-p unlocked [discussion #3](https://github.com/Niloth-p/webhook-tester/discussions/3)."
|
|
self.check_webhook("discussion__unlocked", TOPIC_DISCUSSION, expected_message)
|
|
|
|
def test_discussion_unpinned(self) -> None:
|
|
expected_message = "Niloth-p unpinned [discussion #3](https://github.com/Niloth-p/webhook-tester/discussions/3)."
|
|
self.check_webhook("discussion__unpinned", TOPIC_DISCUSSION, expected_message)
|
|
|
|
def test_discussion_unanswered(self) -> None:
|
|
expected_message = "Cordelia marked [comment #11460059](https://github.com/Niloth-p/webhook-tester/discussions/5#discussioncomment-11460059) as not the answer."
|
|
self.check_webhook("discussion__unanswered", TOPIC_DISCUSSION_ANSWERS, expected_message)
|
|
|
|
def test_discussion_comment_msg(self) -> None:
|
|
expected_message = "sbansal1999 [commented](https://github.com/sbansal1999/testing-gh/discussions/20#discussioncomment-6332416) on [discussion #20](https://github.com/sbansal1999/testing-gh/discussions/20):\n\n~~~ quote\nsome random comment\n~~~"
|
|
self.check_webhook("discussion_comment", TOPIC_DISCUSSION_COMMENT, expected_message)
|
|
|
|
def test_discussion_comment_msg_with_custom_topic_in_url(self) -> None:
|
|
self.url = self.build_webhook_url(topic="notifications")
|
|
expected_topic_name = "notifications"
|
|
expected_message = "sbansal1999 [commented](https://github.com/sbansal1999/testing-gh/discussions/20#discussioncomment-6332416) on [discussion #20 Lets discuss](https://github.com/sbansal1999/testing-gh/discussions/20):\n\n~~~ quote\nsome random comment\n~~~"
|
|
self.check_webhook("discussion_comment", expected_topic_name, expected_message)
|
|
|
|
def test_discussion_comment_edited_msg(self) -> None:
|
|
expected_message = "sbansal1999 edited a [comment](https://github.com/sbansal1999/testing-gh/discussions/20#discussioncomment-6332416) on [discussion #20](https://github.com/sbansal1999/testing-gh/discussions/20):\n\n~~~ quote\nsome random comment edited\n~~~"
|
|
self.check_webhook("discussion_comment__edited", TOPIC_DISCUSSION_COMMENT, expected_message)
|
|
|
|
def test_comment_edited_unchanged_skipped(self) -> None:
|
|
self.check_webhook(
|
|
fixture_name="issue_comment__edited__unchanged",
|
|
expected_topic_name=None,
|
|
expected_message=None,
|
|
expect_noop=True,
|
|
)
|
|
|
|
|
|
class GitHubSponsorsHookTests(WebhookTestCase):
|
|
CHANNEL_NAME = "github"
|
|
URL_TEMPLATE = "/api/v1/external/githubsponsors?stream={stream}&api_key={api_key}"
|
|
WEBHOOK_DIR_NAME = "github"
|
|
|
|
def test_cancelled_message(self) -> None:
|
|
expected_message = "monalisa cancelled their $5 a month subscription."
|
|
self.check_webhook(
|
|
"cancelled",
|
|
TOPIC_SPONSORS,
|
|
expected_message,
|
|
)
|
|
|
|
def test_created_message(self) -> None:
|
|
expected_message = "monalisa subscribed for $5 a month."
|
|
self.check_webhook(
|
|
"created",
|
|
TOPIC_SPONSORS,
|
|
expected_message,
|
|
)
|
|
|
|
def test_pending_cancellation_message(self) -> None:
|
|
expected_message = (
|
|
"monalisa's $5 a month subscription will be cancelled on January 05, 2020."
|
|
)
|
|
self.check_webhook(
|
|
"pending_cancellation",
|
|
TOPIC_SPONSORS,
|
|
expected_message,
|
|
)
|
|
|
|
def test_pending_tier_change_message(self) -> None:
|
|
expected_message = "monalisa's subscription will change from $10 a month to $5 a month on December 30, 2019."
|
|
self.check_webhook(
|
|
"pending_tier_change",
|
|
TOPIC_SPONSORS,
|
|
expected_message,
|
|
)
|
|
|
|
def test_tier_changed_message(self) -> None:
|
|
expected_message = "monalisa changed their subscription from $10 a month to $5 a month."
|
|
self.check_webhook(
|
|
"tier_changed",
|
|
TOPIC_SPONSORS,
|
|
expected_message,
|
|
)
|
|
|
|
def test_edited_message(self) -> None:
|
|
expected_message = "monalisa changed who can see their sponsorship from public to private."
|
|
self.check_webhook(
|
|
"edited",
|
|
TOPIC_SPONSORS,
|
|
expected_message,
|
|
)
|