(t *testing.T)
| 70 | } |
| 71 | |
| 72 | func TestDeployWait(t *testing.T) { |
| 73 | testClientWait(t, 100*time.Millisecond, func(e *cli.Engine, i *mocksdk.Interface) { |
| 74 | i.On("SystemGet").Return(fxSystem(), nil) |
| 75 | i.On("ObjectStore", "app1", mock.AnythingOfType("string"), mock.Anything, structs.ObjectStoreOptions{}).Return(&fxObject, nil).Run(func(args mock.Arguments) { |
| 76 | require.Regexp(t, `tmp/[0-9a-f]{30}\.tgz`, args.Get(1).(string)) |
| 77 | }) |
| 78 | i.On("BuildCreate", "app1", "object://test", mock.Anything).Return(fxBuild(), nil) |
| 79 | i.On("BuildLogs", "app1", "build1", structs.LogsOptions{}).Return(testLogs(fxLogs()), nil) |
| 80 | i.On("BuildGet", "app1", "build1").Return(fxBuildRunning(), nil).Once() |
| 81 | i.On("BuildGet", "app1", "build4").Return(fxBuild(), nil) |
| 82 | i.On("AppGet", "app1").Return(fxApp(), nil).Once() |
| 83 | i.On("ReleasePromote", "app1", "release1", structs.ReleasePromoteOptions{}).Return(nil) |
| 84 | i.On("AppGet", "app1").Return(fxAppUpdating(), nil).Twice() |
| 85 | i.On("AppGet", "app1").Return(fxApp(), nil) |
| 86 | opts := structs.LogsOptions{Prefix: options.Bool(true), Since: options.Duration(5 * time.Second)} |
| 87 | i.On("AppLogs", "app1", opts).Return(testLogs(fxLogsSystem()), nil) |
| 88 | |
| 89 | res, err := testExecute(e, "deploy ./testdata/httpd -a app1 -d foo --wait", nil) |
| 90 | require.NoError(t, err) |
| 91 | require.Equal(t, 0, res.Code) |
| 92 | res.RequireStderr(t, []string{""}) |
| 93 | res.RequireStdout(t, []string{ |
| 94 | "Packaging source... OK", |
| 95 | "Uploading source... OK", |
| 96 | "Starting build... OK", |
| 97 | "log1", |
| 98 | "log2", |
| 99 | "Promoting release1... ", |
| 100 | fxLogsSystem()[0], |
| 101 | fxLogsSystem()[1], |
| 102 | "OK", |
| 103 | }) |
| 104 | }) |
| 105 | } |
nothing calls this directly
no test coverage detected