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

langchain-mongodb: add unit tests for MongoDBChatMessageHistory #18599

Merged
merged 3 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_memory_with_message_store() -> None:
assert "This is me, the AI" in messages_json
assert "This is me, the human" in messages_json

# remove the record from Azure Cosmos DB, so the next test run won't pick it up
# remove the record from MongoDB, so the next test run won't pick it up
memory.chat_memory.clear()

assert memory.chat_memory.messages == []
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import json

from langchain.memory import ConversationBufferMemory
from langchain_core.messages import message_to_dict

from langchain_mongodb.chat_message_histories import MongoDBChatMessageHistory
from tests.utils import MockCollection


class PatchedMongoDBChatMessageHistory(MongoDBChatMessageHistory):
def __init__(self) -> None:
self.session_id = "test-session"
self.database_name = "test-database"
self.collection_name = "test-collection"
self.collection = MockCollection()


def test_memory_with_message_store() -> None:
"""Test the memory with a message store."""
# setup MongoDB as a message store
message_history = PatchedMongoDBChatMessageHistory()
memory = ConversationBufferMemory(
memory_key="baz", chat_memory=message_history, return_messages=True
)

# add some messages
memory.chat_memory.add_ai_message("This is me, the AI")
memory.chat_memory.add_user_message("This is me, the human")

# get the message history from the memory store and turn it into a json
messages = memory.chat_memory.messages
messages_json = json.dumps([message_to_dict(msg) for msg in messages])

assert "This is me, the AI" in messages_json
assert "This is me, the human" in messages_json

# remove the record from MongoDB, so the next test run won't pick it up
memory.chat_memory.clear()

assert memory.chat_memory.messages == []
13 changes: 8 additions & 5 deletions libs/partners/mongodb/tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,18 +169,21 @@ def insert_many(self, to_insert: List[Any], *args, **kwargs) -> InsertManyResult
[k["_id"] for k in mongodb_inserts], acknowledged=True
)

def insert_one(self, to_insert: Any, *args, **kwargs) -> Any: # type: ignore
return self.insert_many([to_insert])

def find_one(self, find_query: Dict[str, Any]) -> Optional[Dict[str, Any]]: # type: ignore
find = self.find(find_query) or [None] # type: ignore
return find[0]

def find(self, find_query: Dict[str, Any]) -> Optional[List[Dict[str, Any]]]: # type: ignore
def _is_match(item: Dict[str, Any]) -> bool:
for key, match_val in find_query.items():
if item.get(key) != match_val:
return False
return True

# Return the first element to match
for document in self._data:
if _is_match(document):
return document
return None
return [document for document in self._data if _is_match(document)]

def update_one( # type: ignore
self,
Expand Down