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-14 05:48:41 +00:00
|
|
|
from langchain.sql_database import _TEMPLATE_PREFIX, 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)
|
|
|
|
db = SQLDatabase(engine, schema="schema_a")
|
|
|
|
output = db.table_info
|
2023-02-14 05:48:41 +00:00
|
|
|
output = output[len(_TEMPLATE_PREFIX) :]
|
2022-12-28 22:37:53 +00:00
|
|
|
expected_output = (
|
2023-02-14 05:48:41 +00:00
|
|
|
"Table 'user' has columns: {'user_id': ['INTEGER'], 'user_name': ['VARCHAR']}"
|
2022-12-28 22:37:53 +00:00
|
|
|
)
|
2023-02-14 05:48:41 +00:00
|
|
|
assert output == expected_output
|
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
|