2023-06-29 06:01:17 +00:00
|
|
|
from .test_nodes import (
|
|
|
|
ImageToImageTestInvocation,
|
|
|
|
TextToImageTestInvocation,
|
|
|
|
ListPassThroughInvocation,
|
|
|
|
PromptTestInvocation,
|
2023-07-27 14:54:01 +00:00
|
|
|
)
|
2023-03-15 06:09:30 +00:00
|
|
|
from invokeai.app.services.graph import (
|
|
|
|
Edge,
|
|
|
|
Graph,
|
|
|
|
GraphInvocation,
|
|
|
|
InvalidEdgeError,
|
|
|
|
NodeAlreadyInGraphError,
|
|
|
|
NodeNotFoundError,
|
|
|
|
are_connections_compatible,
|
|
|
|
EdgeConnection,
|
|
|
|
CollectInvocation,
|
|
|
|
IterateInvocation,
|
2023-07-27 14:54:01 +00:00
|
|
|
)
|
2023-07-18 23:45:26 +00:00
|
|
|
from invokeai.app.invocations.upscale import ESRGANInvocation
|
2023-04-14 06:41:06 +00:00
|
|
|
from invokeai.app.invocations.image import *
|
|
|
|
from invokeai.app.invocations.math import AddInvocation, SubtractInvocation
|
2023-08-14 09:41:29 +00:00
|
|
|
from invokeai.app.invocations.primitives import IntegerInvocation
|
2023-04-14 06:41:06 +00:00
|
|
|
from invokeai.app.services.default_graphs import create_text_to_image
|
2022-12-01 05:33:20 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
|
# Helpers
|
2023-03-15 06:09:30 +00:00
|
|
|
def create_edge(from_id: str, from_field: str, to_id: str, to_field: str) -> Edge:
|
|
|
|
return Edge(
|
|
|
|
source=EdgeConnection(node_id=from_id, field=from_field),
|
|
|
|
destination=EdgeConnection(node_id=to_id, field=to_field),
|
|
|
|
)
|
2022-12-01 05:33:20 +00:00
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
# Tests
|
|
|
|
def test_connections_are_compatible():
|
2023-06-29 06:01:17 +00:00
|
|
|
from_node = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
from_field = "image"
|
2023-07-18 23:45:26 +00:00
|
|
|
to_node = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
to_field = "image"
|
|
|
|
|
|
|
|
result = are_connections_compatible(from_node, from_field, to_node, to_field)
|
|
|
|
|
|
|
|
assert result == True
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_connections_are_incompatible():
|
2023-06-29 06:01:17 +00:00
|
|
|
from_node = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
from_field = "image"
|
2023-07-18 23:45:26 +00:00
|
|
|
to_node = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
to_field = "strength"
|
|
|
|
|
|
|
|
result = are_connections_compatible(from_node, from_field, to_node, to_field)
|
|
|
|
|
|
|
|
assert result == False
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_connections_incompatible_with_invalid_fields():
|
2023-06-29 06:01:17 +00:00
|
|
|
from_node = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
from_field = "invalid_field"
|
2023-07-18 23:45:26 +00:00
|
|
|
to_node = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
to_field = "image"
|
|
|
|
|
|
|
|
# From field is invalid
|
|
|
|
result = are_connections_compatible(from_node, from_field, to_node, to_field)
|
|
|
|
assert result == False
|
|
|
|
|
|
|
|
# To field is invalid
|
|
|
|
from_field = "image"
|
|
|
|
to_field = "invalid_field"
|
|
|
|
|
|
|
|
result = are_connections_compatible(from_node, from_field, to_node, to_field)
|
|
|
|
assert result == False
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_can_add_node():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n)
|
|
|
|
|
|
|
|
assert n.id in g.nodes
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_fails_to_add_node_with_duplicate_id():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n)
|
2023-06-29 06:01:17 +00:00
|
|
|
n2 = TextToImageTestInvocation(id="1", prompt="Banana sushi the second")
|
2022-12-01 05:33:20 +00:00
|
|
|
|
|
|
|
with pytest.raises(NodeAlreadyInGraphError):
|
|
|
|
g.add_node(n2)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_updates_node():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n)
|
2023-06-29 06:01:17 +00:00
|
|
|
n2 = TextToImageTestInvocation(id="2", prompt="Banana sushi the second")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n2)
|
|
|
|
|
2023-06-29 06:01:17 +00:00
|
|
|
nu = TextToImageTestInvocation(id="1", prompt="Banana sushi updated")
|
2022-12-01 05:33:20 +00:00
|
|
|
|
|
|
|
g.update_node("1", nu)
|
|
|
|
|
|
|
|
assert g.nodes["1"].prompt == "Banana sushi updated"
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_fails_to_update_node_if_type_changes():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n)
|
2023-07-18 23:45:26 +00:00
|
|
|
n2 = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n2)
|
|
|
|
|
2023-07-18 23:45:26 +00:00
|
|
|
nu = ESRGANInvocation(id="1")
|
2022-12-01 05:33:20 +00:00
|
|
|
|
|
|
|
with pytest.raises(TypeError):
|
|
|
|
g.update_node("1", nu)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_allows_non_conflicting_id_change():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n)
|
2023-07-18 23:45:26 +00:00
|
|
|
n2 = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n2)
|
|
|
|
e1 = create_edge(n.id, "image", n2.id, "image")
|
|
|
|
g.add_edge(e1)
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2023-06-29 06:01:17 +00:00
|
|
|
nu = TextToImageTestInvocation(id="3", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.update_node("1", nu)
|
|
|
|
|
|
|
|
with pytest.raises(NodeNotFoundError):
|
|
|
|
g.get_node("1")
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
assert g.get_node("3").prompt == "Banana sushi"
|
|
|
|
|
|
|
|
assert len(g.edges) == 1
|
2023-03-15 06:09:30 +00:00
|
|
|
assert (
|
|
|
|
Edge(source=EdgeConnection(node_id="3", field="image"), destination=EdgeConnection(node_id="2", field="image"))
|
|
|
|
in g.edges
|
2023-07-27 14:54:01 +00:00
|
|
|
)
|
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
|
|
|
|
def test_graph_fails_to_update_node_id_if_conflict():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n)
|
2023-06-29 06:01:17 +00:00
|
|
|
n2 = TextToImageTestInvocation(id="2", prompt="Banana sushi the second")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n2)
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2023-06-29 06:01:17 +00:00
|
|
|
nu = TextToImageTestInvocation(id="2", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
with pytest.raises(NodeAlreadyInGraphError):
|
|
|
|
g.update_node("1", nu)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_adds_edge():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2023-07-18 23:45:26 +00:00
|
|
|
n2 = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
e = create_edge(n1.id, "image", n2.id, "image")
|
|
|
|
|
|
|
|
g.add_edge(e)
|
|
|
|
|
|
|
|
assert e in g.edges
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_fails_to_add_edge_with_cycle():
|
|
|
|
g = Graph()
|
2023-07-18 23:45:26 +00:00
|
|
|
n1 = ESRGANInvocation(id="1")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n1)
|
|
|
|
e = create_edge(n1.id, "image", n1.id, "image")
|
|
|
|
with pytest.raises(InvalidEdgeError):
|
|
|
|
g.add_edge(e)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_fails_to_add_edge_with_long_cycle():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2023-07-18 23:45:26 +00:00
|
|
|
n2 = ESRGANInvocation(id="2")
|
|
|
|
n3 = ESRGANInvocation(id="3")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
g.add_node(n3)
|
|
|
|
e1 = create_edge(n1.id, "image", n2.id, "image")
|
|
|
|
e2 = create_edge(n2.id, "image", n3.id, "image")
|
|
|
|
e3 = create_edge(n3.id, "image", n2.id, "image")
|
|
|
|
g.add_edge(e1)
|
|
|
|
g.add_edge(e2)
|
|
|
|
with pytest.raises(InvalidEdgeError):
|
|
|
|
g.add_edge(e3)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_fails_to_add_edge_with_missing_node_id():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2023-07-18 23:45:26 +00:00
|
|
|
n2 = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
e1 = create_edge("1", "image", "3", "image")
|
|
|
|
e2 = create_edge("3", "image", "1", "image")
|
|
|
|
with pytest.raises(InvalidEdgeError):
|
|
|
|
g.add_edge(e1)
|
|
|
|
with pytest.raises(InvalidEdgeError):
|
|
|
|
g.add_edge(e2)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_fails_to_add_edge_when_destination_exists():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2023-07-18 23:45:26 +00:00
|
|
|
n2 = ESRGANInvocation(id="2")
|
|
|
|
n3 = ESRGANInvocation(id="3")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
g.add_node(n3)
|
|
|
|
e1 = create_edge(n1.id, "image", n2.id, "image")
|
|
|
|
e2 = create_edge(n1.id, "image", n3.id, "image")
|
|
|
|
e3 = create_edge(n2.id, "image", n3.id, "image")
|
|
|
|
g.add_edge(e1)
|
|
|
|
g.add_edge(e2)
|
|
|
|
with pytest.raises(InvalidEdgeError):
|
|
|
|
g.add_edge(e3)
|
|
|
|
|
|
|
|
|
|
|
|
def test_graph_fails_to_add_edge_with_mismatched_types():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2023-07-18 23:45:26 +00:00
|
|
|
n2 = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
e1 = create_edge("1", "image", "2", "strength")
|
|
|
|
with pytest.raises(InvalidEdgeError):
|
|
|
|
g.add_edge(e1)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_connects_collector():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
|
|
|
n2 = TextToImageTestInvocation(id="2", prompt="Banana sushi 2")
|
2022-12-01 05:33:20 +00:00
|
|
|
n3 = CollectInvocation(id="3")
|
|
|
|
n4 = ListPassThroughInvocation(id="4")
|
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
g.add_node(n3)
|
|
|
|
g.add_node(n4)
|
|
|
|
|
|
|
|
e1 = create_edge("1", "image", "3", "item")
|
|
|
|
e2 = create_edge("2", "image", "3", "item")
|
|
|
|
e3 = create_edge("3", "collection", "4", "collection")
|
|
|
|
g.add_edge(e1)
|
|
|
|
g.add_edge(e2)
|
|
|
|
g.add_edge(e3)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
# TODO: test that derived types mixed with base types are compatible
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_collector_invalid_with_varying_input_types():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
n2 = PromptTestInvocation(id="2", prompt="banana sushi 2")
|
|
|
|
n3 = CollectInvocation(id="3")
|
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
g.add_node(n3)
|
|
|
|
|
|
|
|
e1 = create_edge("1", "image", "3", "item")
|
|
|
|
e2 = create_edge("2", "prompt", "3", "item")
|
|
|
|
g.add_edge(e1)
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
with pytest.raises(InvalidEdgeError):
|
|
|
|
g.add_edge(e2)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_collector_invalid_with_varying_input_output():
|
|
|
|
g = Graph()
|
|
|
|
n1 = PromptTestInvocation(id="1", prompt="Banana sushi")
|
|
|
|
n2 = PromptTestInvocation(id="2", prompt="Banana sushi 2")
|
|
|
|
n3 = CollectInvocation(id="3")
|
|
|
|
n4 = ListPassThroughInvocation(id="4")
|
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
g.add_node(n3)
|
|
|
|
g.add_node(n4)
|
|
|
|
|
|
|
|
e1 = create_edge("1", "prompt", "3", "item")
|
|
|
|
e2 = create_edge("2", "prompt", "3", "item")
|
|
|
|
e3 = create_edge("3", "collection", "4", "collection")
|
|
|
|
g.add_edge(e1)
|
|
|
|
g.add_edge(e2)
|
|
|
|
|
|
|
|
with pytest.raises(InvalidEdgeError):
|
|
|
|
g.add_edge(e3)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_collector_invalid_with_non_list_output():
|
|
|
|
g = Graph()
|
|
|
|
n1 = PromptTestInvocation(id="1", prompt="Banana sushi")
|
|
|
|
n2 = PromptTestInvocation(id="2", prompt="Banana sushi 2")
|
|
|
|
n3 = CollectInvocation(id="3")
|
|
|
|
n4 = PromptTestInvocation(id="4")
|
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
g.add_node(n3)
|
|
|
|
g.add_node(n4)
|
|
|
|
|
|
|
|
e1 = create_edge("1", "prompt", "3", "item")
|
|
|
|
e2 = create_edge("2", "prompt", "3", "item")
|
|
|
|
e3 = create_edge("3", "collection", "4", "prompt")
|
|
|
|
g.add_edge(e1)
|
|
|
|
g.add_edge(e2)
|
|
|
|
|
|
|
|
with pytest.raises(InvalidEdgeError):
|
|
|
|
g.add_edge(e3)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_connects_iterator():
|
|
|
|
g = Graph()
|
|
|
|
n1 = ListPassThroughInvocation(id="1")
|
|
|
|
n2 = IterateInvocation(id="2")
|
2023-06-29 06:01:17 +00:00
|
|
|
n3 = ImageToImageTestInvocation(id="3", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
g.add_node(n3)
|
|
|
|
|
|
|
|
e1 = create_edge("1", "collection", "2", "collection")
|
|
|
|
e2 = create_edge("2", "item", "3", "image")
|
|
|
|
g.add_edge(e1)
|
|
|
|
g.add_edge(e2)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
# TODO: TEST INVALID ITERATOR SCENARIOS
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_iterator_invalid_if_multiple_inputs():
|
|
|
|
g = Graph()
|
|
|
|
n1 = ListPassThroughInvocation(id="1")
|
|
|
|
n2 = IterateInvocation(id="2")
|
2023-06-29 06:01:17 +00:00
|
|
|
n3 = ImageToImageTestInvocation(id="3", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
n4 = ListPassThroughInvocation(id="4")
|
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
g.add_node(n3)
|
|
|
|
g.add_node(n4)
|
|
|
|
|
|
|
|
e1 = create_edge("1", "collection", "2", "collection")
|
|
|
|
e2 = create_edge("2", "item", "3", "image")
|
|
|
|
e3 = create_edge("4", "collection", "2", "collection")
|
|
|
|
g.add_edge(e1)
|
|
|
|
g.add_edge(e2)
|
|
|
|
|
|
|
|
with pytest.raises(InvalidEdgeError):
|
|
|
|
g.add_edge(e3)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_iterator_invalid_if_input_not_list():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
n2 = IterateInvocation(id="2")
|
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
|
|
|
|
e1 = create_edge("1", "collection", "2", "collection")
|
|
|
|
|
|
|
|
with pytest.raises(InvalidEdgeError):
|
|
|
|
g.add_edge(e1)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_iterator_invalid_if_output_and_input_types_different():
|
|
|
|
g = Graph()
|
|
|
|
n1 = ListPassThroughInvocation(id="1")
|
|
|
|
n2 = IterateInvocation(id="2")
|
|
|
|
n3 = PromptTestInvocation(id="3", prompt="Banana sushi")
|
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
g.add_node(n3)
|
|
|
|
|
|
|
|
e1 = create_edge("1", "collection", "2", "collection")
|
|
|
|
e2 = create_edge("2", "item", "3", "prompt")
|
|
|
|
g.add_edge(e1)
|
|
|
|
|
|
|
|
with pytest.raises(InvalidEdgeError):
|
|
|
|
g.add_edge(e2)
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_validates():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2023-07-18 23:45:26 +00:00
|
|
|
n2 = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
e1 = create_edge("1", "image", "2", "image")
|
|
|
|
g.add_edge(e1)
|
|
|
|
|
|
|
|
assert g.is_valid() == True
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_invalid_if_edges_reference_missing_nodes():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.nodes[n1.id] = n1
|
|
|
|
e1 = create_edge("1", "image", "2", "image")
|
|
|
|
g.edges.append(e1)
|
|
|
|
|
|
|
|
assert g.is_valid() == False
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_invalid_if_subgraph_invalid():
|
|
|
|
g = Graph()
|
|
|
|
n1 = GraphInvocation(id="1")
|
|
|
|
n1.graph = Graph()
|
|
|
|
|
2023-06-29 06:01:17 +00:00
|
|
|
n1_1 = TextToImageTestInvocation(id="2", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
n1.graph.nodes[n1_1.id] = n1_1
|
|
|
|
e1 = create_edge("1", "image", "2", "image")
|
|
|
|
n1.graph.edges.append(e1)
|
|
|
|
|
|
|
|
g.nodes[n1.id] = n1
|
|
|
|
|
|
|
|
assert g.is_valid() == False
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_invalid_if_has_cycle():
|
|
|
|
g = Graph()
|
2023-07-18 23:45:26 +00:00
|
|
|
n1 = ESRGANInvocation(id="1")
|
|
|
|
n2 = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.nodes[n1.id] = n1
|
|
|
|
g.nodes[n2.id] = n2
|
|
|
|
e1 = create_edge("1", "image", "2", "image")
|
|
|
|
e2 = create_edge("2", "image", "1", "image")
|
|
|
|
g.edges.append(e1)
|
|
|
|
g.edges.append(e2)
|
|
|
|
|
|
|
|
assert g.is_valid() == False
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_invalid_with_invalid_connection():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2023-07-18 23:45:26 +00:00
|
|
|
n2 = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.nodes[n1.id] = n1
|
|
|
|
g.nodes[n2.id] = n2
|
|
|
|
e1 = create_edge("1", "image", "2", "strength")
|
|
|
|
g.edges.append(e1)
|
|
|
|
|
|
|
|
assert g.is_valid() == False
|
|
|
|
|
|
|
|
|
|
|
|
# TODO: Subgraph operations
|
|
|
|
def test_graph_gets_subgraph_node():
|
|
|
|
g = Graph()
|
|
|
|
n1 = GraphInvocation(id="1")
|
|
|
|
n1.graph = Graph()
|
|
|
|
n1.graph.add_node
|
|
|
|
|
2023-06-29 06:01:17 +00:00
|
|
|
n1_1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
n1.graph.add_node(n1_1)
|
|
|
|
|
|
|
|
g.add_node(n1)
|
|
|
|
|
|
|
|
result = g.get_node("1.1")
|
|
|
|
|
|
|
|
assert result is not None
|
|
|
|
assert result.id == "1"
|
|
|
|
assert result == n1_1
|
|
|
|
|
2023-04-14 06:41:06 +00:00
|
|
|
|
|
|
|
def test_graph_expands_subgraph():
|
|
|
|
g = Graph()
|
|
|
|
n1 = GraphInvocation(id="1")
|
|
|
|
n1.graph = Graph()
|
|
|
|
|
|
|
|
n1_1 = AddInvocation(id="1", a=1, b=2)
|
|
|
|
n1_2 = SubtractInvocation(id="2", b=3)
|
|
|
|
n1.graph.add_node(n1_1)
|
|
|
|
n1.graph.add_node(n1_2)
|
|
|
|
n1.graph.add_edge(create_edge("1", "a", "2", "a"))
|
|
|
|
|
|
|
|
g.add_node(n1)
|
|
|
|
|
|
|
|
n2 = AddInvocation(id="2", b=5)
|
|
|
|
g.add_node(n2)
|
|
|
|
g.add_edge(create_edge("1.2", "a", "2", "a"))
|
|
|
|
|
|
|
|
dg = g.nx_graph_flat()
|
|
|
|
assert set(dg.nodes) == set(["1.1", "1.2", "2"])
|
|
|
|
assert set(dg.edges) == set([("1.1", "1.2"), ("1.2", "2")])
|
|
|
|
|
|
|
|
|
|
|
|
def test_graph_subgraph_t2i():
|
|
|
|
g = Graph()
|
|
|
|
n1 = GraphInvocation(id="1")
|
|
|
|
|
|
|
|
# Get text to image default graph
|
|
|
|
lg = create_text_to_image()
|
|
|
|
n1.graph = lg.graph
|
|
|
|
|
|
|
|
g.add_node(n1)
|
|
|
|
|
2023-08-14 09:41:29 +00:00
|
|
|
n2 = IntegerInvocation(id="2", a=512)
|
|
|
|
n3 = IntegerInvocation(id="3", a=256)
|
2023-04-14 06:41:06 +00:00
|
|
|
|
|
|
|
g.add_node(n2)
|
|
|
|
g.add_node(n3)
|
|
|
|
|
|
|
|
g.add_edge(create_edge("2", "a", "1.width", "a"))
|
|
|
|
g.add_edge(create_edge("3", "a", "1.height", "a"))
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2023-04-14 06:41:06 +00:00
|
|
|
n4 = ShowImageInvocation(id="4")
|
|
|
|
g.add_node(n4)
|
2023-07-26 08:49:29 +00:00
|
|
|
g.add_edge(create_edge("1.8", "image", "4", "image"))
|
2023-04-14 06:41:06 +00:00
|
|
|
|
|
|
|
# Validate
|
|
|
|
dg = g.nx_graph_flat()
|
2023-07-26 08:49:29 +00:00
|
|
|
assert set(dg.nodes) == set(
|
|
|
|
["1.width", "1.height", "1.seed", "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "2", "3", "4"]
|
|
|
|
)
|
2023-04-14 06:41:06 +00:00
|
|
|
expected_edges = [(f"1.{e.source.node_id}", f"1.{e.destination.node_id}") for e in lg.graph.edges]
|
|
|
|
expected_edges.extend([("2", "1.width"), ("3", "1.height"), ("1.8", "4")])
|
|
|
|
print(expected_edges)
|
|
|
|
print(list(dg.edges))
|
|
|
|
assert set(dg.edges) == set(expected_edges)
|
|
|
|
|
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_fails_to_get_missing_subgraph_node():
|
|
|
|
g = Graph()
|
|
|
|
n1 = GraphInvocation(id="1")
|
|
|
|
n1.graph = Graph()
|
|
|
|
n1.graph.add_node
|
|
|
|
|
2023-06-29 06:01:17 +00:00
|
|
|
n1_1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
n1.graph.add_node(n1_1)
|
|
|
|
|
|
|
|
g.add_node(n1)
|
|
|
|
|
|
|
|
with pytest.raises(NodeNotFoundError):
|
|
|
|
result = g.get_node("1.2")
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
|
|
|
|
def test_graph_fails_to_enumerate_non_subgraph_node():
|
|
|
|
g = Graph()
|
|
|
|
n1 = GraphInvocation(id="1")
|
|
|
|
n1.graph = Graph()
|
|
|
|
n1.graph.add_node
|
|
|
|
|
2023-06-29 06:01:17 +00:00
|
|
|
n1_1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2022-12-01 05:33:20 +00:00
|
|
|
n1.graph.add_node(n1_1)
|
|
|
|
|
|
|
|
g.add_node(n1)
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2023-07-18 23:45:26 +00:00
|
|
|
n2 = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n2)
|
|
|
|
|
|
|
|
with pytest.raises(NodeNotFoundError):
|
|
|
|
result = g.get_node("2.1")
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
|
|
|
|
def test_graph_gets_networkx_graph():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2023-07-18 23:45:26 +00:00
|
|
|
n2 = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
e = create_edge(n1.id, "image", n2.id, "image")
|
|
|
|
g.add_edge(e)
|
|
|
|
|
|
|
|
nxg = g.nx_graph()
|
|
|
|
|
|
|
|
assert "1" in nxg.nodes
|
|
|
|
assert "2" in nxg.nodes
|
|
|
|
assert ("1", "2") in nxg.edges
|
|
|
|
|
|
|
|
|
|
|
|
# TODO: Graph serializes and deserializes
|
|
|
|
def test_graph_can_serialize():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2023-07-18 23:45:26 +00:00
|
|
|
n2 = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
e = create_edge(n1.id, "image", n2.id, "image")
|
|
|
|
g.add_edge(e)
|
|
|
|
|
|
|
|
# Not throwing on this line is sufficient
|
|
|
|
json = g.json()
|
|
|
|
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
def test_graph_can_deserialize():
|
|
|
|
g = Graph()
|
2023-06-29 06:01:17 +00:00
|
|
|
n1 = TextToImageTestInvocation(id="1", prompt="Banana sushi")
|
2023-07-18 23:45:26 +00:00
|
|
|
n2 = ESRGANInvocation(id="2")
|
2022-12-01 05:33:20 +00:00
|
|
|
g.add_node(n1)
|
|
|
|
g.add_node(n2)
|
|
|
|
e = create_edge(n1.id, "image", n2.id, "image")
|
|
|
|
g.add_edge(e)
|
|
|
|
|
|
|
|
json = g.json()
|
|
|
|
g2 = Graph.parse_raw(json)
|
|
|
|
|
|
|
|
assert g2 is not None
|
|
|
|
assert g2.nodes["1"] is not None
|
|
|
|
assert g2.nodes["2"] is not None
|
|
|
|
assert len(g2.edges) == 1
|
2023-03-15 06:09:30 +00:00
|
|
|
assert g2.edges[0].source.node_id == "1"
|
|
|
|
assert g2.edges[0].source.field == "image"
|
|
|
|
assert g2.edges[0].destination.node_id == "2"
|
|
|
|
assert g2.edges[0].destination.field == "image"
|
2023-07-27 14:54:01 +00:00
|
|
|
|
2022-12-01 05:33:20 +00:00
|
|
|
|
|
|
|
def test_graph_can_generate_schema():
|
|
|
|
# Not throwing on this line is sufficient
|
|
|
|
# NOTE: if this test fails, it's PROBABLY because a new invocation type is breaking schema generation
|
|
|
|
schema = Graph.schema_json(indent=2)
|