forked from jquery-archive/jquery-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery.testHelper.js
More file actions
144 lines (117 loc) · 3.57 KB
/
jquery.testHelper.js
File metadata and controls
144 lines (117 loc) · 3.57 KB
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
/*
* mobile support unit tests
*/
(function( $ ) {
$.testHelper = {
excludeFileProtocol: function(callback){
var message = "Tests require script reload and cannot be run via file: protocol";
if (location.protocol == "file:") {
test(message, function(){
ok(false, message);
});
} else {
callback();
}
},
// TODO prevent test suite loads when the browser doesn't support push state
// and push-state false is defined.
setPushStateFor: function( libs ) {
if( $.support.pushState && location.search.indexOf( "push-state" ) >= 0 ) {
$.support.pushState = false;
}
$.each(libs, function(i, l) {
$( "<script>", { src: l }).appendTo("head");
});
},
reloads: {},
reloadLib: function(libName){
if(this.reloads[libName] === undefined) {
this.reloads[libName] = {
lib: $("script[src$='" + libName + "']"),
count: 0
};
}
var lib = this.reloads[libName].lib.clone(),
src = lib.attr('src');
//NOTE append "cache breaker" to force reload
lib.attr('src', src + "?" + this.reloads[libName].count++);
$("body").append(lib);
},
rerunQunit: function(){
var self = this;
QUnit.init();
$("script:not([src*='.\/'])").each(function(i, elem){
var src = elem.src.split("/");
self.reloadLib(src[src.length - 1]);
});
QUnit.start();
},
alterExtend: function(extraExtension){
var extendFn = $.extend;
$.extend = function(object, extension){
// NOTE extend the object as normal
var result = extendFn.apply(this, arguments);
// NOTE add custom extensions
result = extendFn(result, extraExtension);
return result;
};
},
hideActivePageWhenComplete: function() {
if( $('#qunit-testresult').length > 0 ) {
$('.ui-page-active').css('display', 'none');
} else {
setTimeout($.testHelper.hideActivePageWhenComplete, 500);
}
},
openPage: function(hash){
location.href = location.href.split('#')[0] + hash;
},
sequence: function(fns, interval){
$.each(fns, function(i, fn){
setTimeout(fn, i * interval);
});
},
pageSequence: function(fns){
this.eventSequence("pagechange", fns);
},
eventSequence: function(event, fns, timedOut){
var fn = fns.shift(),
self = this;
if( fn === undefined ) return;
// if a pagechange or defined event is never triggered
// continue in the sequence to alert possible failures
var warnTimer = setTimeout(function(){
self.eventSequence(event, fns, true);
}, 2000);
// bind the recursive call to the event
$.mobile.pageContainer.one(event, function(){
clearTimeout(warnTimer);
// Let the current stack unwind before we fire off the next item in the sequence.
// TODO setTimeout(self.pageSequence, 0, [fns, event]);
setTimeout(function(){ self.eventSequence(event, fns); }, 0);
});
// invoke the function which should, in some fashion,
// trigger the defined event
fn(timedOut);
},
decorate: function(opts){
var thisVal = opts.self || window;
return function(){
var returnVal;
opts.before && opts.before.apply(thisVal, arguments);
returnVal = opts.fn.apply(thisVal, arguments);
opts.after && opts.after.apply(thisVal, arguments);
return returnVal;
};
},
assertUrlLocation: function( args ) {
var parts = $.mobile.path.parseUrl( location.href ),
pathnameOnward = location.href.replace( parts.domain, "" );
if( $.support.pushState ) {
same( pathnameOnward, args.hashOrPush || args.push, args.report );
} else {
same( parts.hash, "#" + (args.hashOrPush || args.hash), args.report );
}
}
};
})(jQuery);