Lines Matching full:connect
149 sock.connect(address)
241 # The states we expect a "bad" connect/accept attempt to transition through
292 class Connect(TestBase): class
294 Tests primarily related to calling Connect().
300 await self.proto.connect(('127.0.0.1', 0))
302 await self.proto.connect('/dev/null')
306 await self.proto.connect(addr)
403 AFTER a connection is made, i.e., connect()/accept() themselves
420 class Accept(Connect):
422 All of the same tests as Connect, but using the accept() interface.
457 """Test the full state lifecycle (via connect) with a no-op session."""
458 await self.proto.connect('/not/a/real/path')
510 await self.proto.connect('/not/a/real/path')
529 """Test that connect() cannot be called when Runstate=RUNNING"""
555 """Test that connect() cannot be called when Runstate=DISCONNECTING"""
596 await self.proto.connect(sock)