|
3 | 3 |
|
4 | 4 | import orjson
|
5 | 5 |
|
6 |
| -from sentry.api.endpoints.group_ai_summary import GroupAiSummaryEndpoint, SummarizeIssueResponse |
| 6 | +from sentry.api.endpoints.group_ai_summary import ( |
| 7 | + GroupAiSummaryEndpoint, |
| 8 | + SummarizeIssueResponse, |
| 9 | + SummarizeIssueScores, |
| 10 | +) |
7 | 11 | from sentry.api.serializers.rest_framework.base import convert_dict_key_case, snake_to_camel_case
|
8 | 12 | from sentry.testutils.cases import APITestCase, SnubaTestCase
|
9 | 13 | from sentry.testutils.helpers.features import apply_feature_flag_on_cls
|
@@ -37,6 +41,10 @@ def test_ai_summary_get_endpoint_with_existing_summary(self, mock_call_seer):
|
37 | 41 | "whats_wrong": "Existing whats wrong",
|
38 | 42 | "trace": "Existing trace",
|
39 | 43 | "possible_cause": "Existing possible cause",
|
| 44 | + "scores": { |
| 45 | + "possible_cause_confidence": 0.9, |
| 46 | + "possible_cause_novelty": 0.8, |
| 47 | + }, |
40 | 48 | }
|
41 | 49 |
|
42 | 50 | # Set the cache with the existing summary
|
@@ -82,6 +90,10 @@ def test_ai_summary_get_endpoint_without_existing_summary(
|
82 | 90 | whats_wrong="Test whats wrong",
|
83 | 91 | trace="Test trace",
|
84 | 92 | possible_cause="Test possible cause",
|
| 93 | + scores=SummarizeIssueScores( |
| 94 | + possible_cause_confidence=0.0, |
| 95 | + possible_cause_novelty=0.0, |
| 96 | + ), |
85 | 97 | )
|
86 | 98 | mock_call_seer.return_value = mock_summary
|
87 | 99 | mock_get_connected_issues.return_value = [self.group, self.group]
|
@@ -126,6 +138,10 @@ def test_ai_summary_call_seer(self, mock_get_event, mock_post):
|
126 | 138 | "trace": "Test trace",
|
127 | 139 | "possible_cause": "Test possible cause",
|
128 | 140 | "headline": "Test headline",
|
| 141 | + "scores": { |
| 142 | + "possible_cause_confidence": 0.9, |
| 143 | + "possible_cause_novelty": 0.8, |
| 144 | + }, |
129 | 145 | }
|
130 | 146 | mock_post.return_value = mock_response
|
131 | 147 |
|
@@ -230,6 +246,10 @@ def test_call_seer_payload(self):
|
230 | 246 | "trace": "Test trace",
|
231 | 247 | "possible_cause": "Test possible cause",
|
232 | 248 | "headline": "Test headline",
|
| 249 | + "scores": { |
| 250 | + "possible_cause_confidence": 0.9, |
| 251 | + "possible_cause_novelty": 0.8, |
| 252 | + }, |
233 | 253 | }
|
234 | 254 |
|
235 | 255 | self.client.post(self.url, format="json")
|
|
0 commit comments