-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPathsGenerator.py
899 lines (538 loc) · 28.4 KB
/
PathsGenerator.py
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
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
import json
import random
eventsList = [
"click",
"dbclick",
"mousemove", #When moving inside a widget
"mousedown", #A pointing device button is pressed while the pointer is inside the element
"mouseup", #When the pointing device is released (opposite of MOUSEDOWN)
"mouseenter", #triggered when the mouse pointer enters the element
"mouseover", #is triggered when the mouse pointer enters the element, and its child
"mouseleave", #opposite of MOUSEOVER
"wheel", #opposite of MOUSEOUT
"zoom",
"brushstart",
"brushend"]
#Can we consider MOUSEDOWN + MOVE = DRAGSTART and then MOUSEUP = DRAGEND ?
#Can we consider WHEEL = ZOOM and DBCLICK also
transitionsList = []
explorationSequence = []
listPaths = []
#Click, if we have height and width we check where to click
#Otherwise we click on the element at the middle (Selenium will do this)
#CHECKBOX HTML (the event is "change" but what is needed is a simple click)
def Click(height,width):
#print(height)
#print(width)
if(height!="auto" and width!="auto" and height!=0 and width!=0):
#Choose randomly a point to click
xClick = random.randint(1,width)
yClick = random.randint(1,height)
return (xClick,yClick)
else:
return None
def Mousemove(height,width):
if(height!="auto" and width!="auto" and height!=0 and width!=0):
centerWidth = int(width/2)
centerHeight = int(height/2)
targetMoveWidth = random.randint(1,width)
targerMoveHeight = random.randint(1,height)
offsetMoveWidth = targetMoveWidth - centerWidth
offsetMoveHeight = targerMoveHeight - centerHeight
return (offsetMoveWidth,offsetMoveHeight)
else:
return None
#PAN BRUSH
def PanBrush(directions,brushExtent,selectionExtent):
#Dimension of the brushable area
width = int(brushExtent[1][0] - brushExtent[0][0])
height = int(brushExtent[1][1] - brushExtent[0][1])
#Dimension of the pannable area of the brush
widthBrush = int(selectionExtent[1][0] - selectionExtent[0][0])
heightBrush = int(selectionExtent[1][1] - selectionExtent[0][1])
#Starting,Ending and Middle point of the brushArea
xStartBrush = selectionExtent[0][0]
yStartBrush = selectionExtent[0][1]
xEndBrush = xStartBrush + widthBrush
yEndBrush = yStartBrush + heightBrush
xMiddleBrush = xStartBrush + int(widthBrush/2)
yMiddleBrush = yStartBrush + int(heightBrush/2)
#print("xMiddle " + str(xMiddleBrush))
xMove = None
yMove = None
if(directions == "xy"):
#Here randomly is chosen where moving between "left/right" and "up/down"
xMove = random.randint(0,1)
yMove = random.randint(0,1)
xDirections = ["right","left"]
yDirections = ["up","down"]
xMove = xDirections[xMove]
yMove = yDirections[yMove]
elif(directions == "x"):
xMove = random.randint(0,1)
xDirections = ["right","left"]
xMove = xDirections[xMove]
else:
yMove = random.randint(0,1)
yDirections = ["up","down"]
yMove = yDirections[yMove]
if(xMove == "right"):
maxMovement = width - xEndBrush
moveX = random.randint(0,maxMovement)
elif(xMove == "left"):
maxMovement = -xStartBrush
moveX = random.randint(maxMovement,0)
else:
moveX = 0
if(yMove == "up"):
maxMovement = -yStartBrush
moveY = random.randint(maxMovement,0)
#This means we're moving down
elif(yMove == "down"):
maxMovement = height - yEndBrush
moveY = random.randint(0,maxMovement)
else:
moveY = 0
return [int(moveX),int(moveY),xMiddleBrush,yMiddleBrush,width,height]
#BRUSH FUNCTION
def Brush(actionType,brushableInfo):
directions = brushableInfo["directions"]
brushExtent = brushableInfo["brush_extent"]
selectionExtent = brushableInfo["selection_extent"]
#Object to return with the new selection extent
newSelectionExtent = None
#Case when the brushing can be done in all the dimensions
if(directions == "xy"):
#Dimension of the brushable area
widthBrush = int(brushExtent[1][0] - brushExtent[0][0])
heightBrush = int(brushExtent[1][1] - brushExtent[0][1])
if(actionType == "L"):
#In this case the area is 1/4 of the original
#Find the starting points
xStartBrush = random.randint(0,widthBrush - int(widthBrush/4))
yStartBrush = random.randint(0,heightBrush - int(heightBrush/4))
#New selection extent
newSelectionExtent = [[xStartBrush,yStartBrush],[xStartBrush + int(widthBrush/4),yStartBrush + int(heightBrush/4)]]
elif(actionType == "M"):
#In this case the area is 1/2 of the original
#Find the starting points
xStartBrush = random.randint(0,widthBrush - int(widthBrush/2))
yStartBrush = random.randint(0,heightBrush - int(heightBrush/2))
#New selection extent
newSelectionExtent = [[xStartBrush,yStartBrush],[xStartBrush + int(widthBrush/2),yStartBrush + int(heightBrush/2)]]
else:
#In this case the area is 2/3 of the original
#Find the starting points
xStartBrush = random.randint(0,widthBrush - int(widthBrush*(2/3)))
yStartBrush = random.randint(0,heightBrush - int(heightBrush*(2/3)))
#New selection extent
newSelectionExtent = [[xStartBrush,yStartBrush],[xStartBrush + int(widthBrush*(2/3)),yStartBrush + int(heightBrush*(2/3))]]
elif(directions == "x"):
#Dimension of the brushable area
widthBrush = int(brushExtent[1][0] - brushExtent[0][0])
heightBrush = int(brushExtent[1][1] - brushExtent[0][1])
if(actionType == "L"):
#In this case the area is 1/4 of the original
#Find the starting points
xStartBrush = random.randint(0,widthBrush - int(widthBrush/4))
yStartBrush = int(heightBrush/2)
#New selection extent
newSelectionExtent = [[xStartBrush,yStartBrush],[xStartBrush + int(widthBrush/4),yStartBrush]]
elif(actionType == "M"):
#In this case the area is 1/2 of the original
#Find the starting points
xStartBrush = random.randint(0,widthBrush - int(widthBrush/2))
yStartBrush = int(heightBrush/2)
#New selection extent
newSelectionExtent = [[xStartBrush,yStartBrush],[xStartBrush + widthBrush/2,yStartBrush]]
else:
#In this case the area is 2/3 of the original
#Find the starting points
xStartBrush = random.randint(0,widthBrush - int(widthBrush*(2/3)))
yStartBrush = int(heightBrush/2)
#New selection extent
newSelectionExtent = [[xStartBrush,yStartBrush],[xStartBrush + int(widthBrush*(2/3)),yStartBrush]]
else:
#Dimension of the brushable area
widthBrush = int(brushExtent[1][0] - brushExtent[0][0])
heightBrush = int(brushExtent[1][1] - brushExtent[0][1])
if(actionType == "L"):
#In this case the area is 1/4 of the original
#Find the starting points
xStartBrush = int(widthBrush/2)
yStartBrush = random.randint(0,heightBrush - int(heightBrush/4))
#New selection extent
newSelectionExtent = [[xStartBrush,yStartBrush],[xStartBrush,yStartBrush + int(heightBrush/4)]]
elif(actionType == "M"):
#In this case the area is 1/2 of the original
#Find the starting points
xStartBrush = int(widthBrush/2)
yStartBrush = random.randint(0,heightBrush - int(heightBrush/2))
#New selection extent
newSelectionExtent = [[xStartBrush,yStartBrush],[xStartBrush,yStartBrush + int(heightBrush/2)]]
else:
#In this case the area is 2/3 of the original
#Find the starting points
xStartBrush = int(widthBrush/2)
yStartBrush = random.randint(0,heightBrush - int(heightBrush*(2/3)))
#New selection extent
newSelectionExtent = [xStartBrush,yStartBrush],[xStartBrush,yStartBrush + int(heightBrush*(2/3))]
return newSelectionExtent
#ZOOM and PANNINGZOOM FUNCTION
#This is probably used only in the case of the "wheel", since with "dbclick" we have a fixed scale
def Zoom(actionType,zoomInfo):
width = zoomInfo["width"]
height = zoomInfo["height"]
#Starting point from which zooming
xStart = random.randint(1,width-1)
yStart = random.randint(1,height-1)
return [actionType,(xStart,yStart)]
#Returns an array with all the information
def PanZoom(actionType,panZoomInfo):
if(panZoomInfo==None):
return [actionType,None]
else:
height = panZoomInfo["height"]
width = panZoomInfo["width"]
#Starting point from which panning starts
xStart = random.randint(1,width-1)
yStart = random.randint(1,height-1)
#Here randomly is chosen where moving between "left/right" and "up/down"
xMove = random.randint(0,1)
yMove = random.randint(0,1)
xDirections = ["right","left"]
yDirections = ["up","down"]
xMove = xDirections[xMove]
yMove = yDirections[yMove]
return [actionType,(height,width),(xStart,yStart),(xMove,yMove)]
#SLIDER CHANGE HTML
#This is the case when class = "input" and type = "range"
def SliderHtml(sliderInfo):
minValue = sliderInfo["min"]
maxValue = sliderInfo["max"]
#Per ora escludiamo di averlo
# currentValue = sliderInfo["value"]
width = sliderInfo["width"]
return ["range",None,(minValue,maxValue,width)]
#SELECT DROPDOWN HTML
def selectDropdownHtml(selectInfo):
possibleValues = selectInfo["value"]
nextValueIndex = random.randint(0,len(possibleValues)-1)
nextValue = possibleValues[nextValueIndex]["value"]
return nextValue
#INPUT TYPE NUMER HTML
def inputNumberHtml(inputInfo):
minValue = inputInfo["min"]
maxValue = inputInfo["max"]
currentValue = inputInfo["value"]
step = inputInfo["step"]
if(step != None):
possibleValues = []
for i in range(minValue,maxValue,step):
possibleValues.append(i)
possibleValues.append(maxValue)
nextValue = random.randint(0,len(possibleValues)-1)
nextValue = possibleValues[nextValue]
else:
nextValue = random.randint(minValue,maxValue)
return nextValue
repetition = None
def EventHandle(edge,continueExploration):
typeActions = ["L","M","B"]
currentState = edge
idNode = currentState["id"]
xpathNode = currentState["xpath"]
siblingsNode = currentState["siblings"]
startingPathNode = currentState["startingPath"]
eventNode = currentState["event"]
stylesNode = currentState["styles"]
attributeNode = currentState["attributes"]
tagNode = currentState["tag"]
brushableNode = currentState["brushable"]
zoomableNode = currentState["zoomable"]
leadsToStateNode = currentState["leadsToState"]
if(eventNode not in EventList):
EventList.append(eventNode)
if(eventNode == "click" or eventNode == "contextmenu"):
if("type" in attributeNode and (attributeNode["type"] == "checkbox" or attributeNode["type"] == "radio")):
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info":None,"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
#If the tag is button we don't need any other information
elif(tagNode == "button"):
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info":None,"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
else:
width = stylesNode["width"]
height = stylesNode["height"]
infoClick = Click(height,width)
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info":infoClick,"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
#For the moment we try to not distinguish them "mouseover" and "mouseleave"
elif(eventNode == "mouseover" or eventNode == "mouseenter"):
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info":None,"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
elif(eventNode == "mouseout" or eventNode=="mouseleave"):
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info":None,"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
elif(eventNode == "mousedown"):
if(brushableNode==None and zoomableNode==None):
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info":None,"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
elif(brushableNode!=None):
newBrushPosition = None
auxExtent = None
#print(brushableNode["brush_extent"])
#print(brushableNode["selection_extent"])
if(brushableNode["brush_extent"] == brushableNode["selection_extent"]):
auxExtent = brushableNode["selection_extent"]
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":"reset_brush","info":brushableNode["selection_extent"],"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
brushableNode["selection_extent"] = None
for size in typeActions:
for i in range(0,repetition):
newSelectionExtent = Brush(size,brushableNode)
#print("New selection_extent: ",end="")
#print(newSelectionExtent)
infoPan = PanBrush(brushableNode["directions"],brushableNode["brush_extent"],newSelectionExtent)
#print("InfoPan ",end="")
#print(infoPan)
newBrushPosition = [[newSelectionExtent[0][0] + infoPan[0],newSelectionExtent[0][1] + infoPan[1]],[newSelectionExtent[1][0] + infoPan[0],newSelectionExtent[1][1] + infoPan[1]]]
#Info for panning the brushed area
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":"brush","info":[newSelectionExtent,[infoPan, newBrushPosition]],"leadsToState":leadsToStateNode}
if(explorationState not in continueExploration):
continueExploration.append(explorationState)
#Position after the panning
#newBrushPosition = [[newSelectionExtent[0][0] + infoPan[0],newSelectionExtent[0][1] + infoPan[1]],[newSelectionExtent[1][0] + infoPan[0],newSelectionExtent[1][1] + infoPan[1]]]
#print("New brush pos ",end="")
#print(newBrushPosition)
brushableNode["selection_extent"] = auxExtent
elif(zoomableNode!=None):
if(stylesNode["height"]!=None or stylesNode["width"]!=None):
panZoomInfo = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"height":stylesNode["height"],"width":stylesNode["width"]}
else:
panZoomInfo = None
for size in typeActions:
retInfo = PanZoom(size,panZoomInfo)
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":"panzoom","info":retInfo,"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
elif(eventNode == "wheel"):
for size in typeActions:
#We make 3 for zoom in and 3 for zoom out handled directly in Selenium
for i in range(0,repetition):
if(stylesNode["height"]!=None or stylesNode["width"]!=None):
zoomInfo = {"height":stylesNode["height"],"width":stylesNode["width"]}
else:
zoomInfo = None
retInfo = Zoom(size,zoomInfo)
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info":["in",retInfo],"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
for i in range(0,repetition):
if(stylesNode["height"]!=None or stylesNode["width"]!=None):
zoomInfo = {"height":stylesNode["height"],"width":stylesNode["width"]}
else:
zoomInfo = None
retInfo = Zoom(size,zoomInfo)
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info":["out",retInfo],"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
elif(eventNode == "mouseup"):
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info":None,"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
elif(eventNode == "input"):
if(attributeNode["type"]!=None):
if(attributeNode["type"]=="range"):
for size in typeActions:
for i in range(0,repetition):
sliderHtmlInfo = {"min":int(attributeNode["min"]),"max":int(attributeNode["max"]),"width":stylesNode["width"]}
retInfo = SliderHtml(sliderHtmlInfo)
retInfo[1]=size
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info": retInfo,"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
elif(attributeNode["type"] == "number"):
for i in range(0,repetition):
if("step" in attributeNode):
numberInfo = {"min":int(attributeNode["min"]),"max":int(attributeNode["max"]),"value":int(attributeNode["value"]),"step":int(attributeNode["step"])}
else:
numberInfo = {"min":int(attributeNode["min"]),"max":int(attributeNode["max"]),"value":int(attributeNode["value"]),"step":None}
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info": ["number",inputNumberHtml(numberInfo)],"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
#We treat this case like it was a button
elif(attributeNode["type"] == "checkbox" or attributeNode["type"] == "radio"):
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info":[attributeNode["type"],None],"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
elif(eventNode == "change"):
if(tagNode == "input"):
if(attributeNode["type"] == "checkbox" or attributeNode["type"] == "radio"):
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info":None,"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
elif(attributeNode["type"] == "number"):
for i in range(0,repetition):
if("step" in attributeNode):
numberInfo = {"min":int(attributeNode["min"]),"max":int(attributeNode["max"]),"value":int(attributeNode["value"]),"step":int(attributeNode["step"])}
else:
numberInfo = {"min":int(attributeNode["min"]),"max":int(attributeNode["max"]),"value":int(attributeNode["value"]),"step":None}
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info": ["number",inputNumberHtml(numberInfo)],"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
elif(eventNode == "mousemove"):
width = stylesNode["width"]
height = stylesNode["height"]
infoMove = Mousemove(height,width)
explorationState = {"xpath":xpathNode,"css":idNode,"startingPath":int(startingPathNode),"siblings":siblingsNode,"event":eventNode,"info":infoMove,"leadsToState":leadsToStateNode}
continueExploration.append(explorationState)
return continueExploration
def ExplorationState(listPaths,allSequences):
for path in listPaths:
exploration = []
for transition in path:
exploration.extend(EventHandle(transition,[]))
allSequences.append(exploration)
#Here we make a preprocessing of the JSON statechart
def statechartPreProcessing(statechart):
newGraph = {}
for state in statechart:
#Add a node for each possible state
newGraph[str(state["stateId"])] = {}
newGraph[str(state["stateId"])]["visited"] = None
newGraph[str(state["stateId"])]["transitions"] = []
#print(state)
for node in state["ieo"]:
if(node["leadsToState"]!=-1 and node["event"]!="facsimile_back"):
#if(node["leadsToState"]!=-1):
newNode = {}
newNode["id"] = node["nodeSelector"]
newNode["tag"] = node["tag"]
newNode["event"] = node["event"]
newNode["brushable"] = node["brushable"]
newNode["zoomable"] = node["zoomable"]
newNode["leadsToState"] = node["leadsToState"]
newNode["siblings"] = node["siblings"]
newNode["visited"] = None
if(node["siblings"] != 0):
positionXPath = node["nodeXPath"].rfind("[")
newNode["xpath"] = node["nodeXPath"][0:positionXPath]
newNode["startingPath"] = node["nodeXPath"][positionXPath:][1:-1]
else:
newNode["xpath"] = node["nodeXPath"]
newNode["startingPath"] = -1
if(node["selectValue"]!=None):
newNode["selectValue"] = node["selectValue"]
#Here we add the attributes by preprocessing them
#So creating a dictionary with as key their name
#Convert to integer if height or width
newNode["attributes"] = {}
if(node["attributes"]!=None):
for key in node["attributes"]:
if(key["name"] == "height" or key["name"] == "width"):
newNode["attributes"][key["name"]] = int(float(key["value"]))
else:
newNode["attributes"][key["name"]] = key["value"]
#Same for the styles but we need to remove "px"
#at the end of the height and with and then convert to integer
newNode["styles"] = {}
for key in node["styles"]:
if(key["name"] == "height" or key["name"] == "width"):
if(key["value"] != "auto"):
newNode["styles"][key["name"]] = int(float(key["value"][:len(key["value"])-2]))
else:
newNode["styles"][key["name"]] = key["value"]
if(node["data"] == None):
newNode["data"] = None
else:
newNode["data"] = {}
for key in node["data"]:
newNode["data"][key["name"]] = key["value"]
#Add this node to the state
if(newNode["leadsToState"] == state["stateId"]):
newGraph[str(state["stateId"])]["transitions"].insert(0,newNode)
else:
newGraph[str(state["stateId"])]["transitions"].append(newNode)
return newGraph
#Function used to generate the paths for the exploration
def VisitAllEdges(state,exploration):
print(graph)
graph[str(state)]["visited"] = 1
for transition in graph[str(state)]["transitions"]:
insertPath = True
if(graph[str(transition["leadsToState"])]["visited"] != 1 and transition["visited"] != 1):
explAux = exploration.copy()
explAux.append(transition)
transition["visited"] = 1
VisitAllEdges(transition["leadsToState"],explAux)
elif(transition["visited"] != 1):
explAux = exploration.copy()
explAux.append(transition)
transition["visited"] = 1
for expl in listPaths:
if SubList(explAux,expl):
insertPath = False
if(insertPath):
listPaths.append(explAux)
for expl in listPaths:
if SubList(exploration,expl):
return
listPaths.append(exploration)
#Function used to check if a sublist is
#present in a list
def SubList(query, base):
try:
l = len(query)
except TypeError:
l = 1
query = type(base)((query,))
for i in range(len(base)):
if base[i:i+l] == query:
return True
return False
#graph = {}
EventList = []
def configFunction():
#configuration = open("conf.json")
#confJSON=json.load(configuration)
#nameVis = confJSON["name"]
#repetition = confJSON["repetitions"]
repetition = 1
#open the statechart json file
statechart=open('static/js/material/statechart.json')
#returns the JSON object as a dictionary
statechartJSON=json.load(statechart)
print(statechartJSON)
#Data structure for that will contain the graph
global graph
graph = {}
graph = statechartPreProcessing(statechartJSON)
print(graph)
#Save graph on a file
with open('static/js/material/statechart_final.json', 'w') as fp:
json.dump(graph, fp, indent=4)
explorationGraph = []
VisitAllEdges("0",[])
print("Num paths: " + str(len(listPaths)))
allSequences = []
ExplorationState(listPaths,allSequences)
print("Events: ",end="")
print(EventList)
counter_transitions = 0
counter_self = 0
self_graph = {}
back_graph = {}
for node in graph:
counter_self = 0
counter_back = 0
for transition in graph[node]["transitions"]:
if(transition["visited"] == None):
counter_transitions +=1
if(int(transition["leadsToState"]) == int(node)):
counter_self += 1
if(int(transition["leadsToState"]) < int(node)):
counter_back += 1
self_graph[node] = counter_self
back_graph[node] = counter_back
#Print transitions back
print("Transitions Back: " + str(counter_back))
#Print transitions self-loop
print("Transitions Self-Loops: " + str(counter_self))
#Save exploration sequence that will be passed to Selenium
with open('static/js/material/exploration.json', 'w') as fp:
json.dump(allSequences, fp, indent=4)
print("-------------- FINISH ----------------")
#if(__name__=="__main__"):
# configFunction()