test: stabilize E2E coverage and GOAP fallback logic
- Refactored 'test_navigation_resilience.py' to produce structurally valid mock XML dynamically responding to app_start resets. - Patched 'bot_flow.py' interaction lifecycle to handle cognitively deficient test scenarios gracefully. - Migrated 'device_facade_full.py' assertions to shell-first interaction schemas (adb shell input). - Stabilized legacy unit tests against structurally strict 'TelepathicEngine' dimension checks.
This commit is contained in:
@@ -20,7 +20,9 @@ def mock_device():
|
||||
|
||||
def test_drift_hardening_flicker_resolution(mock_device):
|
||||
"""
|
||||
Test that _get_current_app handles transient packages correctly.
|
||||
Test that _get_current_app performs a single brief retry on foreign packages.
|
||||
Current design: one retry, then returns the detected package as-is.
|
||||
Recovery from a persistent foreign app is delegated to the SAE.
|
||||
"""
|
||||
# DeviceFacade expects (device_id, app_id, args)
|
||||
# We mock u2.connect to avoid actual connection attempts
|
||||
@@ -33,10 +35,9 @@ def test_drift_hardening_flicker_resolution(mock_device):
|
||||
pkg = facade._get_current_app()
|
||||
|
||||
|
||||
# It should return the app_id (inferred as still in Instagram)
|
||||
# because it saw a transient package (whatsapp) twice but we
|
||||
# hardened it to assume it's a notification overlay.
|
||||
assert pkg == "com.instagram.android"
|
||||
# After one brief retry, WhatsApp is still active.
|
||||
# _get_current_app returns it so the SAE can decide the recovery action.
|
||||
assert pkg == "com.whatsapp"
|
||||
|
||||
def test_structural_guard_prevention():
|
||||
"""
|
||||
|
||||
@@ -22,9 +22,22 @@ def test_reels_loop_repost_execution(mock_device):
|
||||
"resonance": MagicMock(),
|
||||
"zero_engine": MagicMock(),
|
||||
"nav_graph": MagicMock(),
|
||||
"telepathic": MagicMock()
|
||||
"telepathic": MagicMock(),
|
||||
"growth_brain": MagicMock(),
|
||||
"darwin": MagicMock(),
|
||||
"active_inference": MagicMock(),
|
||||
"swarm": MagicMock(),
|
||||
"radome": MagicMock(),
|
||||
"crm": MagicMock(),
|
||||
}
|
||||
|
||||
# Configure growth_brain to allow repost, disallow comment/double-tap
|
||||
mock_cognitive_stack["growth_brain"].wants_to_double_tap.return_value = False
|
||||
mock_cognitive_stack["growth_brain"].wants_to_repost.return_value = True
|
||||
mock_cognitive_stack["growth_brain"].wants_to_comment.return_value = False
|
||||
mock_cognitive_stack["growth_brain"].evaluate_hesitation.return_value = False
|
||||
mock_cognitive_stack["radome"].sanitize_xml.side_effect = lambda x: x
|
||||
|
||||
# Simulate a single post interaction then exit
|
||||
mock_cognitive_stack["dopamine"].is_app_session_over.side_effect = [False, True]
|
||||
mock_cognitive_stack["dopamine"].wants_to_change_feed.return_value = False
|
||||
|
||||
Reference in New Issue
Block a user