Skip to content

Commit

Permalink
langchain-mongodb: add unit tests for MongoDBChatMessageHistory (lang…
Browse files Browse the repository at this point in the history
…chain-ai#18599)

## Description
Adding in Unit Test variation for `MongoDBChatMessageHistory` package
Follow-up to langchain-ai#18590 

- [x] **Add tests and docs**: Unit test is what's being added
  

- [x] **Lint and test**: Run `make format`, `make lint` and `make test`
from the root of the package(s) you've modified. See contribution
guidelines for more: https://python.langchain.com/docs/contributing/
  • Loading branch information
Jibola authored and thebhulawat committed Mar 6, 2024
1 parent 2de51be commit 1b27f9b
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 6 deletions.
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

0 comments on commit 1b27f9b

Please sign in to comment.