-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
402 lines (383 loc) · 12.3 KB
/
main_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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
package consolizer
import (
"fmt"
"github.com/supercom32/consolizer/constants"
"github.com/supercom32/consolizer/internal/memory"
"github.com/supercom32/consolizer/types"
"log"
"strconv"
"testing"
"time"
)
func TestMainStub(test *testing.T) {
// testRadioButtons()
// testTextboxes()
// testCheckboxes()
// testDropdown()
// testScrollBars()
// testSelector()
testTextField()
//testProgressBar()
// testWindowMovement()
// testButtonPressAction()
//RestoreTerminalSettings()
}
func testProgressBar() {
commonResource.isDebugEnabled = false
InitializeTerminal(80, 40)
layer1 := AddLayer(0, 0, 80, 40, 1, nil)
layer2 := AddLayer(20, 15, 40, 20, 1, &layer1)
Layer(layer1)
ColorRGB(255, 0, 0, 0, 0, 0)
layer1.FillLayer("#")
layer2.FillLayer("@")
Locate(0, 0)
styleEntry := types.NewTuiStyleEntry()
styleEntry.SelectorTextAlignment = 0
styleEntry.ProgressBarUnfilledBackgroundColor = constants.ColorBrightGreen
layer1.AddProgressBar("Any Label", styleEntry, 21, 5, 40, 3, 10, 20, true)
for {
UpdateDisplay(false)
key := string(Inkey())
if key == "w" {
log.Printf("TESTING")
Locate(0, 0)
}
if key == "a" {
RefreshDisplay()
}
if key == "q" {
break
}
time.Sleep(50 * time.Millisecond)
}
DeleteAllLayers()
RestoreTerminalSettings()
}
func testRadioButtons() {
commonResource.isDebugEnabled = false
InitializeTerminal(80, 40)
layer1 := AddLayer(0, 0, 80, 40, 1, nil)
layer2 := AddLayer(20, 15, 40, 20, 1, &layer1)
Layer(layer1)
ColorRGB(255, 0, 0, 0, 0, 0)
layer1.FillLayer("#")
layer2.FillLayer("@")
Locate(0, 0)
Print("Enable ☑ Enable ○ ● (U+25CB, U+25CF) ▾☒♪")
styleEntry := types.NewTuiStyleEntry()
styleEntry.SelectorTextAlignment = 0
radioButton := layer1.AddRadioButton("Enable 文字 Feature 1", styleEntry, 2, 2, 0, true)
layer1.AddRadioButton("Enable 文字 Feature 2", styleEntry, 2, 3, 0, false)
layer1.AddRadioButton("Enable 文字 Feature 3", styleEntry, 2, 4, 0, false)
layer1.AddRadioButton("Option 1.1", styleEntry, 2, 6, 1, true)
layer1.AddRadioButton("Option 1.2", styleEntry, 2, 7, 1, false)
layer1.AddRadioButton("Option 1.3", styleEntry, 2, 8, 1, false)
for {
UpdateDisplay(false)
selectedButton := radioButton.GetSelectedRadioButton()
Locate(0, 0)
Print(" ")
Locate(0, 0)
Print(selectedButton)
key := string(Inkey())
if key == "w" {
}
if key == "q" {
break
}
time.Sleep(50 * time.Millisecond)
}
DeleteAllLayers()
RestoreTerminalSettings()
}
func testTextboxes() {
commonResource.isDebugEnabled = false
InitializeTerminal(80, 40)
layer1 := AddLayer(0, 0, 80, 40, 1, nil)
layer2 := AddLayer(25, 15, 40, 20, 1, &layer1)
Layer(layer1)
ColorRGB(255, 0, 0, 0, 0, 0)
layer1.FillLayer("#")
layer2.FillLayer("@")
Locate(0, 0)
Print("Enable ☑ Enable ○ ● (U+25CB, U+25CF)")
styleEntry := types.NewTuiStyleEntry()
styleEntry.SelectorTextAlignment = 2
textBox := layer1.AddTextbox(styleEntry, 2, 2, 20, 5, true)
textBox.setText("This is a test 1\nthis is ☑ second line which is very long and big 1\n李克强宣布中国今年经济增长的目标为 third line. 1")
textBox2 := layer1.AddTextbox(styleEntry, 40, 2, 20, 5, false)
textBox2.setText("This is a test\nthis is ☑ second line which is very long and big\nthis is 文字 third line.")
textBox3 := layer1.AddTextbox(styleEntry, 1, 10, 20, 7, true)
textBox3.setText("This is a test123456\nThis DDDDtesdfsfsdfsdfsdfsdfsdfsddffdsfdsst123456\nThis is GGGGGst1234\nThis is a ZZZZst123456\nThis is a test123456\nzzzzzzzzz\naaaa\ndddddd\nttttt\n222222\n555555")
for {
mouseXLocation, mouseYLocation, _, _ := memory.GetMouseStatus()
characterEntry := getCellInformationUnderMouseCursor(mouseXLocation, mouseYLocation)
Locate(0, 0)
Print(fmt.Sprintf("%d, %d ", characterEntry.AttributeEntry.CellControlId, characterEntry.AttributeEntry.CellControlLocation))
UpdateDisplay(false)
key := string(Inkey())
if key == "d" {
}
if key == "a" {
}
if key == "w" {
}
if key == "s" {
}
if key == "q" {
break
}
time.Sleep(50 * time.Millisecond)
}
DeleteAllLayers()
RestoreTerminalSettings()
}
func testCheckboxes() {
commonResource.isDebugEnabled = false
InitializeTerminal(80, 40)
layer1 := AddLayer(0, 0, 80, 40, 1, nil)
layer2 := AddLayer(20, 15, 40, 20, 1, &layer1)
Layer(layer1)
ColorRGB(255, 0, 0, 0, 0, 0)
layer1.FillLayer("#")
layer2.FillLayer("@")
Locate(0, 0)
Print("Enable ☑ Enable ○ ● (U+25CB, U+25CF) ▾☒♪")
styleEntry := types.NewTuiStyleEntry()
styleEntry.SelectorTextAlignment = 0
layer1.AddCheckbox("Enable 文字 Feature", styleEntry, 2, 2, true, true)
for {
UpdateDisplay(false)
key := string(Inkey())
if key == "w" {
}
if key == "q" {
break
}
time.Sleep(50 * time.Millisecond)
}
DeleteAllLayers()
RestoreTerminalSettings()
}
func testDropdown() {
commonResource.isDebugEnabled = false
InitializeTerminal(80, 40)
layer1 := AddLayer(0, 0, 80, 40, 1, nil)
layer2 := AddLayer(20, 15, 40, 20, 1, &layer1)
Layer(layer1)
ColorRGB(255, 0, 0, 0, 0, 0)
layer1.FillLayer("#")
layer2.FillLayer("@")
Locate(0, 0)
Print("Enable ☑ Enable ○ ● (U+25CB, U+25CF)")
styleEntry := types.NewTuiStyleEntry()
styleEntry.SelectorTextAlignment = 0
selectionEntry := types.NewSelectionEntry()
selectionEntry.Add("1", "")
selectionEntry.Add("2", "Enabl文e ○ ●")
selectionEntry.Add("3", "☑ Enable ○ ●")
selectionEntry.Add("4", "GET 文字文字")
selectionEntry.Add("5", "IE文字文字")
selectionEntry.Add("6", "DELETE")
for i := 0; i < 20; i++ {
selectionEntry.Add(strconv.Itoa(i), strconv.Itoa(i))
}
selectionEntry2 := types.NewSelectionEntry()
selectionEntry2.Add("1", "1")
selectionEntry2.Add("2", "2")
selectionEntry2.Add("3", "3")
layer1.AddDropdown(styleEntry, selectionEntry, 2, 2, 8, 7, 3)
layer1.AddDropdown(styleEntry, selectionEntry2, 2, 39, 3, 7, 1)
layer1.AddSelector(styleEntry, selectionEntry, 6, 10, 4, 7, 3, 0, -1, false)
layer1.AddSelector(styleEntry, selectionEntry, 10, 20, 4, 7, 1, 0, -1, false)
styleEntry.SelectorTextAlignment = constants.AlignmentNoPadding
layer1.AddSelector(styleEntry, selectionEntry, 6, 30, 4, 7, 1, 0, -1, false)
for {
UpdateDisplay(false)
key := string(Inkey())
// fmt.Print(key)
if key == "w" {
Locate(0, 0)
PrintLayer(layer1, " ")
Locate(0, 0)
_, _, pressed, _ := memory.GetPreviousMouseStatus()
PrintLayer(layer1, "***"+strconv.Itoa(int(pressed))+"***")
}
if key == "q" {
break
}
time.Sleep(50 * time.Millisecond)
}
DeleteAllLayers()
RestoreTerminalSettings()
}
func testScrollBars() {
commonResource.isDebugEnabled = false
InitializeTerminal(80, 40)
layer1 := AddLayer(0, 0, 80, 40, 1, nil)
layer2 := AddLayer(20, 15, 40, 20, 1, &layer1)
Layer(layer1)
layer1.FillLayer("#")
layer2.FillLayer("@")
styleEntry := types.NewTuiStyleEntry()
styleEntry.SelectorTextAlignment = 0
selectionEntry := types.NewSelectionEntry()
selectionEntry.Add("1", "OK")
selectionEntry.Add("2", "CANCEL")
selectionEntry.Add("3", "EXIT")
selectionEntry.Add("4", "GOTO")
selectionEntry.Add("5", "RUN")
selectionEntry.Add("6", "DELETE")
s1 := layer1.AddScrollbar(styleEntry, 2, 2, 8, 80, 0, 1, false)
s2 := layer1.AddScrollbar(styleEntry, 10, 5, 8, 8, 4, 1, true)
s1.setScrollValue(4)
s2.setHandlePosition(4)
for {
UpdateDisplay(false)
// x, y, _, _ := memory.GetMouseStatus()
// a := getCellInformationUnderMouseCursor(x, y)
LocateLayer(layer1, 10, 0)
PrintLayer(layer1, " ")
LocateLayer(layer1, 10, 0)
PrintLayer(layer1, strconv.Itoa(s1.getScrollValue()))
LocateLayer(layer1, 10, 1)
PrintLayer(layer1, " ")
LocateLayer(layer1, 10, 1)
PrintLayer(layer1, strconv.Itoa(s2.getScrollValue()))
key := string(Inkey())
// fmt.Print(key)
if key == "q" {
break
}
time.Sleep(50 * time.Millisecond)
}
DeleteAllLayers()
RestoreTerminalSettings()
}
func testSelector() {
commonResource.isDebugEnabled = false
InitializeTerminal(80, 40)
layer1 := AddLayer(0, 0, 80, 40, 1, nil)
layer2 := AddLayer(20, 15, 40, 20, 1, &layer1)
Layer(layer1)
layer1.FillLayer("#")
layer2.FillLayer("@")
styleEntry := types.NewTuiStyleEntry()
styleEntry.SelectorTextAlignment = 0
selectionEntry := types.NewSelectionEntry()
selectionEntry.Add("1", "OK")
selectionEntry.Add("2", "CANCEL")
selectionEntry.Add("3", "EXIT")
selectionEntry.Add("4", "GOTO")
selectionEntry.Add("5", "RUN")
selectionEntry.Add("6", "DELETE")
for i := 0; i < 20; i++ {
selectionEntry.Add(strconv.Itoa(i), strconv.Itoa(i))
}
menuBarInstance := layer1.AddSelector(styleEntry, selectionEntry, 2, 10, 4, 7, 3, 0, -1, false)
// menuBarInstance2 := Selector.Add(layerAlias1, "menuBar2", styleEntry, selectionEntry, 10, 20, 4, 7, 1, 0, -1, false)
LocateLayer(layer1, 3, 3)
PrintLayer(layer1, menuBarInstance.layerAlias)
for {
UpdateDisplay(false)
time.Sleep(50 * time.Millisecond)
LocateLayer(layer1, 3, 3)
// PrintLayer(layerAlias1, menuBarInstance.GetSelected())
LocateLayer(layer1, 3, 4)
// PrintLayer(layerAlias1, menuBarInstance2.GetSelected())
key := string(Inkey())
// fmt.Print(key)
if key == "q" {
break
}
}
DeleteAllLayers()
RestoreTerminalSettings()
}
func testTextField() {
commonResource.isDebugEnabled = false
InitializeTerminal(80, 40)
layer1 := AddLayer(0, 0, 80, 40, 1, nil)
layer2 := AddLayer(20, 15, 40, 20, 1, &layer1)
Layer(layer1)
layer1.FillLayer("#")
layer2.FillLayer("@")
styleEntry := types.NewTuiStyleEntry()
textFieldInstance := layer1.AddTextField(styleEntry, 0, 3, 10, 60, true, "Alex Chang is the man", true)
// Drag a scroll bar, move out of the scroll bar, moving on another control should not crash.
layer1.AddTextField(styleEntry, 0, 7, 50, 60, false, "यह व्यवस्था की परीक्षा है", true)
layer1.AddTextField(styleEntry, 0, 9, 50, 60, false, "Zhè shì duì wǒ de yìngyòng chéngxù de cèshì", true)
LocateLayer(layer1, 3, 20)
PrintLayer(layer1, textFieldInstance.GetValue())
layer1.AddTextField(styleEntry, 0, 5, 15, 30, false, "Test 李克强宣布中国今年经济增长的目 acbc1", true)
layer1.AddScrollbar(styleEntry, 0, 8, 10, 10, 0, 1, false)
for {
mouseXLocation, mouseYLocation, _, _ := memory.GetMouseStatus()
characterEntry := getCellInformationUnderMouseCursor(mouseXLocation, mouseYLocation)
Locate(0, 0)
Print(fmt.Sprintf("%d, %d ", characterEntry.AttributeEntry.CellControlId, characterEntry.AttributeEntry.CellControlLocation))
UpdateDisplay(false)
time.Sleep(50 * time.Millisecond)
key := string(Inkey())
if key == "q" {
break
}
}
DeleteAllLayers()
RestoreTerminalSettings()
}
func testWindowMovement() {
commonResource.isDebugEnabled = false
xLocation := 1
yLocation := 1
InitializeTerminal(80, 40)
layer1 := AddLayer(0, 0, 80, 40, 1, nil)
layer2 := AddLayer(20, 15, 40, 20, 1, &layer1)
layer3 := AddLayer(0, 0, 20, 10, 1, &layer2)
layer4 := AddLayer(15, 10, 20, 10, 2, &layer1)
Layer(layer1)
layer1.FillLayer("#")
layer2.FillLayer("@")
Locate(xLocation, yLocation)
Print("This is a test of the layer system")
Locate(1, 1)
Print(strconv.Itoa(memory.GetLayer(layer2.layerAlias).ZOrder))
styleEntry := types.NewTuiStyleEntry()
layer3.DrawWindow(styleEntry, 0, 0, 18, 9, true)
layer4.DrawWindow(styleEntry, 0, 0, 18, 9, true)
for i := 0; i < 10; i++ {
UpdateDisplay(false)
time.Sleep(1000 * time.Millisecond)
}
DeleteAllLayers()
RestoreTerminalSettings()
}
func testButtonPressAction() {
commonResource.isDebugEnabled = false
xLocation := 0
yLocation := 0
InitializeTerminal(80, 40)
layer1 := AddLayer(0, 0, 80, 40, 1, nil)
Locate(xLocation, yLocation)
Print("This is a test")
styleEntry := types.NewTuiStyleEntry()
layer1.AddButton("CANCEL", styleEntry, 2, 2, 10, 10, true)
layer1.AddButton("OK", styleEntry, 15, 2, 10, 10, true)
layerInformation := memory.GetLayer(layer1.layerAlias)
Button.drawButtonsOnLayer(*layerInformation)
for {
mouseXLocation, mouseYLocation, _, _ := memory.GetMouseStatus()
characterEntry := getCellInformationUnderMouseCursor(mouseXLocation, mouseYLocation)
Locate(0, 0)
Print(fmt.Sprintf("%d, %d, %d ", characterEntry.AttributeEntry.CellType, characterEntry.AttributeEntry.CellControlId, characterEntry.AttributeEntry.CellControlLocation))
UpdateDisplay(false)
key := string(Inkey())
if key == "q" {
break
}
time.Sleep(50 * time.Millisecond)
}
DeleteAllLayers()
RestoreTerminalSettings()
}