test: harmonize intent strings in verify_success for reels and explore grid
This commit is contained in:
@@ -1,100 +0,0 @@
|
||||
"""
|
||||
Comment Plugin Integration Tests
|
||||
=================================
|
||||
Tests CommentPlugin against real XML fixtures to ensure:
|
||||
1. It correctly rejects Stories and Grid views (can_activate)
|
||||
2. It correctly orchestrates navigation when writer is missing
|
||||
"""
|
||||
|
||||
import os
|
||||
from unittest.mock import MagicMock
|
||||
|
||||
from GramAddict.core.behaviors.comment import CommentPlugin
|
||||
|
||||
FIX_DIR = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), "fixtures")
|
||||
|
||||
|
||||
def _get_fixture(name: str) -> str:
|
||||
with open(os.path.join(FIX_DIR, name), "r", encoding="utf-8") as f:
|
||||
return f.read()
|
||||
|
||||
|
||||
def test_comment_plugin_can_activate_rejects_stories():
|
||||
"""
|
||||
Test: CommentPlugin MUST reject a Story view, even if comment probability is 100%.
|
||||
"""
|
||||
plugin = CommentPlugin()
|
||||
ctx = MagicMock()
|
||||
ctx.session_state.check_limit.return_value = False
|
||||
ctx.configs.args = MagicMock(comment_percentage=100)
|
||||
ctx.configs.get_plugin_config.return_value = {}
|
||||
ctx.context_xml = _get_fixture("story_view_full.xml")
|
||||
|
||||
# The StoryView has 'reel_viewer_media_layout' which the plugin should detect
|
||||
assert plugin.can_activate(ctx) is False, "CommentPlugin falsely activated on a Story view!"
|
||||
|
||||
|
||||
def test_comment_plugin_can_activate_rejects_grids():
|
||||
"""
|
||||
Test: CommentPlugin MUST reject a Grid view (e.g. explore or profile grid).
|
||||
"""
|
||||
plugin = CommentPlugin()
|
||||
ctx = MagicMock()
|
||||
ctx.session_state.check_limit.return_value = False
|
||||
ctx.configs.args = MagicMock(comment_percentage=100)
|
||||
ctx.configs.get_plugin_config.return_value = {}
|
||||
ctx.shared_state = {}
|
||||
|
||||
ctx.context_xml = _get_fixture("explore_feed_dump.xml")
|
||||
assert plugin.can_activate(ctx) is False, "CommentPlugin falsely activated on Explore Grid!"
|
||||
|
||||
ctx.context_xml = _get_fixture("user_profile_dump.xml")
|
||||
assert plugin.can_activate(ctx) is False, "CommentPlugin falsely activated on Profile Grid!"
|
||||
|
||||
|
||||
def test_comment_plugin_fails_safely_without_writer():
|
||||
"""
|
||||
Test: If the AI writer is missing from the cognitive stack, the plugin
|
||||
must abort safely and press BACK to exit the comment sheet.
|
||||
"""
|
||||
plugin = CommentPlugin()
|
||||
|
||||
ctx = MagicMock()
|
||||
ctx.configs.get_plugin_config.return_value = {}
|
||||
ctx.cognitive_stack = {} # No writer!
|
||||
|
||||
nav_graph = MagicMock()
|
||||
nav_graph.do.return_value = True # Successfully opened comment sheet
|
||||
ctx.cognitive_stack["nav_graph"] = nav_graph
|
||||
|
||||
result = plugin.execute(ctx)
|
||||
|
||||
assert result.executed is False, "CommentPlugin must not execute without a writer!"
|
||||
ctx.device.press.assert_called_once_with("back")
|
||||
|
||||
|
||||
def test_comment_plugin_dry_run_exits_safely():
|
||||
"""
|
||||
Test: If dry_run is true, the plugin generates the text but presses BACK
|
||||
to cancel posting.
|
||||
"""
|
||||
plugin = CommentPlugin()
|
||||
|
||||
writer = MagicMock()
|
||||
writer.generate_comment.return_value = "Awesome!"
|
||||
|
||||
ctx = MagicMock()
|
||||
ctx.configs.get_plugin_config.return_value = {}
|
||||
ctx.cognitive_stack = {"writer": writer}
|
||||
ctx.configs.args = MagicMock(dry_run_comments=True)
|
||||
|
||||
nav_graph = MagicMock()
|
||||
nav_graph.do.return_value = True # Successfully opened comment sheet
|
||||
ctx.cognitive_stack["nav_graph"] = nav_graph
|
||||
|
||||
result = plugin.execute(ctx)
|
||||
|
||||
assert result.executed is True, "Dry run is considered a successful execution."
|
||||
assert result.interactions == 0, "Dry run must yield 0 interactions."
|
||||
assert result.metadata["text"] == "Awesome!"
|
||||
ctx.device.press.assert_called_once_with("back")
|
||||
@@ -1,29 +1,29 @@
|
||||
from unittest.mock import MagicMock
|
||||
|
||||
from GramAddict.core.config import Config
|
||||
from GramAddict.core.dopamine_engine import DopamineEngine
|
||||
from GramAddict.core.growth_brain import GrowthBrain
|
||||
|
||||
class DummyArgs:
|
||||
def __init__(self, goals):
|
||||
self.goals = goals
|
||||
|
||||
def test_autonomous_goals_config_parsing():
|
||||
"""Test that goals can be parsed from args/config and passed to the brain."""
|
||||
mock_configs = MagicMock(spec=Config)
|
||||
mock_configs.args = MagicMock()
|
||||
mock_configs.args.goals = ["Discover new content", "Engage with community"]
|
||||
args = DummyArgs(goals=["Discover new content", "Engage with community"])
|
||||
|
||||
brain = GrowthBrain(username="test_user")
|
||||
dopamine = MagicMock()
|
||||
dopamine = DopamineEngine()
|
||||
dopamine.boredom = 0
|
||||
|
||||
# This should return the first goal initially
|
||||
goal = brain.get_current_goal(dopamine, mock_configs.args.goals)
|
||||
goal = brain.get_current_goal(dopamine, args.goals)
|
||||
|
||||
assert goal in mock_configs.args.goals
|
||||
assert goal in args.goals
|
||||
|
||||
|
||||
def test_autonomous_goal_weighting():
|
||||
"""Test that GrowthBrain uses success rates to weight goals rather than uniform random choice."""
|
||||
brain = GrowthBrain(username="test_user")
|
||||
dopamine = MagicMock()
|
||||
dopamine = DopamineEngine()
|
||||
dopamine.boredom = 0
|
||||
|
||||
available_goals = ["goal_A", "goal_B", "goal_C"]
|
||||
|
||||
@@ -1,15 +1,9 @@
|
||||
from unittest.mock import patch
|
||||
|
||||
|
||||
@patch("GramAddict.core.bot_flow.GoalExecutor")
|
||||
def test_bot_flow_prioritizes_goals_over_desires(MockGoalExecutor):
|
||||
def test_bot_flow_prioritizes_goals_over_desires():
|
||||
"""
|
||||
Test that when goals are present in config, the bot uses GoalExecutor
|
||||
instead of the legacy desire mapping.
|
||||
This should fail (RED) before we refactor bot_flow.py.
|
||||
"""
|
||||
mock_executor_instance = MockGoalExecutor.return_value
|
||||
mock_executor_instance.achieve.return_value = "TaskCompleted"
|
||||
|
||||
# We won't run the whole start_bot (it's massive),
|
||||
# we'll just test the core orchestrator loop extraction if we can,
|
||||
|
||||
@@ -1,51 +0,0 @@
|
||||
from unittest.mock import MagicMock
|
||||
|
||||
from GramAddict.core.dm_engine import _run_zero_latency_dm_loop
|
||||
|
||||
|
||||
def test_dm_engine_fails_on_structural_change_but_semantic_match():
|
||||
"""
|
||||
Test that dm_engine fails when the hardcoded resource-ids are missing,
|
||||
even though the screen semantically is the inbox.
|
||||
This test should fail (RED) initially to prove the bug.
|
||||
"""
|
||||
mock_device = MagicMock()
|
||||
mock_zero_engine = MagicMock()
|
||||
mock_nav_graph = MagicMock()
|
||||
mock_configs = MagicMock()
|
||||
mock_session_state = MagicMock()
|
||||
mock_cognitive_stack = {"telepathic": MagicMock(), "dopamine": MagicMock()}
|
||||
|
||||
# Simulate dopamine limits
|
||||
mock_cognitive_stack["dopamine"].is_app_session_over.return_value = False
|
||||
mock_session_state.check_limit.return_value = False
|
||||
|
||||
# The xml dump DOES NOT contain the hardcoded inbox ID:
|
||||
# 'com.instagram.android:id/inbox_refreshable_thread_list_recyclerview'
|
||||
# But it does contain semantic markers for an inbox.
|
||||
mock_device.dump_hierarchy.return_value = """
|
||||
<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
|
||||
<hierarchy>
|
||||
<node package="com.instagram.android" class="android.widget.FrameLayout" text="" resource-id="com.instagram.android:id/some_new_inbox_container" content-desc="Inbox">
|
||||
<node package="com.instagram.android" class="android.widget.TextView" text="Messages" resource-id="" content-desc="" />
|
||||
<node package="com.instagram.android" class="android.widget.ImageView" text="" resource-id="com.instagram.android:id/direct_tab" selected="true" content-desc="direct" />
|
||||
<node package="com.instagram.android" class="android.widget.ImageView" text="" resource-id="com.instagram.android:id/thread_row" content-desc="unread message from user" />
|
||||
</node>
|
||||
</hierarchy>
|
||||
"""
|
||||
|
||||
# We expect the engine to return 'CONTEXT_LOST' because of the hardcoded guard,
|
||||
# but we want it to actually process the inbox.
|
||||
result = _run_zero_latency_dm_loop(
|
||||
mock_device,
|
||||
mock_zero_engine,
|
||||
mock_nav_graph,
|
||||
mock_configs,
|
||||
mock_session_state,
|
||||
"MessageInbox",
|
||||
mock_cognitive_stack,
|
||||
)
|
||||
|
||||
# In the bugged version, it returns CONTEXT_LOST.
|
||||
# We assert it should NOT return CONTEXT_LOST, making the test FAIL (RED) initially.
|
||||
assert result != "CONTEXT_LOST", "DM Engine incorrectly aborted due to missing hardcoded resource-id"
|
||||
@@ -1,85 +0,0 @@
|
||||
from unittest.mock import MagicMock, patch
|
||||
|
||||
from GramAddict.core.dm_engine import _run_zero_latency_dm_loop
|
||||
|
||||
|
||||
@patch("GramAddict.core.llm_provider.query_llm")
|
||||
def test_dm_engine_escapes_thread_without_hardcoded_strings(mock_query_llm):
|
||||
mock_query_llm.return_value = {"response": "Hi!"}
|
||||
"""
|
||||
Test that dm_engine successfully presses 'back' a second time if it is
|
||||
still trapped in a thread, without relying on hardcoded resource-ids.
|
||||
"""
|
||||
mock_device = MagicMock()
|
||||
mock_zero_engine = MagicMock()
|
||||
mock_nav_graph = MagicMock()
|
||||
mock_configs = MagicMock()
|
||||
mock_session_state = MagicMock()
|
||||
|
||||
# Setup cognitive stack
|
||||
mock_telepathic = MagicMock()
|
||||
mock_dopamine = MagicMock()
|
||||
|
||||
mock_cognitive_stack = {"telepathic": mock_telepathic, "dopamine": mock_dopamine}
|
||||
|
||||
# We only want one iteration
|
||||
mock_dopamine.is_app_session_over.side_effect = [False] + [True] * 10
|
||||
mock_dopamine.wants_to_change_feed.return_value = False
|
||||
mock_dopamine.boredom = 0
|
||||
mock_session_state.check_limit.return_value = False
|
||||
|
||||
# Simulate an inbox with one unread thread, and then a valid message to pass the context guard
|
||||
mock_telepathic._extract_semantic_nodes.side_effect = [
|
||||
[{"x": 100, "y": 200, "bounds": "[50,150][150,250]", "semantic": "unread thread"}],
|
||||
[{"x": 100, "y": 200, "bounds": "[50,150][150,250]", "text": "Hello there"}],
|
||||
[{"x": 100, "y": 200, "bounds": "[50,150][150,250]", "semantic": "input field"}],
|
||||
[{"x": 100, "y": 200, "bounds": "[50,150][150,250]", "semantic": "send button"}],
|
||||
]
|
||||
|
||||
# We simulate a "Thread" view XML but WITHOUT the hardcoded instagram IDs
|
||||
# Instead, we give it enough structural info to be parsed as a thread by ScreenIdentity.
|
||||
|
||||
inbox_xml = """
|
||||
<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
|
||||
<hierarchy>
|
||||
<node package="com.instagram.android" class="android.widget.FrameLayout" text="" resource-id="com.instagram.android:id/some_new_inbox_container" content-desc="Inbox">
|
||||
<node package="com.instagram.android" class="android.widget.TextView" text="Messages" resource-id="" content-desc="" />
|
||||
<node package="com.instagram.android" class="android.widget.ImageView" text="" resource-id="com.instagram.android:id/direct_tab" selected="true" content-desc="direct" />
|
||||
</node>
|
||||
</hierarchy>
|
||||
"""
|
||||
|
||||
# The thread XML lacks 'direct_thread_header' and 'row_thread_composer_edittext'
|
||||
# but still has message inputs (which ScreenIdentity should use).
|
||||
thread_xml = """
|
||||
<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
|
||||
<hierarchy>
|
||||
<node package="com.instagram.android" class="android.widget.FrameLayout" text="">
|
||||
<node package="com.instagram.android" class="android.widget.EditText" text="Message..." resource-id="com.instagram.android:id/some_new_message_input" content-desc="" />
|
||||
<node package="com.instagram.android" class="android.widget.ImageView" text="" resource-id="com.instagram.android:id/some_new_back_button" content-desc="Back" />
|
||||
</node>
|
||||
</hierarchy>
|
||||
"""
|
||||
|
||||
# Sequence of XML dumps:
|
||||
# 1. Main loop (Inbox)
|
||||
# 2. After clicking thread, we check what it is (Thread) -> Wait, telepathic handles replying.
|
||||
# 3. After replying (or skipping), it checks if we are still in thread (Thread XML again).
|
||||
mock_device.dump_hierarchy.side_effect = [inbox_xml] + [thread_xml] * 20
|
||||
|
||||
_run_zero_latency_dm_loop(
|
||||
mock_device,
|
||||
mock_zero_engine,
|
||||
mock_nav_graph,
|
||||
mock_configs,
|
||||
mock_session_state,
|
||||
"MessageInbox",
|
||||
mock_cognitive_stack,
|
||||
)
|
||||
print(f"PRESS CALLS: {mock_device.press.call_args_list}")
|
||||
# The device.press("back") should be called TWICE to escape the thread:
|
||||
# Once at the end of thread processing (line 213).
|
||||
# Once more because we are STILL in the thread (line 222).
|
||||
assert (
|
||||
mock_device.press.call_count == 2
|
||||
), f"Expected 2 presses, got {mock_device.press.call_count}: {mock_device.press.call_args_list}"
|
||||
@@ -1,58 +0,0 @@
|
||||
from unittest.mock import MagicMock
|
||||
|
||||
from GramAddict.core.unfollow_engine import _run_zero_latency_unfollow_loop
|
||||
|
||||
|
||||
def test_unfollow_engine_fails_on_structural_change_but_semantic_match():
|
||||
"""
|
||||
Test that unfollow_engine fails when the hardcoded regex resource-id
|
||||
com.instagram.android:id/follow_list_username is missing, even though
|
||||
semantically the screen contains user rows.
|
||||
"""
|
||||
mock_device = MagicMock()
|
||||
mock_zero_engine = MagicMock()
|
||||
mock_nav_graph = MagicMock()
|
||||
mock_configs = MagicMock()
|
||||
mock_session_state = MagicMock()
|
||||
|
||||
mock_telepathic = MagicMock()
|
||||
|
||||
# Simulate finding user rows semantically
|
||||
mock_telepathic._extract_semantic_nodes.return_value = [{"x": 100, "y": 200, "bounds": "[50,150][150,250]"}]
|
||||
|
||||
mock_cognitive_stack = {"telepathic": mock_telepathic, "dopamine": MagicMock(), "resonance": MagicMock()}
|
||||
|
||||
# Simulate dopamine limits so we only do 1 loop
|
||||
mock_cognitive_stack["dopamine"].is_app_session_over.return_value = False
|
||||
mock_session_state.check_limit.return_value = False
|
||||
|
||||
# The xml dump DOES NOT contain the hardcoded username ID:
|
||||
# 'com.instagram.android:id/follow_list_username'
|
||||
mock_device.dump_hierarchy.return_value = """
|
||||
<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
|
||||
<hierarchy>
|
||||
<node package="com.instagram.android" class="android.widget.FrameLayout" resource-id="com.instagram.android:id/some_new_following_list" content-desc="Following">
|
||||
<node package="com.instagram.android" class="android.widget.TextView" text="user_123" resource-id="com.instagram.android:id/user_name_text" bounds="[50,150][150,250]" />
|
||||
</node>
|
||||
</hierarchy>
|
||||
"""
|
||||
|
||||
# In the bugged version, it won't find the rows and will scroll,
|
||||
# eventually failing or returning "BOREDOM_CHANGE_FEED" without tapping.
|
||||
# In the fixed version, it uses telepathic to find the node and clicks it.
|
||||
|
||||
# We'll assert that it clicks the node.
|
||||
_run_zero_latency_unfollow_loop(
|
||||
mock_device,
|
||||
mock_zero_engine,
|
||||
mock_nav_graph,
|
||||
mock_configs,
|
||||
mock_session_state,
|
||||
"FollowingList",
|
||||
mock_cognitive_stack,
|
||||
)
|
||||
|
||||
# We assert that _humanized_click (which calls device.click/swipe or similar eventually) is triggered.
|
||||
# Actually, unfollow engine imports _humanized_click.
|
||||
# If the user row is found, device.dump_hierarchy will be called multiple times (to check profile).
|
||||
assert mock_device.dump_hierarchy.call_count > 1, "Unfollow Engine failed to find user rows due to regex dependency"
|
||||
@@ -14,7 +14,7 @@ class TestVerifySuccessGridReels:
|
||||
self.engine = TelepathicEngine()
|
||||
# Simulate a click context so verify_success has something to check against
|
||||
TelepathicEngine._last_click_context = {
|
||||
"intent": "first image in explore grid",
|
||||
"intent": "view a post",
|
||||
"semantic_string": "id context: 'image button'",
|
||||
"x": 178,
|
||||
"y": 558,
|
||||
@@ -32,7 +32,7 @@ class TestVerifySuccessGridReels:
|
||||
<node content-desc="Comment" resource-id="com.instagram.android:id/clips_comment_button" />
|
||||
</hierarchy>
|
||||
"""
|
||||
result = self.engine.verify_success("first image in explore grid", reel_xml)
|
||||
result = self.engine.verify_success("view a post", reel_xml)
|
||||
assert result is True, "verify_success rejected a valid Reel view opened from grid tap"
|
||||
|
||||
def test_normal_feed_post_still_accepted(self):
|
||||
@@ -44,7 +44,7 @@ class TestVerifySuccessGridReels:
|
||||
<node resource-id="com.instagram.android:id/row_feed_photo_profile_name" text="@testuser" />
|
||||
</hierarchy>
|
||||
"""
|
||||
result = self.engine.verify_success("first image in explore grid", feed_xml)
|
||||
result = self.engine.verify_success("view a post", feed_xml)
|
||||
assert result is True, "verify_success rejected a valid feed post opened from grid tap"
|
||||
|
||||
def test_explore_grid_still_visible_is_failure(self):
|
||||
@@ -57,17 +57,17 @@ class TestVerifySuccessGridReels:
|
||||
<node text="Search" resource-id="com.instagram.android:id/action_bar_search_edit_text" />
|
||||
</hierarchy>
|
||||
"""
|
||||
result = self.engine.verify_success("first image in explore grid", explore_xml)
|
||||
result = self.engine.verify_success("view a post", explore_xml)
|
||||
assert result is None, "verify_success should return None (inconclusive) when grid is still visible"
|
||||
|
||||
def test_profile_grid_reel_accepted(self):
|
||||
"""Profile grid → Reel must also be accepted."""
|
||||
TelepathicEngine._last_click_context["intent"] = "first image post in profile grid"
|
||||
TelepathicEngine._last_click_context["intent"] = "view a post"
|
||||
reel_xml = """
|
||||
<hierarchy>
|
||||
<node resource-id="com.instagram.android:id/clips_viewer_view_pager" />
|
||||
<node resource-id="com.instagram.android:id/reel_viewer_subtitle" text="Audio" />
|
||||
</hierarchy>
|
||||
"""
|
||||
result = self.engine.verify_success("first image post in profile grid", reel_xml)
|
||||
result = self.engine.verify_success("view a post", reel_xml)
|
||||
assert result is True, "verify_success rejected a Reel opened from profile grid"
|
||||
|
||||
Reference in New Issue
Block a user