-
Notifications
You must be signed in to change notification settings - Fork 12
/
gauge_am_test.go
68 lines (58 loc) · 1.44 KB
/
gauge_am_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
package tvxwidgets_test
import (
"github.com/gdamore/tcell/v2"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"github.com/rivo/tview"
"github.com/navidys/tvxwidgets"
)
var _ = Describe("GaugeAm", Ordered, func() {
var (
app *tview.Application
headerBox *tview.Box
gaugeAm *tvxwidgets.ActivityModeGauge
screen tcell.SimulationScreen
)
BeforeAll(func() {
app = tview.NewApplication()
headerBox = tview.NewBox().SetBorder(true)
gaugeAm = tvxwidgets.NewActivityModeGauge()
screen = tcell.NewSimulationScreen("UTF-8")
if err := screen.Init(); err != nil {
panic(err)
}
go func() {
appLayout := tview.NewFlex().SetDirection(tview.FlexRow)
appLayout.AddItem(headerBox, 1, 0, true)
appLayout.AddItem(gaugeAm, 50, 0, true)
err := app.SetScreen(screen).SetRoot(appLayout, true).Run()
if err != nil {
panic(err)
}
}()
})
AfterAll(func() {
app.Stop()
})
Describe("Focus", func() {
It("checks primitivie focus", func() {
app.SetFocus(headerBox)
app.Draw()
Expect(gaugeAm.HasFocus()).To(Equal(false))
app.SetFocus(gaugeAm)
gaugeAm.Pulse()
app.Draw()
// gauge will not get focus
Expect(gaugeAm.HasFocus()).To(Equal(false))
})
})
Describe("GetRect", func() {
It("primitivie size", func() {
x, y, width, heigth := gaugeAm.GetRect()
Expect(x).To(Equal(0))
Expect(y).To(Equal(1))
Expect(width).To(Equal(80))
Expect(heigth).To(Equal(50))
})
})
})