Describe("#Name", func() { It("returns the name of a StemcellsCommand", func() { Expect(cmd.Name()).To(Equal("stemcells")) }) }) Describe("#Description", func() { It("returns the description of a StemcellsCommand", func() { Expect(cmd.Description()).To(Equal("List all stemcells")) }) }) Describe("#Usage", func() { It("returns the usage text of a StemcellsCommand", func() { Expect(cmd.Usage()).To(Equal("bmp stemcells")) }) }) Describe("#Options", func() { It("returns the options of a StemcellsCommand", func() { Expect(cmds.EqualOptions(cmd.Options(), options)).To(BeTrue()) }) }) Describe("#Validate", func() { It("validates a good StemcellsCommand", func() { validate, err := cmd.Validate() Expect(validate).To(BeTrue()) Expect(err).ToNot(HaveOccurred()) })
Describe("#Name", func() { It("returns the name of a BmsCommand", func() { Expect(cmd.Name()).To(Equal("bms")) }) }) Describe("#Description", func() { It("returns the description of a BmsCommand", func() { Expect(cmd.Description()).To(Equal("List all bare metals")) }) }) Describe("#Usage", func() { It("returns the usage text of a BmsCommand", func() { Expect(cmd.Usage()).To(Equal("bmp bms --deployment[-d] <deployment file>")) }) }) Describe("#Options", func() { It("returns the options of a BmsCommand", func() { Expect(cmds.EqualOptions(cmd.Options(), options)).To(BeTrue()) Expect(cmd.Options().Deployment).ToNot(Equal("")) Expect(cmd.Options().Deployment).To(Equal("../../test_fixtures/bmp/deployment.yml")) }) }) Describe("#Validate", func() { It("validates a good BmsCommand", func() { validate, err := cmd.Validate()
Describe("#Name", func() { It("returns the name of a SlCommand", func() { Expect(cmd.Name()).To(Equal("sl")) }) }) Describe("#Description", func() { It("returns the description of a SlCommand", func() { Expect(cmd.Description()).To(Equal("List all Softlayer packages or package options")) }) }) Describe("#Usage", func() { It("returns the usage text of a SlCommand", func() { Expect(cmd.Usage()).To(Equal("bmp sl --packages | --package-options")) }) }) Describe("#Options", func() { It("returns the options of a SlCommand", func() { Expect(cmds.EqualOptions(cmd.Options(), options)).To(BeTrue()) }) }) Describe("#Validate", func() { Context("validates a good SlCommand", func() { Context("when --packages specified", func() { BeforeEach(func() { options = cmds.Options{ Verbose: false,
Describe("#Name", func() { It("returns the name of a ProvisioningBaremetalCommand", func() { Expect(cmd.Name()).To(Equal("provisioning-baremetal")) }) }) Describe("#Description", func() { It("returns the description of a ProvisioningBaremetalCommand", func() { Expect(cmd.Description()).To(Equal(`provisioning a baremetal with specific stemcell, netboot image`)) }) }) Describe("#Usage", func() { It("returns the usage text of a ProvisioningBaremetalCommand", func() { Expect(cmd.Usage()).To(Equal("bmp provisioning-baremetal --vmprefix <vm-prefix> --stemcell <bm-stemcell> --netbootimage <bm-netboot-image>")) }) }) Describe("#Options", func() { It("returns the options of a ProvisioningBaremetalCommand", func() { Expect(cmds.EqualOptions(cmd.Options(), options)).To(BeTrue()) Expect(cmd.Options().VMPrefix).To(Equal("fake-vmprefix")) Expect(cmd.Options().Stemecell).To(Equal("fake-stemcell")) Expect(cmd.Options().NetbootImage).To(Equal("fake-netboot-image")) }) }) Describe("#Validate", func() { It("validates a good ProvisioningBaremetalCommand", func() { validate, err := cmd.Validate()
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 --deployment[-d] <deployment file> [--dryrun]")) }) }) Describe("#Options", func() { It("returns the options of a CreateBaremetalsCommand", func() { Expect(cmds.EqualOptions(cmd.Options(), options)).To(BeTrue()) Expect(cmd.Options().Deployment).ToNot(Equal("")) Expect(cmd.Options().Deployment).To(ContainSubstring("test_fixtures/bmp/deployment.yml")) }) }) Describe("#Validate", func() { It("validates a good CreateBaremetalsCommand", func() { validate, err := cmd.Validate() Expect(validate).To(BeTrue())
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; --json, show info with JSON format\"`)) }) }) Describe("#Usage", func() { It("returns the usage text of a TaskCommand", func() { Expect(cmd.Usage()).To(Equal("bmp task <task-id>")) }) }) Describe("#Options", func() { It("returns the options of a TaskCommand", func() { Expect(cmds.EqualOptions(cmd.Options(), options)).To(BeTrue()) Expect(cmd.Options().TaskID).To(Equal(1)) Expect(cmd.Options().JSON).To(BeFalse()) Expect(cmd.Options().Debug).To(BeFalse()) }) }) Describe("#Validate", func() { It("validates a good TaskCommand", func() { validate, err := cmd.Validate()
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 --server <server-id> --state <state>")) }) }) Describe("#Options", func() { It("returns the options of a UpdateStateCommand", func() { Expect(cmds.EqualOptions(cmd.Options(), options)).To(BeTrue()) Expect(cmd.Options().Server).ToNot(Equal("")) Expect(cmd.Options().Server).To(Equal("fake-server-id")) Expect(cmd.Options().State).ToNot(Equal("")) Expect(cmd.Options().State).To(Equal("bm.state.new")) }) }) Describe("#Validate", func() { It("validates a good UpdateStateCommand", func() {
Describe("#Name", func() { It("returns the name of a TargetCommand", func() { Expect(cmd.Name()).To(Equal("target")) }) }) Describe("#Description", func() { It("returns the description of a TargetCommand", func() { Expect(cmd.Description()).To(Equal("Set the URL of Bare Metal Provision Server")) }) }) Describe("#Usage", func() { It("returns the usage text of a TargetCommand", func() { Expect(cmd.Usage()).To(Equal("bmp target http://url.to.bmp.server")) }) }) Describe("#Options", func() { It("returns the options of a TargetCommand", func() { Expect(cmds.EqualOptions(cmd.Options(), options)).To(BeTrue()) }) }) Describe("#Validate", func() { Context("when the options includes a URL", func() { It("returns true on validation", func() { validate, err := cmd.Validate() Expect(validate).To(BeTrue()) Expect(err).ToNot(HaveOccurred())
Describe("#Name", func() { It("returns the name of a StatusCommand", func() { Expect(cmd.Name()).To(Equal("status")) }) }) Describe("#Description", func() { It("returns the description of a StatusCommand", func() { Expect(cmd.Description()).To(Equal("show bmp status")) }) }) Describe("#Usage", func() { It("returns the usage text of a StatusCommand", func() { Expect(cmd.Usage()).To(Equal("bmp status")) }) }) Describe("#Options", func() { It("returns the options of a StatusCommand", func() { Expect(cmds.EqualOptions(cmd.Options(), options)).To(BeTrue()) }) }) Describe("#Validate", func() { It("validates a good StatusCommand", func() { validate, err := cmd.Validate() Expect(validate).To(BeTrue()) Expect(err).ToNot(HaveOccurred()) })
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("#Options", func() { It("returns the options of a TasksCommand", func() { Expect(cmds.EqualOptions(cmd.Options(), options)).To(BeTrue()) }) }) Describe("#Validate", func() { It("validates a good TasksCommand", func() { validate, err := cmd.Validate() Expect(validate).To(BeTrue()) Expect(err).ToNot(HaveOccurred()) })
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 --username[-u] <username> --password[-p] <password>")) }) }) Describe("#Options", func() { It("returns the options of a LoginCommand", func() { Expect(cmds.EqualOptions(cmd.Options(), options)).To(BeTrue()) Expect(cmd.Options().Username).ToNot(Equal("")) Expect(cmd.Options().Username).To(Equal("fake-username")) Expect(cmd.Options().Password).ToNot(Equal("")) Expect(cmd.Options().Password).To(Equal("fake-password")) }) })