forked from pharo-spec/ScriptableDebugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSindarinDebuggerTest.class.st
More file actions
2075 lines (1623 loc) · 54.4 KB
/
SindarinDebuggerTest.class.st
File metadata and controls
2075 lines (1623 loc) · 54.4 KB
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
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Class {
#name : 'SindarinDebuggerTest',
#superclass : 'TestCase',
#instVars : [
'testObjectPoint'
],
#category : 'Sindarin-Tests-Base',
#package : 'Sindarin-Tests',
#tag : 'Base'
}
{ #category : 'helpers' }
SindarinDebuggerTest >> methodNonLocalReturn [
| block |
block := [ ^ 42 ].
block value.
^ 43
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodReturn: bool with: anObject [
| a |
a := bool.
a ifTrue: [ ^ 1 ].
^ anObject
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodReturnWithException [
| a |
a := 0.
1 / 0.
^ a + 1
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodReturnWithHalt [
<haltOrBreakpointForTesting>
| a |
a := 0.
self halt.
^ a + 1
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodWithBlockWithNoReturn [
| block a |
block := [ a := 1 ].
block value.
^ 43
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodWithContextPassedToBlockParameter: storeContextBlock [
storeContextBlock value: thisContext
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodWithDoubleAssignment [
| b a |
a := b := 1
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodWithEmbeddedBlock [
| a |
a := 1.
[ :each | a := a + each. [ a := a + 1 ]. a * 42 ].
a := a + 2.
^ a * 42
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodWithEvaluatedBlock [
| a b block |
a := 1.
block := [ a := 2. b := 3 + 2 ].
block value.
^ 42
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodWithIfTrueBlock [
| a |
a := 1.
a = 2 ifTrue: [ a := 3 ].
a := 4
]
{ #category : 'tests' }
SindarinDebuggerTest >> methodWithIfTrueIfFalse [
| a |
a := true.
a
ifFalse: [ a := 1 ]
ifTrue: [ a := 2 ].
a := 3
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodWithImplicitReturn [
testObjectPoint sign.
testObjectPoint extent: (Point x: 3 y: 4).
Point new
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodWithNotEvaluatedBlock [
| a |
a := 1.
[ a := a + 1 ].
a := a + 2.
^ a * 42
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodWithNotEvaluatedBlockWhoseCreationIsFirstBytecodeInFirstStatement [
| a block |
block := [ a := a + 1 ].
a := 1.
a := a + 2.
^ a * 42
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodWithOneAssignment [
| a |
a := 5.
^ Point x: 5 y: '3' asInteger
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodWithSeveralInstructionsInBlock [
| a b block |
a := 3.
block := [
a := 1.
b := 2.
1 + 2 ].
b := block value.
^ 42
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodWithSeveralReturns [
"There is only one explicit return but there is also an implicit return after `a := 3`. In that sense, there are several returns in this method"
| a |
a := true.
a
ifFalse: [ ^ a := 1 ]
ifTrue: [ a := 2 ].
a := 3
]
{ #category : 'helpers' }
SindarinDebuggerTest >> methodWithTwoAssignments [
| a |
a := 1.
a := 5.
^ Point x: 5 y: '3' asInteger
]
{ #category : 'running' }
SindarinDebuggerTest >> runCaseManaged [
^ self runCase
]
{ #category : 'running' }
SindarinDebuggerTest >> setUp [
"Hooks that subclasses may override to define the fixture of test."
super setUp.
testObjectPoint := Point x: 1 y: 2
]
{ #category : 'running' }
SindarinDebuggerTest >> tearDown [
super tearDown
]
{ #category : 'tests' }
SindarinDebuggerTest >> testArguments [
| p scdbg |
p := Point new.
scdbg := SindarinDebugger debug: [ self methodReturn: 1 with: p ].
scdbg step.
self assert: scdbg arguments size equals: 2.
self assert: (scdbg arguments at: 1) equals: 1.
self assert: (scdbg arguments at: 2) equals: p
]
{ #category : 'tests' }
SindarinDebuggerTest >> testAssignmentValue [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithOneAssignment ].
scdbg step.
self assert: scdbg assignmentValue equals: 5
]
{ #category : 'tests' }
SindarinDebuggerTest >> testAssignmentVariableName [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithOneAssignment ].
scdbg step.
self assert: scdbg assignmentVariableName equals: #a
]
{ #category : 'tests' }
SindarinDebuggerTest >> testCanStillExecuteWhenAimedNodePcIsAfterInAnyContext [
| sdbg aimedNodeInContext aimedNodeOutsideContext |
sdbg := SindarinDebugger debug: [
self methodWithSeveralInstructionsInBlock ].
sdbg
step;
stepOver;
stepOver;
stepOver;
stepThrough;
stepOver.
aimedNodeInContext := sdbg methodNode body statements last.
self assert: sdbg pc
< (sdbg methodNode lastPcForNode: aimedNodeInContext).
self assert: (sdbg canStillExecute: aimedNodeInContext).
aimedNodeOutsideContext := sdbg node methodNode body statements last.
self assert: (sdbg outerMostContextOf: sdbg context) pc
< (sdbg node methodNode lastPcForNode:
aimedNodeOutsideContext).
self assert: (sdbg canStillExecute: aimedNodeOutsideContext)
]
{ #category : 'tests' }
SindarinDebuggerTest >> testCanStillExecuteWhenAimedNodePcIsBeforeInAnyContext [
| sdbg aimedNodeInContext aimedNodeOutsideContext |
sdbg := SindarinDebugger debug: [
self methodWithSeveralInstructionsInBlock ].
sdbg
step;
stepOver;
stepOver;
stepOver;
stepThrough;
stepOver.
aimedNodeInContext := sdbg methodNode body statements first.
self deny: sdbg pc
< (sdbg methodNode lastPcForNode: aimedNodeInContext).
self deny: (sdbg canStillExecute: aimedNodeInContext).
aimedNodeOutsideContext := sdbg node methodNode body statements second.
self deny: (sdbg outerMostContextOf: sdbg context) pc
< (sdbg node methodNode lastPcForNode:
aimedNodeOutsideContext).
self deny: (sdbg canStillExecute: aimedNodeOutsideContext)
]
{ #category : 'tests' }
SindarinDebuggerTest >> testChangingPcAssociatedToMethodOrSequenceNodeKeepsStackAsItIs [
| scdbg newPc newNode expectedStackTop |
scdbg := SindarinDebugger debug: [
self methodWithDoubleAssignment ].
scdbg
step;
stepOver.
newNode := scdbg methodNode.
newPc := scdbg methodNode firstPcForNode: newNode.
expectedStackTop := scdbg topStack.
scdbg pc: newPc.
self assert: scdbg node equals: newNode.
self assert: scdbg pc equals: newPc.
self assert: scdbg topStack equals: expectedStackTop
]
{ #category : 'tests' }
SindarinDebuggerTest >> testChangingPcInTheMiddleOfStatementSkipsTheBeginningOfStatement [
| scdbg newPc newNode expectedStackTop |
scdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
scdbg
step;
stepOver;
stepOver;
stepOver.
"pc of Point x: y:"
newNode := scdbg node.
newPc := scdbg pc.
expectedStackTop := scdbg topStack.
scdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
scdbg
step;
stepOver.
"pc of a := 5"
self assert: (scdbg readVariableNamed: #a) equals: 1.
scdbg pc: newPc.
"It should skip the assignment a:=5 AND skip the beginning of the statement ('3' asInteger)"
self assert: (scdbg readVariableNamed: #a) equals: 1.
self assert: scdbg node equals: newNode.
self assert: scdbg pc equals: newPc.
self deny: scdbg topStack equals: expectedStackTop.
self assert: scdbg topStack equals: '3' "topStack is nil because the message send asInteger to the receiver '3' has been skipped"
]
{ #category : 'tests' }
SindarinDebuggerTest >> testChangingPcKeepsSameStateAndPushesCorrectElementsOnStack [
| scdbg newPc newNode expectedStackTop |
scdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
scdbg
step;
stepOver.
"pc of a := 5"
newNode := scdbg node.
newPc := scdbg pc.
expectedStackTop := scdbg topStack.
scdbg
stepOver;
stepOver.
self assert: (scdbg readVariableNamed: #a) equals: 5.
scdbg pc: newPc.
self assert: (scdbg readVariableNamed: #a) equals: 5.
self assert: scdbg node equals: newNode.
self assert: scdbg pc equals: newPc.
self assert: scdbg topStack equals: expectedStackTop
]
{ #category : 'tests' }
SindarinDebuggerTest >> testChangingPcRaisesErrorWhenPcIsGreaterThanEndPC [
| oldPC sdbg |
sdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
sdbg
step;
stepOver;
stepOver.
oldPC := sdbg pc.
self
shouldnt: [ sdbg pc: sdbg method endPC ] raise: NotValidPcError;
deny: sdbg pc equals: oldPC.
sdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
sdbg
step;
stepOver;
stepOver.
oldPC := sdbg pc.
self
should: [ sdbg pc: sdbg method endPC + 1 ] raise: NotValidPcError;
assert: sdbg pc equals: oldPC
]
{ #category : 'tests' }
SindarinDebuggerTest >> testChangingPcRaisesErrorWhenPcIsLowerThanInitialPC [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
scdbg
step;
stepOver;
stepOver.
self shouldnt: [ scdbg pc: scdbg method initialPC ] raise: NotValidPcError.
scdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
scdbg
step;
stepOver;
stepOver.
self should: [ scdbg pc: scdbg method initialPC - 1 ] raise: NotValidPcError.
]
{ #category : 'tests' }
SindarinDebuggerTest >> testChangingPcToNonExistingBytecodeOffsetGoesToPreviousPcWithExistingBytecodeOffset [
| scdbg newPc newNode |
scdbg := SindarinDebugger debug: [
self methodWithDoubleAssignment ].
scdbg step.
"pc of b := 1 from `a:= b:= 1` This is associated to the pc of a storeIntoTemp bytecode, of length 2 bytes. So we add 1 to get a pc that is in the middle of the bytecode"
newNode := scdbg methodNode statements first value.
newPc := (scdbg methodNode firstPcForNode: newNode) + 1.
self assert: (scdbg methodNode sourceNodeForPC: newPc) identicalTo: newNode.
scdbg pc: newPc.
self assert: scdbg node equals: newNode.
self assert: scdbg pc equals: newPc - 1.
]
{ #category : 'tests' }
SindarinDebuggerTest >> testContext [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithOneAssignment ].
self assert: scdbg context equals: scdbg debugSession interruptedContext.
scdbg step.
self assert: scdbg context equals: scdbg debugSession interruptedContext
]
{ #category : 'tests' }
SindarinDebuggerTest >> testContinue [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithOneAssignment ].
"We step to the first assignement"
scdbg step.
self assert: scdbg node isAssignment.
"We continue the execution and it should terminate"
scdbg continue.
self assert: scdbg isExecutionFinished
]
{ #category : 'tests' }
SindarinDebuggerTest >> testContinueEncoutersAnException [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodReturnWithException ].
"We step to the first assignement"
scdbg step.
self assert: scdbg node isAssignment.
"We continue the execution and it should terminate"
scdbg continue.
self assert: scdbg isAboutToSignalException
]
{ #category : 'tests - execution predicates' }
SindarinDebuggerTest >> testIsAboutToInstantiateClass [
|debugger session|
debugger := SindarinDebugger new.
session := SindarinDebugSessionMock new.
debugger sindarinSession: session.
session isMessage: false.
self deny: debugger isAboutToInstantiateClass.
session isMessage: true.
session receiver: Object new.
session selector: #yourself.
self deny: debugger isAboutToInstantiateClass.
session receiver: Object new.
session selector: #toto.
self deny: debugger isAboutToInstantiateClass.
session receiver: Behavior new.
session selector: #basicNew. "Primitive 70"
self assert: debugger isAboutToInstantiateClass.
session selector: #basicNew:. "Primitive 71"
self assert: debugger isAboutToInstantiateClass.
session selector: #adoptInstance:. "Primitive 160"
self assert: debugger isAboutToInstantiateClass.
session receiver: Object new.
session selector: #clone. "Primitive 148"
self assert: debugger isAboutToInstantiateClass.
session receiver: CompiledCode.
session selector: #basicNew:header:. "Primitive 79"
self assert: debugger isAboutToInstantiateClass
]
{ #category : 'tests' }
SindarinDebuggerTest >> testIsAssignment [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithOneAssignment ].
self deny: scdbg isAssignment.
scdbg step.
self assert: scdbg isAssignment.
scdbg step.
self deny: scdbg isAssignment
]
{ #category : 'tests' }
SindarinDebuggerTest >> testIsExecutionFinished [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
self deny: scdbg isExecutionFinished.
self
should: [ [ scdbg isExecutionFinished ] whileFalse: [ scdbg stepOver ] ]
raise: DebuggedExecutionIsFinished.
self assert: scdbg currentProcess isTerminated
]
{ #category : 'tests' }
SindarinDebuggerTest >> testIsMessageSend [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithOneAssignment ].
self assert: scdbg isMessageSend.
scdbg step.
self deny: scdbg isMessageSend.
scdbg step.
self assert: scdbg isMessageSend
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMessage [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithOneAssignment ].
self assert: (scdbg message: #methodWithOneAssignment)
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMessageArguments [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithOneAssignment ].
scdbg step; step.
self assert: scdbg messageArguments isEmpty.
scdbg stepOver.
self assert: (scdbg messageArguments at: 1) equals: 5.
self assert: (scdbg messageArguments at: 2) equals: 3
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMessageReceiver [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithOneAssignment ].
self assert: scdbg messageReceiver equals: self.
scdbg step; step.
self assert: scdbg messageReceiver equals: '3'
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMessageSelector [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithOneAssignment ].
self assert: scdbg messageSelector equals: #methodWithOneAssignment.
scdbg step; step.
self assert: scdbg messageSelector equals: #asInteger.
scdbg stepOver.
self assert: scdbg messageSelector equals: #x:y:
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMessageTo [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithImplicitReturn ].
scdbg step. "Step to <testObjectPoint sign.> call"
self assert: (scdbg message: #sign to: testObjectPoint).
scdbg
stepOver;
stepOver. "Step to <testObjectPoint extent: ...> call"
self assert: (scdbg message: #extent: to: testObjectPoint).
"Should return false with wrong selector but correct receiver"
self deny: (scdbg message: #bogus to: testObjectPoint).
"Should return false with correct selector but wrong receiver"
self deny: (scdbg message: #extent: to: Point new)
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMessageToInstanceOf [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithImplicitReturn ].
scdbg step. "Step to <testObjectPoint sign> call"
self assert: (scdbg message: #sign toInstanceOf: Point).
self assert: (scdbg message: #sign toInstanceOf: Object).
self deny: (scdbg message: #sign toInstanceOf: Rectangle).
self deny: (scdbg message: #bogus toInstanceOf: Point)
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMethod [
| scdbg |
scdbg := SindarinDebugger debug: [ self methodWithOneAssignment ].
self assert: scdbg method equals: [ self methodWithOneAssignment ] method.
scdbg step.
self assert: scdbg method equals: SindarinDebuggerTest>>#methodWithOneAssignment.
scdbg step; step.
self assert: scdbg method equals: String>>#asInteger
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMoveToNodeInTheMiddleOfStatementSkipsTheBeginningOfStatement [
| scdbg newPc newNode expectedStackTop |
scdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
scdbg
step;
stepOver;
stepOver;
stepOver.
"pc of Point x: y:"
newNode := scdbg node.
newPc := scdbg pc.
expectedStackTop := scdbg topStack.
scdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
scdbg
step;
stepOver.
"pc of a := 5"
self assert: (scdbg readVariableNamed: #a) equals: 1.
scdbg moveToNode: newNode.
"It should skip the assignment a:=5 AND skip the beginning of the statement ('3' asInteger)"
self assert: (scdbg readVariableNamed: #a) equals: 1.
self assert: scdbg node equals: newNode.
self assert: scdbg pc equals: newPc.
self deny: scdbg topStack equals: expectedStackTop.
self assert: scdbg topStack equals: '3' "topStack is nil because the message send asInteger to the receiver '3' has been skipped"
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMoveToNodeKeepsSameStateAndPushesCorrectElementsOnStack [
| scdbg newPc newNode expectedStackTop |
scdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
scdbg
step;
stepOver.
"pc of a := 5"
newNode := scdbg node.
newPc := scdbg pc.
expectedStackTop := scdbg topStack.
scdbg
stepOver;
stepOver.
self assert: (scdbg readVariableNamed: #a) equals: 5.
scdbg moveToNode: newNode.
self assert: (scdbg readVariableNamed: #a) equals: 5.
self assert: scdbg node equals: newNode.
self assert: scdbg pc equals: newPc.
self assert: scdbg topStack equals: expectedStackTop
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMoveToNodeKeepsStackWhenAimedNodeIsMethodNode [
| scdbg newPc newNode expectedStackTop |
scdbg := SindarinDebugger debug: [
self methodWithDoubleAssignment ].
scdbg
step;
stepOver.
"pc of a := 5"
newNode := scdbg methodNode.
newPc := scdbg methodNode firstPcForNode: scdbg methodNode.
expectedStackTop := scdbg topStack.
scdbg moveToNode: newNode.
self assert: scdbg node equals: newNode.
self assert: scdbg pc equals: newPc.
self assert: scdbg topStack equals: expectedStackTop
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMoveToNodeKeepsStackWhenAimedNodeIsMethodNodeThatDoesNotHaveAssociatedPC [
| scdbg newPc newNode realPC realNode |
scdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
scdbg
step;
stepOver.
"pc of a := 5"
newNode := scdbg methodNode.
newPc := scdbg methodNode firstPcForNode: scdbg methodNode.
self assert: newPc isNil.
scdbg moveToNode: newNode.
realPC := scdbg pc.
realNode := scdbg node.
self assert: scdbg pc equals: scdbg method endPC.
self
assert: scdbg node
identicalTo: (scdbg methodNode sourceNodeForPC: scdbg pc)
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMoveToNodeRaisesErrorWhenNodeIsNotIdenticalToANodeInMethod [
| oldNode sdbg aimedNode |
sdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
sdbg
step;
stepOver.
aimedNode := sdbg node.
sdbg
stepOver;
stepOver.
oldNode := sdbg node.
self
shouldnt: [ sdbg moveToNode: aimedNode ] raise: NodeNotInASTError;
assert: sdbg node equals: aimedNode.
sdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
sdbg
step;
stepOver;
stepOver.
oldNode := sdbg node.
self
should: [ sdbg moveToNode: (RBLiteralValueNode value: 1) ]
raise: NodeNotInASTError;
assert: sdbg node equals: oldNode
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMoveToNodeRaisesErrorWhenNodeIsNotInMethod [
| oldNode sdbg |
sdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
sdbg
step;
stepOver;
stepOver.
oldNode := sdbg node.
self
shouldnt: [ sdbg moveToNode: sdbg methodNode statements last ]
raise: NodeNotInASTError;
deny: sdbg node equals: oldNode.
sdbg := SindarinDebugger debug: [ self methodWithTwoAssignments ].
sdbg
step;
stepOver;
stepOver.
oldNode := sdbg node.
self
should: [ sdbg moveToNode: (RBLiteralValueNode value: 2) ]
raise: NodeNotInASTError;
assert: sdbg node equals: oldNode
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMoveToNodeWhenFromNonInlinedBlockToOuterContext [
| oldNode sdbg aimedNode oldContext aimedPC methodNode |
sdbg := SindarinDebugger debug: [
self methodWithNotEvaluatedBlock ].
sdbg
step;
stepOver;
stepOver.
"stops on block creation"
oldNode := sdbg node.
oldContext := sdbg context.
methodNode := sdbg methodNode.
"We want to move to node 'a + 1' in [a := a +1]"
aimedNode := sdbg methodNode statements second statements first value.
aimedPC := sdbg methodNode firstPcForNode: aimedNode.
self assert: aimedPC isNil.
self assert: (sdbg readVariableNamed: #a) equals: 1.
sdbg moveToNode: aimedNode.
self assert: (sdbg readVariableNamed: #a) equals: 1.
self assert: sdbg context home identicalTo: oldContext.
self
assert: sdbg methodNode
identicalTo: methodNode statements second.
sdbg stepOver.
"2 is going to be assigned to a"
self assert: (sdbg readVariableNamed: #a) equals: 1.
self assert: sdbg topStack equals: 2.
sdbg moveToNode: methodNode statements third.
"We jump to node outside of block"
self assert: sdbg methodNode identicalTo: methodNode.
self assert: sdbg node identicalTo: methodNode statements third.
"We went back to the home context"
self assert: sdbg context identicalTo: oldContext.
"2 has not been assigned to a"
self assert: (sdbg readVariableNamed: #a) equals: 1.
self assert: sdbg topStack equals: 1
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMoveToNodeWhenFromNonInlinedEmbeddedBlockToHomeContext [
| oldNode sdbg aimedNode oldContext aimedPC methodNode |
sdbg := SindarinDebugger debug: [
self methodWithEmbeddedBlock ].
sdbg
step;
stepOver;
stepOver.
"stops on block creation"
oldNode := sdbg node.
oldContext := sdbg context.
methodNode := sdbg methodNode.
"We want to move to node 'a + 1' in [a := a +1]"
aimedNode := sdbg methodNode statements second statements second statements first value.
aimedPC := sdbg methodNode firstPcForNode: aimedNode.
self assert: aimedPC isNil.
self assert: (sdbg readVariableNamed: #a) equals: 1.
sdbg moveToNode: aimedNode.
self assert: (sdbg readVariableNamed: #a) equals: 1.
self assert: sdbg context home identicalTo: oldContext.
self
assert: sdbg methodNode
identicalTo: methodNode statements second statements second.
sdbg stepOver.
"2 is going to be assigned to a"
self assert: (sdbg readVariableNamed: #a) equals: 1.
self assert: sdbg topStack equals: 2.
sdbg moveToNode: methodNode statements third.
"We jump to node in home context of embedded block"
self assert: sdbg methodNode identicalTo: methodNode.
self assert: sdbg node identicalTo: methodNode statements third.
"We went back to the home context"
self assert: sdbg context identicalTo: oldContext.
"2 has not been assigned to a"
self assert: (sdbg readVariableNamed: #a) equals: 1.
self assert: sdbg topStack equals: 1
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMoveToNodeWhenFromNonInlinedEmbeddedBlockToNodeThatIsNotInHomeContext [
| oldNode oldPC sdbg aimedNode oldContext aimedPC methodNode |
sdbg := SindarinDebugger debug: [ self methodWithEmbeddedBlock ].
sdbg
step;
stepOver;
stepOver.
"stops on block creation"
oldNode := sdbg node.
oldContext := sdbg context.
methodNode := sdbg methodNode.
"We want to move to node 'a + 1' in [a := a +1]"
aimedNode := sdbg methodNode statements second statements second
statements first value.
aimedPC := sdbg methodNode firstPcForNode: aimedNode.
self assert: aimedPC isNil.
self assert: (sdbg readVariableNamed: #a) equals: 1.
sdbg moveToNode: aimedNode.
self assert: (sdbg readVariableNamed: #a) equals: 1.
self assert: sdbg context home identicalTo: oldContext.
self
assert: sdbg methodNode
identicalTo: methodNode statements second statements second.
sdbg stepOver.
"2 is going to be assigned to a"
self assert: (sdbg readVariableNamed: #a) equals: 1.
self assert: sdbg topStack equals: 2.
oldNode := sdbg node.
oldPC := sdbg pc.
oldContext := sdbg context.
self
should: [ sdbg moveToNode: (RBLiteralValueNode value: 1) ]
raise: NodeNotInASTError.
"We jump to node in home context of embedded block"
self assert: sdbg node identicalTo: oldNode.
"We went back to the home context"
self assert: sdbg context identicalTo: oldContext.
"2 has not been assigned to a"
self assert: (sdbg readVariableNamed: #a) equals: 1.
self assert: sdbg topStack equals: 2
]
{ #category : 'helpers' }
SindarinDebuggerTest >> testMoveToNodeWhenNodeIsInBlockThatCreatesContextAndBlockCreationIsFirstBytecodeInFirstStatement [
| aimedBlock sdbg aimedNode |
sdbg := SindarinDebugger debug: [
self
methodWithNotEvaluatedBlockWhoseCreationIsFirstBytecodeInFirstStatement ].
"We step until the `a * 42` node"
sdbg step.
6 timesRepeat: [ sdbg stepOver ].
self assert: sdbg method identicalTo: self class
>>
#methodWithNotEvaluatedBlockWhoseCreationIsFirstBytecodeInFirstStatement.
self assert: (sdbg readVariableNamed: #a) identicalTo: 3.
"We jump to the node `a + 1` inside the block"
aimedBlock := sdbg methodNode statements first value.
aimedNode := aimedBlock body statements first value.
sdbg moveToNode: aimedNode.
"We are in the block context"
self assert: sdbg method ast identicalTo: aimedBlock.
"The block context can also read #a"
self assert: (sdbg readVariableNamed: #a) identicalTo: 3.
"We step the entire block"
3 timesRepeat: [ sdbg stepOver ].
"We are back in the context method"
self assert: sdbg method identicalTo: self class
>>
#methodWithNotEvaluatedBlockWhoseCreationIsFirstBytecodeInFirstStatement.
"We can still read #a in the method context"
self assert: (sdbg readVariableNamed: #a) identicalTo: 4
]
{ #category : 'tests' }
SindarinDebuggerTest >> testMoveToNodeWhenNodeIsInBlockThatCreatesContextAndBlockHasBeenCreated [
| oldNode sdbg aimedNode oldContext aimedPC |
sdbg := SindarinDebugger debug: [
self methodWithNotEvaluatedBlock ].
sdbg
step;
stepOver;
stepOver;
stepOver.
sdbg moveToNode: sdbg methodNode statements first.
"It is going to execute the comparison a := 1"
oldNode := sdbg node.