fix: repair linked panel email during sync

This commit is contained in:
3252a8
2026-05-23 22:27:51 +03:00
parent 60d8c297f9
commit 31eb5c06ad
4 changed files with 291 additions and 9 deletions
+43
View File
@@ -9,6 +9,7 @@ from bot.app.web.webapp import account as account_routes
from bot.app.web.webapp.auth import (
_link_telegram_to_user,
_sync_merged_panel_identity_for_user,
_sync_panel_identity_for_user,
)
@@ -30,6 +31,48 @@ class AccountLinkingPanelTests(unittest.IsolatedAsyncioTestCase):
async def __aexit__(self, exc_type, exc, tb):
return None
async def test_panel_identity_sync_reports_failed_update_response(self):
user = SimpleNamespace(
user_id=42,
panel_user_uuid="panel-42",
email="linked@example.com",
telegram_id=42,
username="alice",
first_name=None,
last_name=None,
)
panel_service = SimpleNamespace(update_user_details_on_panel=AsyncMock(return_value=None))
request = SimpleNamespace(
app={"subscription_service": SimpleNamespace(panel_service=panel_service)}
)
result = await _sync_panel_identity_for_user(request, user)
self.assertFalse(result)
panel_service.update_user_details_on_panel.assert_awaited_once()
async def test_panel_identity_sync_reports_successful_update_response(self):
user = SimpleNamespace(
user_id=42,
panel_user_uuid="panel-42",
email="linked@example.com",
telegram_id=42,
username="alice",
first_name=None,
last_name=None,
)
panel_service = SimpleNamespace(
update_user_details_on_panel=AsyncMock(return_value={"uuid": "panel-42"})
)
request = SimpleNamespace(
app={"subscription_service": SimpleNamespace(panel_service=panel_service)}
)
result = await _sync_panel_identity_for_user(request, user)
self.assertTrue(result)
panel_service.update_user_details_on_panel.assert_awaited_once()
async def test_merged_panel_identity_deletes_source_before_updating_target(self):
calls = []