forked from cloudfoundry-community/cloudfoundry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.go
179 lines (141 loc) · 3.83 KB
/
ui.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
package terminal
import (
"fmt"
"io"
"strings"
"sync"
"time"
"os"
"code.cloudfoundry.org/cli/cf/configuration/coreconfig"
term "code.cloudfoundry.org/cli/cf/terminal"
)
type FakeUI struct {
outputs []string
uncapturedOutput []string
WarnOutputs []string
Prompts []string
PasswordPrompts []string
Inputs []string
FailedWithUsage bool
FailedWithUsageCommandName string
ShowConfigurationCalled bool
NotifyUpdateIfNeededCallCount int
sayMutex sync.Mutex
}
func (ui *FakeUI) Outputs() []string {
ui.sayMutex.Lock()
defer ui.sayMutex.Unlock()
return ui.outputs
}
func (ui *FakeUI) UncapturedOutput() []string {
ui.sayMutex.Lock()
defer ui.sayMutex.Unlock()
return ui.uncapturedOutput
}
func (ui *FakeUI) PrintPaginator(rows []string, err error) {
if err != nil {
ui.Failed(err.Error())
return
}
for _, row := range rows {
ui.Say(row)
}
}
func (ui *FakeUI) Writer() io.Writer {
return os.Stdout
}
func (ui *FakeUI) PrintCapturingNoOutput(message string, args ...interface{}) {
ui.sayMutex.Lock()
defer ui.sayMutex.Unlock()
message = fmt.Sprintf(message, args...)
ui.uncapturedOutput = append(ui.uncapturedOutput, strings.Split(message, "\n")...)
return
}
func (ui *FakeUI) Say(message string, args ...interface{}) {
ui.sayMutex.Lock()
defer ui.sayMutex.Unlock()
message = fmt.Sprintf(message, args...)
ui.outputs = append(ui.outputs, strings.Split(message, "\n")...)
return
}
func (ui *FakeUI) Warn(message string, args ...interface{}) {
message = fmt.Sprintf(message, args...)
ui.WarnOutputs = append(ui.WarnOutputs, strings.Split(message, "\n")...)
ui.Say(message, args...)
return
}
func (ui *FakeUI) Ask(prompt string) string {
ui.Prompts = append(ui.Prompts, prompt)
if len(ui.Inputs) == 0 {
panic("No input provided to Fake UI for prompt: " + prompt)
}
answer := ui.Inputs[0]
ui.Inputs = ui.Inputs[1:]
return answer
}
func (ui *FakeUI) ConfirmDelete(modelType, modelName string) bool {
return ui.Confirm(fmt.Sprintf(
"Really delete the %s %s?%s",
modelType,
term.EntityNameColor(modelName),
term.PromptColor(">")))
}
func (ui *FakeUI) ConfirmDeleteWithAssociations(modelType, modelName string) bool {
return ui.ConfirmDelete(modelType, modelName)
}
func (ui *FakeUI) Confirm(prompt string) bool {
response := ui.Ask(prompt)
switch strings.ToLower(response) {
case "y", "yes":
return true
}
return false
}
func (ui *FakeUI) AskForPassword(prompt string) string {
ui.PasswordPrompts = append(ui.PasswordPrompts, prompt)
if len(ui.Inputs) == 0 {
panic("No input provided to Fake UI for prompt: " + prompt)
}
answer := ui.Inputs[0]
ui.Inputs = ui.Inputs[1:]
return answer
}
func (ui *FakeUI) Ok() {
ui.Say("OK")
}
func (ui *FakeUI) Failed(message string, args ...interface{}) {
ui.Say("FAILED")
ui.Say(message, args...)
}
func (ui *FakeUI) DumpWarnOutputs() string {
return "****************************\n" + strings.Join(ui.WarnOutputs, "\n")
}
func (ui *FakeUI) DumpOutputs() string {
return "****************************\n" + strings.Join(ui.Outputs(), "\n")
}
func (ui *FakeUI) DumpPrompts() string {
return "****************************\n" + strings.Join(ui.Prompts, "\n")
}
func (ui *FakeUI) ClearOutputs() {
ui.sayMutex.Lock()
defer ui.sayMutex.Unlock()
ui.outputs = []string{}
}
func (ui *FakeUI) ShowConfiguration(config coreconfig.Reader) error {
ui.ShowConfigurationCalled = true
return nil
}
func (ui *FakeUI) LoadingIndication() {
}
func (ui *FakeUI) Wait(duration time.Duration) {
time.Sleep(duration)
}
func (ui *FakeUI) Table(headers []string) *term.UITable {
return &term.UITable{
UI: ui,
Table: term.NewTable(headers),
}
}
func (ui *FakeUI) NotifyUpdateIfNeeded(config coreconfig.Reader) {
ui.NotifyUpdateIfNeededCallCount++
}