mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
ed58eeb9c5
Moved the following modules to new package langchain-community in a backwards compatible fashion: ``` mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community ``` Moved the following to core ``` mv langchain/langchain/utils/json_schema.py core/langchain_core/utils mv langchain/langchain/utils/html.py core/langchain_core/utils mv langchain/langchain/utils/strings.py core/langchain_core/utils cat langchain/langchain/utils/env.py >> core/langchain_core/utils/env.py rm langchain/langchain/utils/env.py ``` See .scripts/community_split/script_integrations.sh for all changes
95 lines
3.2 KiB
Python
95 lines
3.2 KiB
Python
import unittest
|
|
from typing import Any
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
import requests_mock
|
|
from requests_mock.mocker import Mocker
|
|
|
|
from langchain_community.document_loaders.lakefs import LakeFSLoader
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_lakefs_client() -> Any:
|
|
with patch(
|
|
"langchain_community.document_loaders.lakefs.LakeFSClient"
|
|
) as mock_lakefs_client:
|
|
mock_lakefs_client.return_value.ls_objects.return_value = [
|
|
("path_bla.txt", "https://physical_address_bla")
|
|
]
|
|
mock_lakefs_client.return_value.is_presign_supported.return_value = True
|
|
yield mock_lakefs_client.return_value
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_lakefs_client_no_presign_not_local() -> Any:
|
|
with patch(
|
|
"langchain_community.document_loaders.lakefs.LakeFSClient"
|
|
) as mock_lakefs_client:
|
|
mock_lakefs_client.return_value.ls_objects.return_value = [
|
|
("path_bla.txt", "https://physical_address_bla")
|
|
]
|
|
mock_lakefs_client.return_value.is_presign_supported.return_value = False
|
|
yield mock_lakefs_client.return_value
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_unstructured_local() -> Any:
|
|
with patch(
|
|
"langchain_community.document_loaders.lakefs.UnstructuredLakeFSLoader"
|
|
) as mock_unstructured_lakefs:
|
|
mock_unstructured_lakefs.return_value.load.return_value = [
|
|
("text content", "pdf content")
|
|
]
|
|
yield mock_unstructured_lakefs.return_value
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_lakefs_client_no_presign_local() -> Any:
|
|
with patch(
|
|
"langchain_community.document_loaders.lakefs.LakeFSClient"
|
|
) as mock_lakefs_client:
|
|
mock_lakefs_client.return_value.ls_objects.return_value = [
|
|
("path_bla.txt", "local:///physical_address_bla")
|
|
]
|
|
mock_lakefs_client.return_value.is_presign_supported.return_value = False
|
|
yield mock_lakefs_client.return_value
|
|
|
|
|
|
class TestLakeFSLoader(unittest.TestCase):
|
|
lakefs_access_key = "lakefs_access_key"
|
|
lakefs_secret_key = "lakefs_secret_key"
|
|
endpoint = "endpoint"
|
|
repo = "repo"
|
|
ref = "ref"
|
|
path = "path"
|
|
|
|
@requests_mock.Mocker()
|
|
@pytest.mark.usefixtures("mock_lakefs_client_no_presign_not_local")
|
|
def test_non_presigned_loading_fail(self, mocker: Mocker) -> None:
|
|
mocker.register_uri(requests_mock.ANY, requests_mock.ANY, status_code=200)
|
|
loader = LakeFSLoader(
|
|
self.lakefs_access_key, self.lakefs_secret_key, self.endpoint
|
|
)
|
|
loader.set_repo(self.repo)
|
|
loader.set_ref(self.ref)
|
|
loader.set_path(self.path)
|
|
with pytest.raises(ValueError):
|
|
loader.load()
|
|
|
|
@requests_mock.Mocker()
|
|
@pytest.mark.usefixtures(
|
|
"mock_lakefs_client_no_presign_local", "mock_unstructured_local"
|
|
)
|
|
def test_non_presigned_loading(self, mocker: Mocker) -> None:
|
|
mocker.register_uri(requests_mock.ANY, requests_mock.ANY, status_code=200)
|
|
loader = LakeFSLoader(
|
|
lakefs_access_key="lakefs_access_key",
|
|
lakefs_secret_key="lakefs_secret_key",
|
|
lakefs_endpoint=self.endpoint,
|
|
)
|
|
loader.set_repo(self.repo)
|
|
loader.set_ref(self.ref)
|
|
loader.set_path(self.path)
|
|
loader.load()
|