本文整理汇总了Golang中github.com/cloudfoundry/bosh-agent/agentclient.AgentClient.SSH方法的典型用法代码示例。如果您正苦于以下问题:Golang AgentClient.SSH方法的具体用法?Golang AgentClient.SSH怎么用?Golang AgentClient.SSH使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/bosh-agent/agentclient.AgentClient
的用法示例。
在下文中一共展示了AgentClient.SSH方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: verifyFilePerm
Context("on ubuntu when a new user is created", func() {
BeforeEach(func() {
testEnvironment.RunCommand("sudo groupadd bosh_sudoers")
testEnvironment.RunCommand("sudo groupadd bosh_sshers")
testEnvironment.RunCommand("sudo userdel -r username")
})
AfterEach(func() {
testEnvironment.RunCommand("sudo userdel -r username")
})
It("should contain the correct home directory permissions", func() {
err := agentClient.SSH("setup", action.SSHParams{
User: "username",
PublicKey: "public-key",
})
Expect(err).ToNot(HaveOccurred())
verifyFilePerm("755", "/var/vcap/bosh_ssh", testEnvironment)
verifyFilePerm("700", "/var/vcap/bosh_ssh/username", testEnvironment)
})
})
})
func verifyFilePerm(perm string, filePath string, testEnvironment *integration.TestEnvironment) {
filePerms, err := testEnvironment.RunCommand("sudo stat -c '%a %n' " + filePath + " | cut -d' ' -f 1")
Expect(err).NotTo(HaveOccurred())
Expect(strings.Trim(filePerms, "\n")).To(Equal(perm))
示例2:
Context("when agent successfully executes ssh", func() {
BeforeEach(func() {
sshSuccess, err := json.Marshal(action.SSHResult{
Command: "setup",
Status: "success",
})
Expect(err).ToNot(HaveOccurred())
fakeHTTPClient.SetPostBehavior(string(sshSuccess), 200, nil)
})
It("makes a POST request to the endpoint", func() {
params := action.SSHParams{
User: "username",
}
err := agentClient.SSH("setup", params)
Expect(err).ToNot(HaveOccurred())
Expect(fakeHTTPClient.PostInputs).To(HaveLen(1))
Expect(fakeHTTPClient.PostInputs[0].Endpoint).To(Equal("http://localhost:6305/agent"))
var request AgentRequestMessage
err = json.Unmarshal(fakeHTTPClient.PostInputs[0].Payload, &request)
Expect(err).ToNot(HaveOccurred())
Expect(request).To(Equal(AgentRequestMessage{
Method: "ssh",
Arguments: []interface{}{"setup", map[string]interface{}{"user_regex": "", "User": "username", "Password": "", "public_key": ""}},
ReplyTo: "fake-reply-to-uuid",
}))