-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprompts_example_test.go
137 lines (109 loc) · 2.55 KB
/
prompts_example_test.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
package strumt_test
import (
"bytes"
"fmt"
"io/ioutil"
"strconv"
"github.com/antham/strumt/v2"
)
func Example() {
user := User{}
buf := "\nBrad\n\nBlanton\nwhatever\n0\n31\n"
p := strumt.NewPromptsFromReaderAndWriter(bytes.NewBufferString(buf), ioutil.Discard)
p.AddLinePrompter(&StringPrompt{&user.FirstName, "Enter your first name", "userName", "lastName", "userName"})
p.AddLinePrompter(&StringPrompt{&user.LastName, "Enter your last name", "lastName", "age", "lastName"})
p.AddLinePrompter(&IntPrompt{&user.Age, "Enter your age", "age", "", "age"})
p.SetFirst("userName")
p.Run()
for _, step := range p.Scenario() {
fmt.Println(step.PromptString())
fmt.Println(step.Inputs()[0])
if step.Error() != nil {
fmt.Println(step.Error())
}
}
fmt.Println()
fmt.Printf("User datas : %#v", user)
// Output:
// Enter your first name
//
// Empty value given
// Enter your first name
// Brad
// Enter your last name
//
// Empty value given
// Enter your last name
// Blanton
// Enter your age
// whatever
// whatever is not a valid number
// Enter your age
// 0
// Give a valid age
// Enter your age
// 31
//
// User datas : strumt_test.User{FirstName:"Brad", LastName:"Blanton", Age:31}
}
type StringPrompt struct {
store *string
prompt string
currentID string
nextPrompt string
nextPromptOnError string
}
func (s *StringPrompt) ID() string {
return s.currentID
}
func (s *StringPrompt) PromptString() string {
return s.prompt
}
func (s *StringPrompt) Parse(value string) error {
if value == "" {
return fmt.Errorf("Empty value given")
}
*(s.store) = value
return nil
}
func (s *StringPrompt) NextOnSuccess(value string) string {
return s.nextPrompt
}
func (s *StringPrompt) NextOnError(err error) string {
return s.nextPromptOnError
}
type IntPrompt struct {
store *int
prompt string
currentID string
nextPrompt string
nextPromptOnError string
}
func (i *IntPrompt) ID() string {
return i.currentID
}
func (i *IntPrompt) PromptString() string {
return i.prompt
}
func (i *IntPrompt) Parse(value string) error {
age, err := strconv.Atoi(value)
if err != nil {
return fmt.Errorf("%s is not a valid number", value)
}
if age <= 0 {
return fmt.Errorf("Give a valid age")
}
*(i.store) = age
return nil
}
func (i *IntPrompt) NextOnSuccess(value string) string {
return i.nextPrompt
}
func (i *IntPrompt) NextOnError(err error) string {
return i.nextPromptOnError
}
type User struct {
FirstName string
LastName string
Age int
}