Skip to content

Add new integration TestIntegration#590

Open
TalShafir1 wants to merge 1 commit intomainfrom
demo
Open

Add new integration TestIntegration#590
TalShafir1 wants to merge 1 commit intomainfrom
demo

Conversation

@TalShafir1
Copy link
Copy Markdown
Member

Title (Please follow the convention below)

Please use a clear and concise title that summarizes your changes.
If this PR is related to an internal Buganizer ticket, please include its ID at the beginning.

Convention: [Optional Buganizer ID: 123456789] Short, descriptive title of changes

Examples:

  • Fix: Resolve issue with API endpoint returning 500 error
  • [Buganizer ID: 987654321] Feature: Add support for custom data types
  • Docs: Update README with installation instructions

Description

Please provide a detailed description of your changes. This helps reviewers understand your work and its context.

What problem does this PR solve?
(e.g., "Fixes a bug where X was happening," "Implements feature Y to allow Z," "Improves performance of function A.")

How does this PR solve the problem?
(e.g., "Modified algorithm in src/foo.js," "Added new component Bar.vue," "Updated dependency baz to version 1.2.3.")

Any other relevant information (e.g., design choices, tradeoffs, known issues):
(e.g., "Chose approach A over B due to performance considerations," "This change might affect X in certain edge cases," "Requires manual migration steps for existing users.")


Checklist:

Please ensure you have completed the following items before submitting your PR.
This helps us review your contribution faster and more efficiently.

General Checks:

  • I have read and followed the project's contributing.md guide.
  • My code follows the project's coding style guidelines.
  • I have performed a self-review of my own code.
  • My changes do not introduce any new warnings.
  • My changes pass all existing tests.
  • I have added new tests where appropriate to cover my changes. (If applicable)
  • I have updated the documentation where necessary (e.g., README, API docs). (If applicable)

Open-Source Specific Checks:

  • My changes do not introduce any Personally Identifiable Information (PII) or sensitive customer data.
  • My changes do not expose any internal-only code examples, configurations, or URLs.
  • All code examples, comments, and messages are generic and suitable for a public repository.
  • I understand that any internal context or sensitive details related to this work are handled separately in internal systems (Buganizer for Google team members).

For Google Team Members and Reviewers Only:

  • I have included the Buganizer ID in the PR title or description (e.g., "Internal Buganizer ID: 123456789" or "Related Buganizer: go/buganizer/123456789").
  • I have ensured that all internal discussions and PII related to this work remain in Buganizer.
  • I have tagged the PR with one or more labels that reflect the pull request purpose.

Screenshots (If Applicable)

If your changes involve UI or visual elements, please include screenshots or GIFs here.
Ensure any sensitive data is redacted or generalized.


Further Comments / Questions

Any additional comments, questions, or areas where you'd like specific feedback.

@TalShafir1 TalShafir1 requested a review from a team as a code owner March 4, 2026 15:36
@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request adds a new integration, 'TestIntegration', to the system. It includes the necessary action scripts, core components, and configuration files to enable the integration's functionality. The changes also cover dependency management and release notes for version 4.0 of the integration.

Highlights

  • New Integration: This PR introduces a new integration named 'TestIntegration' with associated actions and core components.
  • Action Scripts: Added 'get_details' and 'ping' actions, including their Python scripts and YAML definitions, to define the integration's capabilities.
  • Core Components: Included core components such as 'some_manager.py' and 'definition.yaml' to manage the integration's logic and configuration.
  • Dependency Management: Configured dependencies and development tools using 'pyproject.toml' and 'uv.lock' for consistent builds and testing.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • content/response_integrations/custom/test_integration/.python-version
    • Added .python-version file specifying Python 3.11.
  • content/response_integrations/custom/test_integration/actions/get_details.py
    • Added get_details action script with request functionality and output handling.
  • content/response_integrations/custom/test_integration/actions/get_details.yaml
    • Added YAML definition for the get_details action, including parameters and metadata.
  • content/response_integrations/custom/test_integration/actions/ping.py
    • Added ping action script with request functionality and output handling.
  • content/response_integrations/custom/test_integration/actions/ping.yaml
    • Added YAML definition for the ping action, including parameters and metadata.
  • content/response_integrations/custom/test_integration/core/some_manager.py
    • Added CustomManager class with a method and request functionality.
  • content/response_integrations/custom/test_integration/definition.yaml
    • Added integration definition YAML file, including identifier, name, and parameters.
  • content/response_integrations/custom/test_integration/pyproject.toml
    • Added pyproject.toml file to specify project metadata, dependencies, and development tools.
  • content/response_integrations/custom/test_integration/release_notes.yaml
    • Added release notes YAML file for TestIntegration version 4.0.
  • content/response_integrations/custom/test_integration/resources/logo.svg
    • Added SVG logo file for the TestIntegration.
  • content/response_integrations/custom/test_integration/uv.lock
    • Added uv.lock file to lock dependencies.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces a new TestIntegration, but it has several critical issues that must be addressed before it can be considered production-ready. The most significant problem is the complete absence of unit tests, which is a mandatory requirement in the repository's style guide. Additionally, there are security vulnerabilities such as a hardcoded secret placeholder and the potential for logging sensitive data. The code also violates several other style guide rules, including the use of blocking I/O (requests) instead of the recommended asynchronous libraries (httpx), missing type hints and docstrings, and improper logging. I have provided detailed comments and suggestions to help resolve these issues.

