forked from Inflectra/ui-test-automation-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
230 lines (192 loc) · 4.76 KB
/
app.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
const express = require('express')
const app = express()
const shuffle = require('shuffle-array')
function guid() {
function s4() {
return Math.floor((1 + Math.random()) * 0x10000)
.toString(16)
.substring(1);
}
return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
s4() + '-' + s4() + s4() + s4();
}
// Routing and launch
app.set('view engine', 'pug')
app.use('/static', express.static('static'))
app.get('/', function (req, res) {
res.render('Home', {
title: 'UI Test Automation Playground',
homeActive: true
})
})
app.get('/home', function (req, res) {
res.render('Home', {
title: 'UI Test Automation Playground',
homeActive: true
})
})
app.get('/resources', function (req, res) {
res.render('Resources', {
title: 'Resources',
resourceActive: true
})
})
app.get('/dynamicid', function (req, res) {
res.render('DynamicID', {
title: 'Dynamic ID',
buttonId: guid()
})
})
app.get('/loaddelay', function (req, res) {
function render() {
res.render('LoadDelay', {
title: 'Load Delays'
})
}
setTimeout(render, 5000);
})
app.get('/click', function (req, res) {
res.render('Click', {
title: 'Click'
})
})
app.get('/textinput', function (req, res) {
res.render('TextInput', {
title: 'Text Input'
})
})
app.get('/ajax', function (req, res) {
res.render('Ajax', {
title: 'AJAX Data'
})
})
app.get('/ajaxdata', function (req, res) {
function render() {
res.send('Data loaded with AJAX get request.')
}
setTimeout(render, 15000);
})
app.get('/clientdelay', function (req, res) {
res.render('ClientDelay', {
title: 'Client Side Delay'
})
})
app.get('/progressbar', function (req, res) {
res.render('ProgressBar', {
title: 'Progress Bar'
})
})
app.get('/classattr', function (req, res) {
var collection = ['btn-primary', 'btn-success', 'btn-warning'];
shuffle(collection);
res.render('ClassAttr', {
title: 'Class Attribute',
button1Class: collection[0],
button2Class: collection[1],
button3Class: collection[2]
})
})
app.get('/verifytext', function (req, res) {
res.render('VerifyText', {
title: 'Verify Text'
})
})
app.get('/hiddenlayers', function (req, res) {
res.render('HiddenLayers', {
title: 'Hidden Layers'
})
})
app.get('/scrollbars', function (req, res) {
res.render('Scrollbars', {
title: 'Scrollbars'
})
})
app.get('/visibility', function (req, res) {
res.render('Visibility', {
title: 'Visibility'
})
})
app.get('/sampleapp', function (req, res) {
res.render('SampleApp', {
title: 'Sample App'
})
})
app.get('/mouseover', function (req, res) {
res.render('MouseOver', {
title: 'Mouse Over'
})
})
app.get('/nbsp', function (req, res) {
res.render('Nbsp', {
title: 'Non-Breaking Space'
})
})
app.get('/overlapped', function (req, res) {
res.render('Overlapped', {
title: 'Overlapped Element'
})
})
app.get('/shadowdom', function (req, res) {
res.render('ShadowDom', {
title: 'Shadow DOM'
})
})
app.get('/alerts', function (req, res) {
res.render('Alerts', {
title: 'Alerts'
})
})
app.get('/upload', function (req, res) {
res.render('Upload', {
title: 'File Upload'
})
})
app.get('/dynamictable', function (req, res) {
function genmetric(m)
{
switch(m)
{
case "CPU":
return Math.floor(Math.random()*100)/10.0 + "%";
case "Memory":
return Math.floor(Math.random()*1000)/10.0 + " MB";
case "Disk":
return Math.floor(Math.random()*10)/10.0 + " MB/s";
case "Network":
return Math.floor(Math.random()*100)/10.0 + " Mbps";
default:
}
return "";
}
var tasks = ["System", "Firefox", "Chrome", "Internet Explorer"];
shuffle(tasks);
var metrics = ["CPU", "Memory", "Disk", "Network"];
shuffle(metrics);
var rows = [];
for(var t in tasks)
{
var row = [tasks[t]];
for(var m in metrics)
{
row.push(genmetric(metrics[m]));
}
rows.push(row);
}
var columns = ["Name"];
columns.push.apply(columns, metrics);
var cpuColumnIndex = columns.indexOf("CPU");
var chromeRowIndex = tasks.indexOf("Chrome");
var chromeCPU = rows[chromeRowIndex][cpuColumnIndex];
var table = {
name: "Tasks",
desc: "Task Manager",
columns: columns,
rows: rows,
chromeCPU: chromeCPU
};
res.render('DynamicTable', {
title: 'Dynamic Table', table: table
})
})
const port = process.env.PORT || 3000;
app.listen(port, () => console.log('UI Test Automation Playground is listening on port ' + port))