merge dev into main #49

Merged
8464960 merged 430 commits from dev into main 2026-01-28 10:49:15 +00:00
Showing only changes of commit 77c6704632 - Show all commits

View File

@@ -88,7 +88,7 @@ async def test_setup_creates_socket_and_negotiate_1(monkeypatch):
MockCommandAgent.assert_called_once_with( MockCommandAgent.assert_called_once_with(
ANY, # Server Name ANY, # Server Name
ANY, # Server Password ANY, # Server Password
address="tcp://localhost:5556", # derived from the 'port' value in negotiation address="tcp://*:5556", # derived from the 'port' value in negotiation
bind=True bind=True
) )
# Ensure the agent attached a ListenBehaviour # Ensure the agent attached a ListenBehaviour
@@ -124,7 +124,7 @@ async def test_setup_creates_socket_and_negotiate_2(monkeypatch):
MockCommandAgent.assert_called_once_with( MockCommandAgent.assert_called_once_with(
ANY, # Server Name ANY, # Server Name
ANY, # Server Password ANY, # Server Password
address="tcp://localhost:5557", # derived from the 'port' value in negotiation address="tcp://*:5557", # derived from the 'port' value in negotiation
bind=True bind=True
) )
# Ensure the agent attached a ListenBehaviour # Ensure the agent attached a ListenBehaviour
@@ -198,7 +198,7 @@ async def test_setup_creates_socket_and_negotiate_4(monkeypatch):
MockCommandAgent.assert_called_once_with( MockCommandAgent.assert_called_once_with(
ANY, # Server Name ANY, # Server Name
ANY, # Server Password ANY, # Server Password
address="tcp://localhost:5557", # derived from the 'port' value in negotiation address="tcp://*:5557", # derived from the 'port' value in negotiation
bind=True bind=True
) )
# Ensure the agent attached a ListenBehaviour # Ensure the agent attached a ListenBehaviour
@@ -234,7 +234,7 @@ async def test_setup_creates_socket_and_negotiate_5(monkeypatch):
MockCommandAgent.assert_called_once_with( MockCommandAgent.assert_called_once_with(
ANY, # Server Name ANY, # Server Name
ANY, # Server Password ANY, # Server Password
address="tcp://localhost:5557", # derived from the 'port' value in negotiation address="tcp://*:5557", # derived from the 'port' value in negotiation
bind=True bind=True
) )
# Ensure the agent attached a ListenBehaviour # Ensure the agent attached a ListenBehaviour
@@ -270,7 +270,7 @@ async def test_setup_creates_socket_and_negotiate_6(monkeypatch):
MockCommandAgent.assert_called_once_with( MockCommandAgent.assert_called_once_with(
ANY, # Server Name ANY, # Server Name
ANY, # Server Password ANY, # Server Password
address="tcp://localhost:5557", # derived from the 'port' value in negotiation address="tcp://*:5557", # derived from the 'port' value in negotiation
bind=True bind=True
) )
# Ensure the agent attached a ListenBehaviour # Ensure the agent attached a ListenBehaviour