mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-26 17:42:24 +02:00
460 lines
14 KiB
Python
460 lines
14 KiB
Python
import time
|
|
from concurrent.futures import ThreadPoolExecutor
|
|
from contextlib import contextmanager
|
|
from typing import Generator
|
|
|
|
import pytest
|
|
from langchain.schema.runnable import RunnablePassthrough
|
|
from pytest_mock import MockerFixture
|
|
|
|
from permchain import Channel, Pregel
|
|
from permchain.channels.base import InvalidUpdateError
|
|
from permchain.channels.context import Context
|
|
from permchain.channels.inbox import Inbox
|
|
from permchain.channels.last_value import LastValue
|
|
|
|
|
|
def test_invoke_single_process_in_out(mocker: MockerFixture) -> None:
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
chain = Channel.subscribe_to("input") | add_one | Channel.write_to("output")
|
|
|
|
app = Pregel(
|
|
chains={
|
|
"one": chain,
|
|
},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
},
|
|
input="input",
|
|
output="output",
|
|
)
|
|
|
|
assert app.input_schema.schema() == {"title": "PregelInput", "type": "integer"}
|
|
assert app.output_schema.schema() == {"title": "PregelOutput", "type": "integer"}
|
|
assert app.invoke(2) == 3
|
|
|
|
|
|
def test_invoke_single_process_in_out_dict(mocker: MockerFixture) -> None:
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
chain = Channel.subscribe_to("input") | add_one | Channel.write_to("output")
|
|
|
|
app = Pregel(
|
|
chains={
|
|
"one": chain,
|
|
},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
},
|
|
input="input",
|
|
output=["output"],
|
|
)
|
|
|
|
assert app.input_schema.schema() == {"title": "PregelInput", "type": "integer"}
|
|
assert app.output_schema.schema() == {
|
|
"title": "PregelOutput",
|
|
"type": "object",
|
|
"properties": {"output": {"title": "Output", "type": "integer"}},
|
|
}
|
|
assert app.invoke(2) == {"output": 3}
|
|
|
|
|
|
def test_invoke_single_process_in_dict_out_dict(mocker: MockerFixture) -> None:
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
chain = Channel.subscribe_to("input") | add_one | Channel.write_to("output")
|
|
|
|
app = Pregel(
|
|
chains={
|
|
"one": chain,
|
|
},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
},
|
|
input=["input"],
|
|
output=["output"],
|
|
)
|
|
|
|
assert app.input_schema.schema() == {
|
|
"title": "PregelInput",
|
|
"type": "object",
|
|
"properties": {"input": {"title": "Input", "type": "integer"}},
|
|
}
|
|
assert app.output_schema.schema() == {
|
|
"title": "PregelOutput",
|
|
"type": "object",
|
|
"properties": {"output": {"title": "Output", "type": "integer"}},
|
|
}
|
|
assert app.invoke({"input": 2}) == {"output": 3}
|
|
|
|
|
|
def test_invoke_two_processes_in_out(mocker: MockerFixture) -> None:
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
chain_one = Channel.subscribe_to("input") | add_one | Channel.write_to("inbox")
|
|
chain_two = (
|
|
Channel.subscribe_to_each("inbox") | add_one | Channel.write_to("output")
|
|
)
|
|
|
|
app = Pregel(
|
|
chains={"chain_one": chain_one, "chain_two": chain_two},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
"inbox": Inbox(int),
|
|
},
|
|
input="input",
|
|
output="output",
|
|
)
|
|
|
|
assert app.invoke(2) == 4
|
|
|
|
|
|
def test_invoke_two_processes_in_dict_out(mocker: MockerFixture) -> None:
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
chain_one = Channel.subscribe_to("input") | add_one | Channel.write_to("inbox")
|
|
chain_two = (
|
|
Channel.subscribe_to_each("inbox") | add_one | Channel.write_to("output")
|
|
)
|
|
|
|
app = Pregel(
|
|
chains={"chain_one": chain_one, "chain_two": chain_two},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
"inbox": Inbox(int),
|
|
},
|
|
input=["input", "inbox"],
|
|
output="output",
|
|
)
|
|
|
|
assert [*app.stream({"input": 2, "inbox": 12})] == [13, 4] # [12 + 1, 2 + 1 + 1]
|
|
|
|
|
|
def test_batch_two_processes_in_out() -> None:
|
|
def add_one_with_delay(inp: int) -> int:
|
|
time.sleep(inp / 10)
|
|
return inp + 1
|
|
|
|
chain_one = (
|
|
Channel.subscribe_to("input") | add_one_with_delay | Channel.write_to("one")
|
|
)
|
|
chain_two = (
|
|
Channel.subscribe_to("one") | add_one_with_delay | Channel.write_to("output")
|
|
)
|
|
|
|
app = Pregel(
|
|
chains={"chain_one": chain_one, "chain_two": chain_two},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
"one": LastValue(int),
|
|
},
|
|
input="input",
|
|
output="output",
|
|
)
|
|
|
|
assert app.batch([3, 2, 1, 3, 5]) == [5, 4, 3, 5, 7]
|
|
|
|
|
|
def test_invoke_many_processes_in_out(mocker: MockerFixture) -> None:
|
|
test_size = 100
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
|
|
chans = {
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
"-1": LastValue(int),
|
|
}
|
|
chains = {"-1": Channel.subscribe_to("input") | add_one | Channel.write_to("-1")}
|
|
for i in range(test_size - 2):
|
|
chans[str(i)] = LastValue(int)
|
|
chains[str(i)] = (
|
|
Channel.subscribe_to(str(i - 1)) | add_one | Channel.write_to(str(i))
|
|
)
|
|
chains["last"] = Channel.subscribe_to(str(i)) | add_one | Channel.write_to("output")
|
|
|
|
app = Pregel(chains=chains, channels=chans, input="input", output="output")
|
|
|
|
for _ in range(10):
|
|
assert app.invoke(2, {"recursion_limit": test_size}) == 2 + test_size
|
|
|
|
with ThreadPoolExecutor() as executor:
|
|
assert [
|
|
*executor.map(app.invoke, [2] * 10, [{"recursion_limit": test_size}] * 10)
|
|
] == [2 + test_size] * 10
|
|
|
|
|
|
def test_batch_many_processes_in_out(mocker: MockerFixture) -> None:
|
|
test_size = 100
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
|
|
chans = {
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
"-1": LastValue(int),
|
|
}
|
|
chains = {"-1": Channel.subscribe_to("input") | add_one | Channel.write_to("-1")}
|
|
for i in range(test_size - 2):
|
|
chans[str(i)] = LastValue(int)
|
|
chains[str(i)] = (
|
|
Channel.subscribe_to(str(i - 1)) | add_one | Channel.write_to(str(i))
|
|
)
|
|
chains["last"] = Channel.subscribe_to(str(i)) | add_one | Channel.write_to("output")
|
|
|
|
app = Pregel(chains=chains, channels=chans, input="input", output="output")
|
|
|
|
for _ in range(10):
|
|
assert app.batch([2, 1, 3, 4, 5], {"recursion_limit": test_size}) == [
|
|
2 + test_size,
|
|
1 + test_size,
|
|
3 + test_size,
|
|
4 + test_size,
|
|
5 + test_size,
|
|
]
|
|
|
|
with ThreadPoolExecutor() as executor:
|
|
assert [
|
|
*executor.map(
|
|
app.batch, [[2, 1, 3, 4, 5]] * 10, [{"recursion_limit": test_size}] * 10
|
|
)
|
|
] == [
|
|
[2 + test_size, 1 + test_size, 3 + test_size, 4 + test_size, 5 + test_size]
|
|
] * 10
|
|
|
|
|
|
def test_invoke_two_processes_two_in_two_out_invalid(mocker: MockerFixture) -> None:
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
|
|
chain_one = Channel.subscribe_to("input") | add_one | Channel.write_to("output")
|
|
chain_two = Channel.subscribe_to("input") | add_one | Channel.write_to("output")
|
|
|
|
app = Pregel(
|
|
chains={"chain_one": chain_one, "chain_two": chain_two},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
},
|
|
input="input",
|
|
output="output",
|
|
)
|
|
|
|
with pytest.raises(InvalidUpdateError):
|
|
# LastValue channels can only be updated once per iteration
|
|
app.invoke(2)
|
|
|
|
|
|
def test_invoke_two_processes_two_in_two_out_valid(mocker: MockerFixture) -> None:
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
|
|
chain_one = Channel.subscribe_to("input") | add_one | Channel.write_to("output")
|
|
chain_two = Channel.subscribe_to("input") | add_one | Channel.write_to("output")
|
|
|
|
app = Pregel(
|
|
chains={"chain_one": chain_one, "chain_two": chain_two},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": Inbox(int),
|
|
},
|
|
input="input",
|
|
output="output",
|
|
)
|
|
|
|
# An Inbox channel accumulates updates into a sequence
|
|
assert app.invoke(2) == (3, 3)
|
|
|
|
|
|
def test_invoke_two_processes_two_in_join_two_out(mocker: MockerFixture) -> None:
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
add_10_each = mocker.Mock(side_effect=lambda x: sorted(y + 10 for y in x))
|
|
|
|
chain_one = Channel.subscribe_to("input") | add_one | Channel.write_to("inbox")
|
|
chain_three = Channel.subscribe_to("input") | add_one | Channel.write_to("inbox")
|
|
chain_four = (
|
|
Channel.subscribe_to("inbox") | add_10_each | Channel.write_to("output")
|
|
)
|
|
|
|
app = Pregel(
|
|
chains={
|
|
"chain_one": chain_one,
|
|
"chain_three": chain_three,
|
|
"chain_four": chain_four,
|
|
},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
"inbox": Inbox(int),
|
|
},
|
|
input="input",
|
|
output="output",
|
|
)
|
|
|
|
# Then invoke app
|
|
# We get a single array result as chain_four waits for all publishers to finish
|
|
# before operating on all elements published to topic_two as an array
|
|
for _ in range(100):
|
|
assert app.invoke(2) == [13, 13]
|
|
|
|
with ThreadPoolExecutor() as executor:
|
|
assert [*executor.map(app.invoke, [2] * 100)] == [[13, 13]] * 100
|
|
|
|
|
|
def test_invoke_join_then_call_other_app(mocker: MockerFixture) -> None:
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
add_10_each = mocker.Mock(side_effect=lambda x: [y + 10 for y in x])
|
|
|
|
inner_app = Pregel(
|
|
chains={
|
|
"one": Channel.subscribe_to("input") | add_one | Channel.write_to("output")
|
|
},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
},
|
|
input="input",
|
|
output="output",
|
|
)
|
|
|
|
chain_one = (
|
|
Channel.subscribe_to("input")
|
|
| add_10_each
|
|
| Channel.write_to("inbox_one").map()
|
|
)
|
|
chain_two = (
|
|
Channel.subscribe_to("inbox_one")
|
|
| inner_app.map()
|
|
| sorted
|
|
| Channel.write_to("outbox_one")
|
|
)
|
|
chain_three = Channel.subscribe_to("outbox_one") | sum | Channel.write_to("output")
|
|
|
|
app = Pregel(
|
|
chains={
|
|
"chain_one": chain_one,
|
|
"chain_two": chain_two,
|
|
"chain_three": chain_three,
|
|
},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
"inbox_one": Inbox(int),
|
|
"outbox_one": LastValue(int),
|
|
},
|
|
input="input",
|
|
output="output",
|
|
)
|
|
|
|
for _ in range(10):
|
|
assert app.invoke([2, 3]) == 27
|
|
|
|
with ThreadPoolExecutor() as executor:
|
|
assert [*executor.map(app.invoke, [[2, 3]] * 10)] == [27] * 10
|
|
|
|
|
|
def test_invoke_two_processes_one_in_two_out(mocker: MockerFixture) -> None:
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
|
|
chain_one = (
|
|
Channel.subscribe_to("input")
|
|
| add_one
|
|
| Channel.write_to(output=RunnablePassthrough(), between=RunnablePassthrough())
|
|
)
|
|
chain_two = Channel.subscribe_to("between") | add_one | Channel.write_to("output")
|
|
|
|
app = Pregel(
|
|
chains={"chain_one": chain_one, "chain_two": chain_two},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
"between": LastValue(int),
|
|
},
|
|
input="input",
|
|
output="output",
|
|
)
|
|
|
|
assert [c for c in app.stream(2)] == [3, 4]
|
|
|
|
|
|
def test_invoke_two_processes_no_out(mocker: MockerFixture) -> None:
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
chain_one = Channel.subscribe_to("input") | add_one | Channel.write_to("between")
|
|
chain_two = Channel.subscribe_to("between") | add_one
|
|
|
|
app = Pregel(
|
|
chains={"chain_one": chain_one, "chain_two": chain_two},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
"between": LastValue(int),
|
|
},
|
|
input="input",
|
|
output="output",
|
|
)
|
|
|
|
# It finishes executing (once no more messages being published)
|
|
# but returns nothing, as nothing was published to OUT topic
|
|
assert app.invoke(2) is None
|
|
|
|
|
|
def test_invoke_two_processes_no_in(mocker: MockerFixture) -> None:
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
|
|
chain_one = Channel.subscribe_to("between") | add_one | Channel.write_to("output")
|
|
chain_two = Channel.subscribe_to("between") | add_one
|
|
|
|
with pytest.raises(ValueError):
|
|
Pregel(
|
|
chains={"chain_one": chain_one, "chain_two": chain_two},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
"between": LastValue(int),
|
|
},
|
|
input="input",
|
|
output="output",
|
|
)
|
|
|
|
|
|
def test_channel_enter_exit_timing(mocker: MockerFixture) -> None:
|
|
setup = mocker.Mock()
|
|
cleanup = mocker.Mock()
|
|
|
|
@contextmanager
|
|
def an_int() -> Generator[int, None, None]:
|
|
setup()
|
|
try:
|
|
yield 5
|
|
finally:
|
|
cleanup()
|
|
|
|
add_one = mocker.Mock(side_effect=lambda x: x + 1)
|
|
chain_one = Channel.subscribe_to("input") | add_one | Channel.write_to("inbox")
|
|
chain_two = (
|
|
Channel.subscribe_to_each("inbox") | add_one | Channel.write_to("output")
|
|
)
|
|
|
|
app = Pregel(
|
|
chains={"chain_one": chain_one, "chain_two": chain_two},
|
|
channels={
|
|
"input": LastValue(int),
|
|
"output": LastValue(int),
|
|
"inbox": Inbox(int),
|
|
"ctx": Context(an_int, typ=int),
|
|
},
|
|
input="input",
|
|
output=["inbox", "output"],
|
|
)
|
|
|
|
assert setup.call_count == 0
|
|
assert cleanup.call_count == 0
|
|
for i, chunk in enumerate(app.stream(2)):
|
|
assert setup.call_count == 1, "Expected setup to be called once"
|
|
assert cleanup.call_count == 0, "Expected cleanup to not be called yet"
|
|
if i == 0:
|
|
assert chunk == {"inbox": (3,)}
|
|
elif i == 1:
|
|
assert chunk == {"output": 4}
|
|
else:
|
|
assert False, "Expected only two chunks"
|
|
assert cleanup.call_count == 1, "Expected cleanup to be called once"
|