-
Notifications
You must be signed in to change notification settings - Fork 0
/
shared_resources_test.go
62 lines (48 loc) · 967 Bytes
/
shared_resources_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
package cyclecmd_test
import (
"bytes"
"fmt"
"io"
"os"
"github.com/RaphSku/cyclecmd"
)
type DefaultEvent struct{}
func (de *DefaultEvent) Handle(token string) error {
fmt.Print(token)
return nil
}
func setupDefaultEventInformation() cyclecmd.EventInformation {
return cyclecmd.EventInformation{
EventName: "Default",
Event: &DefaultEvent{},
}
}
type TestEvent struct{}
func (te *TestEvent) Handle(token string) error {
fmt.Print("Testing this event")
return nil
}
type BackspaceEvent struct{}
func (be *BackspaceEvent) Handle(token string) error {
fmt.Print("\b \b")
return nil
}
func captureStdOutput(f func()) (string, error) {
originalStdOut := os.Stdout
r, w, err := os.Pipe()
if err != nil {
return "", err
}
os.Stdout = w
outputC := make(chan string)
go func() {
var buf bytes.Buffer
io.Copy(&buf, r)
outputC <- buf.String()
}()
f()
w.Close()
os.Stdout = originalStdOut
out := <-outputC
return out, nil
}