コード例 #1
0
ファイル: ssh_test.go プロジェクト: Gerg/inigo
			})

			It("returns an error", func() {
				Eventually(
					helpers.LRPInstanceStatePoller(receptorClient, processGuid, 0, nil),
				).Should(Equal(receptor.ActualLRPStateRunning))

				_, err := ssh.Dial("tcp", address, clientConfig)
				Expect(err).To(HaveOccurred())
			})
		})

		Context("when a bare-bones docker image is used as the root filesystem", func() {
			BeforeEach(func() {
				lrp.StartTimeout = 120
				lrp.RootFS = "docker:///busybox"

				// busybox nc requires -p but ubuntu's won't allow it
				lrp.Action = &models.CodependentAction{
					Actions: []models.Action{
						&models.RunAction{
							User: "******",
							Path: "/tmp/sshd",
							Args: []string{
								"-address=0.0.0.0:3456",
								"-hostKey=" + componentMaker.SSHConfig.HostKeyPem,
								"-authorizedKey=" + componentMaker.SSHConfig.AuthorizedKey,
								"-inheritDaemonEnv",
							},
						},
						&models.RunAction{