Welcome to mirror list, hosted at ThFree Co, Russian Federation.

casperserver.js « test « jquery.browser « node_modules - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea9fbfc3cf105cd94def0cb0e4689233b992c9d6 (plain)
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
/*
*  Proof of concept of a testserver for CasperJS.
*/

/*global CasperError exports phantom require*/

var fs = require('fs');
var webserver = require('webserver');

/**
 * Creates a server instance.
 *
 * @param  Casper  casper   A Casper instance
 * @param  Object  options  Server options
 * @return Server
 */
exports.create = function create(casper, options) {
    "use strict";
    var server = new Server(casper, options);
    casper.server = server;
    return server;
};

/**
 * Casper server: serve responses, fake them, listen to requests
 *
 * @param  Casper       casper   A valid Casper instance
 * @param  Object|null  options  Options object
 */
var Server = function Server(casper, options) {
    "use strict";
    
    this.casper = casper;

    options = options || {};

    this.options = {};
    this.options.port = options.port || 8008; // port the server will listen to
    this.options.defaultStatusCode = options.defaultStatusCode || 200; // can be overrided through options
    this.options.responsesDir = options.responsesDir || './';   // where to look for response content files

    this.watchedPaths = {
        "^/(\\?.*)?$": {filePath: 'test/index.html', permanent: true},
        "/src/jquery.browser.js": {filePath: 'test/src/jquery.browser.js', permanent: true},
        "/src/jquery-1.10.2.min.js": {filePath: 'test/src/jquery-1.10.2.min.js', permanent: true},
    };

    this.watchedRequests = {};

};
exports.Server = Server;

/**
 * Start the server
 */
Server.prototype.start = function start() {
    "use strict";
    this.webserver = webserver.create();
    var self = this;
    this.service = this.webserver.listen(this.options.port, function (request, response) {self._serve(request, response);});
    this.log("server started");
};

/**
 * Stop the server
 */
Server.prototype.end = function start() {
    "use strict";
    this.webserver.close();
    this.log("server closed");
};

/**
 * Internal method, callback of the webserver.listen
 *
 * See: https://github.com/ariya/phantomjs/wiki/API-Reference#wiki-webserver-module
 */

Server.prototype._serve = function serve(request, response) {
    "use strict";
    response.statusCode = this.options.defaultStatusCode;
    this.log("handling " + request.method + " on " + request.url, "debug");

    // Handle request
    if (typeof this.watchedRequests[request.url] !== "undefined") {
        if (request.headers['Content-Type'] != "application/x-www-form-urlencoded") {
            // phantomJS webserver does not handle multipart form, which
            // is the default content-type of HTML5 FormData
            this._splitFormData(request);
        }
        this.watchedRequests[request.url] = request;
    }

    // Handle response
    var options = {};
    for (var path in this.watchedPaths) {
        if (request.url.search(path) !== -1) {
            options = this.watchedPaths[path];
            this.log("Build response from watched path " + request.url);
            if (!options.permanent) {
                // Automatically unwatch path, not to pollute tests context
                this.unwatchPath(path);
            }
            break;
        }
    }
    options._request = request;
    this._buildResponse(response, options);
};


/*
 * Modify the response according to options
 *
 * @param    Object    response    the PhantomJS.webserver response instance
 * @param    Object    options     the options to use (content, filePath...)
 *
 */
Server.prototype._buildResponse = function _buildResponse(response, options) {

    var content,
        statusCode,
        filePath,
        options = options || {};

    if (options.content) {
        if (typeof options.content === 'function') {
            content = options.content(options._request);
        }
        else {
            content = options.content;
        }
    }
    else {
        if (options.filePath) {
            if (typeof options.filePath === 'function') {
                filePath = options.filePath(options._request);
            }
            else {
                filePath = options.filePath;
            }
        }
        else {
            filePath = options._request.url;
        }
        if (!/^(\.|\/)/.test(filePath)) {
            filePath = this.options.responsesDir + filePath;
        }
        if (fs.exists(filePath)) {
            this.log("Getting content from " + filePath);
            content = fs.read(filePath);
        }
        else {
            this.log("File not found: " + filePath, 'error');
        }
    }
    if (options.statusCode) {
        response.statusCode = options.statusCode;
    }
    if (!content) {
        response.statusCode = 404;
        content = 'No handler for the url ' + options._request.url;
    }
    response.write(content);
    response.close();
};

/*
 *  Shortcut for logging with a prefix
 */
Server.prototype.log = function log(msg, level) {
    if (typeof level == "undefined") {
        level = "debug";
    }
    this.casper.log("[casperserver] " + msg, level);
};

/*
 * replace the unparsed post string with a readable key/value
 * EXPERIMENTAL!
 * TODO: move to phantomJS or Mongoose?
 */
Server.prototype._splitFormData = function _splitFormData(request) {
    // Example of raw post:
    // "------WebKitFormBoundarysxecJyeWZZikD2xz\r\nContent-Disposition: form-data; name=\"name\"\r\n\r\nBirds map\r\n------WebKitFormBoundarysxecJyeWZZikD2xz\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nWhere have you seen birds?\r\n------WebKitFormBoundarysxecJyeWZZikD2xz\r\nContent-Disposition: form-data; name=\"licence\"\r\n\r\n1\r\n------WebKitFormBoundarysxecJyeWZZikD2xz\r\nContent-Disposition: form-data; name=\"center\"\r\n\r\nPOINT (15.9191894531249982 49.0018439179785261)\r\n------WebKitFormBoundarysxecJyeWZZikD2xz--\r\n"
    var post = {},
        rawPost = request.post.trim(),
        boundary = "--" + request.headers['Content-Type'].split('boundary=')[1],
        els = rawPost.split(boundary),
        subels, name, value;
    for (var j = 1, k = els.length; j < k; j++) {
        if (!els[j] || els[j] == "--") {
            continue;
        }
        subels = els[j].split('\r\n');
        value = subels[3];
        name = subels[1].match(/name="(\S+)"/i)[1];
        post[name] = value;
    }
    request.post = post;
    return request;
};

/**
 * Indicate how to serve the response for some specific path
 *
 * @param  Regex   path     the path to watch
 * @param  Object  options  options to use for response build
 */
Server.prototype.watchPath = function(path, options) {
    this.watchedPaths[path] = options;
};

/**
 * Unwatch a path
 *
 * @param  Regex   path     the path to unwatch
 */
Server.prototype.unwatchPath = function(path) {
    delete this.watchedPaths[path];
};

/**
 * Indicate that the request for the specific path has to be stored for
 * later inspection
 *
 * @param  String   path     the path to watch
 */
Server.prototype.watchRequest = function(path) {
    // Watch a response to be able to test its value after process
    this.watchedRequests[path] = null;
};

/**
 * Stop watching some path
 *
 * @param  String   path     the path to watch
 */
Server.prototype.unwatchRequest = function(path) {
    delete this.watchedRequests[path];
};

/**
 * Indicate how to serve the response for some specific path
 *
 * @param  String   path     the path to watch
 * @return Object  request  a request instance
 */
Server.prototype.getWatchedRequest = function (path) {
    if (!path) {
        this.log("Can't retrieve watchedRequest for null path");
        return;
    }
    var request = this.watchedRequests[path];
    delete this.watchedRequests[path];
    return request;
};