Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#544 issue resolved , used chrometabs api - Unit Tests #775

Closed

Conversation

codebeaver-ai[bot]
Copy link
Contributor

@codebeaver-ai codebeaver-ai bot commented Feb 19, 2025

CodeBeaver PR Summary

I started working from #544 issue resolved , used chrometabs api

πŸ”„ 4 test files added.
πŸ› Found 2 bugs
πŸ› οΈ 4/5 tests passed

πŸ”„ Test Updates

I've added 4 tests. They all pass β˜‘οΈ
New Tests:

  • tests/test_views.py
  • tests/test_prompts.py
  • tests/test_browser.py
  • tests/test_context.py

No existing tests required updates.

πŸ› Bug Detection

Potential issues found in the following files:

  • browser_use/agent/message_manager/service.py

The error occurs during the execution of the action function from the production code (Registry.execute_action), not because the test is written incorrectly. In the failing call for the action β€œtest_action_with_browser”, the action function requires a β€œbrowser” parameter. Even though the test passes β€œbrowser=mock_browser” in one call, when testing the error case (i.e. calling the action without providing a browser), the production code directly calls the function without any pre-check. As a consequence, Python raises a TypeError for the missing required argument β€œbrowser”. The exception is then caught and re-raised as a RuntimeError with an unexpected message. This behavior indicates a bug in the production code: it does not properly detect or handle the missing β€œbrowser” argument in a user-friendly way (or with the expected error message), causing the test to fail.

  • browser_use/agent/service.py

The error occurs because when the registry’s execute_action function is called (with extra keyword arguments such as browser=mock_browser), the registered action function isn’t receiving the extra β€œbrowser” argument. In the test, the async function test_action_with_browser expects two arguments (param1 and browser), but it is invoked with only β€œparam1” due to a bug in the code under test (or its mocking/wrapping in the registry) that fails to merge or forward the extra arguments properly. This is not an issue with the way the test is written but indicates a flaw in the implementation of execute_action in the registry service.

πŸ› οΈ Test Results

4/5 tests passed ⚠️

tests/test_models.py

View error
tests/test_models.py:81: in <module>
    ChatGoogleGenerativeAI(model='gemini-2.0-flash-exp', api_key=api_key_gemini),
/usr/local/lib/python3.11/site-packages/langchain_core/load/serializable.py:125: in __init__
    super().__init__(*args, **kwargs)
/usr/local/lib/python3.11/site-packages/langchain_google_genai/chat_models.py:841: in validate_environment
    self.client = genaix.build_generative_service(
/usr/local/lib/python3.11/site-packages/langchain_google_genai/_genai_extension.py:276: in build_generative_service
    return v1betaGenerativeServiceClient(**config)
/usr/local/lib/python3.11/site-packages/google/ai/generativelanguage_v1beta/services/generative_service/client.py:667: in __init__
    self._transport = transport_init(
/usr/local/lib/python3.11/site-packages/google/ai/generativelanguage_v1beta/services/generative_service/transports/grpc.py:235: in __init__
    super().__init__(
/usr/local/lib/python3.11/site-packages/google/ai/generativelanguage_v1beta/services/generative_service/transports/base.py:100: in __init__
    credentials, _ = google.auth.default(
/usr/local/lib/python3.11/site-packages/google/auth/_default.py:719: in default
    raise exceptions.DefaultCredentialsError(_CLOUD_SDK_MISSING_CREDENTIALS)
E   google.auth.exceptions.DefaultCredentialsError: Your default credentials were not found. To set up Application Default Credentials, see https://cloud.google.com/docs/authentication/external/set-up-adc for more information.

tests/test_models.py

β˜‚οΈ Coverage Improvements

Coverage improvements by file:

  • tests/test_views.py

    New coverage: 100.00%
    Improvement: +100.00%

  • tests/test_prompts.py

    New coverage: 96.49%
    Improvement: +96.49%

  • tests/test_browser.py

    New coverage: 85.84%
    Improvement: +85.84%

  • tests/test_context.py

    New coverage: 24.90%
    Improvement: +24.90%

🎨 Final Touches

  • I ran the hooks included in the pre-commit config.

Settings | Logs | CodeBeaver

@entelligence-ai-reviews

Walkthrough

The update enhances the test suite for the browser automation framework by introducing dummy classes to simulate browser interactions. It includes tests for various browser launch configurations and error handling during closure. New tests for context navigation, prompt generation, and message history management are added, improving the robustness and coverage of the test suite.

Changes

File(s) Summary
tests/test_browser.py Introduced dummy classes for simulating browser interactions and added tests for various browser launch configurations and error handling during closure.
tests/test_context.py Added tests for navigating to non-allowed URLs, ensuring proper error handling in browser context.
tests/test_prompts.py Created new tests for prompt generation, verifying the inclusion of screenshots and action results in user messages.
tests/test_views.py Added tests for message history management, ensuring correct insertion, removal, and token count updates.
Entelligence.ai can learn from your feedback. Simply add πŸ‘ / πŸ‘Ž emojis to teach it your preferences. More shortcuts below

Emoji Descriptions:

  • ⚠️ Potential Issue - May require further investigation.
  • πŸ”’ Security Vulnerability - Fix to ensure system safety.
  • πŸ’» Code Improvement - Suggestions to enhance code quality.
  • πŸ”¨ Refactor Suggestion - Recommendations for restructuring code.
  • ℹ️ Others - General comments and information.

Interact with the Bot:

  • Send a message or request using the format:
    @bot + *your message*
Example: @bot Can you suggest improvements for this code?
  • Help the Bot learn by providing feedback on its responses.
    @bot + *feedback*
Example: @bot Do not comment on `save_auth` function !

@codebeaver-ai codebeaver-ai bot closed this Feb 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant