本文整理匯總了Golang中github.com/cloudfoundry-incubator/diego-ssh/server/fakes.FakeConnectionHandler.HandleConnectionStub方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeConnectionHandler.HandleConnectionStub方法的具體用法?Golang FakeConnectionHandler.HandleConnectionStub怎麽用?Golang FakeConnectionHandler.HandleConnectionStub使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudfoundry-incubator/diego-ssh/server/fakes.FakeConnectionHandler
的用法示例。
在下文中一共展示了FakeConnectionHandler.HandleConnectionStub方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
handler *fake_handlers.FakeNewChannelHandler
testHandler *handlers.DirectTcpipChannelHandler
testDialer *fakes.FakeDialer
echoHandler *fake_server.FakeConnectionHandler
echoServer *server.Server
echoAddress string
)
BeforeEach(func() {
logger = lagertest.NewTestLogger("test")
echoHandler = &fake_server.FakeConnectionHandler{}
echoHandler.HandleConnectionStub = func(conn net.Conn) {
io.Copy(conn, conn)
conn.Close()
}
echoListener, err := net.Listen("tcp", "127.0.0.1:0")
Expect(err).NotTo(HaveOccurred())
echoAddress = echoListener.Addr().String()
echoServer = server.NewServer(logger.Session("echo"), "", echoHandler)
echoServer.SetListener(echoListener)
go echoServer.Serve()
serverSSHConfig = &ssh.ServerConfig{
NoClientAuth: true,
}
serverSSHConfig.AddHostKey(TestHostKey)
示例2:
Expect(err).NotTo(HaveOccurred())
})
AfterEach(func() {
target.Shutdown()
})
Context("when the target sends a global request", func() {
BeforeEach(func() {
connectionHandler.HandleConnectionStub = func(conn net.Conn) {
defer GinkgoRecover()
serverConn, _, _, err := ssh.NewServerConn(conn, daemonSSHConfig)
Expect(err).NotTo(HaveOccurred())
accepted, response, err := serverConn.SendRequest("test", true, []byte("test-data"))
Expect(err).NotTo(HaveOccurred())
Expect(accepted).To(BeTrue())
Expect(response).To(Equal([]byte("response-data")))
serverConn.Close()
}
})
It("gets forwarded to the client", func() {
var req *ssh.Request
Eventually(clientRequests).Should(Receive(&req))
req.Reply(true, []byte("response-data"))
})
})