-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
executable file
·430 lines (369 loc) · 7.94 KB
/
config.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
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
/**
* Configuration
*/
var Config = {
// Base WordPress URL ... all other URLs *can* be built from this
base_url : system.args[ 1 ],
// Save a screenshot of each page? This is slow
save_screenshots : true,
screenshots_dir : "./screenshots",
// What to output to the console
// Values are logger.DEBUG, logger.WARNING, logger.ERROR, logger.MESSAGE
// lower levels are inclusive of higher levels
log_level : logger.DEBUG,
// How big the screen? What user agent?
// Tweak these to emulate mobile and test responsive designs
viewPort : {
width : 1024,
height : 768
},
userAgent : 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"',
// Is your site behind .htaccess protection?
username : "",
password : "",
// Admin user. This list may grow to include other user roles
// in the future, too
users : [
{
"username" : system.args[ 2 ],
"password" : system.args[ 3 ],
"role" : 'administrator'
}
],
// How many measurments to take
measurements : 5,
// Which URLs to visit. Include [base_url]/index.php as the first part of the URL
// to have the main loop replace it with Config.base_url above
// If the URL requires a logged in user, just pass in a role and
// The user will be logged in first
urls : [
//*
{
"url" : "[base_url]/index.php/sample-page/",
"role" : ""
},
//*/
//*
{
"url" : "[base_url]/index.php/2012/08/hello-world/",
"role" : ""
},
//*/
//*
{
"url" : "[base_url]/index.php/2008/06/post-format-test-gallery/",
"role" : ""
},
//*/
//*
{
"url" : "[base_url]/index.php/2008/06/post-format-test-chat/",
"role" : ""
},
//*/
//*
{
"url" : "[base_url]/index.php/2008/05/14/",
"role" : ""
},
//*/
//*
{
"url" : "[base_url]/index.php/2008/05/many-categories/",
"role" : ""
},
//*/
//*
{
"url" : "[base_url]/index.php/2008/05/many-tags/",
"role" : ""
},
//*/
//*
{
"url" : "[base_url]/index.php/2008/04/test-with-secret-password/",
"role" : ""
},
//*/
//*
{
"url" : "[base_url]/index.php/2008/03/comment-test/",
"role" : ""
},
//*/
//*
{
"url" : "[base_url]/index.php/2008/03/many-trackbacks/",
"role" : ""
},
//*/
//*
{
"url" : "[base_url]/index.php/level-1/level-2/level-3/",
"role" : ""
},
//*/
//*
{
"url" : "[base_url]/wp-admin/options-permalink.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/themes.php?page=theme_options",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/widgets.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/nav-menus.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/theme-install.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/themes.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/plugin-editor.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/plugin-install.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/plugins.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/profile.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/user-new.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/users.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/tools.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/options-general.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/options-writing.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/options-reading.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/options-discussion.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/options-media.php",
"role" : "administrator"
},
//*/
// Removed in 3.5
/*
{
"url" : "[base_url]/wp-admin/options-privacy.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/theme-editor.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/edit-comments.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/edit-tags.php?taxonomy=category",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/edit-tags.php?taxonomy=post_tag",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/index.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/update-core.php",
"role" : "administrator"
},
//*/
/** Phantom doesn't like these ... flash? **/
//*
{
"url" : "[base_url]/wp-admin/edit.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/edit.php?post_type=page",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/post-new.php?post_type=page",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/upload.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/media-new.php",
"role" : "administrator"
},
//*/
//*
{
"url" : "[base_url]/wp-admin/post-new.php",
"role" : "administrator"
},
//*/
],
// webpage object
page: null,
/**
* Reset the page object
*/
resetPage: function() {
if ( undefined !== Config.page && null !== Config.page ) {
Config.page.release();
Config.page = null;
}
},
/**
* Get the phantom webpage object consistently
* @return object
*/
getPageObject: function() {
if ( undefined === Config.page || null === Config.page ) {
var page = require( "webpage" ).create();
page.viewportSize = {
width : Config.viewPort.width,
height : Config.viewPort.height
};
page.settings.userAgent = Config.userAgent;
page.settings.localToRemoteUrlAccessEnabled = true;
page.settings.loadImages = true;
page.settings.javascriptEnabled = true;
page.settings.XSSAuditingEnabled = false;
page.settings.webSecurityEnabled = false;
// Lisen for console messages
page.onConsoleMessage = function (msg, line, source) {
logger.warn( "[PAGE] [" + page.evaluate(function() { return location.href;} ) + "] " + JSON.stringify({
message: msg,
lineNumber: line,
source: source
}, null, 4));
};
// Listen for errors
page.onError = function ( message, trace ) {
logger.error( "[PAGE] [" + page.evaluate(function() { return location.href;} ) + "] " + message + "\n" + JSON.stringify( trace, undefined, 4 ) );
};
// Turn on accept-encoding: gzip
// .... this doesn't seem to work so well
// jQuery and other scripts fail to load
/*
page.customHeaders = {
'Accept-encoding' : 'gzip'
};
*/
// .htaccess protection
if ( "" !== Config.username || "" !== Config.password ) {
page.settings.userName = Config.username;
page.settings.userwame = Config.password;
}
Config.page = page;
}
return Config.page;
},
/**
* Get a user for a specific role
* @param string role (e.g. administrator)
* @return object
*/
getUserByRole: function( role ) {
var i = 0;
logger.debug( "[CONFIG] Finding a user for " + role );
for ( i = 0 ; i < Config.users.length ; i++ ) {
if ( undefined !== Config.users[ i ].role && null !== Config.users[ i ].role && role === Config.users[ i ]['role'] ) {
logger.debug( "[CONFIG] User " + Config.users[ i ].username + " is acceptable" );
return Config.users[ i ];
}
}
logger.debug( "[CONFIG] No users found for " + role );
return {};
}
};