package main_test import ( "github.com/cloudfoundry/cli/plugin/pluginfakes" . "github.com/cloudfoundry/cli/plugin_examples/call_cli_cmd/main" io_helpers "github.com/cloudfoundry/cli/testhelpers/io" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("CallCliCmd", func() { Describe(".Run", func() { var fakeCliConnection *pluginfakes.FakeCliConnection var callCliCommandPlugin *CliCmd BeforeEach(func() { fakeCliConnection = &pluginfakes.FakeCliConnection{} callCliCommandPlugin = &CliCmd{} }) It("calls the cli command that is passed as an argument", func() { io_helpers.CaptureOutput(func() { callCliCommandPlugin.Run(fakeCliConnection, []string{"cli-command", "plugins", "arg1"}) }) Expect(fakeCliConnection.CliCommandArgsForCall(0)[0]).To(Equal("plugins")) Expect(fakeCliConnection.CliCommandArgsForCall(0)[1]).To(Equal("arg1")) }) It("ouputs the text returned by the cli command", func() { fakeCliConnection.CliCommandReturns([]string{"Hi", "Mom"}, nil)
io_helpers "github.com/cloudfoundry/cli/testhelpers/io" . "github.com/cloudfoundry/firehose-plugin" "github.com/cloudfoundry/firehose-plugin/testhelpers" "github.com/cloudfoundry/sonde-go/events" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) const ( ACCESS_TOKEN = "access_token" ) var _ = Describe("NozzlePlugin", func() { Describe(".Run", func() { var fakeCliConnection *pluginfakes.FakeCliConnection var nozzlerCmd *NozzlerCmd var fakeFirehose *testhelpers.FakeFirehose BeforeEach(func() { fakeFirehose = testhelpers.NewFakeFirehose(ACCESS_TOKEN) fakeFirehose.SendEvent(events.Envelope_LogMessage, "Log Message") fakeFirehose.Start() fakeCliConnection = &pluginfakes.FakeCliConnection{} fakeCliConnection.AccessTokenReturns(ACCESS_TOKEN, nil) fakeCliConnection.DopplerEndpointReturns(fakeFirehose.URL(), nil) nozzlerCmd = &NozzlerCmd{} }) AfterEach(func() {