Lines Matching full:connect
150 sock.connect(address)
242 # The states we expect a "bad" connect/accept attempt to transition through
293 class Connect(TestBase): class
295 Tests primarily related to calling Connect().
301 await self.proto.connect(('127.0.0.1', 0))
303 await self.proto.connect('/dev/null')
307 await self.proto.connect(addr)
404 AFTER a connection is made, i.e., connect()/accept() themselves
421 class Accept(Connect):
423 All of the same tests as Connect, but using the accept() interface.
458 """Test the full state lifecycle (via connect) with a no-op session."""
459 await self.proto.connect('/not/a/real/path')
511 await self.proto.connect('/not/a/real/path')
530 """Test that connect() cannot be called when Runstate=RUNNING"""
556 """Test that connect() cannot be called when Runstate=DISCONNECTING"""
596 await self.proto.connect(sock)