Generic SQL
Use the Generic SQL integration to run SQL queries on the following databases: MySQL, PostgreSQL, Microsoft SQL Server, Oracle, Teradata and Trino.
Database · GenericSQL
Details
| ID | Generic SQL |
|---|---|
| Provider | Microsoft |
| Category | Database |
| From Version | 5.0.0 |
| Docker Image | demisto/genericsql:1.2.0.10221838 |
| Supported Modules | Agentix Cloud Runtime Security Cloud Posture Security XSIAM EDR Cortex Cloud |
README
Generic SQL integration for the Databases: MySQL, PostgreSQL, Microsoft SQL Server, Oracle, Teradata and Trino.
Default ports
If the port value is empty, a default port will be selected according to the database type.
- MySQL: 3306
- PostgreSQL: 5432
- Microsoft SQL Server: 1433
- Oracle: 1521
- Trino: 8080
- Teradata: 1025
Connection Arguments
Specify arguments for the configuration of an instance name-value pairs, for example:
charset=utf8
Separate pairs using & character, for example:
charset=utf8&read_timeout=10
Connection Pooling
By default, the integration does not pool database connections. Thus, a connection is created and closed for each command run by the integration. When connection pooling is enabled, each Docker container will maintain a single connection open for the time specified in the the Connection Pool Time to Live parameter (default: 600 seconds). After the time to live expires, and upon execution of a new command, the database connection will close and a new connection will be created.
Note: When pooling is enabled, the number of active open database connections will equal the number of active running demisto/genericsql Docker containers.
Bind Variables
There are two options to use to bind variables:
- Use both bind variable names and values, for example:
SELECT * from Table Where ID=:x” bind_variables_names=x bind_variables_values=123 - Use only bind variable values, for example:
INSERT into Table(ID, Name) VALUES (%s, %s)” bind_variables_values= “123, Ben”
Fetch Incidents
There are two options to fetch incidents, determined by ‘Fetch by’ configuration:
-
ID and timestamp - when ID is unique but not necessarily ascending and timestamp is not unique.
Fill in ‘Fetch Column’ with your exact timestamp column name, and fill in ‘ID column name’ with your exact ID column name.
-
Unique ascending ID or Unique timestamp - when fetching by either ID or timestamp.
Fill only the ‘Fetch Column’ with the exact column name to fetch (ID column or timestamp column).
Fetch events query
The Generic SQL query or procedure to fetch according to.
When using queries, there are two requirements, and the third one depends on the database.
- ‘fetch column’ > or >= :’fetch column’
- order by (asc) ‘fetch column’
- (Optional) limit :limit (It’s possible if the DB supports it)
Queries examples
- Supported:
- Select ID, header_name from table_name where id >:id order by id – ok when fetching by ID and ID is the exact fetch column.
- Select * from table_name where timestamp >=:timestamp order by timestamp limit :limit – ok when fetching by timestamp and timestamp is the exact fetch column and database supports for limit.
- Unsupported:
- Select header_name from table_name – no select ID or timestamp column, can’t execute the fetch.
- Select alert_id from table_name – missing condition ‘where alert_id >:alert_id order by alert_id’, can’t execute the fetch.
The following are procedure examples for different SQL databases:
MySQL
Example: “CREATE PROCEDURE PROCEDURE_NAME(IN ts DATETIME, IN l INT)
BEGIN
SELECT * FROM TABLE_NAME
WHERE timestamp >= ts order by timestamp asc limit l;
END”
- Make sure to add as parameters the fetch parameter and the limit.
- The procedure should contain conditions on the fetch parameter: (In the example provided, ‘ts’ is a fetch timestamp parameter)
- timestamp >= ts or timestamp > ts if timestamp is unique.
- order by timestamp (asc).
- Run sql-command with your new procedure provided in the query argument in order to create your procedure.
- After creating the procedure, fill in ‘Fetch events query’ the value: ‘call PROCEDURE_NAME’ with your procedure name.
- Fetch parameters, ts (timestamp) or ID and l (limit), will be added by the fetch mechanism.
MSSQL
Example: “CREATE PROCEDURE PROCEDURE_NAME @timestamp DATETIME
AS
SELECT * FROM TABLE_NAME WHERE timestamp >= @timestamp order by timestamp”
- Make sure to add as parameters the fetch parameter.
- The procedure should contain conditions on the fetch parameter: (In the example provided, ‘timestamp’ is a fetch parameter)
- timestamp >= @timestamp or timestamp > @timestamp if timestamp is unique.
- order by timestamp (asc).
- The fetch parameter should be the same as the column name, the limit is handled outside the query.
- Run sql-command with your new procedure provided in the query argument, in order to create your procedure.
- After creating the procedure, fill in ‘Fetch events query’ the value: ‘EXEC PROCEDURE_NAME’ with your procedure name.
- Fetch parameters, ts (timestamp) or id and l (limit), will be added by the fetch mechanism.
Note: Other SQL databases are currently not supported by the fetch incidents.
Fetch Incidents query Notes
- When ‘Fetch by’ is ‘Unique ascending ID’ or ‘Unique timestamp’, make sure to create the procedure with ‘>’ and not ‘>=’ in the condition on the timestamp/id field.
- When ‘Fetch by’ is ‘ID and timestamp’, handling the ID occurs internally and has no reference in the query.
Configure Generic SQL on Cortex XSOAR
- Navigate to Settings > Integrations > Servers & Services.
- Search for Generic SQL.
- Click Add instance to create and configure a new integration instance.
- Name: a textual name for the integration instance.
- SQL DB
- Database host
- Port
- Database Name
- Username
- Connection Arguments (ex: arg1=val1&arg2=val2)
- Click Test to validate the URLs, token, and connection.
Commands
You can execute these commands from the Cortex XSOAR CLI, as part of an automation, or in a playbook.
After you successfully execute a command, a DBot message appears in the War Room with the command details.
The two commands are the same, they can get the same arguments and will provide the same outputs.
- query
- sql-command
1. query
Running a sql query
Required Permissions
Permissions to the database are needed
Base Command
query
Input
| Argument Name | Description | Required |
|---|---|---|
| limit | Number of results you would like to get back | Optional |
| query | The SQL query | Required |
| skip | Number of results you would like to skip on | Optional |
| bind_variables_names | e.g.: “foo”,”bar”,”alpha” | Optional |
| bind_variables_values | e.g.: 7,”foo”,3 | Optional |
Context Output
There is no context output for this command.
Command Example
!query query="select * from TestTable" limit=10 skip=0
Context Example
{
"GenericSQL": {
"GenericSQL": {
"Query": "select * from TestTable",
"Headers": ["LastName", "ID", "FirstName"],
"InstanceName": "MySQL_new_schema",
"Result": [
{
"LastName": "Grace",
"ID": 22222,
"FirstName": "Bob"
},
{
"LastName": "Jacob",
"ID": 33333,
"FirstName": "Liya"
},
{
"LastName": "James",
"ID": 44444,
"FirstName": "Chris"
},
{
"LastName": "Zohar",
"ID": 55555,
"FirstName": "Tamar"
}
]
}
}
}
Human Readable Output
Query result
ID LastName FirstName 22222 Grace Bob 33333 Jacob Liya 44444 James Chris 55555 Zohar Tamar
Command Example
!query query="INSERT into TestTable(ID, LastName, FirstName) VALUES (11111, :x , :y)" bind_variables_names=x,y bind_variables_values="test,playbook"
Context Example
{}
Human Readable Output
Command executed
Command Example
!query query="delete from TestTable where ID=11111"
Context Example
{}
Human Readable Output
Command executed
2. sql-command
Running a sql query
Base Command
sql-command
Input
| Argument Name | Description | Required |
|---|---|---|
| limit | Number of results you would like to get back | Optional |
| query | The SQL query | Required |
| skip | Number of results you would like to skip on | Optional |
| bind_variables_names | e.g.: “foo”,”bar”,”alpha” | Optional |
| bind_variables_values | e.g.: 7,”foo”,3 | Optional |
Context Output
There is no context output for this command.
Command Example
!sql-command query="select * from TestTable" limit=10 skip=0
Context Example
{
"GenericSQL": {
"GenericSQL": {
"Query": "select * from TestTable",
"Headers": ["LastName", "ID", "FirstName"],
"InstanceName": "MySQL_new_schema",
"Result": [
{
"LastName": "Grace",
"ID": 22222,
"FirstName": "Bob"
},
{
"LastName": "Jacob",
"ID": 33333,
"FirstName": "Liya"
},
{
"LastName": "James",
"ID": 44444,
"FirstName": "Chris"
},
{
"LastName": "Zohar",
"ID": 55555,
"FirstName": "Tamar"
}
]
}
}
}
Human Readable Output
Query result
ID LastName FirstName 22222 Grace Bob 33333 Jacob Liya 44444 James Chris 55555 Zohar Tamar
Command Example
!sql-command query="INSERT into TestTable(ID, LastName, FirstName) VALUES (11111, :x , :y)" bind_variables_names=x,y bind_variables_values="test,playbook"
Context Example
{}
Human Readable Output
Command executed
Command Example
!sql-command query="delete from TestTable where ID=11111"
Context Example
{}
Human Readable Output
Command executed
Troubleshooting
General Test Connection Error
In cases where you receive an error that is not clear when you Test the integration instance you can get detailed logs.
- Save the configured instance even though the Test doesn’t work.
- In the playground, run the
!sql-commandwithdebug-mode=true. For example:
!sql-command query="some simple query" debug-mode=true
A log file will be generated in the Playground. Examine the log file for further details that explain why the integration is failing.
Microsoft SQL Server
We provide two options for connecting to Microsoft SQL Server:
- Microsoft SQL Server: Uses the open source FreeTDS driver to communicate with Microsoft SQL Server. This driver supports authentication via domain logins (
DOMAIN\username) with a password. If you do not require a domain login for authentication, we recommend using theMicrosoft SQL Server - MS ODBC Driver. - Microsoft SQL Server - MS ODBC Driver: Official driver from Microsoft for Linux.
Note: Kerberos authentication is not supported.
If you experience any issues communicating with your Microsoft SQL Sever, try using both options as we’ve seen cases where one option works while the other doesn’t.
When configuring SQL Server, if you receive an error of the form:
('08S01', '[08S01] [FreeTDS][SQL Server]Unable to connect: Adaptive Server is unavailable or does not exist (20009) (SQLDriverConnect)')
(Background on this error at: http://sqlalche.me/e/13/e3q8)
It means there is a communication problem from the Generic SQL Docker to the SQL Server. It usually means the dns hostname of the SQL Server is not resolving. You can try using an IP instead of the DNS. You can further test from Docker by running the following command on the Cortex XSOAR machine:
echo "select @@version" | sudo docker run --rm -i demisto/genericsql:1.1.0.9726 tsql -H <sql_server_host> -p <sql_port_number> -U <user> -P <password> -D <db_to_connect> -v -o v
Autocommit: If you are seeing that insert/update operations are NOT being performed and no error is received, it could be a case that autocommit is not enabled on the connection and the transaction is rolledback. To enable autocommit, add the following to the connection arguments instance configuration option:
autocommit=True
Oracle
If you require connecting to Oracle via a SERVICE_NAME, leave the Database Name parameter empty and add to the Connection Arguments the following:
service_name=<SERVICE_NAME>
For example:
service_name=XEXDB
Possible Errors
- The bind variables lists are not the same length.
- Command is not an existing Generic SQL command.
Configuration parameters
dialect— SQL DB (required)host— Database host (required)port— Portcredentials— Username (required)fetch_parameters— Fetch byquery— Fetch events querycolumn_name— Fetch Columnid_column— ID Column name - in case of fetching by 'ID and timestamp'isFetch— Fetch incidentsincident_name— Incident Namedbname— Database Nameconnect_parameters— Connection Arguments (ex: arg1=val1&arg2=val2)max_fetch— Fetch Limit (Default / Max - 50, Recommended less than 50)first_fetch— First fetch timestamp or First fetch IDssl_connect— Use an SSL connectionuse_pool— Use Connection Poolinginsecure— Trust any certificate (not secure)use_ldap— Use LDAP (Teradata only)pool_ttl— Connection Pool Time to Live (seconds)incidentType— Incident typeincidentFetchInterval— Incidents Fetch Interval
Commands (3)
-
pgsql-queryDeprecatedRuns a SQL query. Deprecated. Use the generic sql-command instead.
-
queryDeprecatedRuns a SQL query. Deprecated. Use the generic sql-command instead.
-
sql-commandRunning a sql query.
import os from typing import Any import oracledb import demistomock as demisto import pyodbc import pytest import sqlalchemy from GenericSQL import Client, generate_default_port_by_dialect, sql_query_execute from test_data import input_data class MockedClient(Client): """ This class presents a client object for testing the cache engines mechanism. """ def __init__( self, mocker, global_cache: dict, cache_string: str, dialect: str, host: str, username: str, password: str, port: str, database: str, connect_parameters: str, ssl_connect: bool, use_pool: bool, ): self.global_cache = global_cache self.cache_string = cache_string super().__init__(dialect, host, username, password, port, database, connect_parameters, ssl_connect, use_pool) def _convert_dialect_to_module(self, dialect: str = None): return def _generate_db_url(self, module: str = None): return def _get_global_cache(self): return self.global_cache def _get_cache_string(self, url: str = None, connect_args: dict = None): return self.cache_string class Engine: def __init__(self, name: str): self.name = name def connect(self): return self.name def dispose(self): return class ResultMock: def __init__(self): pass def fetchall(self): return [] def mappings(self): class NestedResultMock: def fetchall(self): return [] def fetchmany(self, fetch_limit): return [] return NestedResultMock() class ConnectionMock: def __enter__(self): return ConnectionMock() def __exit__(self, exc, value, tb): pass def execute(self, sql_query, bind_vars): return ResultMock() def execution_options(self, isolation_level): pass def commit(self): pass ARGS1 = {"query": "select Name from city", "limit": 5, "skip": 0} ARGS2 = {"query": "select * from mysql.user", "limit": 1, "skip": 0} ARGS3 = {"query": "select Name from city where 1=2", "limit": 5, "skip": 0} RAW1 = [{"Name": "Kabul"}, {"Name": "Qandahar"}, {"Name": "Herat"}, {"Name": "Mazar-e-Sharif"}] RAW2 = [ { "Host": "%", "User": "admin", "Select_priv": "Y", "Insert_priv": "Y", "Update_priv": "Y", "Delete_priv": "Y", "Create_priv": "Y", "Drop_priv": "Y", "Reload_priv": "Y", "Shutdown_priv": "N", "Process_priv": "Y", "File_priv": "N", "Grant_priv": "Y", "References_priv": "Y", "Index_priv": "Y", "Alter_priv": "Y", "Show_db_priv": "Y", "Super_priv": "N", "Create_tmp_table_priv": "Y", "Lock_tables_priv": "Y", "Execute_priv": "Y", "Repl_slave_priv": "Y", "Repl_client_priv": "Y", "Create_view_priv": "Y", "Show_view_priv": "Y", "Create_routine_priv": "Y", "Alter_routine_priv": "Y", "Create_user_priv": "Y", "Event_priv": "Y", "Trigger_priv": "Y", "Create_tablespace_priv": "N", "ssl_type": "", "ssl_cipher": b"", "x509_issuer": b"", "x509_subject": b"", "max_questions": 0, "max_updates": 0, "max_connections": 0, "max_user_connections": 0, "plugin": "mysql_native_password", "authentication_string": "test", "password_expired": "N", "password_last_changed": "2020-02-17 08:49:45", "password_lifetime": None, "account_locked": "N", "Create_role_priv": "N", "Drop_role_priv": "N", "Password_reuse_history": None, "Password_reuse_time": None, "Password_require_current": None, "User_attributes": None, } ] HEADER1 = ["Name"] HEADER2 = [ "Host", "User", "Select_priv", "Insert_priv", "Update_priv", "Delete_priv", "Create_priv", "Drop_priv", "Reload_priv", "Shutdown_priv", "Process_priv", "File_priv", "Grant_priv", "References_priv", "Index_priv", "Alter_priv", "Show_db_priv", "Super_priv", "Create_tmp_table_priv", "Lock_tables_priv", "Execute_priv", "Repl_slave_priv", "Repl_client_priv", "Create_view_priv", "Show_view_priv", "Create_routine_priv", "Alter_routine_priv", "Create_user_priv", "Event_priv", "Trigger_priv", "Create_tablespace_priv", "ssl_type", "ssl_cipher", "x509_issuer", "x509_subject", "max_questions", "max_updates", "max_connections", "max_user_connections", "plugin", "authentication_string", "password_expired", "password_last_changed", "password_lifetime", "account_locked", "Create_role_priv", "Drop_role_priv", "Password_reuse_history", "Password_reuse_time", "Password_require_current", "User_attributes", ] EXPECTED_OUTPUT1 = { "GenericSQL(val.Query && val.Query === obj.Query)": { "GenericSQL": { "Result": [{"Name": "Kabul"}, {"Name": "Qandahar"}, {"Name": "Herat"}, {"Name": "Mazar-e-Sharif"}], "Headers": HEADER1, "Query": "select Name from city", "InstanceName": "sql_dialect_database", } } } EXPECTED_OUTPUT2 = { "GenericSQL(val.Query && val.Query === obj.Query)": { "GenericSQL": { "Result": [ { "Host": "%", "User": "admin", "Select_priv": "Y", "Insert_priv": "Y", "Update_priv": "Y", "Delete_priv": "Y", "Create_priv": "Y", "Drop_priv": "Y", "Reload_priv": "Y", "Shutdown_priv": "N", "Process_priv": "Y", "File_priv": "N", "Grant_priv": "Y", "References_priv": "Y", "Index_priv": "Y", "Alter_priv": "Y", "Show_db_priv": "Y", "Super_priv": "N", "Create_tmp_table_priv": "Y", "Lock_tables_priv": "Y", "Execute_priv": "Y", "Repl_slave_priv": "Y", "Repl_client_priv": "Y", "Create_view_priv": "Y", "Show_view_priv": "Y", "Create_routine_priv": "Y", "Alter_routine_priv": "Y", "Create_user_priv": "Y", "Event_priv": "Y", "Trigger_priv": "Y", "Create_tablespace_priv": "N", "ssl_type": "", "ssl_cipher": "b''", "x509_issuer": "b''", "x509_subject": "b''", "max_questions": "0", "max_updates": "0", "max_connections": "0", "max_user_connections": "0", "plugin": "mysql_native_password", "authentication_string": "test", "password_expired": "N", "password_last_changed": "2020-02-17 08:49:45", "password_lifetime": "None", "account_locked": "N", "Create_role_priv": "N", "Drop_role_priv": "N", "Password_reuse_history": "None", "Password_reuse_time": "None", "Password_require_current": "None", "User_attributes": "None", } ], "Headers": HEADER2, "Query": "select * from mysql.user", "InstanceName": "sql_dialect_database", } } } EMPTY_OUTPUT = { "GenericSQL(val.Query && val.Query === obj.Query)": { "GenericSQL": { "Result": [], "Headers": [], "Query": "select Name from city where 1=2", "InstanceName": "sql_dialect_database", } } } GLOBAL_ENGINE_CACHE_ATTR = "_generic_sql_engines" @pytest.mark.parametrize( "command, args, response, expected_result, header", [ # Classic sql query, showing a table from database and convert it to readable data (sql_query_execute, ARGS1, RAW1, EXPECTED_OUTPUT1, HEADER1), # Simulates an mysql default tables such as "user", # in previous bug the value- b'' couldn't be converted to a readable value and the query failed (sql_query_execute, ARGS2, RAW2, EXPECTED_OUTPUT2, HEADER2), ], ) def test_sql_queries(command, args, response, expected_result, header, mocker): """Unit test Given - select query - raw response of the database When - mock the database result Then - convert the result to human readable table - create the context - validate the expected_result and the created context """ # needed in order not to make a connection in tests mocker.patch.object(Client, "_create_engine_and_connect", return_value=mocker.Mock(spec=sqlalchemy.engine.base.Connection)) mocker.patch.object(Client, "sql_query_execute_request", return_value=(response, header)) client = Client("sql_dialect", "server_url", "username", "password", "port", "database", "", False) result = command(client, args) assert expected_result == result[1] # entry context is found in the 2nd place in the result of the command @pytest.mark.parametrize( "use_ldap, expected_url", [ pytest.param(True, "teradatasql://username:password@host:/?logmech=LDAP", id="LDAP"), pytest.param(False, "teradatasql://host:/?user=username&password=password", id="Username & Password"), ], ) def test_teradata_connection(mocker, use_ldap: bool, expected_url: str): """ Given - All required arguments for the client - The use_ldap parameter When - Executing _create_engine_url_for_teradata client's method Then - Ensure the engine url is generated correctly according to use_ldap """ mock_create_engine = mocker.patch.object(sqlalchemy, "create_engine") Client( dialect="Teradata", host="host", username="username", password="password", port="", connect_parameters="", database="", ssl_connect=False, use_ldap=use_ldap, ) assert mock_create_engine.mock_calls[0][1][0] == expected_url @pytest.mark.parametrize( "port, expected_url", [ ("", "trino://username:***@host/schema?verify=true"), ("1234", "trino://username:***@host:1234/schema?verify=true"), ], ) def test_trino_connection(mocker, port: str, expected_url: str): """ Given - All required arguments for the client When - Creating a Generic SQL client with the Trino dialect Then - The client creation is successful - The engine url is generated correctly per the Trino specification """ mock_create_engine = mocker.patch.object(sqlalchemy, "create_engine") Client( dialect="Trino", host="host", username="username", password="password", port=port, connect_parameters="", database="schema", ssl_connect=False, use_ldap=False, ) assert str(mock_create_engine.call_args.args[0]) == expected_url @pytest.mark.parametrize( "dialect, expected_port", [ ("Microsoft SQL Server", "1433"), ("ODBC Driver 18 for SQL Server", "1433"), ("Teradata", "1025"), ("DB_NOT_EXIST", None), ], ) def test_generate_default_port_by_dialect(dialect: str, expected_port: str): """ Given - a dialect (DB) When - Executing generate_default_port_by_dialect() function Then - Ensure the right port is generated or None in case of DB not found """ assert generate_default_port_by_dialect(dialect) == expected_port def test_sql_queries_with_empty_table(mocker): """Unit test Given - query that return an empty table - raw response of the database When - mock the database result Then - convert the result to human readable table - create the context - validate the expected_result and the created context """ mocker.patch.object(Client, "_create_engine_and_connect", return_value=ConnectionMock()) client = Client("sql_dialect", "server_url", "username", "password", "port", "database", "", False) result = sql_query_execute(client, ARGS3) assert result[1] == EMPTY_OUTPUT # entry context is found in the 2nd place in the result of the command assert result[2] == [] # just ensuring a valid table is returned def test_mysql_integration(): """Test actual connection to mysql. Will be skipped unless MYSQL_HOST is set. Can be used to do local debuging of connecting to MySQL by set env var MYSQL_HOST or changing the code below. Test assumes mysql credentials: root/password You can setup mysql locally by running: docker run --name mysql-80 -e MYSQL_ROOT_PASSWORD=password -d mysql:8.0 And then set env var: MYSQL_HOST=localhost """ host = os.getenv("MYSQL_HOST", "") if not host: pytest.skip("Skipping mysql integration test as MYSQL_HOST is not set") dialect = "MySQL" port = generate_default_port_by_dialect(dialect) assert port is not None client = Client(dialect, host, "root", "password", port, "mysql", "", False, True) res = client.sql_query_execute_request("show processlist", {}) assert len(res) >= 1 @pytest.mark.parametrize( "connect_parameters, dialect, expected_response", [ ("arg1=value1&arg2=value2", "MySQL", {"arg1": "value1", "arg2": "value2"}), ( "arg1=value1&arg2=value2", "Microsoft SQL Server", {"arg1": "value1", "arg2": "value2", "driver": "FreeTDS", "autocommit": "True"}, ), ( "arg1=value1&arg2=value2&autocommit=False", "Microsoft SQL Server", {"arg1": "value1", "arg2": "value2", "driver": "FreeTDS", "autocommit": "False"}, ), ( "arg1=value1&arg2=value2", "Microsoft SQL Server - MS ODBC Driver", { "arg1": "value1", "arg2": "value2", "driver": "ODBC Driver 18 for SQL Server", "TrustServerCertificate": "yes", "autocommit": "True", }, ), ( "arg1=value1&arg2=value2&autocommit=False", "Microsoft SQL Server - MS ODBC Driver", { "arg1": "value1", "arg2": "value2", "driver": "ODBC Driver 18 for SQL Server", "TrustServerCertificate": "yes", "autocommit": "False", }, ), ], ) def test_parse_connect_parameters(connect_parameters, dialect, expected_response): assert Client.parse_connect_parameters(connect_parameters, dialect, False) == expected_response def test_loading_relevant_drivers(): assert "FreeTDS" in pyodbc.drivers() assert "ODBC Driver 18 for SQL Server" in pyodbc.drivers(), pyodbc.drivers() try: # make sure oracle manages to load tns client libraries. # Will fail, but we want to be sure we don't fail on loading the driver oracledb.connect() except Exception as ex: assert "ORA-12162" in str(ex) or "DPY-4027" in str(ex), f"Unexpected Oracle error: {ex}" # freetds test engine = sqlalchemy.create_engine("mssql+pyodbc:///testuser:testpass@127.0.0.1:1433/TEST?driver=FreeTDS") try: engine.execute("select 1 as [Result]") except Exception as ex: assert "Can't open lib" not in str(ex), "Failed because of missing lib: " + str(ex) # case of fetch by simple query based on id -- checking last_run update and incidents @pytest.mark.parametrize( "table, params, response, headers, expected_incidents, expected_last_run", [ ( input_data.TABLE_1, input_data.PARAMS_1, input_data.RESPONSE_1, input_data.HEADERS_1, input_data.EXPECTED_INCIDENTS_1, input_data.EXPECTED_LAST_RUN_1, ) ], ) def test_fetch_incident_by_id_simple_query(table, params, response, headers, expected_incidents, expected_last_run, mocker): """ Given - raw response of the database - 3 records from the database - configuration parameters: - 'fetch_parameters': 'Unique ascending ID' - 'query': 'select * from incidents where incident_id >:incident_id order by incident_id' - 'first_fetch': '-1' - 'max_fetch': '3' - last_run: {} (first fetch cycle) When - running one fetch cycle Then - validate the last_run - 'last_id' should be updated to '1002' as the last record. - validate the number of incidents - As the max_fetch parameter, the number of incidents should be 3. """ from GenericSQL import fetch_incidents mocker.patch("GenericSQL.demisto.getLastRun", return_value={}) mocker.patch.object(Client, "_create_engine_and_connect", return_value=mocker.Mock(spec=sqlalchemy.engine.base.Connection)) mocker.patch.object(Client, "sql_query_execute_request", return_value=(response, headers)) mocker.patch("GenericSQL.convert_sqlalchemy_to_readable_table", return_value=table) client = Client("sql_dialect", "server_url", "username", "password", "port", "database", "", False) incidents, last_run = fetch_incidents(client, params) # check last run is updated as expected assert expected_last_run == last_run # check the limit assert len(incidents) == len(expected_incidents) # case of fetch by simple query based on id where first id is bigger than the last one in the DB -- # checking last_run update - it should be the same when there are no incidents @pytest.mark.parametrize( "table, params, response, headers, last_run_before_fetch", [(input_data.TABLE_2, input_data.PARAMS_2, input_data.RESPONSE_2, input_data.HEADERS_2, input_data.LAST_RUN_BEFORE_FETCH_2)], ) def test_fetch_incident_without_incidents(table, params, response, headers, last_run_before_fetch, mocker): """ Given - raw response of the database - an empty response list - configuration parameters: - 'fetch_parameters': 'Unique ascending ID' - 'query': 'select * from incidents where incident_id >:incident_id order by incident_id' - 'first_fetch': '1012' - 'max_fetch': '3' - last_run: {'last_timestamp': False, 'last_id': '1012', 'ids': []} When - running one fetch cycle Then - validate the last_run: should be the same as given before fetch {'last_timestamp': False, 'last_id': '1012', 'ids': []} - no incidents """ from GenericSQL import fetch_incidents mocker.patch("GenericSQL.demisto.getLastRun", return_value=last_run_before_fetch) mocker.patch.object(Client, "_create_engine_and_connect", return_value=mocker.Mock(spec=sqlalchemy.engine.base.Connection)) mocker.patch.object(Client, "sql_query_execute_request", return_value=(response, headers)) mocker.patch("GenericSQL.convert_sqlalchemy_to_readable_table", return_value=table) client = Client("sql_dialect", "server_url", "username", "password", "port", "database", "", False) incidents, last_run = fetch_incidents(client, params) # check last run is not updated, should be the same - We don't have any new incidents assert last_run_before_fetch == last_run # case of fetch by procedure based on timestamp and id -- Verifying there aren't any duplicates @pytest.mark.parametrize( "table, params, response, headers, last_run_before_second_fetch, expected_incidents", [ ( input_data.TABLE_3, input_data.PARAMS_3, input_data.RESPONSE_3, input_data.HEADERS_3, input_data.LAST_RUN_BEFORE_SECOND_FETCH_3, input_data.EXPECTED_INCIDENTS_3, ) ], ) def test_fetch_incident_avoiding_duplicates( table, params, response, headers, last_run_before_second_fetch, expected_incidents, mocker ): """ Given - raw response of the database - 2 records from the database - configuration parameters: - 'fetch_parameters': 'ID and timestamp' - 'query': 'call Test_MySQL_6' [CREATE PROCEDURE Test_MySQL_6(IN ts DATETIME, IN l INT) BEGIN SELECT * FROM incidents WHERE timestamp >= ts order by timestamp asc limit l; END] - 'first_fetch': '2022-11-24 13:09:56' - 'max_fetch': '2' - last_run: {'last_timestamp': '2022-11-24 13:09:56', 'last_id': False, 'ids': ['1000']} When - running one fetch cycle Then - validate the incidents - should contain only one incident at the end, after omitting the duplicate incident """ from GenericSQL import fetch_incidents mocker.patch("GenericSQL.demisto.getLastRun", return_value=last_run_before_second_fetch) mocker.patch.object(Client, "_create_engine_and_connect", return_value=mocker.Mock(spec=sqlalchemy.engine.base.Connection)) mocker.patch.object(Client, "sql_query_execute_request", return_value=(response, headers)) mocker.patch("GenericSQL.convert_sqlalchemy_to_readable_table", return_value=table) client = Client("sql_dialect", "server_url", "username", "password", "port", "database", "", False) incidents, last_run = fetch_incidents(client, params) # check incidents without duplicates assert len(expected_incidents) == len(incidents) for expected_incident, incident in zip(expected_incidents, incidents): assert expected_incident.get("name") == incident.get("name") assert expected_incident.get("rawJSON") == incident.get("rawJSON") # case of two fetch cycles -- checking twice last_run update as expected @pytest.mark.parametrize( "table_first_cycle, table_second_cycle, params, response_first_cycle, response_second_cycle, " "headers, expected_last_run_4_1, expected_last_run_4_2", [ ( input_data.TABLE_4_1, input_data.TABLE_4_2, input_data.PARAMS_4, input_data.RESPONSE_4_1, input_data.RESPONSE_4_2, input_data.HEADERS_4, input_data.EXPECTED_LAST_RUN_4_1, input_data.EXPECTED_LAST_RUN_4_2, ) ], ) def test_fetch_incident_update_last_run( table_first_cycle, table_second_cycle, params, response_first_cycle, response_second_cycle, headers, expected_last_run_4_1, expected_last_run_4_2, mocker, ): """ Given - raw responses of the database: 2 records from the database for the first cycle and then another 2 records for the second. - configuration parameters: - 'fetch_parameters': 'Unique timestamp' - 'query': 'call Test_MySQL_3' [CREATE PROCEDURE Test_MySQL_3(IN ts VARCHAR(255), IN l INT) BEGIN SELECT * FROM incidents WHERE timestamp > ts limit l; END] - 'first_fetch': '2020-01-01 01:01:01' - 'max_fetch': '2' - first last_run: {} When - running two fetch cycles Then - Validate the last run's update during two cycles of fetch: after first fetch should be {'last_timestamp': '2022-11-24 13:10:12', 'last_id': False, 'ids': []}, as the timestamp in the last (second record). after second fetch should be {'ids': [], 'last_id': False, 'last_timestamp': '2022-11-24 13:10:43'}, as the timestamp in the last (second record). """ from GenericSQL import fetch_incidents # first fetch cycle mocker.patch("GenericSQL.demisto.getLastRun", return_value={}) mocker.patch.object(Client, "_create_engine_and_connect", return_value=mocker.Mock(spec=sqlalchemy.engine.base.Connection)) mocker.patch.object(Client, "sql_query_execute_request", return_value=(response_first_cycle, headers)) mocker.patch("GenericSQL.convert_sqlalchemy_to_readable_table", return_value=table_first_cycle) client = Client("sql_dialect", "server_url", "username", "password", "port", "database", "", False) incidents, last_run = fetch_incidents(client, params) assert expected_last_run_4_1 == last_run # second fetch cycle mocker.patch("GenericSQL.demisto.getLastRun", return_value=last_run) mocker.patch.object(Client, "_create_engine_and_connect", return_value=mocker.Mock(spec=sqlalchemy.engine.base.Connection)) mocker.patch.object(Client, "sql_query_execute_request", return_value=(response_second_cycle, headers)) mocker.patch("GenericSQL.convert_sqlalchemy_to_readable_table", return_value=table_second_cycle) client = Client("sql_dialect", "server_url", "username", "password", "port", "database", "", False) incidents, last_run = fetch_incidents(client, params) assert expected_last_run_4_2 == last_run # case of several records with the same timestamp - when the number is greater than the limit # check the de-duplication mechanism @pytest.mark.parametrize( "table_first_cycle, table_second_cycle, table_third_cycle, params, response_first_cycle, " "response_second_cycle, response_third_cycle, headers, expected_last_run_5_1, " "expected_last_run_5_2, expected_last_run_5_3", [ ( input_data.TABLE_5_1, input_data.TABLE_5_2, input_data.TABLE_5_3, input_data.PARAMS_5, input_data.RESPONSE_5_1, input_data.RESPONSE_5_2, input_data.RESPONSE_5_3, input_data.HEADERS_5, input_data.EXPECTED_LAST_RUN_5_1, input_data.EXPECTED_LAST_RUN_5_2, input_data.EXPECTED_LAST_RUN_5_3, ) ], ) def test_fetch_incidents_de_duplication( table_first_cycle, table_second_cycle, table_third_cycle, params, response_first_cycle, response_second_cycle, response_third_cycle, headers, expected_last_run_5_1, expected_last_run_5_2, expected_last_run_5_3, mocker, ): """ Given - raw responses of the database: 1 record from the database for the first cycle and then another 2 records for the second, then 3 records for the third. - configuration parameters: - 'fetch_parameters': 'ID and timestamp' - 'query': 'call Test_MySQL_6' [CREATE PROCEDURE Test_MySQL_6(IN ts DATETIME, IN l INT) BEGIN SELECT * FROM incidents WHERE timestamp >= ts order by timestamp asc limit l; END] - 'first_fetch': '2020-01-01 01:01:01' - 'max_fetch': '1' - first last_run: {} When - running three fetch cycles Then - Validate the update of the last run during three fetch cycles, focusing on the IDs. Since they have the same timestamp, the last_run should accumulate the ids every cycle, and the 'last_timestamp' field should remain unchanged. - Validate the number of incidents, which should be just one per cycle. """ from GenericSQL import fetch_incidents # first fetch cycle mocker.patch("GenericSQL.demisto.getLastRun", return_value={}) mocker.patch.object(Client, "_create_engine_and_connect", return_value=mocker.Mock(spec=sqlalchemy.engine.base.Connection)) mocker.patch.object(Client, "sql_query_execute_request", return_value=(response_first_cycle, headers)) mocker.patch("GenericSQL.convert_sqlalchemy_to_readable_table", return_value=table_first_cycle) client = Client("sql_dialect", "server_url", "username", "password", "port", "database", "", False) incidents, last_run = fetch_incidents(client, params) assert expected_last_run_5_1 == last_run assert len(incidents) == 1 # second fetch cycle mocker.patch("GenericSQL.demisto.getLastRun", return_value=last_run) mocker.patch.object(Client, "_create_engine_and_connect", return_value=mocker.Mock(spec=sqlalchemy.engine.base.Connection)) mocker.patch.object(Client, "sql_query_execute_request", return_value=(response_second_cycle, headers)) mocker.patch("GenericSQL.convert_sqlalchemy_to_readable_table", return_value=table_second_cycle) client = Client("sql_dialect", "server_url", "username", "password", "port", "database", "", False) incidents, last_run = fetch_incidents(client, params) assert expected_last_run_5_2 == last_run assert len(incidents) == 1 # third fetch cycle mocker.patch("GenericSQL.demisto.getLastRun", return_value=last_run) mocker.patch.object(Client, "_create_engine_and_connect", return_value=mocker.Mock(spec=sqlalchemy.engine.base.Connection)) mocker.patch.object(Client, "sql_query_execute_request", return_value=(response_third_cycle, headers)) mocker.patch("GenericSQL.convert_sqlalchemy_to_readable_table", return_value=table_third_cycle) client = Client("sql_dialect", "server_url", "username", "password", "port", "database", "", False) incidents, last_run = fetch_incidents(client, params) assert expected_last_run_5_3 == last_run assert len(incidents) == 1 GENERATE_VARS_NAMES_MSSQL = ( [1, 123], "SELECT * FROM TABLE WHERE ID = ? and EMPLOYEE = ?", "Microsoft SQL Server", ( {"bind_variable_1": 1, "bind_variable_2": 123}, "SELECT * FROM TABLE WHERE ID = :bind_variable_1 and EMPLOYEE = :bind_variable_2", ), ) GENERATE_VARS_NAMES_MYSQL = ( [1, 123], "SELECT * FROM TABLE WHERE ID = %s and EMPLOYEE = %s", "MySQL", ( {"bind_variable_1": 1, "bind_variable_2": 123}, "SELECT * FROM TABLE WHERE ID = :bind_variable_1 and EMPLOYEE = :bind_variable_2", ), ) GENERATE_VARS_NAMES_POSTGRES = ( [1, 123], "SELECT * FROM TABLE WHERE ID = %s", "MySQL", ({"bind_variable_1": 1}, "SELECT * FROM TABLE WHERE ID = :bind_variable_1"), ) GENERATE_VARS_NAMES_DO_NOTHING = ([1, 123], "SELECT * FROM TABLE", "MySQL", ({}, "SELECT * FROM TABLE")) @pytest.mark.parametrize( "bind_variables_values_list, query, dialect, expected_result", [GENERATE_VARS_NAMES_MSSQL, GENERATE_VARS_NAMES_MYSQL, GENERATE_VARS_NAMES_POSTGRES, GENERATE_VARS_NAMES_DO_NOTHING], ) def test_generate_variable_names_and_mapping( bind_variables_values_list: list, query: str, dialect: str, expected_result: tuple[dict[str, Any], str | Any] ): """ Given - A query with placeholders - A list of bind variables values When - Executing generate_variable_names_and_mapping function Then - Ensure the mapping is correct - Ensure the query contains unique variables names instead of the placeholders """ from GenericSQL import generate_variable_names_and_mapping result = generate_variable_names_and_mapping(bind_variables_values_list, query, dialect) assert expected_result[0] == result[0] assert expected_result[1] == result[1] def test_create_engine_and_connect_engine_exists(mocker): """ Given - An engine is in the cache When - running create_engine_and_connect Then - Ensure it uses the existing engine """ client = MockedClient( mocker=mocker, global_cache={"1": Engine("Demo Engine")}, cache_string="1", dialect="Teradata", host="host", username="username", password="password", port="", connect_parameters="", database="", ssl_connect=False, use_pool=True, ) assert client.connection == "Demo Engine" def test_create_engine_and_connect_new_engine(mocker): """ Given - No engine is in the cache When - running create_engine_and_connect Then - Ensure a new engine is created and replaces the old one in cache - Ensure the old engine is disposed and removed from the cache """ old_engine = Engine("Old Engine") new_engine = Engine("New Engine") setattr(sqlalchemy, GLOBAL_ENGINE_CACHE_ATTR, {"1": old_engine}) mock_create_engine = mocker.patch.object(sqlalchemy, "create_engine", return_value=new_engine) mock_engine_dispose = mocker.patch.object(Engine, "dispose") client = MockedClient( mocker=mocker, global_cache={}, cache_string="1", dialect="Teradata", host="host", username="username", password="password", port="", connect_parameters="", database="", ssl_connect=False, use_pool=True, ) mock_create_engine.assert_called_once() mock_engine_dispose.assert_called_once() cache = getattr(sqlalchemy, GLOBAL_ENGINE_CACHE_ATTR) assert client.connection == "New Engine" assert cache["1"] != old_engine assert cache["1"] == new_engine @pytest.mark.parametrize( "response, result", [ ("success", [{"Type": "Successful", "APICallsCount": 1}]), ("general_error", [{"Type": "GeneralError", "APICallsCount": 1}]), ("connection_error", [{"Type": "ConnectionError", "APICallsCount": 1}]), ], ) def test_create_api_metrics(mocker, response, result): """ Test create_api_metrics function, make sure metrics are reported according to the response """ mocker.patch.object(Client, "_create_engine_and_connect", return_value=ConnectionMock()) client = Client("sql_dialect", "server_url", "username", "password", "port", "database", "", False) mocker.patch.object(demisto, "results") mocker.patch("CommonServerPython.is_demisto_version_ge", return_value=True) mocker.patch.object(demisto, "callingContext", {"context": {"ExecutedCommands": [{"moduleBrand": "Generic SQL"}]}}) client.create_api_metrics(status_type=response) metric_results = demisto.results.call_args_list[0][0][0] assert metric_results.get("Contents") == "Metrics reported successfully." assert metric_results.get("APIExecutionMetrics") == result