forked from hcientist/OnlinePythonTutor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-visualize-html.js
214 lines (181 loc) · 6.61 KB
/
test-visualize-html.js
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
// Run a visual regression test on htmlPath, putting outputs in outputDir
var htmlPath = "http://localhost:8003/visualize.html"
var outputDir = "/test-visualize-html-outputs"
var DELAY_MS = 100;
var fs = require('fs');
var path = fs.absolute(fs.workingDirectory + '/phantomcss.js');
var phantomcss = require(path);
casper.test.begin('Testing ' + htmlPath, function (test) {
// boring setup code taken from PhantomCSS demo
phantomcss.init({
rebase: casper.cli.get( "rebase" ),
// SlimerJS needs explicit knowledge of this Casper, and lots of absolute paths
casper: casper,
libraryRoot: fs.absolute( fs.workingDirectory + '' ),
screenshotRoot: fs.absolute( fs.workingDirectory + outputDir + '/screenshots' ),
failedComparisonsRoot: fs.absolute( fs.workingDirectory + outputDir + '/failures' ),
addLabelToFailedImage: false,
});
casper.on('remote.message', function(msg) {this.echo(msg);});
casper.on('error', function (err) {this.die( "PhantomJS has errored: " + err );});
casper.on('resource.error', function (err) {casper.log( 'Resource load error: ' + err, 'warning' );});
// start with a baseline image
casper.start(htmlPath);
casper.viewport(1440, 900, function () {
phantomcss.screenshot('#pyInputPane', 'pyInputPane');
});
// click on one example code for each language
var exampleLinksToClick = [
"#aliasExampleLink",
"#tortureLink",
"#javaVarLink",
"#jsDatatypesExLink",
"#tsGreeterExLink",
"#rubyConstantsLink",
"#cMengThesisLink",
"#cppFirstLink"];
exampleLinksToClick.forEach(function (e, i) {
casper.thenClick(e, function() {
phantomcss.screenshot('#pyInputPane', 'pyInputPane');
});
});
// now test the visualize mode:
casper.thenClick("#aliasExampleLink", function() {
// brief wait for code to load
this.wait(DELAY_MS, function() {
this.click("#executeBtn");
});
});
// after clicking on executeBtn, wait for the dataViz div to appear
// because that means the visualizer has rendered:
casper.waitFor(function check() {
return this.evaluate(function() {
return document.querySelectorAll("#dataViz").length > 0;
});
}, function then() {
phantomcss.screenshot('.visualizer', 'visualizer');
});
// this example has 31 steps:
for (var i = 0; i < 31; i++) {
casper.thenClick("#jmpStepFwd", function() {
// slight pause for vis to settle
this.wait(DELAY_MS, function() {
phantomcss.screenshot('.visualizer', 'visualizer');
});
});
}
// for the remaining examples, be brief and take only a snapshot of
// the FINAL state of the visualization
// test instruction limit reached
casper.thenClick("#genPrimesLink", function() {
// brief wait for code to load
this.wait(DELAY_MS, function() {
casper.click("#executeBtn");
casper.waitFor(function check() {
return this.evaluate(function() {
return document.querySelectorAll("#dataViz").length > 0;
});
}, function then() {
casper.click('#jmpLastInstr');
phantomcss.screenshot('.visualizer', 'visualizer_instr_limit_reached');
});
});
});
// test exception
casper.thenClick("#pwTryFinallyLink", function() {
// brief wait for code to load
this.wait(DELAY_MS, function() {
casper.click("#executeBtn");
casper.waitFor(function check() {
return this.evaluate(function() {
return document.querySelectorAll("#dataViz").length > 0;
});
}, function then() {
casper.click('#jmpLastInstr');
phantomcss.screenshot('.visualizer', 'visualizer_exception');
});
});
});
// for these examples, just snapshot dataViz to be even briefer:
var exampleTestLinks = [
'#tutorialExampleLink',
'#ll2Link',
'#inheritanceExampleLink',
'#aliasing2Link',
'#aliasing3Link',
'#aliasing7Link',
'#closure5Link'];
exampleTestLinks.forEach(function(e, i) {
// reset all toggles to test regular visualizer
casper.thenEvaluate(function() {
document.querySelector('#cumulativeModeSelector').value = "false";
document.querySelector('#heapPrimitivesSelector').value = "false";
document.querySelector('#textualMemoryLabelsSelector').value = "false";
});
casper.wait(DELAY_MS, function() {
casper.click(e);
// brief wait for code to load
this.wait(DELAY_MS, function() {
casper.click("#executeBtn");
casper.waitFor(function check() {
return this.evaluate(function() {
return document.querySelectorAll("#dataViz").length > 0;
});
}, function then() {
casper.click('#jmpLastInstr');
phantomcss.screenshot('#dataViz', 'dataViz_' + e);
});
});
});
// simulate what's done for composingprograms
casper.thenEvaluate(function() {
document.querySelector('#cumulativeModeSelector').value = "true";
document.querySelector('#heapPrimitivesSelector').value = "false";
document.querySelector('#textualMemoryLabelsSelector').value = "false";
});
casper.wait(DELAY_MS, function() {
casper.click(e);
// brief wait for code to load
this.wait(DELAY_MS, function() {
casper.click("#executeBtn");
casper.waitFor(function check() {
return this.evaluate(function() {
return document.querySelectorAll("#dataViz").length > 0;
});
}, function then() {
casper.click('#jmpLastInstr');
phantomcss.screenshot('#dataViz', 'dataViz_' + e + '_CUMULATIVE');
});
});
});
// simulate what's done for csc108h
casper.thenEvaluate(function() {
document.querySelector('#cumulativeModeSelector').value = "false";
document.querySelector('#heapPrimitivesSelector').value = "true";
document.querySelector('#textualMemoryLabelsSelector').value = "true";
});
casper.wait(DELAY_MS, function() {
casper.click(e);
// brief wait for code to load
this.wait(DELAY_MS, function() {
casper.click("#executeBtn");
casper.waitFor(function check() {
return this.evaluate(function() {
return document.querySelectorAll("#dataViz").length > 0;
});
}, function then() {
casper.click('#jmpLastInstr');
phantomcss.screenshot('#dataViz', 'dataViz_' + e + '_TEXTLABELS');
});
});
});
}); // end forEach
// run all tests:
casper.then(function now_check_the_screenshots() {
phantomcss.compareAll(); // compare screenshots
});
casper.run(function() {
//phantomcss.getExitStatus() // pass or fail?
casper.test.done();
});
});