This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 344
/
astilectron_test.go
189 lines (167 loc) · 4.45 KB
/
astilectron_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
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
180
181
182
183
184
185
186
187
188
189
package astilectron
import (
"errors"
"net"
"os"
"sync"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
type logger struct{}
func (l *logger) Debug(v ...interface{}) {}
func (l *logger) Debugf(format string, v ...interface{}) {}
func (l *logger) Error(v ...interface{}) {}
func (l *logger) Errorf(format string, v ...interface{}) {}
func (l *logger) Info(v ...interface{}) {}
func (l *logger) Infof(format string, v ...interface{}) {}
func (l *logger) Warn(v ...interface{}) {}
func (l *logger) Warnf(format string, v ...interface{}) {}
func (l *logger) Fatal(v ...interface{}) {}
func (l *logger) Fatalf(format string, v ...interface{}) {}
func TestAstilectron_Provision(t *testing.T) {
// Init
var o = Options{
BaseDirectoryPath: mockedTempPath(),
VersionAstilectron: "0.35.1",
}
defer os.RemoveAll(o.BaseDirectoryPath)
a, err := New(nil, o)
assert.NoError(t, err)
a.SetProvisioner(NewDisembedderProvisioner(mockedDisembedder, "astilectron", "electron/linux", nil))
// Test provision is successful
err = a.provision()
assert.NoError(t, err)
}
func TestAstilectron_WatchNoAccept(t *testing.T) {
// Init
a, err := New(nil, Options{})
assert.NoError(t, err)
var isStopped bool
var wg = &sync.WaitGroup{}
a.On(EventNameAppCmdStop, func(e Event) bool {
isStopped = true
wg.Done()
return false
})
c := make(chan bool)
// Test success
go func() {
time.Sleep(50 * time.Microsecond)
c <- true
}()
a.watchNoAccept(time.Second, c)
assert.False(t, isStopped)
// Test failure
wg.Add(1)
a.watchNoAccept(time.Nanosecond, c)
wg.Wait()
assert.True(t, isStopped)
}
// mockedListener implements the net.Listener interface
type mockedListener struct {
c chan bool
e chan bool
}
func (l mockedListener) Accept() (net.Conn, error) {
for {
select {
case <-l.c:
return mockedConn{}, nil
case <-l.e:
return nil, errors.New("invalid")
}
}
}
func (l mockedListener) Close() error { return nil }
func (l mockedListener) Addr() net.Addr { return nil }
// mockedConn implements the net.Conn interface
type mockedConn struct{}
func (c mockedConn) Read(b []byte) (n int, err error) { return }
func (c mockedConn) Write(b []byte) (n int, err error) { return }
func (c mockedConn) Close() error { return nil }
func (c mockedConn) LocalAddr() net.Addr { return nil }
func (c mockedConn) RemoteAddr() net.Addr { return nil }
func (c mockedConn) SetDeadline(t time.Time) error { return nil }
func (c mockedConn) SetReadDeadline(t time.Time) error { return nil }
func (c mockedConn) SetWriteDeadline(t time.Time) error { return nil }
func TestAstilectron_AcceptTCP(t *testing.T) {
// Init
a, err := New(nil, Options{})
assert.NoError(t, err)
defer a.Close()
var l = &mockedListener{c: make(chan bool), e: make(chan bool)}
a.listener = l
var isStopped bool
var wg = &sync.WaitGroup{}
a.On(EventNameAppCmdStop, func(e Event) bool {
isStopped = true
wg.Done()
return false
})
c := make(chan bool)
var isAccepted bool
go func() {
<-c
isAccepted = true
wg.Done()
}()
go a.acceptTCP(c)
// Test accepted
wg.Add(1)
l.c <- true
wg.Wait()
assert.True(t, isAccepted)
assert.False(t, isStopped)
// Test refused
isAccepted = false
wg.Add(1)
l.c <- true
wg.Wait()
assert.False(t, isAccepted)
assert.True(t, isStopped)
// Test error accept
go a.acceptTCP(c)
isStopped = false
wg.Add(1)
l.e <- true
wg.Wait()
assert.False(t, isAccepted)
assert.True(t, isStopped)
}
func TestIsValidOS(t *testing.T) {
assert.True(t, IsValidOS("darwin"))
assert.True(t, IsValidOS("linux"))
assert.True(t, IsValidOS("windows"))
assert.False(t, IsValidOS("invalid"))
}
func TestAstilectron_Wait(t *testing.T) {
a, err := New(nil, Options{})
assert.NoError(t, err)
a.HandleSignals()
go func() {
time.Sleep(20 * time.Microsecond)
p, err := os.FindProcess(os.Getpid())
assert.NoError(t, err)
p.Signal(os.Interrupt)
}()
a.Wait()
}
func TestAstilectron_NewMenu(t *testing.T) {
a, err := New(nil, Options{})
assert.NoError(t, err)
m := a.NewMenu([]*MenuItemOptions{})
assert.Equal(t, targetIDApp, m.rootID)
}
func TestAstilectron_Actions(t *testing.T) {
// Init
a, err := New(nil, Options{})
assert.NoError(t, err)
defer a.Close()
wrt := &mockedWriter{}
a.writer = newWriter(wrt, &logger{})
// Actions
err = a.Quit()
assert.NoError(t, err)
assert.Equal(t, []string{"{\"name\":\"app.cmd.quit\"}\n"}, wrt.w)
}