Note: Security Review did not run due to the size of the PR.

Comment on lines +1 to +13
identifier: TestIntegration
name: TestIntegration
parameters:
- name: API Key
default_value: xxx-xxxx-xx
type: string
description: The API key
is_mandatory: true
integration_identifier: TestIntegration
categories: []
svg_logo_path: resources/logo.svg
image_path: resources/image.png
is_available_for_community: false
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

This new integration is missing the required unit tests. The repository style guide (lines 131-132) mandates that all new features and integrations within the content/response_integrations/** directory must include corresponding unit tests to ensure production stability. Please add a tests/ directory and implement pytest tests for the new actions, modeling them after the reference examples mentioned in the style guide (lines 136-138).

name: TestIntegration
parameters:
- name: API Key
default_value: xxx-xxxx-xx
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

This default value appears to be a hardcoded secret placeholder. According to the style guide (line 25), hardcoded secrets are strictly prohibited to prevent security vulnerabilities. Please remove the default_value for this API key parameter.

output_message = "output message :" # human readable message, showed in UI as the action result
result_value = None # Set a simple result value, used for playbook if\else and placeholders.

requests.get("www.google.com")
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This is a synchronous network call using requests. The style guide (lines 71-72) recommends using an asynchronous library like httpx to avoid blocking I/O. The URL is also hardcoded and missing a scheme (https://). The main function should be refactored to be async and use an async-native HTTP client.

description = "Test Integration Description!"
requires-python = ">=3.11"
dependencies = [
"requests==2.32.5",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The requests library is synchronous. The repository style guide (lines 71-72) recommends using an async-native library like httpx for I/O-bound operations to improve performance and align with modern Python patterns. Please replace requests with httpx.

Suggested change
"requests==2.32.5",
"httpx==0.27.0",

output_message = "output message :" # human readable message, showed in UI as the action result
result_value = None # Set a simple result value, used for playbook if\else and placeholders.

requests.get("www.google.com")
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This is a synchronous network call using requests. The style guide (lines 71-72) recommends using an asynchronous library like httpx to avoid blocking I/O, which is critical for performance in SecOps workflows. The URL is also hardcoded and missing a scheme (https://). The main function should be converted to async def and use an async-native HTTP client.

Comment on lines +13 to +14
integration_param = siemplify.extract_configuration_param('Integration',"Param A")
action_param = siemplify.extract_action_param("Param C", print_value=True)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These variables are assigned but never used. Using print_value=True also creates a security risk by potentially logging sensitive data, which violates the style guide (line 60). Please remove these unused lines.

from __future__ import annotations
from soar_sdk.SiemplifyAction import SiemplifyAction
from soar_sdk.SiemplifyUtils import unix_now, convert_unixtime_to_datetime, output_handler
from soar_sdk.ScriptResult import EXECUTION_STATE_COMPLETED, EXECUTION_STATE_FAILED,EXECUTION_STATE_TIMEDOUT
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This import line is long and includes multiple modules. For better readability and adherence to PEP 8, please wrap it.

Suggested change
from soar_sdk.ScriptResult import EXECUTION_STATE_COMPLETED, EXECUTION_STATE_FAILED,EXECUTION_STATE_TIMEDOUT
from soar_sdk.ScriptResult import (
EXECUTION_STATE_COMPLETED,
EXECUTION_STATE_FAILED,
EXECUTION_STATE_TIMEDOUT,
)

requests.get("www.google.com")

for entity in siemplify.target_entities:
print(entity.identifier)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Please use the provided logger (siemplify.LOGGER.info) instead of print() for logging. This ensures consistent and structured logging as per the style guide.

Suggested change
print(entity.identifier)
siemplify.LOGGER.info(entity.identifier)

requests.get("www.google.com")

for entity in siemplify.target_entities:
print(entity.identifier)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Please use the provided logger (siemplify.LOGGER.info) instead of print() for all logging. This ensures that output is captured, structured, and managed correctly within the SOAR platform, adhering to observability best practices mentioned in the style guide.

Suggested change
print(entity.identifier)
siemplify.LOGGER.info(entity.identifier)



@output_handler
def main():
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The main function is missing a docstring and a return type annotation. The style guide requires all functions to be fully type-annotated (line 80) and include a Google-style docstring (line 90) for clarity and maintainability.

For example:

@output_handler
def main() -> None:
    """Gets details for target entities."""
    # ... function body

@github-actions github-actions bot added the Stale label Mar 26, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant