-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpectation.go
132 lines (99 loc) · 2.55 KB
/
expectation.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
package surveyexpect
import (
"fmt"
"regexp"
)
var (
selectIndicatorRegex = regexp.MustCompile(`^([^ ]\s+)(.*)`)
multiselectIndicatorRegex = regexp.MustCompile(`^([^ ]\s+)(\[[x ]].*)`)
)
// SelectExpect expects a select list from console.
type SelectExpect []string
// Do runs the step.
func (e *SelectExpect) Do(c Console) error {
for _, o := range *e {
if _, err := c.ExpectString(o); err != nil {
return err
}
}
return nil
}
// String represents the answer as a string.
func (e *SelectExpect) String() string {
var sb stringsBuilder
sb.WriteLinef("Expect a select list:")
writeSelectList(&sb, *e, selectIndicatorRegex)
return sb.String()
}
func expectSelect(options ...string) *SelectExpect {
e := SelectExpect(options)
return &e
}
// MultiSelectExpect expects a multiselect list from console.
type MultiSelectExpect []string
// Do runs the step.
func (e *MultiSelectExpect) Do(c Console) error {
for _, o := range *e {
if _, err := c.ExpectString(o); err != nil {
return err
}
}
return nil
}
// String represents the answer as a string.
func (e *MultiSelectExpect) String() string {
var sb stringsBuilder
sb.WriteLinef("Expect a multiselect list:")
writeSelectList(&sb, *e, multiselectIndicatorRegex)
return sb.String()
}
func expectMultiSelect(options ...string) *MultiSelectExpect {
e := MultiSelectExpect(options)
return &e
}
func breakdownOptions(options []string, indicator *regexp.Regexp) ([]map[string]string, string) {
breakdown := make([]map[string]string, 0, len(options))
var size int
for _, o := range options {
e := map[string]string{
"prefix": "",
"option": "",
}
if m := indicator.FindStringSubmatch(o); m != nil {
e["prefix"] = m[1]
e["option"] = m[2]
l := len(m[1])
if l > size {
size = l
}
} else {
e["option"] = o
}
breakdown = append(breakdown, e)
}
return breakdown, fmt.Sprintf("%%-%ds", size)
}
func writeSelectList(sb *stringsBuilder, options []string, indicator *regexp.Regexp) {
breakdown, pad := breakdownOptions(options, indicator)
for i, o := range breakdown {
if i > 0 {
sb.WriteRune('\n')
}
sb.Writef(pad, o["prefix"]).
Writef(o["option"])
}
}
// StringExpect expects a string from console.
type StringExpect string
// Do runs the step.
func (e StringExpect) Do(c Console) error {
_, err := c.ExpectString(string(e))
return err
}
// String represents the answer as a string.
func (e StringExpect) String() string {
return fmt.Sprintf("Expect a string: %q", string(e))
}
func expectString(s string) StringExpect {
return StringExpect(s)
}