codeant-ai-for-open-source[bot] commented on code in PR #41195:
URL: https://github.com/apache/superset/pull/41195#discussion_r3453271217
##########
tests/unit_tests/mcp_service/dashboard/tool/test_dashboard_tools.py:
##########
@@ -1012,6 +1021,88 @@ async def
test_list_dashboards_omits_requested_user_directory_fields(
assert field not in data["columns_available"]
+@patch("superset.mcp_service.mcp_core.ModelGetInfoCore._find_object")
[email protected]
+async def test_get_dashboard_info_includes_embedded_uuid(mock_find_object,
mcp_server):
+ """Test that get_dashboard_info returns embedded_uuid when set."""
+ from superset.models.embedded_dashboard import EmbeddedDashboard
+
+ dashboard = Mock()
+ dashboard.id = 1
+ dashboard.dashboard_title = "Embedded Dashboard"
+ dashboard.slug = ""
+ dashboard.description = None
+ dashboard.css = None
+ dashboard.certified_by = None
+ dashboard.certification_details = None
+ dashboard.json_metadata = "{}"
+ dashboard.published = True
+ dashboard.is_managed_externally = False
+ dashboard.external_url = None
+ dashboard.created_on = None
+ dashboard.changed_on = None
+ dashboard.created_on_humanized = None
+ dashboard.changed_on_humanized = None
+ dashboard.uuid = "94b826a5-dbd5-473d-ab58-1af676ee07e4"
+ dashboard.url = "/dashboard/1"
+ dashboard.slices = []
+ dashboard.owners = []
+ dashboard.tags = []
+ dashboard.roles = []
+ dashboard.embedded = []
+
+ embedded = Mock(spec=EmbeddedDashboard)
+ embedded.uuid = "37c56048-d3f1-452d-b3ae-0879802dcb1f"
+ dashboard.embedded = [embedded]
+
+ mock_find_object.return_value = dashboard
+ async with Client(mcp_server) as client:
+ result = await client.call_tool(
+ "get_dashboard_info", {"request": {"identifier": 1}}
+ )
+ assert result.data["uuid"] == "94b826a5-dbd5-473d-ab58-1af676ee07e4"
+ assert result.data["embedded_uuid"] ==
"37c56048-d3f1-452d-b3ae-0879802dcb1f"
+
+
+@patch("superset.mcp_service.mcp_core.ModelGetInfoCore._find_object")
[email protected]
+async def test_get_dashboard_info_embedded_uuid_none_when_not_embedded(
+ mock_find_object, mcp_server
+):
Review Comment:
**Suggestion:** Add explicit type hints for both fixture parameters and the
return type on this newly added async test function so the new code is fully
typed. [custom_rule]
**Severity Level:** Minor ⚠️
<details>
<summary><b>Why it matters? 🤔 </b></summary>
This newly added async test function also omits type hints for both
parameters and the return value. Since the surrounding code is being changed
and new Python code should be fully typed, this is a genuine violation.
</details>
[](https://app.codeant.ai/fix-in-ide?tool=cursor&prompt_id=bf5874cd71b64acca4442453af3cb9a0&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
[](https://app.codeant.ai/fix-in-ide?tool=vscode-claude&prompt_id=bf5874cd71b64acca4442453af3cb9a0&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
*(Use Cmd/Ctrl + Click for best experience)*
<details>
<summary><b>Prompt for AI Agent 🤖 </b></summary>
```mdx
This is a comment left during a code review.
**Path:** tests/unit_tests/mcp_service/dashboard/tool/test_dashboard_tools.py
**Line:** 1067:1071
**Comment:**
*Custom Rule: Add explicit type hints for both fixture parameters and
the return type on this newly added async test function so the new code is
fully typed.
Validate the correctness of the flagged issue. If correct, How can I resolve
this? If you propose a fix, implement it and please make it concise.
Once fix is implemented, also check other comments on the same PR, and ask
user if the user wants to fix the rest of the comments as well. if said yes,
then fetch all the comments validate the correctness and implement a minimal fix
```
</details>
<a
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41195&comment_hash=5fdd430742243624a4a9b34c653674fe08d6f92f4e75dea974fde3c42f6cb828&reaction=like'>👍</a>
| <a
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41195&comment_hash=5fdd430742243624a4a9b34c653674fe08d6f92f4e75dea974fde3c42f6cb828&reaction=dislike'>👎</a>
##########
tests/unit_tests/mcp_service/dashboard/tool/test_dashboard_tools.py:
##########
@@ -1012,6 +1021,88 @@ async def
test_list_dashboards_omits_requested_user_directory_fields(
assert field not in data["columns_available"]
+@patch("superset.mcp_service.mcp_core.ModelGetInfoCore._find_object")
[email protected]
+async def test_get_dashboard_info_includes_embedded_uuid(mock_find_object,
mcp_server):
Review Comment:
**Suggestion:** Add explicit type hints for all parameters and the return
type on this newly added async test function to comply with the fully typed new
code requirement. [custom_rule]
**Severity Level:** Minor ⚠️
<details>
<summary><b>Why it matters? 🤔 </b></summary>
This is a newly added Python async test function, and it has no parameter
annotations or return type annotation. The custom rule requires new Python code
to be fully typed, so the omission is a real violation.
</details>
[](https://app.codeant.ai/fix-in-ide?tool=cursor&prompt_id=26c5d04a5cb647eeaf1b280f958c8a72&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
[](https://app.codeant.ai/fix-in-ide?tool=vscode-claude&prompt_id=26c5d04a5cb647eeaf1b280f958c8a72&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
*(Use Cmd/Ctrl + Click for best experience)*
<details>
<summary><b>Prompt for AI Agent 🤖 </b></summary>
```mdx
This is a comment left during a code review.
**Path:** tests/unit_tests/mcp_service/dashboard/tool/test_dashboard_tools.py
**Line:** 1024:1026
**Comment:**
*Custom Rule: Add explicit type hints for all parameters and the return
type on this newly added async test function to comply with the fully typed new
code requirement.
Validate the correctness of the flagged issue. If correct, How can I resolve
this? If you propose a fix, implement it and please make it concise.
Once fix is implemented, also check other comments on the same PR, and ask
user if the user wants to fix the rest of the comments as well. if said yes,
then fetch all the comments validate the correctness and implement a minimal fix
```
</details>
<a
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41195&comment_hash=c0f902ec460b174af6b1148bda566ff8fb556ff12563085128fbef70b6fcdb5e&reaction=like'>👍</a>
| <a
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41195&comment_hash=c0f902ec460b174af6b1148bda566ff8fb556ff12563085128fbef70b6fcdb5e&reaction=dislike'>👎</a>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]