2023-02-16 07:53:37 +00:00
|
|
|
# flake8: noqa
|
2022-12-28 22:37:53 +00:00
|
|
|
"""Test SQL database wrapper with schema support.
|
|
|
|
|
|
|
|
Using DuckDB as SQLite does not support schemas.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from sqlalchemy import (
|
|
|
|
Column,
|
|
|
|
Integer,
|
|
|
|
MetaData,
|
|
|
|
Sequence,
|
|
|
|
String,
|
|
|
|
Table,
|
|
|
|
create_engine,
|
|
|
|
event,
|
|
|
|
insert,
|
|
|
|
schema,
|
|
|
|
)
|
|
|
|
|
2023-02-16 07:53:37 +00:00
|
|
|
from langchain.sql_database import SQLDatabase
|
2022-12-28 22:37:53 +00:00
|
|
|
|
|
|
|
metadata_obj = MetaData()
|
|
|
|
|
|
|
|
event.listen(metadata_obj, "before_create", schema.CreateSchema("schema_a"))
|
|
|
|
event.listen(metadata_obj, "before_create", schema.CreateSchema("schema_b"))
|
|
|
|
|
|
|
|
user = Table(
|
|
|
|
"user",
|
|
|
|
metadata_obj,
|
|
|
|
Column("user_id", Integer, Sequence("user_id_seq"), primary_key=True),
|
|
|
|
Column("user_name", String, nullable=False),
|
|
|
|
schema="schema_a",
|
|
|
|
)
|
|
|
|
|
|
|
|
company = Table(
|
|
|
|
"company",
|
|
|
|
metadata_obj,
|
|
|
|
Column("company_id", Integer, Sequence("company_id_seq"), primary_key=True),
|
|
|
|
Column("company_location", String, nullable=False),
|
|
|
|
schema="schema_b",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_table_info() -> None:
|
|
|
|
"""Test that table info is constructed properly."""
|
|
|
|
engine = create_engine("duckdb:///:memory:")
|
|
|
|
metadata_obj.create_all(engine)
|
2023-02-18 18:58:29 +00:00
|
|
|
|
|
|
|
db = SQLDatabase(engine, schema="schema_a", metadata=metadata_obj)
|
2022-12-28 22:37:53 +00:00
|
|
|
output = db.table_info
|
2023-02-16 07:53:37 +00:00
|
|
|
expected_output = """
|
2023-02-18 18:58:29 +00:00
|
|
|
CREATE TABLE schema_a."user" (
|
|
|
|
user_id INTEGER NOT NULL,
|
|
|
|
user_name VARCHAR NOT NULL,
|
|
|
|
PRIMARY KEY (user_id)
|
|
|
|
)
|
2023-03-14 06:08:27 +00:00
|
|
|
/*
|
|
|
|
3 rows from user table:
|
2023-02-16 07:53:37 +00:00
|
|
|
user_id user_name
|
2023-03-14 06:08:27 +00:00
|
|
|
*/
|
2023-02-16 07:53:37 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
assert sorted(" ".join(output.split())) == sorted(" ".join(expected_output.split()))
|
2022-12-28 22:37:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_sql_database_run() -> None:
|
|
|
|
"""Test that commands can be run successfully and returned in correct format."""
|
|
|
|
engine = create_engine("duckdb:///:memory:")
|
|
|
|
metadata_obj.create_all(engine)
|
|
|
|
stmt = insert(user).values(user_id=13, user_name="Harrison")
|
2023-01-25 15:14:07 +00:00
|
|
|
with engine.begin() as conn:
|
2022-12-28 22:37:53 +00:00
|
|
|
conn.execute(stmt)
|
|
|
|
db = SQLDatabase(engine, schema="schema_a")
|
|
|
|
command = 'select user_name from "user" where user_id = 13'
|
|
|
|
output = db.run(command)
|
|
|
|
expected_output = "[('Harrison',)]"
|
|
|
|
assert output == expected_output
|