"github.com/cloudfoundry-incubator/runtime-schema/models" "github.com/codegangsta/cli" "github.com/pivotal-golang/clock/fakeclock" "github.com/pivotal-golang/lager" app_runner_command_factory "github.com/cloudfoundry-incubator/lattice/ltc/app_runner/command_factory" ) var _ = Describe("CommandFactory", func() { var ( fakeAppRunner *fake_app_runner.FakeAppRunner fakeAppExaminer *fake_app_examiner.FakeAppExaminer outputBuffer *gbytes.Buffer terminalUI terminal.UI domain string = "192.168.11.11.xip.io" fakeClock *fakeclock.FakeClock fakeDockerMetadataFetcher *fake_docker_metadata_fetcher.FakeDockerMetadataFetcher appRunnerCommandFactoryConfig command_factory.DockerRunnerCommandFactoryConfig logger lager.Logger fakeTailedLogsOutputter *fake_tailed_logs_outputter.FakeTailedLogsOutputter fakeExitHandler *fake_exit_handler.FakeExitHandler ) BeforeEach(func() { fakeAppRunner = &fake_app_runner.FakeAppRunner{} fakeAppExaminer = &fake_app_examiner.FakeAppExaminer{} outputBuffer = gbytes.NewBuffer() terminalUI = terminal.NewUI(nil, outputBuffer, nil) fakeDockerMetadataFetcher = &fake_docker_metadata_fetcher.FakeDockerMetadataFetcher{} fakeClock = fakeclock.NewFakeClock(time.Now()) logger = lager.NewLogger("ltc-test")
"github.com/codegangsta/cli" "github.com/pivotal-golang/clock/fakeclock" app_runner_command_factory "github.com/cloudfoundry-incubator/lattice/ltc/app_runner/command_factory" droplet_runner_command_factory "github.com/cloudfoundry-incubator/lattice/ltc/droplet_runner/command_factory" ) var _ = Describe("CommandFactory", func() { var ( outputBuffer *gbytes.Buffer fakeDropletRunner *fake_droplet_runner.FakeDropletRunner fakeExitHandler *fake_exit_handler.FakeExitHandler fakeTailedLogsOutputter *fake_tailed_logs_outputter.FakeTailedLogsOutputter fakeClock *fakeclock.FakeClock fakeAppExaminer *fake_app_examiner.FakeAppExaminer fakeTaskExaminer *fake_task_examiner.FakeTaskExaminer fakeCFIgnore *fake_cf_ignore.FakeCFIgnore fakeZipper *fake_zipper.FakeZipper fakeBlobStoreVerifier *fake_blob_store_verifier.FakeBlobStoreVerifier config *config_package.Config appRunnerCommandFactory app_runner_command_factory.AppRunnerCommandFactory ) BeforeEach(func() { fakeDropletRunner = &fake_droplet_runner.FakeDropletRunner{} fakeExitHandler = &fake_exit_handler.FakeExitHandler{} fakeTailedLogsOutputter = fake_tailed_logs_outputter.NewFakeTailedLogsOutputter() fakeClock = fakeclock.NewFakeClock(time.Now()) fakeAppExaminer = &fake_app_examiner.FakeAppExaminer{} fakeTaskExaminer = &fake_task_examiner.FakeTaskExaminer{}
"github.com/cloudfoundry-incubator/lattice/ltc/droplet_runner/fake_blob_store" "github.com/cloudfoundry-incubator/lattice/ltc/droplet_runner/fake_proxyconf_reader" "github.com/cloudfoundry-incubator/lattice/ltc/task_runner/fake_task_runner" "github.com/cloudfoundry-incubator/lattice/ltc/test_helpers/matchers" "github.com/cloudfoundry-incubator/receptor" "github.com/cloudfoundry-incubator/runtime-schema/models" config_package "github.com/cloudfoundry-incubator/lattice/ltc/config" ) var _ = Describe("DropletRunner", func() { var ( fakeAppRunner *fake_app_runner.FakeAppRunner fakeTaskRunner *fake_task_runner.FakeTaskRunner config *config_package.Config fakeBlobStore *fake_blob_store.FakeBlobStore fakeAppExaminer *fake_app_examiner.FakeAppExaminer fakeProxyConfReader *fake_proxyconf_reader.FakeProxyConfReader dropletRunner droplet_runner.DropletRunner ) BeforeEach(func() { fakeAppRunner = &fake_app_runner.FakeAppRunner{} fakeTaskRunner = &fake_task_runner.FakeTaskRunner{} config = config_package.New(persister.NewMemPersister()) fakeBlobStore = &fake_blob_store.FakeBlobStore{} fakeAppExaminer = &fake_app_examiner.FakeAppExaminer{} fakeProxyConfReader = &fake_proxyconf_reader.FakeProxyConfReader{} dropletRunner = droplet_runner.New(fakeAppRunner, fakeTaskRunner, config, fakeBlobStore, fakeAppExaminer, fakeProxyConfReader) })
"github.com/cloudfoundry-incubator/lattice/ltc/terminal/cursor" "github.com/cloudfoundry-incubator/lattice/ltc/test_helpers" "github.com/codegangsta/cli" "github.com/pivotal-golang/clock/fakeclock" ) const TerminalEsc = "\033[" var _ = Describe("CommandFactory", func() { var ( fakeAppExaminer *fake_app_examiner.FakeAppExaminer outputBuffer *gbytes.Buffer terminalUI terminal.UI fakeTerm *fake_terminal.FakeTerminal fakeClock *fakeclock.FakeClock osSignalChan chan os.Signal fakeExitHandler *fake_exit_handler.FakeExitHandler fakeGraphicalVisualizer *fake_graphical_visualizer.FakeGraphicalVisualizer fakeTaskExaminer *fake_task_examiner.FakeTaskExaminer systemDomain string ) BeforeEach(func() { fakeAppExaminer = &fake_app_examiner.FakeAppExaminer{} fakeTaskExaminer = &fake_task_examiner.FakeTaskExaminer{} outputBuffer = gbytes.NewBuffer() terminalUI = terminal.NewUI(nil, outputBuffer, nil) fakeTerm = &fake_terminal.FakeTerminal{} osSignalChan = make(chan os.Signal, 1) location, err := time.LoadLocation("Africa/Djibouti") Expect(err).NotTo(HaveOccurred())
"github.com/cloudfoundry-incubator/lattice/ltc/exit_handler/fake_exit_handler" "github.com/cloudfoundry-incubator/lattice/ltc/logs/command_factory" "github.com/cloudfoundry-incubator/lattice/ltc/logs/console_tailed_logs_outputter/fake_tailed_logs_outputter" "github.com/cloudfoundry-incubator/lattice/ltc/task_examiner" "github.com/cloudfoundry-incubator/lattice/ltc/task_examiner/fake_task_examiner" "github.com/cloudfoundry-incubator/lattice/ltc/terminal" "github.com/cloudfoundry-incubator/lattice/ltc/test_helpers" "github.com/codegangsta/cli" ) var _ = Describe("CommandFactory", func() { var ( appExaminer *fake_app_examiner.FakeAppExaminer taskExaminer *fake_task_examiner.FakeTaskExaminer outputBuffer *gbytes.Buffer terminalUI terminal.UI fakeTailedLogsOutputter *fake_tailed_logs_outputter.FakeTailedLogsOutputter signalChan chan os.Signal fakeExitHandler *fake_exit_handler.FakeExitHandler ) BeforeEach(func() { appExaminer = &fake_app_examiner.FakeAppExaminer{} taskExaminer = &fake_task_examiner.FakeTaskExaminer{} outputBuffer = gbytes.NewBuffer() terminalUI = terminal.NewUI(nil, outputBuffer, nil) fakeTailedLogsOutputter = fake_tailed_logs_outputter.NewFakeTailedLogsOutputter() signalChan = make(chan os.Signal) fakeExitHandler = &fake_exit_handler.FakeExitHandler{} })
"github.com/cloudfoundry-incubator/lattice/ltc/app_examiner/fake_app_examiner" config_package "github.com/cloudfoundry-incubator/lattice/ltc/config" "github.com/cloudfoundry-incubator/lattice/ltc/exit_handler/exit_codes" "github.com/cloudfoundry-incubator/lattice/ltc/exit_handler/fake_exit_handler" "github.com/cloudfoundry-incubator/lattice/ltc/secure_shell/command_factory" "github.com/cloudfoundry-incubator/lattice/ltc/secure_shell/command_factory/fake_secure_shell" "github.com/cloudfoundry-incubator/lattice/ltc/terminal" "github.com/cloudfoundry-incubator/lattice/ltc/test_helpers" "github.com/codegangsta/cli" ) var _ = Describe("SSH CommandFactory", func() { var ( config *config_package.Config outputBuffer *gbytes.Buffer terminalUI terminal.UI fakeExitHandler *fake_exit_handler.FakeExitHandler fakeAppExaminer *fake_app_examiner.FakeAppExaminer fakeSecureShell *fake_secure_shell.FakeSecureShell ) BeforeEach(func() { config = config_package.New(nil) config.SetTarget("lattice.xip.io") outputBuffer = gbytes.NewBuffer() terminalUI = terminal.NewUI(nil, outputBuffer, nil) fakeExitHandler = &fake_exit_handler.FakeExitHandler{} fakeAppExaminer = &fake_app_examiner.FakeAppExaminer{} fakeSecureShell = &fake_secure_shell.FakeSecureShell{} })