Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

♻️ ref: refactor notification building utils to prevent circular dependencies #88030

Merged

Conversation

iamrajjoshi
Copy link
Member

making my aci life easier

i am running into a lot of circular dependency issues around these methods since we are importing slack specific utils and methods in a generic messaging class.

Verified

This commit was signed with the committer’s verified signature.
queengooborg Queen Vinyl Da.i'gyu-Kazotetsu
…ndency
@iamrajjoshi iamrajjoshi self-assigned this Mar 26, 2025
@iamrajjoshi iamrajjoshi requested review from a team as code owners March 26, 2025 21:11
@github-actions github-actions bot added the Scope: Backend Automatically applied to PRs that change backend components label Mar 26, 2025
@@ -173,7 +173,7 @@ def build_attachment_text(group: Group, event: Event | GroupEvent | None = None)


def build_attachment_replay_link(
group: Group, event: Event | GroupEvent | None = None, url_format: str = SLACK_URL_FORMAT
group: Group, url_format: str, event: Event | GroupEvent | None = None
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

enforcing u pass a url_format

@@ -210,9 +210,6 @@ def build_footer(
text = rules[0].label if rules[0].label else "Test Alert"
footer += f" via {url_format.format(text=text, url=rule_url)}"

if url_format == SLACK_URL_FORMAT:
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

slack is clearly doing its own thing, so lets give it its own specific method instead of having this 1 tiny function do all the heavy lifting

@@ -0,0 +1,11 @@
# Attachment colors used for issues with no actions take.

LEVEL_TO_COLOR = {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is generic, so lets not keep it with Slack

@@ -7,17 +7,6 @@
SlackBlock = dict[str, Any]
SlackBody = Union[SlackAttachment, SlackBlock]

# Attachment colors used for issues with no actions take.
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

moved outside of slack since its generic

Copy link

codecov bot commented Mar 26, 2025

Codecov Report

Attention: Patch coverage is 96.29630% with 1 line in your changes missing coverage. Please review.

✅ All tests successful. No failed tests found.

Files with missing lines Patch % Lines
.../sentry/integrations/slack/message_builder/util.py 93.33% 1 Missing ⚠️
Additional details and impacted files
@@           Coverage Diff           @@
##           master   #88030   +/-   ##
=======================================
  Coverage   87.74%   87.74%           
=======================================
  Files        9925     9927    +2     
  Lines      563835   563850   +15     
  Branches    22205    22205           
=======================================
+ Hits       494714   494733   +19     
+ Misses      68719    68715    -4     
  Partials      402      402           

from sentry.models.rule import Rule


def build_slack_footer(
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

slack gets its own method thats specific to it since it styles things differently

@@ -140,7 +140,7 @@ def test_basic(self, mock_record):
notification_uuid=notification_uuid,
),
"color": LEVEL_TO_COLOR["error"],
"footer": {"text": build_footer(self.event.group, self.event.project, None, "{text}")},
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

reorder required because of optional args

Comment on lines +16 to +25

if rules:
rule_url = build_rule_url(rules[0], group, project)
# If this notification is triggered via the "Send Test Notification"
# button then the label is not defined, but the url works.
text = rules[0].label if rules[0].label else "Test Alert"
footer = SLACK_URL_FORMAT.format(text=text, url=rule_url)

if len(rules) > 1:
footer += f" (+{len(rules) - 1} other)"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A new unit test on this util would be appreciated.

@iamrajjoshi iamrajjoshi merged commit ba4a63d into master Mar 27, 2025
48 checks passed
@iamrajjoshi iamrajjoshi deleted the raj/ref-messaging-building-to-prevent-circular-dependency branch March 27, 2025 17:41
andrewshie-sentry pushed a commit that referenced this pull request Mar 27, 2025
…ndencies (#88030)

making my aci life easier

i am running into a lot of circular dependency issues around these
methods since we are importing slack specific utils and methods in a
generic `messaging` class.
Copy link

sentry-io bot commented Mar 31, 2025

Suspect Issues

This pull request was deployed and Sentry observed the following issues:

  • ‼️ SnubaError: HTTPConnectionPool(host='snuba-api', port=80): Read timed out. (read timeout=30) sentry.tasks.post_process.post_process_group View Issue

Did you find this useful? React with a 👍 or 👎

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Scope: Backend Automatically applied to PRs that change backend components
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants