forked from FyshOS/fin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui_test.go
73 lines (57 loc) · 1.54 KB
/
ui_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
package main
import (
"testing"
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/test"
"github.com/stretchr/testify/assert"
)
func testHostname() string {
return "test"
}
func emptyUsers() []string {
return nil
}
func TestUI(t *testing.T) {
a := test.NewApp()
defer test.NewApp()
window := test.NewWindow(nil)
defer window.Close()
ui := newUI(window, a.Preferences(), testHostname, emptyUsers)
ui.loadUI()
window.Resize(window.Content().MinSize().Add(fyne.NewSize(100, 100)))
test.AssertImageMatches(t, "ui_initial.png", window.Canvas().Capture())
}
func TestUI_EnterLogin(t *testing.T) {
w := test.NewWindow(nil)
ui := newUI(w, test.NewApp().Preferences(), testHostname, emptyUsers)
ui.loadUI()
w.Canvas().Focus(ui.pass)
ui.pass.TypedKey(&fyne.KeyEvent{Name: fyne.KeyEnter})
assert.NotEqual(t, ui.pass, w.Canvas().Focused())
}
func TestUI_Focus(t *testing.T) {
w := test.NewWindow(nil)
ui := newUI(w, test.NewApp().Preferences(), testHostname, emptyUsers)
ui.loadUI()
w.Canvas().FocusNext()
assert.Equal(t, ui.pass, w.Canvas().Focused())
}
func TestUI_RequireFields(t *testing.T) {
w := test.NewWindow(nil)
ui := newUI(w, test.NewApp().Preferences(), testHostname, emptyUsers)
ui.loadUI()
assert.Zero(t, ui.err.Text)
ui.doLogin()
assert.NotZero(t, ui.err.Text)
ui.setError("")
ui.user = "user" // simulate tapping avatar
assert.Zero(t, ui.err.Text)
ui.doLogin()
assert.NotZero(t, ui.err.Text)
ui.setError("")
ui.user = "" // avatar unset
ui.pass.SetText("pass")
assert.Zero(t, ui.err.Text)
ui.doLogin()
assert.NotZero(t, ui.err.Text)
}