blob: e10ad4e2806acc87db64e7ac43c92a795894576b (
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
|
function MockBrowser() {
var self = this, expectations = {}, requests = [];
self.url = "http://server";
self.watches = [];
self.xhr = function(method, url, callback) {
var expect = expectations[method] || {};
var response = expect[url];
if (!response) {
throw "Unexepected request for method '" + method + "' and url '" + url + "'.";
}
requests.push(function(){
callback(200, response);
});
};
self.xhr.expectations = expectations;
self.xhr.requests = requests;
self.xhr.expect = function(method, url) {
var expect = expectations[method] || (expectations[method] = {});
return {
respond: function(response) {
expect[url] = response;
}
};
};
self.xhr.flush = function() {
while(requests.length) {
requests.pop()();
}
};
}
MockBrowser.prototype = {
hover: function(onHover) {
},
getUrl: function(){
return this.url;
},
setUrl: function(url){
this.url = url;
},
watchUrl: function(fn) {
this.watches.push(fn);
}
};
angular.service('$browser', function(){
return new MockBrowser();
});
|