本文整理汇总了Golang中github.com/maximilien/bosh-bmp-cli/cmds.Command.Usage方法的典型用法代码示例。如果您正苦于以下问题:Golang Command.Usage方法的具体用法?Golang Command.Usage怎么用?Golang Command.Usage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/maximilien/bosh-bmp-cli/cmds.Command
的用法示例。
在下文中一共展示了Command.Usage方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
Describe("#Name", func() {
It("returns the name of a LoginCommand", func() {
Expect(cmd.Name()).To(Equal("login"))
})
})
Describe("#Description", func() {
It("returns the description of a LoginCommand", func() {
Expect(cmd.Description()).To(Equal("Login to the Bare Metal Provision Server"))
})
})
Describe("#Usage", func() {
It("returns the usage text of a LoginCommand", func() {
Expect(cmd.Usage()).To(Equal("bmp login"))
})
})
Describe("#Validate", func() {
It("validates a good LoginCommand", func() {
validate, err := cmd.Validate()
Expect(validate).To(BeTrue())
Expect(err).ToNot(HaveOccurred())
})
})
Describe("#Execute", func() {
It("executes a good LoginCommand", func() {
rc, err := cmd.Execute(args)
Expect(rc).To(Equal(0))
示例2:
Describe("#Name", func() {
It("returns the name of a TaskCommand", func() {
Expect(cmd.Name()).To(Equal("task"))
})
})
Describe("#Description", func() {
It("returns the description of a TaskCommand", func() {
Expect(cmd.Description()).To(Equal(`Show the output of the task: \"option --debug, Get the debug info of the task\"`))
})
})
Describe("#Usage", func() {
It("returns the usage text of a TaskCommand", func() {
Expect(cmd.Usage()).To(Equal("bmp task <task-id>"))
})
})
Describe("#Validate", func() {
It("validates a good TaskCommand", func() {
validate, err := cmd.Validate()
Expect(validate).To(BeTrue())
Expect(err).ToNot(HaveOccurred())
})
})
Describe("#Execute", func() {
It("executes a good TaskCommand", func() {
rc, err := cmd.Execute(args)
Expect(rc).To(Equal(0))
示例3:
Describe("#Name", func() {
It("returns the name of a UpdateStateCommand", func() {
Expect(cmd.Name()).To(Equal("update-state"))
})
})
Describe("#Description", func() {
It("returns the description of a UpdateStateCommand", func() {
Expect(cmd.Description()).To(Equal(`Update the server state (\"bm.state.new\", \"bm.state.using\", \"bm.state.loading\", \"bm.state.failed\", \"bm.state.deleted\")`))
})
})
Describe("#Usage", func() {
It("returns the usage text of a UpdateStateCommand", func() {
Expect(cmd.Usage()).To(Equal("bmp update-state <bm.state.new>"))
})
})
Describe("#Validate", func() {
It("validates a good UpdateStateCommand", func() {
validate, err := cmd.Validate()
Expect(validate).To(BeTrue())
Expect(err).ToNot(HaveOccurred())
})
})
Describe("#Execute", func() {
It("executes a good UpdateStateCommand", func() {
rc, err := cmd.Execute(args)
Expect(rc).To(Equal(0))
示例4:
Describe("#Name", func() {
It("returns the name of a CreateBaremetalsCommand", func() {
Expect(cmd.Name()).To(Equal("create-baremetals"))
})
})
Describe("#Description", func() {
It("returns the description of a CreateBaremetalsCommand", func() {
Expect(cmd.Description()).To(Equal(`Create the missed baremetals: \"option --dryrun, only verify the orders\"`))
})
})
Describe("#Usage", func() {
It("returns the usage text of a CreateBaremetalsCommand", func() {
Expect(cmd.Usage()).To(Equal("bmp create-baremetals [--dryrun]"))
})
})
Describe("#Validate", func() {
It("validates a good BmsCommand", func() {
validate, err := cmd.Validate()
Expect(validate).To(BeTrue())
Expect(err).ToNot(HaveOccurred())
})
})
Describe("#Execute", func() {
It("executes a good BmsCommand", func() {
rc, err := cmd.Execute(args)
Expect(rc).To(Equal(0))
示例5:
Describe("#Name", func() {
It("returns the name of a TasksCommand", func() {
Expect(cmd.Name()).To(Equal("tasks"))
})
})
Describe("#Description", func() {
It("returns the description of a TasksCommand", func() {
Expect(cmd.Description()).To(Equal(`List tasks: \"option --latest number\", \"The number of latest tasks, default is 50\"`))
})
})
Describe("#Usage", func() {
It("returns the usage text of a TasksCommand", func() {
Expect(cmd.Usage()).To(Equal("bmp tasks"))
})
})
Describe("#Validate", func() {
It("validates a good TasksCommand", func() {
validate, err := cmd.Validate()
Expect(validate).To(BeTrue())
Expect(err).ToNot(HaveOccurred())
})
})
Describe("#Execute", func() {
It("executes a good TasksCommand", func() {
rc, err := cmd.Execute(args)
Expect(rc).To(Equal(0))