mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-08-07 01:48:53 +00:00
fix(weixin): recover refreshed state after session expiry (#5196)
This commit is contained in:
parent
54650332fb
commit
971b977a84
@ -230,9 +230,30 @@ class WeixinChannel(BaseChannel):
|
|||||||
self.logger.error("Failed to load Weixin account state", exc_info=True)
|
self.logger.error("Failed to load Weixin account state", exc_info=True)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def _save_state(self) -> None:
|
def _save_state(self, *, force: bool = False) -> None:
|
||||||
state_file = self._get_state_dir() / "account.json"
|
state_file = self._get_state_dir() / "account.json"
|
||||||
with suppress(Exception):
|
with suppress(Exception):
|
||||||
|
if not force and state_file.exists():
|
||||||
|
persisted: object = None
|
||||||
|
try:
|
||||||
|
persisted = json.loads(state_file.read_text())
|
||||||
|
except Exception:
|
||||||
|
persisted = None
|
||||||
|
persisted_token = ""
|
||||||
|
if isinstance(persisted, dict):
|
||||||
|
persisted_mapping = cast(dict[str, object], persisted)
|
||||||
|
persisted_token = str(persisted_mapping.get("token", "") or "")
|
||||||
|
configured_token_is_authoritative: bool = bool(self.config.token) and (
|
||||||
|
self._token == self.config.token
|
||||||
|
)
|
||||||
|
if (
|
||||||
|
persisted_token
|
||||||
|
and persisted_token != self._token
|
||||||
|
and not configured_token_is_authoritative
|
||||||
|
):
|
||||||
|
# A concurrent QR login may have committed a newer token.
|
||||||
|
# Never let an older runtime snapshot overwrite it.
|
||||||
|
return
|
||||||
data = {
|
data = {
|
||||||
"token": self._token,
|
"token": self._token,
|
||||||
"get_updates_buf": self._get_updates_buf,
|
"get_updates_buf": self._get_updates_buf,
|
||||||
@ -489,7 +510,7 @@ class WeixinChannel(BaseChannel):
|
|||||||
self._token = token
|
self._token = token
|
||||||
if base_url:
|
if base_url:
|
||||||
self.config.base_url = base_url
|
self.config.base_url = base_url
|
||||||
self._save_state()
|
self._save_state(force=True)
|
||||||
|
|
||||||
async def connect_close_client(self) -> None:
|
async def connect_close_client(self) -> None:
|
||||||
self._running = False
|
self._running = False
|
||||||
@ -613,6 +634,8 @@ class WeixinChannel(BaseChannel):
|
|||||||
remaining = self._session_pause_remaining_s()
|
remaining = self._session_pause_remaining_s()
|
||||||
if remaining > 0:
|
if remaining > 0:
|
||||||
await asyncio.sleep(remaining)
|
await asyncio.sleep(remaining)
|
||||||
|
if not self.config.token:
|
||||||
|
self._load_state()
|
||||||
return
|
return
|
||||||
|
|
||||||
body: dict[str, Any] = {
|
body: dict[str, Any] = {
|
||||||
|
|||||||
@ -98,6 +98,80 @@ def test_save_and_load_state_persists_context_tokens(tmp_path) -> None:
|
|||||||
assert restored._context_tokens == {"wx-user": "ctx-1"}
|
assert restored._context_tokens == {"wx-user": "ctx-1"}
|
||||||
|
|
||||||
|
|
||||||
|
def test_save_state_preserves_token_committed_by_another_instance(tmp_path) -> None:
|
||||||
|
channel = WeixinChannel(
|
||||||
|
WeixinConfig(enabled=True, allow_from=["*"], state_dir=str(tmp_path)),
|
||||||
|
MessageBus(),
|
||||||
|
)
|
||||||
|
channel._token = "old-token"
|
||||||
|
channel._save_state()
|
||||||
|
|
||||||
|
replacement = {
|
||||||
|
"token": "new-token",
|
||||||
|
"base_url": "https://new.example",
|
||||||
|
"get_updates_buf": "",
|
||||||
|
"context_tokens": {},
|
||||||
|
"typing_tickets": {},
|
||||||
|
}
|
||||||
|
(tmp_path / "account.json").write_text(json.dumps(replacement), encoding="utf-8")
|
||||||
|
|
||||||
|
channel._get_updates_buf = "stale-cursor"
|
||||||
|
channel._save_state()
|
||||||
|
|
||||||
|
assert json.loads((tmp_path / "account.json").read_text()) == replacement
|
||||||
|
|
||||||
|
|
||||||
|
def test_save_state_force_overwrites_replaced_token(tmp_path) -> None:
|
||||||
|
channel = WeixinChannel(
|
||||||
|
WeixinConfig(enabled=True, allow_from=["*"], state_dir=str(tmp_path)),
|
||||||
|
MessageBus(),
|
||||||
|
)
|
||||||
|
(tmp_path / "account.json").write_text(json.dumps({"token": "old-token"}), encoding="utf-8")
|
||||||
|
|
||||||
|
channel.connect_commit_account(token="new-token", base_url="https://new.example")
|
||||||
|
|
||||||
|
saved = json.loads((tmp_path / "account.json").read_text())
|
||||||
|
assert saved["token"] == "new-token"
|
||||||
|
assert saved["base_url"] == "https://new.example"
|
||||||
|
|
||||||
|
|
||||||
|
def test_save_state_persists_explicit_config_token_over_stale_state(tmp_path) -> None:
|
||||||
|
channel = WeixinChannel(
|
||||||
|
WeixinConfig(
|
||||||
|
enabled=True,
|
||||||
|
allow_from=["*"],
|
||||||
|
token="configured-token",
|
||||||
|
state_dir=str(tmp_path),
|
||||||
|
),
|
||||||
|
MessageBus(),
|
||||||
|
)
|
||||||
|
channel._token = "configured-token"
|
||||||
|
channel._get_updates_buf = "current-cursor"
|
||||||
|
(tmp_path / "account.json").write_text(
|
||||||
|
json.dumps({"token": "stale-token", "get_updates_buf": "stale-cursor"}),
|
||||||
|
encoding="utf-8",
|
||||||
|
)
|
||||||
|
|
||||||
|
channel._save_state()
|
||||||
|
|
||||||
|
saved = json.loads((tmp_path / "account.json").read_text())
|
||||||
|
assert saved["token"] == "configured-token"
|
||||||
|
assert saved["get_updates_buf"] == "current-cursor"
|
||||||
|
|
||||||
|
|
||||||
|
def test_save_state_with_empty_runtime_token_preserves_persisted_account(tmp_path) -> None:
|
||||||
|
channel = WeixinChannel(
|
||||||
|
WeixinConfig(enabled=True, allow_from=["*"], state_dir=str(tmp_path)),
|
||||||
|
MessageBus(),
|
||||||
|
)
|
||||||
|
persisted = {"token": "persisted-token", "get_updates_buf": "persisted-cursor"}
|
||||||
|
(tmp_path / "account.json").write_text(json.dumps(persisted), encoding="utf-8")
|
||||||
|
|
||||||
|
channel._save_state()
|
||||||
|
|
||||||
|
assert json.loads((tmp_path / "account.json").read_text()) == persisted
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
async def test_process_message_deduplicates_inbound_ids() -> None:
|
async def test_process_message_deduplicates_inbound_ids() -> None:
|
||||||
channel, bus = _make_channel()
|
channel, bus = _make_channel()
|
||||||
@ -462,6 +536,56 @@ async def test_poll_once_pauses_session_on_expired_errcode() -> None:
|
|||||||
assert channel._session_pause_remaining_s() > 0
|
assert channel._session_pause_remaining_s() > 0
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_poll_once_reloads_refreshed_state_after_session_pause(
|
||||||
|
tmp_path, monkeypatch: pytest.MonkeyPatch
|
||||||
|
) -> None:
|
||||||
|
channel = WeixinChannel(
|
||||||
|
WeixinConfig(enabled=True, allow_from=["*"], state_dir=str(tmp_path)),
|
||||||
|
MessageBus(),
|
||||||
|
)
|
||||||
|
channel._token = "old-token"
|
||||||
|
channel._save_state()
|
||||||
|
(tmp_path / "account.json").write_text(
|
||||||
|
json.dumps({"token": "new-token", "base_url": "https://new.example"}),
|
||||||
|
encoding="utf-8",
|
||||||
|
)
|
||||||
|
channel._session_pause_until = time.time() + 10
|
||||||
|
monkeypatch.setattr(weixin_mod.asyncio, "sleep", AsyncMock())
|
||||||
|
|
||||||
|
await channel._poll_once()
|
||||||
|
|
||||||
|
assert channel._token == "new-token"
|
||||||
|
assert channel.config.base_url == "https://new.example"
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_poll_once_keeps_explicit_token_after_session_pause(
|
||||||
|
tmp_path, monkeypatch: pytest.MonkeyPatch
|
||||||
|
) -> None:
|
||||||
|
channel = WeixinChannel(
|
||||||
|
WeixinConfig(
|
||||||
|
enabled=True,
|
||||||
|
allow_from=["*"],
|
||||||
|
token="configured-token",
|
||||||
|
state_dir=str(tmp_path),
|
||||||
|
),
|
||||||
|
MessageBus(),
|
||||||
|
)
|
||||||
|
channel._token = "configured-token"
|
||||||
|
(tmp_path / "account.json").write_text(
|
||||||
|
json.dumps({"token": "stale-token", "base_url": "https://stale.example"}),
|
||||||
|
encoding="utf-8",
|
||||||
|
)
|
||||||
|
channel._session_pause_until = time.time() + 10
|
||||||
|
monkeypatch.setattr(weixin_mod.asyncio, "sleep", AsyncMock())
|
||||||
|
|
||||||
|
await channel._poll_once()
|
||||||
|
|
||||||
|
assert channel._token == "configured-token"
|
||||||
|
assert channel.config.base_url == "https://ilinkai.weixin.qq.com"
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
async def test_qr_login_refreshes_expired_qr_and_then_succeeds(
|
async def test_qr_login_refreshes_expired_qr_and_then_succeeds(
|
||||||
no_qr_poll_delay,
|
no_qr_poll_delay,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user