-
Notifications
You must be signed in to change notification settings - Fork 2
/
impl.go
713 lines (610 loc) · 15.6 KB
/
impl.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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
package wayang
import (
"fmt"
"github.com/ysmood/kit"
"runtime/debug"
"strings"
"time"
"github.com/go-rod/rod"
"github.com/go-rod/rod/lib/input"
)
type runtimeAction struct {
runner *Runner
act Action
source string
}
type actionFunc func(ra runtimeAction, act Action) interface{}
var actions map[string]actionFunc
func init() {
actions = map[string]actionFunc{
"do": doAction,
"forEach": forEachAction,
"if": ifAction,
"store": storeAction,
"attribute": attributeAction,
"html": htmlAction,
"text": textAction,
"has": hasAction,
"not": notAction,
"textContains": textContainsAction,
"textEqual": textEqualAction,
"textNotEqual": textNotEqualAction,
"visible": visibleAction,
"blur": blurAction,
"clear": clearAction,
"click": clickAction,
"error": errorAction,
"eval": evalAction,
"focus": focusAction,
"input": inputAction,
"log": logAction,
"logStore": logStoreAction,
"navigate": navigateAction,
"press": pressAction,
"scrollIntoView": scrollIntoViewAction,
"selectAll": selectAllAction,
"sleep": sleepAction,
"waitIdle": waitIdleAction,
"waitInvisible": waitInvisibleAction,
"waitLoad": waitLoadAction,
"waitStable": waitStableAction,
"waitVisible": waitVisibleAction,
}
}
func (parent *Runner) runAction(act Action, source string) interface{} {
source = source + "." + act["action"].(string)
ra := runtimeAction{
runner: parent,
act: act,
source: source,
}
if len(source) > 1000 {
return ra.err("action chain longer than 1000 chars, expected to be inside recursive loop")
}
action, ok := act["action"].(string)
if !ok {
return ra.err("could not convert action to type string")
}
actFunc, ok := actions[action]
if ok {
return actFunc(ra, act)
}
if !strings.HasPrefix(action, "$") {
return ra.err("could not find a defined action with the requested name (" + source + ")")
}
cAction := strings.TrimPrefix(action, "$")
cActionFunc, ok := parent.program.Actions[cAction]
if !ok {
return ra.err("could not find a custom action with the requested name (" + source + ")")
}
return parent.runAction(cActionFunc, source)
}
func doAction(ra runtimeAction, act Action) interface{} {
run := ra.runner
stmts, ok := act["statements"].([]interface{})
var res interface{}
if !ok {
typed, ok := act["statements"].([]Action)
if !ok {
return ra.err("expected statements to be able to be parsed as []Action")
}
for _, action := range typed {
res = run.runAction(action, ra.source)
if _, ok = res.(RuntimeError); ok {
return res
}
}
} else {
for _, rawAction := range stmts {
stmt := Action(rawAction.(map[string]interface{}))
res = run.runAction(stmt, ra.source)
if _, ok = res.(RuntimeError); ok {
return res
}
}
}
return res
}
func forEachAction(ra runtimeAction, act Action) interface{} {
//TODO not implemented properly
run := ra.runner
action, ok := act["execute"].(Action)
if !ok {
return ra.err("expected execute to be able to be parsed as Action")
}
elements, ok := act["elements"].(string)
if !ok {
return ra.err("could not convert elements to type string")
}
sel, ok := run.sel(elements)
if !ok {
return ra.err("could not find a custom selector defined with the specified value")
}
for _, element := range run.P.ElementsX(sel) {
action["element"] = element // needs to be the xpath
if res, ok := run.runAction(action, ra.source).(RuntimeError); ok {
return res
}
}
return nil
}
func ifAction(ra runtimeAction, act Action) interface{} {
run := ra.runner
condition := run.makeAction(act["condition"])
if condition == nil {
return ra.err("a condition is required to be present")
}
res := run.runAction(*condition, ra.source)
toBool, ok := res.(bool)
if !ok {
if _, ok := res.(RuntimeError); ok {
return res
}
return ra.err("expected condition to return a bool type, got", res)
}
if toBool {
stmt := run.makeAction(act["statement"])
if stmt == nil {
return ra.err("could not transform execute to action")
}
return run.runAction(*stmt, ra.source)
}
action := run.makeAction(act["otherwise"])
if action == nil {
return nil
}
return run.runAction(*action, ra.source)
}
func storeAction(ra runtimeAction, act Action) interface{} {
run := ra.runner
items, ok := act["items"].(map[string]interface{})
if !ok {
items = make(map[string]interface{})
}
source := ra.source
for s, field := range items {
switch item := field.(type) {
case map[string]interface{}:
source = fmt.Sprintf("%s.field[%s]", source, s)
res := run.runAction(item, source)
if err, ok := res.(RuntimeError); ok {
return err
}
run.ENV[s] = res
case Action:
source = fmt.Sprintf("%s.field[%s]", source, s)
res := run.runAction(item, source)
if err, ok := res.(RuntimeError); ok {
return err
}
run.ENV[s] = res
case string:
if !strings.HasPrefix(item, "$") {
run.ENV[s] = item
break
}
value := strings.TrimPrefix(item, "$")
if selector, ok := run.program.Selectors[value]; ok {
run.ENV[s] = selector
break
}
if action, ok := run.program.Actions[value]; ok {
res := run.runAction(action, source)
if err, ok := res.(RuntimeError); ok {
return err
}
run.ENV[s] = res
break
}
run.ENV[s] = item
default:
run.ENV[s] = item
}
}
return nil
}
func attributeAction(ra runtimeAction, act Action) interface{} {
element, err := ra.createElem(act)
if err != nil {
return *err
}
attrName, ok := act["name"].(string)
if !ok {
return ra.err("could not find name to retrieve attribute")
}
attr := element.Attribute(attrName)
if attr == nil {
return nil
}
return *attr
}
func htmlAction(ra runtimeAction, act Action) interface{} {
element, err := ra.createElem(act)
if err != nil {
return *err
}
return element.HTML()
}
func textAction(ra runtimeAction, act Action) interface{} {
element, err := ra.createElem(act)
if err != nil {
return *err
}
return element.Text()
}
func hasAction(ra runtimeAction, act Action) interface{} {
run := ra.runner
attrSel, ok := act["element"].(string)
if !ok {
return ra.err("could not find an element key of type string")
}
sel, ok := run.sel(attrSel)
if !ok {
return ra.err("could not find a custom selector defined with the specified value")
}
return run.P.HasX(sel)
}
func notAction(ra runtimeAction, act Action) interface{} {
run := ra.runner
stmtAttr := run.makeAction(act["statement"])
if stmtAttr == nil {
if asBool, ok := act["statement"].(bool); ok {
return !asBool
}
return ra.err("a statement is required to be present")
}
res := run.runAction(*stmtAttr, ra.source)
toBool, ok := res.(bool)
if !ok {
if _, ok := res.(RuntimeError); ok {
return res
}
return ra.err("expected statement to return a bool type, got", res)
}
return !toBool
}
func textContainsAction(ra runtimeAction, act Action) interface{} {
run := ra.runner
text, ok := act["text"].(string)
if !ok {
return ra.err("a 'text' key (type string) is required to present")
}
stmt := run.makeAction(act["statement"])
if stmt == nil {
return ra.err("a statement key (type action) is required to be present")
}
stmtRes := run.runAction(*stmt, ra.source)
switch stmtRes.(type) {
case RuntimeError:
return stmtRes
case string:
break
default:
return ra.err("unexpected result from action: ", stmtRes)
}
stmtStr := stmtRes.(string)
ignoreCase, ok := act["ignoreCase"].(bool)
if !ok {
ignoreCase = false
}
if ignoreCase {
stmtStr = strings.ToLower(stmtStr)
text = strings.ToLower(text)
}
return strings.Contains(stmtStr, text)
}
func textEqualAction(ra runtimeAction, act Action) interface{} {
run := ra.runner
expected, ok := act["expected"].(string)
if !ok {
return ra.err("an 'expected' key (type string) is required to present")
}
stmt := run.makeAction(act["statement"])
if stmt == nil {
return ra.err("an actual key (type action) is required to be present")
}
actualRes := run.runAction(*stmt, ra.source)
switch actualRes.(type) {
case RuntimeError:
return actualRes
case string:
break
default:
return ra.err("unexpected result from action: ", actualRes)
}
actual := actualRes.(string)
ignoreCase, ok := act["ignoreCase"].(bool)
if !ok {
ignoreCase = false
}
if ignoreCase {
expected = strings.ToLower(expected)
actual = strings.ToLower(actual)
}
return expected == actual
}
func textNotEqualAction(ra runtimeAction, act Action) interface{} {
res := textEqualAction(ra, act)
if boolRes, ok := res.(bool); ok {
return !boolRes
}
return res
}
func visibleAction(ra runtimeAction, act Action) interface{} {
element, err := ra.createElem(act)
if err != nil {
return *err
}
return element.Visible()
}
func blurAction(ra runtimeAction, act Action) interface{} {
element, err := ra.createElem(act)
if err != nil {
return *err
}
element.Blur()
return nil
}
func clearAction(ra runtimeAction, act Action) interface{} {
element, err := ra.createElem(act)
if err != nil {
return *err
}
element.SelectAllText().Input("")
return nil
}
func clickAction(ra runtimeAction, act Action) interface{} {
element, err := ra.createElem(act)
if err != nil {
return *err
}
element.Click()
return nil
}
func errorAction(ra runtimeAction, act Action) interface{} {
message, ok := act["message"].(string)
if !ok {
return ra.err("a 'message' key (type string) is required to present")
}
ra.runner.Error(message)
return ra.err(message)
}
func evalAction(ra runtimeAction, act Action) interface{} {
expression, ok := act["expression"].(string)
if !ok {
return ra.err("an 'expression' key (type string) is required to be present")
}
if _, ok := act["element"]; !ok {
return ra.runner.P.Eval(expression).Raw
}
element, err := ra.createElem(act)
if err != nil {
return *err
}
return element.Eval(expression).Raw
}
func focusAction(ra runtimeAction, act Action) interface{} {
element, err := ra.createElem(act)
if err != nil {
return *err
}
element.Focus()
return nil
}
func inputAction(ra runtimeAction, act Action) interface{} {
text, ok := act["text"].(string)
if !ok {
return ra.err("a 'text' key (type string) is required to be present")
}
element, err := ra.createElem(act)
if err != nil {
ra.runner.P.Keyboard.InsertText(text)
return nil
}
element.Input(text)
return nil
}
func logAction(ra runtimeAction, act Action) interface{} {
message, ok := act["message"].(string)
if !ok {
return ra.err("a 'message' key (type string) is required to present")
}
ra.runner.Info(message)
return nil
}
func logStoreAction(ra runtimeAction, act Action) interface{} {
keyStmt, ok := act["key"].(string)
if !ok {
return ra.err("a 'key' key (type string) is required to present")
}
if !strings.HasPrefix(keyStmt, "$") {
return ra.err("querying the store requires a $ prefix")
}
key := strings.TrimPrefix(keyStmt, "$")
exists, ok := ra.runner.ENV[key]
if !ok {
return ra.err("the specified key is not in the program store")
}
ra.runner.Info(kit.Sdump(exists))
return nil
}
func navigateAction(ra runtimeAction, act Action) interface{} {
link, ok := act["link"].(string)
if !ok {
return ra.err("a 'link' key (type string) is required to present")
}
ra.runner.P.Navigate(link)
return nil
}
func pressAction(ra runtimeAction, act Action) interface{} {
keyAttr, ok := act["key"].(string)
var press rune
if !ok {
return ra.err("a 'key' key (type string) is required to be present")
}
if len(keyAttr) == 1 {
press = []rune(keyAttr)[0]
} else {
for rne, key := range input.Keys {
if strings.ToLower(key.Code) == strings.ToLower(keyAttr) {
press = rne
break
}
}
}
element, err := ra.createElem(act)
if err != nil {
ra.runner.P.Keyboard.Press(press)
return nil
}
element.Press(press)
return nil
}
func scrollIntoViewAction(ra runtimeAction, act Action) interface{} {
element, err := ra.createElem(act)
if err != nil {
return *err
}
element.ScrollIntoView()
return nil
}
func selectAllAction(ra runtimeAction, act Action) interface{} {
element, err := ra.createElem(act)
if err != nil {
return *err
}
element.SelectAllText()
return nil
}
func sleepAction(ra runtimeAction, act Action) interface{} {
duration, ok := act["duration"].(float64)
if !ok {
return ra.err("a 'duration' key (type float) is required to present")
}
if duration < 0 {
return ra.err("duration value must be greater than or equal to 0")
}
ctx := ra.runner.P.GetContext()
asFloat := float64(time.Second) * duration
t := time.After(time.Duration(asFloat))
select {
case <-ctx.Done():
return ctx.Err()
case <-t:
return nil
}
}
func waitIdleAction(ra runtimeAction, _ Action) interface{} {
return ra.waitWithTimeout(func() {
ra.runner.P.WaitRequestIdle()()
}, "waited too long for waitInvisible action to complete")
}
func waitInvisibleAction(ra runtimeAction, act Action) interface{} {
element, err := ra.createElem(act)
if err != nil {
return *err
}
return ra.waitWithTimeout(func() {
element.WaitInvisible()
}, "waited too long for waitInvisible action to complete")
}
func waitLoadAction(ra runtimeAction, _ Action) interface{} {
return ra.waitWithTimeout(func() {
ra.runner.P.WaitLoad()
}, "waited too long for waitLoad action to complete")
}
func waitStableAction(ra runtimeAction, act Action) interface{} {
element, err := ra.createElem(act)
if err != nil {
return *err
}
return ra.waitWithTimeout(func() {
element.WaitStable()
}, "waited too long for waitStable action to complete")
}
func waitVisibleAction(ra runtimeAction, act Action) interface{} {
element, err := ra.createElem(act)
if err != nil {
return *err
}
return ra.waitWithTimeout(func() {
element.WaitVisible()
}, "waited too long for waitVisible action to complete")
}
func (ra runtimeAction) waitWithTimeout(wait func(), timeoutMsg string) interface{} {
run := ra.runner
ctx := run.P.GetContext()
done := make(chan bool, 1)
go func() {
kit.Try(func() {
wait()
})
done <- true
}()
timeout := make(chan bool, 1)
duration, ok := ra.act["duration"].(float64)
if ok {
go func() {
asFloat := float64(time.Second) * duration
time.Sleep(time.Duration(asFloat))
timeout <- true
}()
}
select {
case <-ctx.Done():
return ra.err("context error:", ctx.Err())
case <-timeout:
return ra.err(timeoutMsg)
case <-done:
return nil
}
}
func (ra runtimeAction) err(errs ...interface{}) RuntimeError {
return RuntimeError{
parent: ra.runner,
source: ra.source,
stack: debug.Stack(),
action: ra.act,
err: errs,
}
}
func (ra runtimeAction) createElem(act Action) (*rod.Element, *RuntimeError) {
run := ra.runner
attrElement := act["element"]
var element *rod.Element
switch typed := attrElement.(type) {
case string:
strElement := typed
sel, ok := run.sel(strElement)
if !ok {
err := ra.err("could not find a custom selector defined with the specified value")
return nil, &err
}
element = run.P.ElementX(sel)
case *rod.Element:
element = typed
default:
err := ra.err("could not find element key to retrieve")
return nil, &err
}
return element, nil
}
func (parent *Runner) makeAction(act interface{}) *Action {
switch act.(type) {
case map[string]interface{}:
action := Action(act.(map[string]interface{}))
return &action
case Action:
action := act.(Action)
return &action
default:
return nil
}
}
func (parent *Runner) sel(element string) (string, bool) {
if strings.HasPrefix(element, "$") {
res, ok := parent.program.Selectors[strings.TrimPrefix(element, "$")]
return res, ok
}
return element, true
}