當前位置: 首頁>>代碼示例>>Golang>>正文


Golang cmds.Command類代碼示例

本文整理匯總了Golang中github.com/cloudfoundry-community/bosh-softlayer-tools/cmds.Command的典型用法代碼示例。如果您正苦於以下問題:Golang Command類的具體用法?Golang Command怎麽用?Golang Command使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Command類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1:

    "errors"

    . "github.com/onsi/ginkgo"
    . "github.com/onsi/gomega"

    fakes "github.com/cloudfoundry-community/bosh-softlayer-tools/clients/fakes"
    cmds "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds"
    bmp "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds/bmp"
)

var _ = Describe("bms command", func() {

    var (
        args    []string
        options cmds.Options
        cmd     cmds.Command

        fakeBmpClient *fakes.FakeBmpClient
    )

    BeforeEach(func() {
        args = []string{"bmp", "bms"}
        options = cmds.Options{
            Verbose:    false,
            Deployment: "../../test_fixtures/bmp/deployment.yml",
        }

        fakeBmpClient = fakes.NewFakeBmpClient("fake-username", "fake-password", "http://fake.url.com", "fake-config-path")
        cmd = bmp.NewBmsCommand(options, fakeBmpClient)
    })
開發者ID:cloudfoundry-community,項目名稱:bosh-softlayer-tools,代碼行數:30,代碼來源:bms_command_test.go

示例2:

    "errors"

    . "github.com/onsi/ginkgo"
    . "github.com/onsi/gomega"

    "github.com/cloudfoundry-community/bosh-softlayer-tools/clients/fakes"
    "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds"
    "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds/bmp"
)

var _ = Describe("provisioning-baremetal command", func() {
    var (
        args    []string
        options cmds.Options
        cmd     cmds.Command

        fakeBmpClient *fakes.FakeBmpClient

        userInput string
    )

    BeforeEach(func() {
        args = []string{"bmp", "provisiong-baremetal"}
        options = cmds.Options{
            Verbose:      false,
            Stemecell:    "fake-stemcell",
            VMPrefix:     "fake-vmprefix",
            NetbootImage: "fake-netboot-image",
        }

        fakeBmpClient = fakes.NewFakeBmpClient("fake-username", "fake-password", "http://fake.url.com", "fake-config-path")
開發者ID:cloudfoundry-community,項目名稱:bosh-softlayer-tools,代碼行數:31,代碼來源:provisioning_baremetal_command_test.go

示例3:

import (
    "errors"

    . "github.com/onsi/ginkgo"
    . "github.com/onsi/gomega"

    fakes "github.com/cloudfoundry-community/bosh-softlayer-tools/clients/fakes"
    cmds "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds"
    bmp "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds/bmp"
)

var _ = Describe("stemcells command", func() {
    var (
        args    []string
        options cmds.Options
        cmd     cmds.Command

        fakeBmpClient *fakes.FakeBmpClient
    )

    BeforeEach(func() {
        args = []string{"bmp", "stemcells"}
        options = cmds.Options{
            Verbose: false,
        }

        fakeBmpClient = fakes.NewFakeBmpClient("fake-username", "fake-password", "http://fake.url.com", "fake-config-path")
        cmd = bmp.NewStemcellsCommand(options, fakeBmpClient)
    })

    Describe("NewStemcellsCommand", func() {
開發者ID:cloudfoundry-community,項目名稱:bosh-softlayer-tools,代碼行數:31,代碼來源:stemcells_command_test.go

示例4:

import (
    "errors"

    . "github.com/onsi/ginkgo"
    . "github.com/onsi/gomega"

    fakes "github.com/cloudfoundry-community/bosh-softlayer-tools/clients/fakes"
    cmds "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds"
    bmp "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds/bmp"
)

var _ = Describe("task command", func() {
    var (
        args    []string
        options cmds.Options
        cmd     cmds.Command

        fakeBmpClient *fakes.FakeBmpClient
    )

    BeforeEach(func() {
        args = []string{"bmp", "task"}
        options = cmds.Options{
            Verbose: false,
            TaskID:  1,
        }

        fakeBmpClient = fakes.NewFakeBmpClient("fake-username", "fake-password", "http://fake.url.com", "fake-config-path")
        cmd = bmp.NewTaskCommand(options, fakeBmpClient)
    })
開發者ID:cloudfoundry-community,項目名稱:bosh-softlayer-tools,代碼行數:30,代碼來源:task_command_test.go

示例5:

    "errors"

    . "github.com/onsi/ginkgo"
    . "github.com/onsi/gomega"

    fakes "github.com/cloudfoundry-community/bosh-softlayer-tools/clients/fakes"
    cmds "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds"
    bmp "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds/bmp"
)

var _ = Describe("sl command", func() {

    var (
        args    []string
        options cmds.Options
        cmd     cmds.Command

        fakeBmpClient *fakes.FakeBmpClient
    )

    BeforeEach(func() {
        args = []string{"bmp", "sl"}
        options = cmds.Options{
            Verbose: false,
        }

        fakeBmpClient = fakes.NewFakeBmpClient("fake-username", "fake-password", "http://fake.url.com", "fake-config-path")
        cmd = bmp.NewSlCommand(options, fakeBmpClient)
    })

    Describe("NewSlCommand", func() {
開發者ID:cloudfoundry-community,項目名稱:bosh-softlayer-tools,代碼行數:31,代碼來源:sl_command_test.go

示例6:

    "path/filepath"

    . "github.com/onsi/ginkgo"
    . "github.com/onsi/gomega"

    fakes "github.com/cloudfoundry-community/bosh-softlayer-tools/clients/fakes"
    cmds "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds"
    bmp "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds/bmp"
)

var _ = Describe("create-baremetals command", func() {

    var (
        args          []string
        options       cmds.Options
        cmd           cmds.Command
        deployment    string
        fakeBmpClient *fakes.FakeBmpClient
    )

    BeforeEach(func() {
        args = []string{"bmp", "create-baremetals"}
        wd, _ := os.Getwd()
        deployment = filepath.Join(wd, "../..", "test_fixtures/bmp", "deployment.yml")
        options = cmds.Options{
            Verbose:    false,
            Deployment: deployment,
            DryRun:     false,
        }

        fakeBmpClient = fakes.NewFakeBmpClient("fake-username", "fake-password", "http://fake.url.com", "fake-config-path")
開發者ID:cloudfoundry-community,項目名稱:bosh-softlayer-tools,代碼行數:31,代碼來源:create_baremetals_command_test.go

示例7:

    "errors"

    . "github.com/onsi/ginkgo"
    . "github.com/onsi/gomega"

    fakes "github.com/cloudfoundry-community/bosh-softlayer-tools/clients/fakes"
    cmds "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds"
    bmp "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds/bmp"
)

var _ = Describe("update-state command", func() {
    var (
        args    []string
        options cmds.Options
        cmd     cmds.Command

        fakeBmpClient *fakes.FakeBmpClient

        userInput string
    )

    BeforeEach(func() {
        args = []string{"bmp", "update-state"}
        options = cmds.Options{
            Verbose: false,
            Server:  "fake-server-id",
            State:   "bm.state.new",
        }

        fakeBmpClient = fakes.NewFakeBmpClient("fake-username", "fake-password", "http://fake.url.com", "fake-config-path")
        cmd = bmp.NewUpdateStateCommand(options, fakeBmpClient)
開發者ID:cloudfoundry-community,項目名稱:bosh-softlayer-tools,代碼行數:31,代碼來源:update_state_command_test.go

示例8:

    . "github.com/onsi/gomega"

    cmds "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds"
    bmp "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds/bmp"
    config "github.com/cloudfoundry-community/bosh-softlayer-tools/config"

    clientsfakes "github.com/cloudfoundry-community/bosh-softlayer-tools/clients/fakes"
)

var _ = Describe("target command", func() {
    var (
        err error

        args    []string
        options cmds.Options
        cmd     cmds.Command

        tmpDir, tmpFileName string

        fakeBmpClient *clientsfakes.FakeBmpClient
    )

    BeforeEach(func() {
        args = []string{"bmp", "target"}
        options = cmds.Options{
            Verbose: false,
            Target:  "http://fake.url",
        }

        tmpDir, err = ioutil.TempDir("", "bmp-target-execute")
        Expect(err).ToNot(HaveOccurred())
開發者ID:cloudfoundry-community,項目名稱:bosh-softlayer-tools,代碼行數:31,代碼來源:target_command_test.go

示例9:

import (
    "errors"

    . "github.com/onsi/ginkgo"
    . "github.com/onsi/gomega"

    fakes "github.com/cloudfoundry-community/bosh-softlayer-tools/clients/fakes"
    cmds "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds"
    bmp "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds/bmp"
)

var _ = Describe("BMP: tasks command", func() {
    var (
        args    []string
        options cmds.Options
        cmd     cmds.Command

        fakeBmpClient *fakes.FakeBmpClient
    )

    BeforeEach(func() {
        args = []string{"bmp", "tasks"}
        options = cmds.Options{
            Verbose: false,
            Latest:  0,
        }

        fakeBmpClient = fakes.NewFakeBmpClient("fake-username", "fake-password", "http://fake.url.com", "fake-config-path")
        cmd = bmp.NewTasksCommand(options, fakeBmpClient)
    })
開發者ID:cloudfoundry-community,項目名稱:bosh-softlayer-tools,代碼行數:30,代碼來源:tasks_command_test.go

示例10:

    cmds "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds"
    bmp "github.com/cloudfoundry-community/bosh-softlayer-tools/cmds/bmp"
    common "github.com/cloudfoundry-community/bosh-softlayer-tools/common"
    config "github.com/cloudfoundry-community/bosh-softlayer-tools/config"

    clientsfakes "github.com/cloudfoundry-community/bosh-softlayer-tools/clients/fakes"
)

var _ = Describe("login command", func() {

    var (
        err     error
        args    []string
        options cmds.Options
        cmd     cmds.Command

        tmpDir, tmpFileName string

        fakeBmpClient *clientsfakes.FakeBmpClient
    )

    BeforeEach(func() {
        tmpDir, err = ioutil.TempDir("", "bosh-softlayer-tools")
        Expect(err).ToNot(HaveOccurred())

        args = []string{"bmp", "login"}
        options = cmds.Options{
            Verbose:  false,
            Username: "fake-username",
            Password: "fake-password",
        }
開發者ID:cloudfoundry-community,項目名稱:bosh-softlayer-tools,代碼行數:31,代碼來源:login_command_test.go


注:本文中的github.com/cloudfoundry-community/bosh-softlayer-tools/cmds.Command類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。