websocket-rails-js 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/Gemfile +11 -0
- data/Guardfile +6 -0
- data/LICENSE.txt +22 -0
- data/README.md +13 -0
- data/Rakefile +36 -0
- data/app/assets/javascripts/websocket_rails/abstract_connection.js.coffee +45 -0
- data/app/assets/javascripts/websocket_rails/channel.js.coffee +66 -0
- data/app/assets/javascripts/websocket_rails/connection.js.coffee +62 -0
- data/app/assets/javascripts/websocket_rails/event.js.coffee +43 -0
- data/app/assets/javascripts/websocket_rails/http_connection.js.coffee +56 -0
- data/app/assets/javascripts/websocket_rails/main.js +6 -0
- data/app/assets/javascripts/websocket_rails/websocket_connection.js.coffee +29 -0
- data/app/assets/javascripts/websocket_rails/websocket_rails.js.coffee +148 -0
- data/lib/websocket-rails-js.rb +1 -0
- data/lib/websocket_rails/js/engine.rb +8 -0
- data/lib/websocket_rails/js/version.rb +5 -0
- data/spec/javascripts/helpers/.gitkeep +0 -0
- data/spec/javascripts/helpers/helpers.coffee +7 -0
- data/spec/javascripts/support/jasmine.yml +139 -0
- data/spec/javascripts/support/jasmine_helper.rb +15 -0
- data/spec/javascripts/support/jquery.min.js +4 -0
- data/spec/javascripts/support/sinon-1.7.1.js +4343 -0
- data/spec/javascripts/websocket_rails/channel_spec.js.coffee +99 -0
- data/spec/javascripts/websocket_rails/connection_spec.js.coffee +136 -0
- data/spec/javascripts/websocket_rails/event_spec.js.coffee +70 -0
- data/spec/javascripts/websocket_rails/helpers.js.coffee +7 -0
- data/spec/javascripts/websocket_rails/websocket_rails_spec.js.coffee +233 -0
- data/src/websocket_rails/abstract_connection.js +71 -0
- data/src/websocket_rails/channel.js +133 -0
- data/src/websocket_rails/connection.js +91 -0
- data/src/websocket_rails/event.js +66 -0
- data/src/websocket_rails/http_connection.js +97 -0
- data/src/websocket_rails/websocket_connection.js +59 -0
- data/src/websocket_rails/websocket_rails.js +218 -0
- data/websocket-rails-js.gemspec +25 -0
- data/websocket_rails.0.0.1.min.js +1 -0
- metadata +135 -0
@@ -0,0 +1 @@
|
|
1
|
+
require "websocket_rails/js/engine"
|
File without changes
|
@@ -0,0 +1,7 @@
|
|
1
|
+
window.helpers =
|
2
|
+
startConnection: (dispatcher, connection_id = 1) ->
|
3
|
+
dispatcher.new_message ['client_connected', {data: ""}, {connection_id: connection_id}]
|
4
|
+
|
5
|
+
|
6
|
+
# live reload
|
7
|
+
document.write '<script src="http://localhost:35729/livereload.js?host=localhost"></script>'
|
@@ -0,0 +1,139 @@
|
|
1
|
+
# src_files
|
2
|
+
#
|
3
|
+
# Return an array of filepaths relative to src_dir to include before jasmine specs.
|
4
|
+
# Default: []
|
5
|
+
#
|
6
|
+
# EXAMPLE:
|
7
|
+
#
|
8
|
+
# src_files:
|
9
|
+
# - lib/source1.js
|
10
|
+
# - lib/source2.js
|
11
|
+
# - dist/**/*.js
|
12
|
+
#
|
13
|
+
src_files:
|
14
|
+
- websocket_rails.js
|
15
|
+
- event.js
|
16
|
+
- abstract_connection.js
|
17
|
+
- websocket_connection.js
|
18
|
+
- http_connection.js
|
19
|
+
- connection.js
|
20
|
+
- channel.js
|
21
|
+
|
22
|
+
# stylesheets
|
23
|
+
#
|
24
|
+
# Return an array of stylesheet filepaths relative to src_dir to include before jasmine specs.
|
25
|
+
# Default: []
|
26
|
+
#
|
27
|
+
# EXAMPLE:
|
28
|
+
#
|
29
|
+
# stylesheets:
|
30
|
+
# - css/style.css
|
31
|
+
# - stylesheets/*.css
|
32
|
+
#
|
33
|
+
#stylesheets:
|
34
|
+
# - stylesheets/**/*.css
|
35
|
+
|
36
|
+
# helpers
|
37
|
+
#
|
38
|
+
# Return an array of filepaths relative to spec_dir to include before jasmine specs.
|
39
|
+
# Default: ["helpers/**/*.js"]
|
40
|
+
#
|
41
|
+
# EXAMPLE:
|
42
|
+
#
|
43
|
+
# helpers:
|
44
|
+
# - helpers/**/*.js
|
45
|
+
#
|
46
|
+
helpers:
|
47
|
+
- helpers/*.js
|
48
|
+
- support/jquery.min.js
|
49
|
+
- support/sinon-1.7.1.js
|
50
|
+
|
51
|
+
|
52
|
+
# spec_files
|
53
|
+
#
|
54
|
+
# Return an array of filepaths relative to spec_dir to include.
|
55
|
+
# Default: ["**/*[sS]pec.js"]
|
56
|
+
#
|
57
|
+
# EXAMPLE:
|
58
|
+
#
|
59
|
+
# spec_files:
|
60
|
+
# - **/*[sS]pec.js
|
61
|
+
#
|
62
|
+
spec_files:
|
63
|
+
- generated/event_spec.js
|
64
|
+
- generated/websocket_connection_spec.js
|
65
|
+
- generated/connection_spec.js
|
66
|
+
- generated/channel_spec.js
|
67
|
+
- generated/websocket_rails_spec.js
|
68
|
+
|
69
|
+
# src_dir
|
70
|
+
#
|
71
|
+
# Source directory path. Your src_files must be returned relative to this path. Will use root if left blank.
|
72
|
+
# Default: project root
|
73
|
+
#
|
74
|
+
# EXAMPLE:
|
75
|
+
#
|
76
|
+
# src_dir: public
|
77
|
+
#
|
78
|
+
src_dir:
|
79
|
+
- src/websocket_rails
|
80
|
+
|
81
|
+
# spec_dir
|
82
|
+
#
|
83
|
+
# Spec directory path. Your spec_files must be returned relative to this path.
|
84
|
+
# Default: spec/javascripts
|
85
|
+
#
|
86
|
+
# EXAMPLE:
|
87
|
+
#
|
88
|
+
# spec_dir: spec/javascripts
|
89
|
+
#
|
90
|
+
spec_dir:
|
91
|
+
- spec/javascripts
|
92
|
+
|
93
|
+
# spec_helper
|
94
|
+
#
|
95
|
+
# Ruby file that Jasmine server will require before starting.
|
96
|
+
# Returned relative to your root path
|
97
|
+
# Default spec/javascripts/support/jasmine_helper.rb
|
98
|
+
#
|
99
|
+
# EXAMPLE:
|
100
|
+
#
|
101
|
+
# spec_helper: spec/javascripts/support/jasmine_helper.rb
|
102
|
+
#
|
103
|
+
spec_helper: spec/javascripts/support/jasmine_helper.rb
|
104
|
+
|
105
|
+
# boot_dir
|
106
|
+
#
|
107
|
+
# Boot directory path. Your boot_files must be returned relative to this path.
|
108
|
+
# Default: Built in boot file
|
109
|
+
#
|
110
|
+
# EXAMPLE:
|
111
|
+
#
|
112
|
+
# boot_dir: spec/javascripts/support/boot
|
113
|
+
#
|
114
|
+
boot_dir:
|
115
|
+
|
116
|
+
# boot_files
|
117
|
+
#
|
118
|
+
# Return an array of filepaths relative to boot_dir to include in order to boot Jasmine
|
119
|
+
# Default: Built in boot file
|
120
|
+
#
|
121
|
+
# EXAMPLE
|
122
|
+
#
|
123
|
+
# boot_files:
|
124
|
+
# - '**/*.js'
|
125
|
+
#
|
126
|
+
boot_files:
|
127
|
+
|
128
|
+
# rack_options
|
129
|
+
#
|
130
|
+
# Extra options to be passed to the rack server
|
131
|
+
# by default, Port and AccessLog are passed.
|
132
|
+
#
|
133
|
+
# This is an advanced options, and left empty by default
|
134
|
+
#
|
135
|
+
# EXAMPLE
|
136
|
+
#
|
137
|
+
# rack_options:
|
138
|
+
# server: 'thin'
|
139
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
#Use this file to set/override Jasmine configuration options
|
2
|
+
#You can remove it if you don't need it.
|
3
|
+
#This file is loaded *after* jasmine.yml is interpreted.
|
4
|
+
#
|
5
|
+
#Example: using a different boot file.
|
6
|
+
#Jasmine.configure do |config|
|
7
|
+
# config.boot_dir = '/absolute/path/to/boot_dir'
|
8
|
+
# config.boot_files = lambda { ['/absolute/path/to/boot_dir/file.js'] }
|
9
|
+
#end
|
10
|
+
#
|
11
|
+
#Example: prevent PhantomJS auto install, uses PhantomJS already on your path.
|
12
|
+
#Jasmine.configure do |config|
|
13
|
+
# config.prevent_phantom_js_auto_install = true
|
14
|
+
#end
|
15
|
+
#
|
@@ -0,0 +1,4 @@
|
|
1
|
+
/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */
|
2
|
+
!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="<div class='a'></div><div class='a i'></div>",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="<select msallowclip=''><option selected=''></option></select>",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=lb(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=mb(b);function pb(){}pb.prototype=d.filters=d.pseudos,d.setFilters=new pb,g=fb.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=S.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=T.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(R," ")}),h=h.slice(c.length));for(g in d.filter)!(e=X[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fb.error(a):z(a,i).slice(0)};function qb(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;
|
3
|
+
if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?m.queue(this[0],a):void 0===b?this:this.each(function(){var c=m.queue(this,a,b);m._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&m.dequeue(this,a)})},dequeue:function(a){return this.each(function(){m.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=m.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=m._data(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var S=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=["Top","Right","Bottom","Left"],U=function(a,b){return a=b||a,"none"===m.css(a,"display")||!m.contains(a.ownerDocument,a)},V=m.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===m.type(c)){e=!0;for(h in c)m.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,m.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(m(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav></:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="<textarea>x</textarea>",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="<input type='radio' checked='checked' name='t'/>",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function ab(){return!0}function bb(){return!1}function cb(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},fix:function(a){if(a[m.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=Z.test(e)?this.mouseHooks:Y.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new m.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=f.srcElement||y),3===a.target.nodeType&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,g.filter?g.filter(a,f):a},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,d,e,f=b.button,g=b.fromElement;return null==a.pageX&&null!=b.clientX&&(d=a.target.ownerDocument||y,e=d.documentElement,c=d.body,a.pageX=b.clientX+(e&&e.scrollLeft||c&&c.scrollLeft||0)-(e&&e.clientLeft||c&&c.clientLeft||0),a.pageY=b.clientY+(e&&e.scrollTop||c&&c.scrollTop||0)-(e&&e.clientTop||c&&c.clientTop||0)),!a.relatedTarget&&g&&(a.relatedTarget=g===a.target?b.toElement:g),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==cb()&&this.focus)try{return this.focus(),!1}catch(a){}},delegateType:"focusin"},blur:{trigger:function(){return this===cb()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return m.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(a){return m.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c,d){var e=m.extend(new m.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?m.event.trigger(e,null,b):m.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},m.removeEvent=y.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]===K&&(a[d]=null),a.detachEvent(d,c))},m.Event=function(a,b){return this instanceof m.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?ab:bb):this.type=a,b&&m.extend(this,b),this.timeStamp=a&&a.timeStamp||m.now(),void(this[m.expando]=!0)):new m.Event(a,b)},m.Event.prototype={isDefaultPrevented:bb,isPropagationStopped:bb,isImmediatePropagationStopped:bb,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=ab,a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=ab,a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=ab,a&&a.stopImmediatePropagation&&a.stopImmediatePropagation(),this.stopPropagation()}},m.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){m.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!m.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),k.submitBubbles||(m.event.special.submit={setup:function(){return m.nodeName(this,"form")?!1:void m.event.add(this,"click._submit keypress._submit",function(a){var b=a.target,c=m.nodeName(b,"input")||m.nodeName(b,"button")?b.form:void 0;c&&!m._data(c,"submitBubbles")&&(m.event.add(c,"submit._submit",function(a){a._submit_bubble=!0}),m._data(c,"submitBubbles",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&m.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){return m.nodeName(this,"form")?!1:void m.event.remove(this,"._submit")}}),k.changeBubbles||(m.event.special.change={setup:function(){return X.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(m.event.add(this,"propertychange._change",function(a){"checked"===a.originalEvent.propertyName&&(this._just_changed=!0)}),m.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),m.event.simulate("change",this,a,!0)})),!1):void m.event.add(this,"beforeactivate._change",function(a){var b=a.target;X.test(b.nodeName)&&!m._data(b,"changeBubbles")&&(m.event.add(b,"change._change",function(a){!this.parentNode||a.isSimulated||a.isTrigger||m.event.simulate("change",this.parentNode,a,!0)}),m._data(b,"changeBubbles",!0))})},handle:function(a){var b=a.target;return this!==b||a.isSimulated||a.isTrigger||"radio"!==b.type&&"checkbox"!==b.type?a.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return m.event.remove(this,"._change"),!X.test(this.nodeName)}}),k.focusinBubbles||m.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){m.event.simulate(b,a.target,m.event.fix(a),!0)};m.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=m._data(d,b);e||d.addEventListener(a,c,!0),m._data(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=m._data(d,b)-1;e?m._data(d,b,e):(d.removeEventListener(a,c,!0),m._removeData(d,b))}}}),m.fn.extend({on:function(a,b,c,d,e){var f,g;if("object"==typeof a){"string"!=typeof b&&(c=c||b,b=void 0);for(f in a)this.on(f,b,c,a[f],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&("string"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=bb;else if(!d)return this;return 1===e&&(g=d,d=function(a){return m().off(a),g.apply(this,arguments)},d.guid=g.guid||(g.guid=m.guid++)),this.each(function(){m.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,m(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||"function"==typeof b)&&(c=b,b=void 0),c===!1&&(c=bb),this.each(function(){m.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){m.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?m.event.trigger(a,b,c,!0):void 0}});function db(a){var b=eb.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}var eb="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",fb=/ jQuery\d+="(?:null|\d+)"/g,gb=new RegExp("<(?:"+eb+")[\\s/>]","i"),hb=/^\s+/,ib=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,jb=/<([\w:]+)/,kb=/<tbody/i,lb=/<|&#?\w+;/,mb=/<(?:script|style|link)/i,nb=/checked\s*(?:[^=]|=\s*.checked.)/i,ob=/^$|\/(?:java|ecma)script/i,pb=/^true\/(.*)/,qb=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,rb={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:k.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},sb=db(y),tb=sb.appendChild(y.createElement("div"));rb.optgroup=rb.option,rb.tbody=rb.tfoot=rb.colgroup=rb.caption=rb.thead,rb.th=rb.td;function ub(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ub(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function vb(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wb(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xb(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function yb(a){var b=pb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function zb(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Ab(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Bb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xb(b).text=a.text,yb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!gb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(tb.innerHTML=a.outerHTML,tb.removeChild(f=tb.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ub(f),h=ub(a),g=0;null!=(e=h[g]);++g)d[g]&&Bb(e,d[g]);if(b)if(c)for(h=h||ub(a),d=d||ub(f),g=0;null!=(e=h[g]);g++)Ab(e,d[g]);else Ab(a,f);return d=ub(f,"script"),d.length>0&&zb(d,!i&&ub(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=db(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(lb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(jb.exec(f)||["",""])[1].toLowerCase(),l=rb[i]||rb._default,h.innerHTML=l[1]+f.replace(ib,"<$1></$2>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&hb.test(f)&&p.push(b.createTextNode(hb.exec(f)[0])),!k.tbody){f="table"!==i||kb.test(f)?"<table>"!==l[1]||kb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ub(p,"input"),vb),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ub(o.appendChild(f),"script"),g&&zb(h),c)){e=0;while(f=h[e++])ob.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ub(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&zb(ub(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ub(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fb,""):void 0;if(!("string"!=typeof a||mb.test(a)||!k.htmlSerialize&&gb.test(a)||!k.leadingWhitespace&&hb.test(a)||rb[(jb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ib,"<$1></$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ub(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ub(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&nb.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ub(i,"script"),xb),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ub(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,yb),j=0;f>j;j++)d=g[j],ob.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qb,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Cb,Db={};function Eb(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fb(a){var b=y,c=Db[a];return c||(c=Eb(a,b),"none"!==c&&c||(Cb=(Cb||m("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=(Cb[0].contentWindow||Cb[0].contentDocument).document,b.write(),b.close(),c=Eb(a,b),Cb.detach()),Db[a]=c),c}!function(){var a;k.shrinkWrapBlocks=function(){if(null!=a)return a;a=!1;var b,c,d;return c=y.getElementsByTagName("body")[0],c&&c.style?(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",b.appendChild(y.createElement("div")).style.width="5px",a=3!==b.offsetWidth),c.removeChild(d),a):void 0}}();var Gb=/^margin/,Hb=new RegExp("^("+S+")(?!px)[a-z%]+$","i"),Ib,Jb,Kb=/^(top|right|bottom|left)$/;a.getComputedStyle?(Ib=function(a){return a.ownerDocument.defaultView.getComputedStyle(a,null)},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c.getPropertyValue(b)||c[b]:void 0,c&&(""!==g||m.contains(a.ownerDocument,a)||(g=m.style(a,b)),Hb.test(g)&&Gb.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0===g?g:g+""}):y.documentElement.currentStyle&&(Ib=function(a){return a.currentStyle},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Hb.test(g)&&!Kb.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function Lb(a,b){return{get:function(){var c=a();if(null!=c)return c?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d,e,f,g,h;if(b=y.createElement("div"),b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=d&&d.style){c.cssText="float:left;opacity:.5",k.opacity="0.5"===c.opacity,k.cssFloat=!!c.cssFloat,b.style.backgroundClip="content-box",b.cloneNode(!0).style.backgroundClip="",k.clearCloneStyle="content-box"===b.style.backgroundClip,k.boxSizing=""===c.boxSizing||""===c.MozBoxSizing||""===c.WebkitBoxSizing,m.extend(k,{reliableHiddenOffsets:function(){return null==g&&i(),g},boxSizingReliable:function(){return null==f&&i(),f},pixelPosition:function(){return null==e&&i(),e},reliableMarginRight:function(){return null==h&&i(),h}});function i(){var b,c,d,i;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),b.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",e=f=!1,h=!0,a.getComputedStyle&&(e="1%"!==(a.getComputedStyle(b,null)||{}).top,f="4px"===(a.getComputedStyle(b,null)||{width:"4px"}).width,i=b.appendChild(y.createElement("div")),i.style.cssText=b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",i.style.marginRight=i.style.width="0",b.style.width="1px",h=!parseFloat((a.getComputedStyle(i,null)||{}).marginRight)),b.innerHTML="<table><tr><td></td><td>t</td></tr></table>",i=b.getElementsByTagName("td"),i[0].style.cssText="margin:0;border:0;padding:0;display:none",g=0===i[0].offsetHeight,g&&(i[0].style.display="",i[1].style.display="none",g=0===i[0].offsetHeight),c.removeChild(d))}}}(),m.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var Mb=/alpha\([^)]*\)/i,Nb=/opacity\s*=\s*([^)]*)/,Ob=/^(none|table(?!-c[ea]).+)/,Pb=new RegExp("^("+S+")(.*)$","i"),Qb=new RegExp("^([+-])=("+S+")","i"),Rb={position:"absolute",visibility:"hidden",display:"block"},Sb={letterSpacing:"0",fontWeight:"400"},Tb=["Webkit","O","Moz","ms"];function Ub(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=Tb.length;while(e--)if(b=Tb[e]+c,b in a)return b;return d}function Vb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=m._data(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&U(d)&&(f[g]=m._data(d,"olddisplay",Fb(d.nodeName)))):(e=U(d),(c&&"none"!==c||!e)&&m._data(d,"olddisplay",e?c:m.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}function Wb(a,b,c){var d=Pb.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Xb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=m.css(a,c+T[f],!0,e)),d?("content"===c&&(g-=m.css(a,"padding"+T[f],!0,e)),"margin"!==c&&(g-=m.css(a,"border"+T[f]+"Width",!0,e))):(g+=m.css(a,"padding"+T[f],!0,e),"padding"!==c&&(g+=m.css(a,"border"+T[f]+"Width",!0,e)));return g}function Yb(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=Ib(a),g=k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=Jb(a,b,f),(0>e||null==e)&&(e=a.style[b]),Hb.test(e))return e;d=g&&(k.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Xb(a,b,c||(g?"border":"content"),d,f)+"px"}m.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Jb(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":k.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=m.camelCase(b),i=a.style;if(b=m.cssProps[h]||(m.cssProps[h]=Ub(i,h)),g=m.cssHooks[b]||m.cssHooks[h],void 0===c)return g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b];if(f=typeof c,"string"===f&&(e=Qb.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(m.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||m.cssNumber[h]||(c+="px"),k.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),!(g&&"set"in g&&void 0===(c=g.set(a,c,d)))))try{i[b]=c}catch(j){}}},css:function(a,b,c,d){var e,f,g,h=m.camelCase(b);return b=m.cssProps[h]||(m.cssProps[h]=Ub(a.style,h)),g=m.cssHooks[b]||m.cssHooks[h],g&&"get"in g&&(f=g.get(a,!0,c)),void 0===f&&(f=Jb(a,b,d)),"normal"===f&&b in Sb&&(f=Sb[b]),""===c||c?(e=parseFloat(f),c===!0||m.isNumeric(e)?e||0:f):f}}),m.each(["height","width"],function(a,b){m.cssHooks[b]={get:function(a,c,d){return c?Ob.test(m.css(a,"display"))&&0===a.offsetWidth?m.swap(a,Rb,function(){return Yb(a,b,d)}):Yb(a,b,d):void 0},set:function(a,c,d){var e=d&&Ib(a);return Wb(a,c,d?Xb(a,b,d,k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,e),e):0)}}}),k.opacity||(m.cssHooks.opacity={get:function(a,b){return Nb.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=m.isNumeric(b)?"alpha(opacity="+100*b+")":"",f=d&&d.filter||c.filter||"";c.zoom=1,(b>=1||""===b)&&""===m.trim(f.replace(Mb,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=Mb.test(f)?f.replace(Mb,e):f+" "+e)}}),m.cssHooks.marginRight=Lb(k.reliableMarginRight,function(a,b){return b?m.swap(a,{display:"inline-block"},Jb,[a,"marginRight"]):void 0}),m.each({margin:"",padding:"",border:"Width"},function(a,b){m.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+T[d]+b]=f[d]||f[d-2]||f[0];return e}},Gb.test(a)||(m.cssHooks[a+b].set=Wb)}),m.fn.extend({css:function(a,b){return V(this,function(a,b,c){var d,e,f={},g=0;if(m.isArray(b)){for(d=Ib(a),e=b.length;e>g;g++)f[b[g]]=m.css(a,b[g],!1,d);return f}return void 0!==c?m.style(a,b,c):m.css(a,b)},a,b,arguments.length>1)},show:function(){return Vb(this,!0)},hide:function(){return Vb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){U(this)?m(this).show():m(this).hide()})}});function Zb(a,b,c,d,e){return new Zb.prototype.init(a,b,c,d,e)}m.Tween=Zb,Zb.prototype={constructor:Zb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(m.cssNumber[c]?"":"px")
|
4
|
+
},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this):Zb.propHooks._default.get(this)},run:function(a){var b,c=Zb.propHooks[this.prop];return this.pos=b=this.options.duration?m.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Zb.propHooks._default.set(this),this}},Zb.prototype.init.prototype=Zb.prototype,Zb.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=m.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){m.fx.step[a.prop]?m.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[m.cssProps[a.prop]]||m.cssHooks[a.prop])?m.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Zb.propHooks.scrollTop=Zb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},m.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},m.fx=Zb.prototype.init,m.fx.step={};var $b,_b,ac=/^(?:toggle|show|hide)$/,bc=new RegExp("^(?:([+-])=|)("+S+")([a-z%]*)$","i"),cc=/queueHooks$/,dc=[ic],ec={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=bc.exec(b),f=e&&e[3]||(m.cssNumber[a]?"":"px"),g=(m.cssNumber[a]||"px"!==f&&+d)&&bc.exec(m.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,m.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function fc(){return setTimeout(function(){$b=void 0}),$b=m.now()}function gc(a,b){var c,d={height:a},e=0;for(b=b?1:0;4>e;e+=2-b)c=T[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function hc(a,b,c){for(var d,e=(ec[b]||[]).concat(ec["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function ic(a,b,c){var d,e,f,g,h,i,j,l,n=this,o={},p=a.style,q=a.nodeType&&U(a),r=m._data(a,"fxshow");c.queue||(h=m._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,n.always(function(){n.always(function(){h.unqueued--,m.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[p.overflow,p.overflowX,p.overflowY],j=m.css(a,"display"),l="none"===j?m._data(a,"olddisplay")||Fb(a.nodeName):j,"inline"===l&&"none"===m.css(a,"float")&&(k.inlineBlockNeedsLayout&&"inline"!==Fb(a.nodeName)?p.zoom=1:p.display="inline-block")),c.overflow&&(p.overflow="hidden",k.shrinkWrapBlocks()||n.always(function(){p.overflow=c.overflow[0],p.overflowX=c.overflow[1],p.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],ac.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(q?"hide":"show")){if("show"!==e||!r||void 0===r[d])continue;q=!0}o[d]=r&&r[d]||m.style(a,d)}else j=void 0;if(m.isEmptyObject(o))"inline"===("none"===j?Fb(a.nodeName):j)&&(p.display=j);else{r?"hidden"in r&&(q=r.hidden):r=m._data(a,"fxshow",{}),f&&(r.hidden=!q),q?m(a).show():n.done(function(){m(a).hide()}),n.done(function(){var b;m._removeData(a,"fxshow");for(b in o)m.style(a,b,o[b])});for(d in o)g=hc(q?r[d]:0,d,n),d in r||(r[d]=g.start,q&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function jc(a,b){var c,d,e,f,g;for(c in a)if(d=m.camelCase(c),e=b[d],f=a[c],m.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=m.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function kc(a,b,c){var d,e,f=0,g=dc.length,h=m.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=$b||fc(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:m.extend({},b),opts:m.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:$b||fc(),duration:c.duration,tweens:[],createTween:function(b,c){var d=m.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(jc(k,j.opts.specialEasing);g>f;f++)if(d=dc[f].call(j,a,k,j.opts))return d;return m.map(k,hc,j),m.isFunction(j.opts.start)&&j.opts.start.call(a,j),m.fx.timer(m.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}m.Animation=m.extend(kc,{tweener:function(a,b){m.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],ec[c]=ec[c]||[],ec[c].unshift(b)},prefilter:function(a,b){b?dc.unshift(a):dc.push(a)}}),m.speed=function(a,b,c){var d=a&&"object"==typeof a?m.extend({},a):{complete:c||!c&&b||m.isFunction(a)&&a,duration:a,easing:c&&b||b&&!m.isFunction(b)&&b};return d.duration=m.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in m.fx.speeds?m.fx.speeds[d.duration]:m.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){m.isFunction(d.old)&&d.old.call(this),d.queue&&m.dequeue(this,d.queue)},d},m.fn.extend({fadeTo:function(a,b,c,d){return this.filter(U).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=m.isEmptyObject(a),f=m.speed(b,c,d),g=function(){var b=kc(this,m.extend({},a),f);(e||m._data(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=m.timers,g=m._data(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&cc.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&m.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=m._data(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=m.timers,g=d?d.length:0;for(c.finish=!0,m.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),m.each(["toggle","show","hide"],function(a,b){var c=m.fn[b];m.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(gc(b,!0),a,d,e)}}),m.each({slideDown:gc("show"),slideUp:gc("hide"),slideToggle:gc("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){m.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),m.timers=[],m.fx.tick=function(){var a,b=m.timers,c=0;for($b=m.now();c<b.length;c++)a=b[c],a()||b[c]!==a||b.splice(c--,1);b.length||m.fx.stop(),$b=void 0},m.fx.timer=function(a){m.timers.push(a),a()?m.fx.start():m.timers.pop()},m.fx.interval=13,m.fx.start=function(){_b||(_b=setInterval(m.fx.tick,m.fx.interval))},m.fx.stop=function(){clearInterval(_b),_b=null},m.fx.speeds={slow:600,fast:200,_default:400},m.fn.delay=function(a,b){return a=m.fx?m.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},function(){var a,b,c,d,e;b=y.createElement("div"),b.setAttribute("className","t"),b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=y.createElement("select"),e=c.appendChild(y.createElement("option")),a=b.getElementsByTagName("input")[0],d.style.cssText="top:1px",k.getSetAttribute="t"!==b.className,k.style=/top/.test(d.getAttribute("style")),k.hrefNormalized="/a"===d.getAttribute("href"),k.checkOn=!!a.value,k.optSelected=e.selected,k.enctype=!!y.createElement("form").enctype,c.disabled=!0,k.optDisabled=!e.disabled,a=y.createElement("input"),a.setAttribute("value",""),k.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),k.radioValue="t"===a.value}();var lc=/\r/g;m.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=m.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,m(this).val()):a,null==e?e="":"number"==typeof e?e+="":m.isArray(e)&&(e=m.map(e,function(a){return null==a?"":a+""})),b=m.valHooks[this.type]||m.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=m.valHooks[e.type]||m.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(lc,""):null==c?"":c)}}}),m.extend({valHooks:{option:{get:function(a){var b=m.find.attr(a,"value");return null!=b?b:m.trim(m.text(a))}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(k.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&m.nodeName(c.parentNode,"optgroup"))){if(b=m(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=m.makeArray(b),g=e.length;while(g--)if(d=e[g],m.inArray(m.valHooks.option.get(d),f)>=0)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),m.each(["radio","checkbox"],function(){m.valHooks[this]={set:function(a,b){return m.isArray(b)?a.checked=m.inArray(m(a).val(),b)>=0:void 0}},k.checkOn||(m.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var mc,nc,oc=m.expr.attrHandle,pc=/^(?:checked|selected)$/i,qc=k.getSetAttribute,rc=k.input;m.fn.extend({attr:function(a,b){return V(this,m.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){m.removeAttr(this,a)})}}),m.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===K?m.prop(a,b,c):(1===f&&m.isXMLDoc(a)||(b=b.toLowerCase(),d=m.attrHooks[b]||(m.expr.match.bool.test(b)?nc:mc)),void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=m.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void m.removeAttr(a,b))},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=m.propFix[c]||c,m.expr.match.bool.test(c)?rc&&qc||!pc.test(c)?a[d]=!1:a[m.camelCase("default-"+c)]=a[d]=!1:m.attr(a,c,""),a.removeAttribute(qc?c:d)},attrHooks:{type:{set:function(a,b){if(!k.radioValue&&"radio"===b&&m.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),nc={set:function(a,b,c){return b===!1?m.removeAttr(a,c):rc&&qc||!pc.test(c)?a.setAttribute(!qc&&m.propFix[c]||c,c):a[m.camelCase("default-"+c)]=a[c]=!0,c}},m.each(m.expr.match.bool.source.match(/\w+/g),function(a,b){var c=oc[b]||m.find.attr;oc[b]=rc&&qc||!pc.test(b)?function(a,b,d){var e,f;return d||(f=oc[b],oc[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,oc[b]=f),e}:function(a,b,c){return c?void 0:a[m.camelCase("default-"+b)]?b.toLowerCase():null}}),rc&&qc||(m.attrHooks.value={set:function(a,b,c){return m.nodeName(a,"input")?void(a.defaultValue=b):mc&&mc.set(a,b,c)}}),qc||(mc={set:function(a,b,c){var d=a.getAttributeNode(c);return d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+="","value"===c||b===a.getAttribute(c)?b:void 0}},oc.id=oc.name=oc.coords=function(a,b,c){var d;return c?void 0:(d=a.getAttributeNode(b))&&""!==d.value?d.value:null},m.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);return c&&c.specified?c.value:void 0},set:mc.set},m.attrHooks.contenteditable={set:function(a,b,c){mc.set(a,""===b?!1:b,c)}},m.each(["width","height"],function(a,b){m.attrHooks[b]={set:function(a,c){return""===c?(a.setAttribute(b,"auto"),c):void 0}}})),k.style||(m.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+""}});var sc=/^(?:input|select|textarea|button|object)$/i,tc=/^(?:a|area)$/i;m.fn.extend({prop:function(a,b){return V(this,m.prop,a,b,arguments.length>1)},removeProp:function(a){return a=m.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),m.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!m.isXMLDoc(a),f&&(b=m.propFix[b]||b,e=m.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=m.find.attr(a,"tabindex");return b?parseInt(b,10):sc.test(a.nodeName)||tc.test(a.nodeName)&&a.href?0:-1}}}}),k.hrefNormalized||m.each(["href","src"],function(a,b){m.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),k.optSelected||(m.propHooks.selected={get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}}),m.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){m.propFix[this.toLowerCase()]=this}),k.enctype||(m.propFix.enctype="encoding");var uc=/[\t\r\n\f]/g;m.fn.extend({addClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j="string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).addClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(uc," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=m.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j=0===arguments.length||"string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).removeClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(uc," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?m.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(m.isFunction(a)?function(c){m(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=m(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===K||"boolean"===c)&&(this.className&&m._data(this,"__className__",this.className),this.className=this.className||a===!1?"":m._data(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(uc," ").indexOf(b)>=0)return!0;return!1}}),m.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){m.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),m.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var vc=m.now(),wc=/\?/,xc=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;m.parseJSON=function(b){if(a.JSON&&a.JSON.parse)return a.JSON.parse(b+"");var c,d=null,e=m.trim(b+"");return e&&!m.trim(e.replace(xc,function(a,b,e,f){return c&&b&&(d=0),0===d?a:(c=e||b,d+=!f-!e,"")}))?Function("return "+e)():m.error("Invalid JSON: "+b)},m.parseXML=function(b){var c,d;if(!b||"string"!=typeof b)return null;try{a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b))}catch(e){c=void 0}return c&&c.documentElement&&!c.getElementsByTagName("parsererror").length||m.error("Invalid XML: "+b),c};var yc,zc,Ac=/#.*$/,Bc=/([?&])_=[^&]*/,Cc=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Dc=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Ec=/^(?:GET|HEAD)$/,Fc=/^\/\//,Gc=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Hc={},Ic={},Jc="*/".concat("*");try{zc=location.href}catch(Kc){zc=y.createElement("a"),zc.href="",zc=zc.href}yc=Gc.exec(zc.toLowerCase())||[];function Lc(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(E)||[];if(m.isFunction(c))while(d=f[e++])"+"===d.charAt(0)?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Mc(a,b,c,d){var e={},f=a===Ic;function g(h){var i;return e[h]=!0,m.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Nc(a,b){var c,d,e=m.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&&((e[d]?a:c||(c={}))[d]=b[d]);return c&&m.extend(!0,a,c),a}function Oc(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===e&&(e=a.mimeType||b.getResponseHeader("Content-Type"));if(e)for(g in h)if(h[g]&&h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+" "+i[0]]){f=g;break}d||(d=g)}f=f||d}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function Pc(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}m.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:zc,type:"GET",isLocal:Dc.test(yc[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Jc,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":m.parseJSON,"text xml":m.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Nc(Nc(a,m.ajaxSettings),b):Nc(m.ajaxSettings,a)},ajaxPrefilter:Lc(Hc),ajaxTransport:Lc(Ic),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=m.ajaxSetup({},b),l=k.context||k,n=k.context&&(l.nodeType||l.jquery)?m(l):m.event,o=m.Deferred(),p=m.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!j){j={};while(b=Cc.exec(f))j[b[1].toLowerCase()]=b[2]}b=j[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?f:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return i&&i.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||zc)+"").replace(Ac,"").replace(Fc,yc[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=m.trim(k.dataType||"*").toLowerCase().match(E)||[""],null==k.crossDomain&&(c=Gc.exec(k.url.toLowerCase()),k.crossDomain=!(!c||c[1]===yc[1]&&c[2]===yc[2]&&(c[3]||("http:"===c[1]?"80":"443"))===(yc[3]||("http:"===yc[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=m.param(k.data,k.traditional)),Mc(Hc,k,b,v),2===t)return v;h=k.global,h&&0===m.active++&&m.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!Ec.test(k.type),e=k.url,k.hasContent||(k.data&&(e=k.url+=(wc.test(e)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=Bc.test(e)?e.replace(Bc,"$1_="+vc++):e+(wc.test(e)?"&":"?")+"_="+vc++)),k.ifModified&&(m.lastModified[e]&&v.setRequestHeader("If-Modified-Since",m.lastModified[e]),m.etag[e]&&v.setRequestHeader("If-None-Match",m.etag[e])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+Jc+"; q=0.01":""):k.accepts["*"]);for(d in k.headers)v.setRequestHeader(d,k.headers[d]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(d in{success:1,error:1,complete:1})v[d](k[d]);if(i=Mc(Ic,k,b,v)){v.readyState=1,h&&n.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,i.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,c,d){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),i=void 0,f=d||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,c&&(u=Oc(k,v,c)),u=Pc(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(m.lastModified[e]=w),w=v.getResponseHeader("etag"),w&&(m.etag[e]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,h&&n.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),h&&(n.trigger("ajaxComplete",[v,k]),--m.active||m.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return m.get(a,b,c,"json")},getScript:function(a,b){return m.get(a,void 0,b,"script")}}),m.each(["get","post"],function(a,b){m[b]=function(a,c,d,e){return m.isFunction(c)&&(e=e||d,d=c,c=void 0),m.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),m.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){m.fn[b]=function(a){return this.on(b,a)}}),m._evalUrl=function(a){return m.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},m.fn.extend({wrapAll:function(a){if(m.isFunction(a))return this.each(function(b){m(this).wrapAll(a.call(this,b))});if(this[0]){var b=m(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return this.each(m.isFunction(a)?function(b){m(this).wrapInner(a.call(this,b))}:function(){var b=m(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=m.isFunction(a);return this.each(function(c){m(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){m.nodeName(this,"body")||m(this).replaceWith(this.childNodes)}).end()}}),m.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0||!k.reliableHiddenOffsets()&&"none"===(a.style&&a.style.display||m.css(a,"display"))},m.expr.filters.visible=function(a){return!m.expr.filters.hidden(a)};var Qc=/%20/g,Rc=/\[\]$/,Sc=/\r?\n/g,Tc=/^(?:submit|button|image|reset|file)$/i,Uc=/^(?:input|select|textarea|keygen)/i;function Vc(a,b,c,d){var e;if(m.isArray(b))m.each(b,function(b,e){c||Rc.test(a)?d(a,e):Vc(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==m.type(b))d(a,b);else for(e in b)Vc(a+"["+e+"]",b[e],c,d)}m.param=function(a,b){var c,d=[],e=function(a,b){b=m.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=m.ajaxSettings&&m.ajaxSettings.traditional),m.isArray(a)||a.jquery&&!m.isPlainObject(a))m.each(a,function(){e(this.name,this.value)});else for(c in a)Vc(c,a[c],b,e);return d.join("&").replace(Qc,"+")},m.fn.extend({serialize:function(){return m.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=m.prop(this,"elements");return a?m.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!m(this).is(":disabled")&&Uc.test(this.nodeName)&&!Tc.test(a)&&(this.checked||!W.test(a))}).map(function(a,b){var c=m(this).val();return null==c?null:m.isArray(c)?m.map(c,function(a){return{name:b.name,value:a.replace(Sc,"\r\n")}}):{name:b.name,value:c.replace(Sc,"\r\n")}}).get()}}),m.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&Zc()||$c()}:Zc;var Wc=0,Xc={},Yc=m.ajaxSettings.xhr();a.ActiveXObject&&m(a).on("unload",function(){for(var a in Xc)Xc[a](void 0,!0)}),k.cors=!!Yc&&"withCredentials"in Yc,Yc=k.ajax=!!Yc,Yc&&m.ajaxTransport(function(a){if(!a.crossDomain||k.cors){var b;return{send:function(c,d){var e,f=a.xhr(),g=++Wc;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)void 0!==c[e]&&f.setRequestHeader(e,c[e]+"");f.send(a.hasContent&&a.data||null),b=function(c,e){var h,i,j;if(b&&(e||4===f.readyState))if(delete Xc[g],b=void 0,f.onreadystatechange=m.noop,e)4!==f.readyState&&f.abort();else{j={},h=f.status,"string"==typeof f.responseText&&(j.text=f.responseText);try{i=f.statusText}catch(k){i=""}h||!a.isLocal||a.crossDomain?1223===h&&(h=204):h=j.text?200:404}j&&d(h,i,j,f.getAllResponseHeaders())},a.async?4===f.readyState?setTimeout(b):f.onreadystatechange=Xc[g]=b:b()},abort:function(){b&&b(void 0,!0)}}}});function Zc(){try{return new a.XMLHttpRequest}catch(b){}}function $c(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}m.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return m.globalEval(a),a}}}),m.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),m.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=y.head||m("head")[0]||y.documentElement;return{send:function(d,e){b=y.createElement("script"),b.async=!0,a.scriptCharset&&(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&&(b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,c||e(200,"success"))},c.insertBefore(b,c.firstChild)},abort:function(){b&&b.onload(void 0,!0)}}}});var _c=[],ad=/(=)\?(?=&|$)|\?\?/;m.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=_c.pop()||m.expando+"_"+vc++;return this[a]=!0,a}}),m.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(ad.test(b.url)?"url":"string"==typeof b.data&&!(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&ad.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=m.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(ad,"$1"+e):b.jsonp!==!1&&(b.url+=(wc.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||m.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,_c.push(e)),g&&m.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),m.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||y;var d=u.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=m.buildFragment([a],b,e),e&&e.length&&m(e).remove(),m.merge([],d.childNodes))};var bd=m.fn.load;m.fn.load=function(a,b,c){if("string"!=typeof a&&bd)return bd.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>=0&&(d=m.trim(a.slice(h,a.length)),a=a.slice(0,h)),m.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(f="POST"),g.length>0&&m.ajax({url:a,type:f,dataType:"html",data:b}).done(function(a){e=arguments,g.html(d?m("<div>").append(m.parseHTML(a)).find(d):a)}).complete(c&&function(a,b){g.each(c,e||[a.responseText,b,a])}),this},m.expr.filters.animated=function(a){return m.grep(m.timers,function(b){return a===b.elem}).length};var cd=a.document.documentElement;function dd(a){return m.isWindow(a)?a:9===a.nodeType?a.defaultView||a.parentWindow:!1}m.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=m.css(a,"position"),l=m(a),n={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=m.css(a,"top"),i=m.css(a,"left"),j=("absolute"===k||"fixed"===k)&&m.inArray("auto",[f,i])>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),m.isFunction(b)&&(b=b.call(a,c,h)),null!=b.top&&(n.top=b.top-h.top+g),null!=b.left&&(n.left=b.left-h.left+e),"using"in b?b.using.call(a,n):l.css(n)}},m.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){m.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&&e.ownerDocument;if(f)return b=f.documentElement,m.contains(b,e)?(typeof e.getBoundingClientRect!==K&&(d=e.getBoundingClientRect()),c=dd(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===m.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),m.nodeName(a[0],"html")||(c=a.offset()),c.top+=m.css(a[0],"borderTopWidth",!0),c.left+=m.css(a[0],"borderLeftWidth",!0)),{top:b.top-c.top-m.css(d,"marginTop",!0),left:b.left-c.left-m.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||cd;while(a&&!m.nodeName(a,"html")&&"static"===m.css(a,"position"))a=a.offsetParent;return a||cd})}}),m.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c=/Y/.test(b);m.fn[a]=function(d){return V(this,function(a,d,e){var f=dd(a);return void 0===e?f?b in f?f[b]:f.document.documentElement[d]:a[d]:void(f?f.scrollTo(c?m(f).scrollLeft():e,c?e:m(f).scrollTop()):a[d]=e)},a,d,arguments.length,null)}}),m.each(["top","left"],function(a,b){m.cssHooks[b]=Lb(k.pixelPosition,function(a,c){return c?(c=Jb(a,b),Hb.test(c)?m(a).position()[b]+"px":c):void 0})}),m.each({Height:"height",Width:"width"},function(a,b){m.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){m.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return V(this,function(b,c,d){var e;return m.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?m.css(b,c,g):m.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),m.fn.size=function(){return this.length},m.fn.andSelf=m.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return m});var ed=a.jQuery,fd=a.$;return m.noConflict=function(b){return a.$===m&&(a.$=fd),b&&a.jQuery===m&&(a.jQuery=ed),m},typeof b===K&&(a.jQuery=a.$=m),m});
|
@@ -0,0 +1,4343 @@
|
|
1
|
+
/**
|
2
|
+
* Sinon.JS 1.7.1, 2013/05/07
|
3
|
+
*
|
4
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
5
|
+
* @author Contributors: https://github.com/cjohansen/Sinon.JS/blob/master/AUTHORS
|
6
|
+
*
|
7
|
+
* (The BSD License)
|
8
|
+
*
|
9
|
+
* Copyright (c) 2010-2013, Christian Johansen, christian@cjohansen.no
|
10
|
+
* All rights reserved.
|
11
|
+
*
|
12
|
+
* Redistribution and use in source and binary forms, with or without modification,
|
13
|
+
* are permitted provided that the following conditions are met:
|
14
|
+
*
|
15
|
+
* * Redistributions of source code must retain the above copyright notice,
|
16
|
+
* this list of conditions and the following disclaimer.
|
17
|
+
* * Redistributions in binary form must reproduce the above copyright notice,
|
18
|
+
* this list of conditions and the following disclaimer in the documentation
|
19
|
+
* and/or other materials provided with the distribution.
|
20
|
+
* * Neither the name of Christian Johansen nor the names of his contributors
|
21
|
+
* may be used to endorse or promote products derived from this software
|
22
|
+
* without specific prior written permission.
|
23
|
+
*
|
24
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
25
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
26
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
27
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
28
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
29
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
30
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
31
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
32
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
33
|
+
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
34
|
+
*/
|
35
|
+
this.sinon = (function() {
|
36
|
+
var buster = (function(setTimeout, B) {
|
37
|
+
var isNode = typeof require == "function" && typeof module == "object";
|
38
|
+
var div = typeof document != "undefined" && document.createElement("div");
|
39
|
+
var F = function() {};
|
40
|
+
|
41
|
+
var buster = {
|
42
|
+
bind: function bind(obj, methOrProp) {
|
43
|
+
var method = typeof methOrProp == "string" ? obj[methOrProp] : methOrProp;
|
44
|
+
var args = Array.prototype.slice.call(arguments, 2);
|
45
|
+
return function() {
|
46
|
+
var allArgs = args.concat(Array.prototype.slice.call(arguments));
|
47
|
+
return method.apply(obj, allArgs);
|
48
|
+
};
|
49
|
+
},
|
50
|
+
|
51
|
+
partial: function partial(fn) {
|
52
|
+
var args = [].slice.call(arguments, 1);
|
53
|
+
return function() {
|
54
|
+
return fn.apply(this, args.concat([].slice.call(arguments)));
|
55
|
+
};
|
56
|
+
},
|
57
|
+
|
58
|
+
create: function create(object) {
|
59
|
+
F.prototype = object;
|
60
|
+
return new F();
|
61
|
+
},
|
62
|
+
|
63
|
+
extend: function extend(target) {
|
64
|
+
if (!target) {
|
65
|
+
return;
|
66
|
+
}
|
67
|
+
for (var i = 1, l = arguments.length, prop; i < l; ++i) {
|
68
|
+
for (prop in arguments[i]) {
|
69
|
+
target[prop] = arguments[i][prop];
|
70
|
+
}
|
71
|
+
}
|
72
|
+
return target;
|
73
|
+
},
|
74
|
+
|
75
|
+
nextTick: function nextTick(callback) {
|
76
|
+
if (typeof process != "undefined" && process.nextTick) {
|
77
|
+
return process.nextTick(callback);
|
78
|
+
}
|
79
|
+
setTimeout(callback, 0);
|
80
|
+
},
|
81
|
+
|
82
|
+
functionName: function functionName(func) {
|
83
|
+
if (!func) return "";
|
84
|
+
if (func.displayName) return func.displayName;
|
85
|
+
if (func.name) return func.name;
|
86
|
+
var matches = func.toString()
|
87
|
+
.match(/function\s+([^\(]+)/m);
|
88
|
+
return matches && matches[1] || "";
|
89
|
+
},
|
90
|
+
|
91
|
+
isNode: function isNode(obj) {
|
92
|
+
if (!div) return false;
|
93
|
+
try {
|
94
|
+
obj.appendChild(div);
|
95
|
+
obj.removeChild(div);
|
96
|
+
} catch (e) {
|
97
|
+
return false;
|
98
|
+
}
|
99
|
+
return true;
|
100
|
+
},
|
101
|
+
|
102
|
+
isElement: function isElement(obj) {
|
103
|
+
return obj && obj.nodeType === 1 && buster.isNode(obj);
|
104
|
+
},
|
105
|
+
|
106
|
+
isArray: function isArray(arr) {
|
107
|
+
return Object.prototype.toString.call(arr) == "[object Array]";
|
108
|
+
},
|
109
|
+
|
110
|
+
flatten: function flatten(arr) {
|
111
|
+
var result = [],
|
112
|
+
arr = arr || [];
|
113
|
+
for (var i = 0, l = arr.length; i < l; ++i) {
|
114
|
+
result = result.concat(buster.isArray(arr[i]) ? flatten(arr[i]) : arr[i]);
|
115
|
+
}
|
116
|
+
return result;
|
117
|
+
},
|
118
|
+
|
119
|
+
each: function each(arr, callback) {
|
120
|
+
for (var i = 0, l = arr.length; i < l; ++i) {
|
121
|
+
callback(arr[i]);
|
122
|
+
}
|
123
|
+
},
|
124
|
+
|
125
|
+
map: function map(arr, callback) {
|
126
|
+
var results = [];
|
127
|
+
for (var i = 0, l = arr.length; i < l; ++i) {
|
128
|
+
results.push(callback(arr[i]));
|
129
|
+
}
|
130
|
+
return results;
|
131
|
+
},
|
132
|
+
|
133
|
+
parallel: function parallel(fns, callback) {
|
134
|
+
function cb(err, res) {
|
135
|
+
if (typeof callback == "function") {
|
136
|
+
callback(err, res);
|
137
|
+
callback = null;
|
138
|
+
}
|
139
|
+
}
|
140
|
+
if (fns.length == 0) {
|
141
|
+
return cb(null, []);
|
142
|
+
}
|
143
|
+
var remaining = fns.length,
|
144
|
+
results = [];
|
145
|
+
|
146
|
+
function makeDone(num) {
|
147
|
+
return function done(err, result) {
|
148
|
+
if (err) {
|
149
|
+
return cb(err);
|
150
|
+
}
|
151
|
+
results[num] = result;
|
152
|
+
if (--remaining == 0) {
|
153
|
+
cb(null, results);
|
154
|
+
}
|
155
|
+
};
|
156
|
+
}
|
157
|
+
for (var i = 0, l = fns.length; i < l; ++i) {
|
158
|
+
fns[i](makeDone(i));
|
159
|
+
}
|
160
|
+
},
|
161
|
+
|
162
|
+
series: function series(fns, callback) {
|
163
|
+
function cb(err, res) {
|
164
|
+
if (typeof callback == "function") {
|
165
|
+
callback(err, res);
|
166
|
+
}
|
167
|
+
}
|
168
|
+
var remaining = fns.slice();
|
169
|
+
var results = [];
|
170
|
+
|
171
|
+
function callNext() {
|
172
|
+
if (remaining.length == 0) return cb(null, results);
|
173
|
+
var promise = remaining.shift()(next);
|
174
|
+
if (promise && typeof promise.then == "function") {
|
175
|
+
promise.then(buster.partial(next, null), next);
|
176
|
+
}
|
177
|
+
}
|
178
|
+
|
179
|
+
function next(err, result) {
|
180
|
+
if (err) return cb(err);
|
181
|
+
results.push(result);
|
182
|
+
callNext();
|
183
|
+
}
|
184
|
+
callNext();
|
185
|
+
},
|
186
|
+
|
187
|
+
countdown: function countdown(num, done) {
|
188
|
+
return function() {
|
189
|
+
if (--num == 0) done();
|
190
|
+
};
|
191
|
+
}
|
192
|
+
};
|
193
|
+
|
194
|
+
if (typeof process === "object" && typeof require === "function" && typeof module === "object") {
|
195
|
+
var crypto = require("crypto");
|
196
|
+
var path = require("path");
|
197
|
+
|
198
|
+
buster.tmpFile = function(fileName) {
|
199
|
+
var hashed = crypto.createHash("sha1");
|
200
|
+
hashed.update(fileName);
|
201
|
+
var tmpfileName = hashed.digest("hex");
|
202
|
+
|
203
|
+
if (process.platform == "win32") {
|
204
|
+
return path.join(process.env["TEMP"], tmpfileName);
|
205
|
+
} else {
|
206
|
+
return path.join("/tmp", tmpfileName);
|
207
|
+
}
|
208
|
+
};
|
209
|
+
}
|
210
|
+
|
211
|
+
if (Array.prototype.some) {
|
212
|
+
buster.some = function(arr, fn, thisp) {
|
213
|
+
return arr.some(fn, thisp);
|
214
|
+
};
|
215
|
+
} else {
|
216
|
+
// https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/some
|
217
|
+
buster.some = function(arr, fun, thisp) {
|
218
|
+
if (arr == null) {
|
219
|
+
throw new TypeError();
|
220
|
+
}
|
221
|
+
arr = Object(arr);
|
222
|
+
var len = arr.length >>> 0;
|
223
|
+
if (typeof fun !== "function") {
|
224
|
+
throw new TypeError();
|
225
|
+
}
|
226
|
+
|
227
|
+
for (var i = 0; i < len; i++) {
|
228
|
+
if (arr.hasOwnProperty(i) && fun.call(thisp, arr[i], i, arr)) {
|
229
|
+
return true;
|
230
|
+
}
|
231
|
+
}
|
232
|
+
|
233
|
+
return false;
|
234
|
+
};
|
235
|
+
}
|
236
|
+
|
237
|
+
if (Array.prototype.filter) {
|
238
|
+
buster.filter = function(arr, fn, thisp) {
|
239
|
+
return arr.filter(fn, thisp);
|
240
|
+
};
|
241
|
+
} else {
|
242
|
+
// https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/filter
|
243
|
+
buster.filter = function(fn, thisp) {
|
244
|
+
if (this == null) {
|
245
|
+
throw new TypeError();
|
246
|
+
}
|
247
|
+
|
248
|
+
var t = Object(this);
|
249
|
+
var len = t.length >>> 0;
|
250
|
+
if (typeof fn != "function") {
|
251
|
+
throw new TypeError();
|
252
|
+
}
|
253
|
+
|
254
|
+
var res = [];
|
255
|
+
for (var i = 0; i < len; i++) {
|
256
|
+
if (i in t) {
|
257
|
+
var val = t[i]; // in case fun mutates this
|
258
|
+
if (fn.call(thisp, val, i, t)) {
|
259
|
+
res.push(val);
|
260
|
+
}
|
261
|
+
}
|
262
|
+
}
|
263
|
+
|
264
|
+
return res;
|
265
|
+
};
|
266
|
+
}
|
267
|
+
|
268
|
+
if (isNode) {
|
269
|
+
module.exports = buster;
|
270
|
+
buster.eventEmitter = require("./buster-event-emitter");
|
271
|
+
Object.defineProperty(buster, "defineVersionGetter", {
|
272
|
+
get: function() {
|
273
|
+
return require("./define-version-getter");
|
274
|
+
}
|
275
|
+
});
|
276
|
+
}
|
277
|
+
|
278
|
+
return buster.extend(B || {}, buster);
|
279
|
+
}(setTimeout, buster));
|
280
|
+
if (typeof buster === "undefined") {
|
281
|
+
var buster = {};
|
282
|
+
}
|
283
|
+
|
284
|
+
if (typeof module === "object" && typeof require === "function") {
|
285
|
+
buster = require("buster-core");
|
286
|
+
}
|
287
|
+
|
288
|
+
buster.format = buster.format || {};
|
289
|
+
buster.format.excludeConstructors = ["Object", /^.$/];
|
290
|
+
buster.format.quoteStrings = true;
|
291
|
+
|
292
|
+
buster.format.ascii = (function() {
|
293
|
+
|
294
|
+
var hasOwn = Object.prototype.hasOwnProperty;
|
295
|
+
|
296
|
+
var specialObjects = [];
|
297
|
+
if (typeof global != "undefined") {
|
298
|
+
specialObjects.push({
|
299
|
+
obj: global,
|
300
|
+
value: "[object global]"
|
301
|
+
});
|
302
|
+
}
|
303
|
+
if (typeof document != "undefined") {
|
304
|
+
specialObjects.push({
|
305
|
+
obj: document,
|
306
|
+
value: "[object HTMLDocument]"
|
307
|
+
});
|
308
|
+
}
|
309
|
+
if (typeof window != "undefined") {
|
310
|
+
specialObjects.push({
|
311
|
+
obj: window,
|
312
|
+
value: "[object Window]"
|
313
|
+
});
|
314
|
+
}
|
315
|
+
|
316
|
+
function keys(object) {
|
317
|
+
var k = Object.keys && Object.keys(object) || [];
|
318
|
+
|
319
|
+
if (k.length == 0) {
|
320
|
+
for (var prop in object) {
|
321
|
+
if (hasOwn.call(object, prop)) {
|
322
|
+
k.push(prop);
|
323
|
+
}
|
324
|
+
}
|
325
|
+
}
|
326
|
+
|
327
|
+
return k.sort();
|
328
|
+
}
|
329
|
+
|
330
|
+
function isCircular(object, objects) {
|
331
|
+
if (typeof object != "object") {
|
332
|
+
return false;
|
333
|
+
}
|
334
|
+
|
335
|
+
for (var i = 0, l = objects.length; i < l; ++i) {
|
336
|
+
if (objects[i] === object) {
|
337
|
+
return true;
|
338
|
+
}
|
339
|
+
}
|
340
|
+
|
341
|
+
return false;
|
342
|
+
}
|
343
|
+
|
344
|
+
function ascii(object, processed, indent) {
|
345
|
+
if (typeof object == "string") {
|
346
|
+
var quote = typeof this.quoteStrings != "boolean" || this.quoteStrings;
|
347
|
+
return processed || quote ? '"' + object + '"' : object;
|
348
|
+
}
|
349
|
+
|
350
|
+
if (typeof object == "function" && !(object instanceof RegExp)) {
|
351
|
+
return ascii.func(object);
|
352
|
+
}
|
353
|
+
|
354
|
+
processed = processed || [];
|
355
|
+
|
356
|
+
if (isCircular(object, processed)) {
|
357
|
+
return "[Circular]";
|
358
|
+
}
|
359
|
+
|
360
|
+
if (Object.prototype.toString.call(object) == "[object Array]") {
|
361
|
+
return ascii.array.call(this, object, processed);
|
362
|
+
}
|
363
|
+
|
364
|
+
if (!object) {
|
365
|
+
return "" + object;
|
366
|
+
}
|
367
|
+
|
368
|
+
if (buster.isElement(object)) {
|
369
|
+
return ascii.element(object);
|
370
|
+
}
|
371
|
+
|
372
|
+
if (typeof object.toString == "function" && object.toString !== Object.prototype.toString) {
|
373
|
+
return object.toString();
|
374
|
+
}
|
375
|
+
|
376
|
+
for (var i = 0, l = specialObjects.length; i < l; i++) {
|
377
|
+
if (object === specialObjects[i].obj) {
|
378
|
+
return specialObjects[i].value;
|
379
|
+
}
|
380
|
+
}
|
381
|
+
|
382
|
+
return ascii.object.call(this, object, processed, indent);
|
383
|
+
}
|
384
|
+
|
385
|
+
ascii.func = function(func) {
|
386
|
+
return "function " + buster.functionName(func) + "() {}";
|
387
|
+
};
|
388
|
+
|
389
|
+
ascii.array = function(array, processed) {
|
390
|
+
processed = processed || [];
|
391
|
+
processed.push(array);
|
392
|
+
var pieces = [];
|
393
|
+
|
394
|
+
for (var i = 0, l = array.length; i < l; ++i) {
|
395
|
+
pieces.push(ascii.call(this, array[i], processed));
|
396
|
+
}
|
397
|
+
|
398
|
+
return "[" + pieces.join(", ") + "]";
|
399
|
+
};
|
400
|
+
|
401
|
+
ascii.object = function(object, processed, indent) {
|
402
|
+
processed = processed || [];
|
403
|
+
processed.push(object);
|
404
|
+
indent = indent || 0;
|
405
|
+
var pieces = [],
|
406
|
+
properties = keys(object),
|
407
|
+
prop, str, obj;
|
408
|
+
var is = "";
|
409
|
+
var length = 3;
|
410
|
+
|
411
|
+
for (var i = 0, l = indent; i < l; ++i) {
|
412
|
+
is += " ";
|
413
|
+
}
|
414
|
+
|
415
|
+
for (i = 0, l = properties.length; i < l; ++i) {
|
416
|
+
prop = properties[i];
|
417
|
+
obj = object[prop];
|
418
|
+
|
419
|
+
if (isCircular(obj, processed)) {
|
420
|
+
str = "[Circular]";
|
421
|
+
} else {
|
422
|
+
str = ascii.call(this, obj, processed, indent + 2);
|
423
|
+
}
|
424
|
+
|
425
|
+
str = (/\s/.test(prop) ? '"' + prop + '"' : prop) + ": " + str;
|
426
|
+
length += str.length;
|
427
|
+
pieces.push(str);
|
428
|
+
}
|
429
|
+
|
430
|
+
var cons = ascii.constructorName.call(this, object);
|
431
|
+
var prefix = cons ? "[" + cons + "] " : ""
|
432
|
+
|
433
|
+
return (length + indent) > 80 ? prefix + "{\n " + is + pieces.join(",\n " + is) + "\n" + is + "}" : prefix + "{ " + pieces.join(", ") + " }";
|
434
|
+
};
|
435
|
+
|
436
|
+
ascii.element = function(element) {
|
437
|
+
var tagName = element.tagName.toLowerCase();
|
438
|
+
var attrs = element.attributes,
|
439
|
+
attribute, pairs = [],
|
440
|
+
attrName;
|
441
|
+
|
442
|
+
for (var i = 0, l = attrs.length; i < l; ++i) {
|
443
|
+
attribute = attrs.item(i);
|
444
|
+
attrName = attribute.nodeName.toLowerCase()
|
445
|
+
.replace("html:", "");
|
446
|
+
|
447
|
+
if (attrName == "contenteditable" && attribute.nodeValue == "inherit") {
|
448
|
+
continue;
|
449
|
+
}
|
450
|
+
|
451
|
+
if ( !! attribute.nodeValue) {
|
452
|
+
pairs.push(attrName + "=\"" + attribute.nodeValue + "\"");
|
453
|
+
}
|
454
|
+
}
|
455
|
+
|
456
|
+
var formatted = "<" + tagName + (pairs.length > 0 ? " " : "");
|
457
|
+
var content = element.innerHTML;
|
458
|
+
|
459
|
+
if (content.length > 20) {
|
460
|
+
content = content.substr(0, 20) + "[...]";
|
461
|
+
}
|
462
|
+
|
463
|
+
var res = formatted + pairs.join(" ") + ">" + content + "</" + tagName + ">";
|
464
|
+
|
465
|
+
return res.replace(/ contentEditable="inherit"/, "");
|
466
|
+
};
|
467
|
+
|
468
|
+
ascii.constructorName = function(object) {
|
469
|
+
var name = buster.functionName(object && object.constructor);
|
470
|
+
var excludes = this.excludeConstructors || buster.format.excludeConstructors || [];
|
471
|
+
|
472
|
+
for (var i = 0, l = excludes.length; i < l; ++i) {
|
473
|
+
if (typeof excludes[i] == "string" && excludes[i] == name) {
|
474
|
+
return "";
|
475
|
+
} else if (excludes[i].test && excludes[i].test(name)) {
|
476
|
+
return "";
|
477
|
+
}
|
478
|
+
}
|
479
|
+
|
480
|
+
return name;
|
481
|
+
};
|
482
|
+
|
483
|
+
return ascii;
|
484
|
+
}());
|
485
|
+
|
486
|
+
if (typeof module != "undefined") {
|
487
|
+
module.exports = buster.format;
|
488
|
+
}
|
489
|
+
/*jslint eqeqeq: false, onevar: false, forin: true, nomen: false, regexp: false, plusplus: false*/
|
490
|
+
/*global module, require, __dirname, document*/
|
491
|
+
/**
|
492
|
+
* Sinon core utilities. For internal use only.
|
493
|
+
*
|
494
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
495
|
+
* @license BSD
|
496
|
+
*
|
497
|
+
* Copyright (c) 2010-2013 Christian Johansen
|
498
|
+
*/
|
499
|
+
|
500
|
+
var sinon = (function(buster) {
|
501
|
+
var div = typeof document != "undefined" && document.createElement("div");
|
502
|
+
var hasOwn = Object.prototype.hasOwnProperty;
|
503
|
+
|
504
|
+
function isDOMNode(obj) {
|
505
|
+
var success = false;
|
506
|
+
|
507
|
+
try {
|
508
|
+
obj.appendChild(div);
|
509
|
+
success = div.parentNode == obj;
|
510
|
+
} catch (e) {
|
511
|
+
return false;
|
512
|
+
} finally {
|
513
|
+
try {
|
514
|
+
obj.removeChild(div);
|
515
|
+
} catch (e) {
|
516
|
+
// Remove failed, not much we can do about that
|
517
|
+
}
|
518
|
+
}
|
519
|
+
|
520
|
+
return success;
|
521
|
+
}
|
522
|
+
|
523
|
+
function isElement(obj) {
|
524
|
+
return div && obj && obj.nodeType === 1 && isDOMNode(obj);
|
525
|
+
}
|
526
|
+
|
527
|
+
function isFunction(obj) {
|
528
|
+
return typeof obj === "function" || !! (obj && obj.constructor && obj.call && obj.apply);
|
529
|
+
}
|
530
|
+
|
531
|
+
function mirrorProperties(target, source) {
|
532
|
+
for (var prop in source) {
|
533
|
+
if (!hasOwn.call(target, prop)) {
|
534
|
+
target[prop] = source[prop];
|
535
|
+
}
|
536
|
+
}
|
537
|
+
}
|
538
|
+
|
539
|
+
function isRestorable(obj) {
|
540
|
+
return typeof obj === "function" && typeof obj.restore === "function" && obj.restore.sinon;
|
541
|
+
}
|
542
|
+
|
543
|
+
var sinon = {
|
544
|
+
wrapMethod: function wrapMethod(object, property, method) {
|
545
|
+
if (!object) {
|
546
|
+
throw new TypeError("Should wrap property of object");
|
547
|
+
}
|
548
|
+
|
549
|
+
if (typeof method != "function") {
|
550
|
+
throw new TypeError("Method wrapper should be function");
|
551
|
+
}
|
552
|
+
|
553
|
+
var wrappedMethod = object[property];
|
554
|
+
|
555
|
+
if (!isFunction(wrappedMethod)) {
|
556
|
+
throw new TypeError("Attempted to wrap " + (typeof wrappedMethod) + " property " + property + " as function");
|
557
|
+
}
|
558
|
+
|
559
|
+
if (wrappedMethod.restore && wrappedMethod.restore.sinon) {
|
560
|
+
throw new TypeError("Attempted to wrap " + property + " which is already wrapped");
|
561
|
+
}
|
562
|
+
|
563
|
+
if (wrappedMethod.calledBefore) {
|
564
|
+
var verb = !! wrappedMethod.returns ? "stubbed" : "spied on";
|
565
|
+
throw new TypeError("Attempted to wrap " + property + " which is already " + verb);
|
566
|
+
}
|
567
|
+
|
568
|
+
// IE 8 does not support hasOwnProperty on the window object.
|
569
|
+
var owned = hasOwn.call(object, property);
|
570
|
+
object[property] = method;
|
571
|
+
method.displayName = property;
|
572
|
+
|
573
|
+
method.restore = function() {
|
574
|
+
// For prototype properties try to reset by delete first.
|
575
|
+
// If this fails (ex: localStorage on mobile safari) then force a reset
|
576
|
+
// via direct assignment.
|
577
|
+
if (!owned) {
|
578
|
+
delete object[property];
|
579
|
+
}
|
580
|
+
if (object[property] === method) {
|
581
|
+
object[property] = wrappedMethod;
|
582
|
+
}
|
583
|
+
};
|
584
|
+
|
585
|
+
method.restore.sinon = true;
|
586
|
+
mirrorProperties(method, wrappedMethod);
|
587
|
+
|
588
|
+
return method;
|
589
|
+
},
|
590
|
+
|
591
|
+
extend: function extend(target) {
|
592
|
+
for (var i = 1, l = arguments.length; i < l; i += 1) {
|
593
|
+
for (var prop in arguments[i]) {
|
594
|
+
if (arguments[i].hasOwnProperty(prop)) {
|
595
|
+
target[prop] = arguments[i][prop];
|
596
|
+
}
|
597
|
+
|
598
|
+
// DONT ENUM bug, only care about toString
|
599
|
+
if (arguments[i].hasOwnProperty("toString") && arguments[i].toString != target.toString) {
|
600
|
+
target.toString = arguments[i].toString;
|
601
|
+
}
|
602
|
+
}
|
603
|
+
}
|
604
|
+
|
605
|
+
return target;
|
606
|
+
},
|
607
|
+
|
608
|
+
create: function create(proto) {
|
609
|
+
var F = function() {};
|
610
|
+
F.prototype = proto;
|
611
|
+
return new F();
|
612
|
+
},
|
613
|
+
|
614
|
+
deepEqual: function deepEqual(a, b) {
|
615
|
+
if (sinon.match && sinon.match.isMatcher(a)) {
|
616
|
+
return a.test(b);
|
617
|
+
}
|
618
|
+
if (typeof a != "object" || typeof b != "object") {
|
619
|
+
return a === b;
|
620
|
+
}
|
621
|
+
|
622
|
+
if (isElement(a) || isElement(b)) {
|
623
|
+
return a === b;
|
624
|
+
}
|
625
|
+
|
626
|
+
if (a === b) {
|
627
|
+
return true;
|
628
|
+
}
|
629
|
+
|
630
|
+
if ((a === null && b !== null) || (a !== null && b === null)) {
|
631
|
+
return false;
|
632
|
+
}
|
633
|
+
|
634
|
+
var aString = Object.prototype.toString.call(a);
|
635
|
+
if (aString != Object.prototype.toString.call(b)) {
|
636
|
+
return false;
|
637
|
+
}
|
638
|
+
|
639
|
+
if (aString == "[object Array]") {
|
640
|
+
if (a.length !== b.length) {
|
641
|
+
return false;
|
642
|
+
}
|
643
|
+
|
644
|
+
for (var i = 0, l = a.length; i < l; i += 1) {
|
645
|
+
if (!deepEqual(a[i], b[i])) {
|
646
|
+
return false;
|
647
|
+
}
|
648
|
+
}
|
649
|
+
|
650
|
+
return true;
|
651
|
+
}
|
652
|
+
|
653
|
+
var prop, aLength = 0,
|
654
|
+
bLength = 0;
|
655
|
+
|
656
|
+
for (prop in a) {
|
657
|
+
aLength += 1;
|
658
|
+
|
659
|
+
if (!deepEqual(a[prop], b[prop])) {
|
660
|
+
return false;
|
661
|
+
}
|
662
|
+
}
|
663
|
+
|
664
|
+
for (prop in b) {
|
665
|
+
bLength += 1;
|
666
|
+
}
|
667
|
+
|
668
|
+
return aLength == bLength;
|
669
|
+
},
|
670
|
+
|
671
|
+
functionName: function functionName(func) {
|
672
|
+
var name = func.displayName || func.name;
|
673
|
+
|
674
|
+
// Use function decomposition as a last resort to get function
|
675
|
+
// name. Does not rely on function decomposition to work - if it
|
676
|
+
// doesn't debugging will be slightly less informative
|
677
|
+
// (i.e. toString will say 'spy' rather than 'myFunc').
|
678
|
+
if (!name) {
|
679
|
+
var matches = func.toString()
|
680
|
+
.match(/function ([^\s\(]+)/);
|
681
|
+
name = matches && matches[1];
|
682
|
+
}
|
683
|
+
|
684
|
+
return name;
|
685
|
+
},
|
686
|
+
|
687
|
+
functionToString: function toString() {
|
688
|
+
if (this.getCall && this.callCount) {
|
689
|
+
var thisValue, prop, i = this.callCount;
|
690
|
+
|
691
|
+
while (i--) {
|
692
|
+
thisValue = this.getCall(i)
|
693
|
+
.thisValue;
|
694
|
+
|
695
|
+
for (prop in thisValue) {
|
696
|
+
if (thisValue[prop] === this) {
|
697
|
+
return prop;
|
698
|
+
}
|
699
|
+
}
|
700
|
+
}
|
701
|
+
}
|
702
|
+
|
703
|
+
return this.displayName || "sinon fake";
|
704
|
+
},
|
705
|
+
|
706
|
+
getConfig: function(custom) {
|
707
|
+
var config = {};
|
708
|
+
custom = custom || {};
|
709
|
+
var defaults = sinon.defaultConfig;
|
710
|
+
|
711
|
+
for (var prop in defaults) {
|
712
|
+
if (defaults.hasOwnProperty(prop)) {
|
713
|
+
config[prop] = custom.hasOwnProperty(prop) ? custom[prop] : defaults[prop];
|
714
|
+
}
|
715
|
+
}
|
716
|
+
|
717
|
+
return config;
|
718
|
+
},
|
719
|
+
|
720
|
+
format: function(val) {
|
721
|
+
return "" + val;
|
722
|
+
},
|
723
|
+
|
724
|
+
defaultConfig: {
|
725
|
+
injectIntoThis: true,
|
726
|
+
injectInto: null,
|
727
|
+
properties: ["spy", "stub", "mock", "clock", "server", "requests"],
|
728
|
+
useFakeTimers: true,
|
729
|
+
useFakeServer: true
|
730
|
+
},
|
731
|
+
|
732
|
+
timesInWords: function timesInWords(count) {
|
733
|
+
return count == 1 && "once" || count == 2 && "twice" || count == 3 && "thrice" || (count || 0) + " times";
|
734
|
+
},
|
735
|
+
|
736
|
+
calledInOrder: function(spies) {
|
737
|
+
for (var i = 1, l = spies.length; i < l; i++) {
|
738
|
+
if (!spies[i - 1].calledBefore(spies[i]) || !spies[i].called) {
|
739
|
+
return false;
|
740
|
+
}
|
741
|
+
}
|
742
|
+
|
743
|
+
return true;
|
744
|
+
},
|
745
|
+
|
746
|
+
orderByFirstCall: function(spies) {
|
747
|
+
return spies.sort(function(a, b) {
|
748
|
+
// uuid, won't ever be equal
|
749
|
+
var aCall = a.getCall(0);
|
750
|
+
var bCall = b.getCall(0);
|
751
|
+
var aId = aCall && aCall.callId || -1;
|
752
|
+
var bId = bCall && bCall.callId || -1;
|
753
|
+
|
754
|
+
return aId < bId ? -1 : 1;
|
755
|
+
});
|
756
|
+
},
|
757
|
+
|
758
|
+
log: function() {},
|
759
|
+
|
760
|
+
logError: function(label, err) {
|
761
|
+
var msg = label + " threw exception: "
|
762
|
+
sinon.log(msg + "[" + err.name + "] " + err.message);
|
763
|
+
if (err.stack) {
|
764
|
+
sinon.log(err.stack);
|
765
|
+
}
|
766
|
+
|
767
|
+
setTimeout(function() {
|
768
|
+
err.message = msg + err.message;
|
769
|
+
throw err;
|
770
|
+
}, 0);
|
771
|
+
},
|
772
|
+
|
773
|
+
typeOf: function(value) {
|
774
|
+
if (value === null) {
|
775
|
+
return "null";
|
776
|
+
} else if (value === undefined) {
|
777
|
+
return "undefined";
|
778
|
+
}
|
779
|
+
var string = Object.prototype.toString.call(value);
|
780
|
+
return string.substring(8, string.length - 1)
|
781
|
+
.toLowerCase();
|
782
|
+
},
|
783
|
+
|
784
|
+
createStubInstance: function(constructor) {
|
785
|
+
if (typeof constructor !== "function") {
|
786
|
+
throw new TypeError("The constructor should be a function.");
|
787
|
+
}
|
788
|
+
return sinon.stub(sinon.create(constructor.prototype));
|
789
|
+
},
|
790
|
+
|
791
|
+
restore: function(object) {
|
792
|
+
if (object !== null && typeof object === "object") {
|
793
|
+
for (var prop in object) {
|
794
|
+
if (isRestorable(object[prop])) {
|
795
|
+
object[prop].restore();
|
796
|
+
}
|
797
|
+
}
|
798
|
+
} else if (isRestorable(object)) {
|
799
|
+
object.restore();
|
800
|
+
}
|
801
|
+
}
|
802
|
+
};
|
803
|
+
|
804
|
+
var isNode = typeof module == "object" && typeof require == "function";
|
805
|
+
|
806
|
+
if (isNode) {
|
807
|
+
try {
|
808
|
+
buster = {
|
809
|
+
format: require("buster-format")
|
810
|
+
};
|
811
|
+
} catch (e) {}
|
812
|
+
module.exports = sinon;
|
813
|
+
module.exports.spy = require("./sinon/spy");
|
814
|
+
module.exports.spyCall = require("./sinon/call");
|
815
|
+
module.exports.stub = require("./sinon/stub");
|
816
|
+
module.exports.mock = require("./sinon/mock");
|
817
|
+
module.exports.collection = require("./sinon/collection");
|
818
|
+
module.exports.assert = require("./sinon/assert");
|
819
|
+
module.exports.sandbox = require("./sinon/sandbox");
|
820
|
+
module.exports.test = require("./sinon/test");
|
821
|
+
module.exports.testCase = require("./sinon/test_case");
|
822
|
+
module.exports.assert = require("./sinon/assert");
|
823
|
+
module.exports.match = require("./sinon/match");
|
824
|
+
}
|
825
|
+
|
826
|
+
if (buster) {
|
827
|
+
var formatter = sinon.create(buster.format);
|
828
|
+
formatter.quoteStrings = false;
|
829
|
+
sinon.format = function() {
|
830
|
+
return formatter.ascii.apply(formatter, arguments);
|
831
|
+
};
|
832
|
+
} else if (isNode) {
|
833
|
+
try {
|
834
|
+
var util = require("util");
|
835
|
+
sinon.format = function(value) {
|
836
|
+
return typeof value == "object" && value.toString === Object.prototype.toString ? util.inspect(value) : value;
|
837
|
+
};
|
838
|
+
} catch (e) {
|
839
|
+
/* Node, but no util module - would be very old, but better safe than
|
840
|
+
sorry */
|
841
|
+
}
|
842
|
+
}
|
843
|
+
|
844
|
+
return sinon;
|
845
|
+
}(typeof buster == "object" && buster));
|
846
|
+
|
847
|
+
/* @depend ../sinon.js */
|
848
|
+
/*jslint eqeqeq: false, onevar: false, plusplus: false*/
|
849
|
+
/*global module, require, sinon*/
|
850
|
+
/**
|
851
|
+
* Match functions
|
852
|
+
*
|
853
|
+
* @author Maximilian Antoni (mail@maxantoni.de)
|
854
|
+
* @license BSD
|
855
|
+
*
|
856
|
+
* Copyright (c) 2012 Maximilian Antoni
|
857
|
+
*/
|
858
|
+
|
859
|
+
(function(sinon) {
|
860
|
+
var commonJSModule = typeof module == "object" && typeof require == "function";
|
861
|
+
|
862
|
+
if (!sinon && commonJSModule) {
|
863
|
+
sinon = require("../sinon");
|
864
|
+
}
|
865
|
+
|
866
|
+
if (!sinon) {
|
867
|
+
return;
|
868
|
+
}
|
869
|
+
|
870
|
+
function assertType(value, type, name) {
|
871
|
+
var actual = sinon.typeOf(value);
|
872
|
+
if (actual !== type) {
|
873
|
+
throw new TypeError("Expected type of " + name + " to be " + type + ", but was " + actual);
|
874
|
+
}
|
875
|
+
}
|
876
|
+
|
877
|
+
var matcher = {
|
878
|
+
toString: function() {
|
879
|
+
return this.message;
|
880
|
+
}
|
881
|
+
};
|
882
|
+
|
883
|
+
function isMatcher(object) {
|
884
|
+
return matcher.isPrototypeOf(object);
|
885
|
+
}
|
886
|
+
|
887
|
+
function matchObject(expectation, actual) {
|
888
|
+
if (actual === null || actual === undefined) {
|
889
|
+
return false;
|
890
|
+
}
|
891
|
+
for (var key in expectation) {
|
892
|
+
if (expectation.hasOwnProperty(key)) {
|
893
|
+
var exp = expectation[key];
|
894
|
+
var act = actual[key];
|
895
|
+
if (match.isMatcher(exp)) {
|
896
|
+
if (!exp.test(act)) {
|
897
|
+
return false;
|
898
|
+
}
|
899
|
+
} else if (sinon.typeOf(exp) === "object") {
|
900
|
+
if (!matchObject(exp, act)) {
|
901
|
+
return false;
|
902
|
+
}
|
903
|
+
} else if (!sinon.deepEqual(exp, act)) {
|
904
|
+
return false;
|
905
|
+
}
|
906
|
+
}
|
907
|
+
}
|
908
|
+
return true;
|
909
|
+
}
|
910
|
+
|
911
|
+
matcher.or = function(m2) {
|
912
|
+
if (!isMatcher(m2)) {
|
913
|
+
throw new TypeError("Matcher expected");
|
914
|
+
}
|
915
|
+
var m1 = this;
|
916
|
+
var or = sinon.create(matcher);
|
917
|
+
or.test = function(actual) {
|
918
|
+
return m1.test(actual) || m2.test(actual);
|
919
|
+
};
|
920
|
+
or.message = m1.message + ".or(" + m2.message + ")";
|
921
|
+
return or;
|
922
|
+
};
|
923
|
+
|
924
|
+
matcher.and = function(m2) {
|
925
|
+
if (!isMatcher(m2)) {
|
926
|
+
throw new TypeError("Matcher expected");
|
927
|
+
}
|
928
|
+
var m1 = this;
|
929
|
+
var and = sinon.create(matcher);
|
930
|
+
and.test = function(actual) {
|
931
|
+
return m1.test(actual) && m2.test(actual);
|
932
|
+
};
|
933
|
+
and.message = m1.message + ".and(" + m2.message + ")";
|
934
|
+
return and;
|
935
|
+
};
|
936
|
+
|
937
|
+
var match = function(expectation, message) {
|
938
|
+
var m = sinon.create(matcher);
|
939
|
+
var type = sinon.typeOf(expectation);
|
940
|
+
switch (type) {
|
941
|
+
case "object":
|
942
|
+
if (typeof expectation.test === "function") {
|
943
|
+
m.test = function(actual) {
|
944
|
+
return expectation.test(actual) === true;
|
945
|
+
};
|
946
|
+
m.message = "match(" + sinon.functionName(expectation.test) + ")";
|
947
|
+
return m;
|
948
|
+
}
|
949
|
+
var str = [];
|
950
|
+
for (var key in expectation) {
|
951
|
+
if (expectation.hasOwnProperty(key)) {
|
952
|
+
str.push(key + ": " + expectation[key]);
|
953
|
+
}
|
954
|
+
}
|
955
|
+
m.test = function(actual) {
|
956
|
+
return matchObject(expectation, actual);
|
957
|
+
};
|
958
|
+
m.message = "match(" + str.join(", ") + ")";
|
959
|
+
break;
|
960
|
+
case "number":
|
961
|
+
m.test = function(actual) {
|
962
|
+
return expectation == actual;
|
963
|
+
};
|
964
|
+
break;
|
965
|
+
case "string":
|
966
|
+
m.test = function(actual) {
|
967
|
+
if (typeof actual !== "string") {
|
968
|
+
return false;
|
969
|
+
}
|
970
|
+
return actual.indexOf(expectation) !== -1;
|
971
|
+
};
|
972
|
+
m.message = "match(\"" + expectation + "\")";
|
973
|
+
break;
|
974
|
+
case "regexp":
|
975
|
+
m.test = function(actual) {
|
976
|
+
if (typeof actual !== "string") {
|
977
|
+
return false;
|
978
|
+
}
|
979
|
+
return expectation.test(actual);
|
980
|
+
};
|
981
|
+
break;
|
982
|
+
case "function":
|
983
|
+
m.test = expectation;
|
984
|
+
if (message) {
|
985
|
+
m.message = message;
|
986
|
+
} else {
|
987
|
+
m.message = "match(" + sinon.functionName(expectation) + ")";
|
988
|
+
}
|
989
|
+
break;
|
990
|
+
default:
|
991
|
+
m.test = function(actual) {
|
992
|
+
return sinon.deepEqual(expectation, actual);
|
993
|
+
};
|
994
|
+
}
|
995
|
+
if (!m.message) {
|
996
|
+
m.message = "match(" + expectation + ")";
|
997
|
+
}
|
998
|
+
return m;
|
999
|
+
};
|
1000
|
+
|
1001
|
+
match.isMatcher = isMatcher;
|
1002
|
+
|
1003
|
+
match.any = match(function() {
|
1004
|
+
return true;
|
1005
|
+
}, "any");
|
1006
|
+
|
1007
|
+
match.defined = match(function(actual) {
|
1008
|
+
return actual !== null && actual !== undefined;
|
1009
|
+
}, "defined");
|
1010
|
+
|
1011
|
+
match.truthy = match(function(actual) {
|
1012
|
+
return !!actual;
|
1013
|
+
}, "truthy");
|
1014
|
+
|
1015
|
+
match.falsy = match(function(actual) {
|
1016
|
+
return !actual;
|
1017
|
+
}, "falsy");
|
1018
|
+
|
1019
|
+
match.same = function(expectation) {
|
1020
|
+
return match(function(actual) {
|
1021
|
+
return expectation === actual;
|
1022
|
+
}, "same(" + expectation + ")");
|
1023
|
+
};
|
1024
|
+
|
1025
|
+
match.typeOf = function(type) {
|
1026
|
+
assertType(type, "string", "type");
|
1027
|
+
return match(function(actual) {
|
1028
|
+
return sinon.typeOf(actual) === type;
|
1029
|
+
}, "typeOf(\"" + type + "\")");
|
1030
|
+
};
|
1031
|
+
|
1032
|
+
match.instanceOf = function(type) {
|
1033
|
+
assertType(type, "function", "type");
|
1034
|
+
return match(function(actual) {
|
1035
|
+
return actual instanceof type;
|
1036
|
+
}, "instanceOf(" + sinon.functionName(type) + ")");
|
1037
|
+
};
|
1038
|
+
|
1039
|
+
function createPropertyMatcher(propertyTest, messagePrefix) {
|
1040
|
+
return function(property, value) {
|
1041
|
+
assertType(property, "string", "property");
|
1042
|
+
var onlyProperty = arguments.length === 1;
|
1043
|
+
var message = messagePrefix + "(\"" + property + "\"";
|
1044
|
+
if (!onlyProperty) {
|
1045
|
+
message += ", " + value;
|
1046
|
+
}
|
1047
|
+
message += ")";
|
1048
|
+
return match(function(actual) {
|
1049
|
+
if (actual === undefined || actual === null || !propertyTest(actual, property)) {
|
1050
|
+
return false;
|
1051
|
+
}
|
1052
|
+
return onlyProperty || sinon.deepEqual(value, actual[property]);
|
1053
|
+
}, message);
|
1054
|
+
};
|
1055
|
+
}
|
1056
|
+
|
1057
|
+
match.has = createPropertyMatcher(function(actual, property) {
|
1058
|
+
if (typeof actual === "object") {
|
1059
|
+
return property in actual;
|
1060
|
+
}
|
1061
|
+
return actual[property] !== undefined;
|
1062
|
+
}, "has");
|
1063
|
+
|
1064
|
+
match.hasOwn = createPropertyMatcher(function(actual, property) {
|
1065
|
+
return actual.hasOwnProperty(property);
|
1066
|
+
}, "hasOwn");
|
1067
|
+
|
1068
|
+
match.bool = match.typeOf("boolean");
|
1069
|
+
match.number = match.typeOf("number");
|
1070
|
+
match.string = match.typeOf("string");
|
1071
|
+
match.object = match.typeOf("object");
|
1072
|
+
match.func = match.typeOf("function");
|
1073
|
+
match.array = match.typeOf("array");
|
1074
|
+
match.regexp = match.typeOf("regexp");
|
1075
|
+
match.date = match.typeOf("date");
|
1076
|
+
|
1077
|
+
if (commonJSModule) {
|
1078
|
+
module.exports = match;
|
1079
|
+
} else {
|
1080
|
+
sinon.match = match;
|
1081
|
+
}
|
1082
|
+
}(typeof sinon == "object" && sinon || null));
|
1083
|
+
|
1084
|
+
/**
|
1085
|
+
* @depend ../sinon.js
|
1086
|
+
* @depend match.js
|
1087
|
+
*/
|
1088
|
+
/*jslint eqeqeq: false, onevar: false, plusplus: false*/
|
1089
|
+
/*global module, require, sinon*/
|
1090
|
+
/**
|
1091
|
+
* Spy calls
|
1092
|
+
*
|
1093
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
1094
|
+
* @author Maximilian Antoni (mail@maxantoni.de)
|
1095
|
+
* @license BSD
|
1096
|
+
*
|
1097
|
+
* Copyright (c) 2010-2013 Christian Johansen
|
1098
|
+
* Copyright (c) 2013 Maximilian Antoni
|
1099
|
+
*/
|
1100
|
+
|
1101
|
+
(function(sinon) {
|
1102
|
+
var commonJSModule = typeof module == "object" && typeof require == "function";
|
1103
|
+
if (!sinon && commonJSModule) {
|
1104
|
+
sinon = require("../sinon");
|
1105
|
+
}
|
1106
|
+
|
1107
|
+
if (!sinon) {
|
1108
|
+
return;
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
function throwYieldError(proxy, text, args) {
|
1112
|
+
var msg = sinon.functionName(proxy) + text;
|
1113
|
+
if (args.length) {
|
1114
|
+
msg += " Received [" + slice.call(args)
|
1115
|
+
.join(", ") + "]";
|
1116
|
+
}
|
1117
|
+
throw new Error(msg);
|
1118
|
+
}
|
1119
|
+
|
1120
|
+
var slice = Array.prototype.slice;
|
1121
|
+
|
1122
|
+
var callProto = {
|
1123
|
+
calledOn: function calledOn(thisValue) {
|
1124
|
+
if (sinon.match && sinon.match.isMatcher(thisValue)) {
|
1125
|
+
return thisValue.test(this.thisValue);
|
1126
|
+
}
|
1127
|
+
return this.thisValue === thisValue;
|
1128
|
+
},
|
1129
|
+
|
1130
|
+
calledWith: function calledWith() {
|
1131
|
+
for (var i = 0, l = arguments.length; i < l; i += 1) {
|
1132
|
+
if (!sinon.deepEqual(arguments[i], this.args[i])) {
|
1133
|
+
return false;
|
1134
|
+
}
|
1135
|
+
}
|
1136
|
+
|
1137
|
+
return true;
|
1138
|
+
},
|
1139
|
+
|
1140
|
+
calledWithMatch: function calledWithMatch() {
|
1141
|
+
for (var i = 0, l = arguments.length; i < l; i += 1) {
|
1142
|
+
var actual = this.args[i];
|
1143
|
+
var expectation = arguments[i];
|
1144
|
+
if (!sinon.match || !sinon.match(expectation)
|
1145
|
+
.test(actual)) {
|
1146
|
+
return false;
|
1147
|
+
}
|
1148
|
+
}
|
1149
|
+
return true;
|
1150
|
+
},
|
1151
|
+
|
1152
|
+
calledWithExactly: function calledWithExactly() {
|
1153
|
+
return arguments.length == this.args.length && this.calledWith.apply(this, arguments);
|
1154
|
+
},
|
1155
|
+
|
1156
|
+
notCalledWith: function notCalledWith() {
|
1157
|
+
return !this.calledWith.apply(this, arguments);
|
1158
|
+
},
|
1159
|
+
|
1160
|
+
notCalledWithMatch: function notCalledWithMatch() {
|
1161
|
+
return !this.calledWithMatch.apply(this, arguments);
|
1162
|
+
},
|
1163
|
+
|
1164
|
+
returned: function returned(value) {
|
1165
|
+
return sinon.deepEqual(value, this.returnValue);
|
1166
|
+
},
|
1167
|
+
|
1168
|
+
threw: function threw(error) {
|
1169
|
+
if (typeof error === "undefined" || !this.exception) {
|
1170
|
+
return !!this.exception;
|
1171
|
+
}
|
1172
|
+
|
1173
|
+
return this.exception === error || this.exception.name === error;
|
1174
|
+
},
|
1175
|
+
|
1176
|
+
calledWithNew: function calledWithNew(thisValue) {
|
1177
|
+
return this.thisValue instanceof this.proxy;
|
1178
|
+
},
|
1179
|
+
|
1180
|
+
calledBefore: function(other) {
|
1181
|
+
return this.callId < other.callId;
|
1182
|
+
},
|
1183
|
+
|
1184
|
+
calledAfter: function(other) {
|
1185
|
+
return this.callId > other.callId;
|
1186
|
+
},
|
1187
|
+
|
1188
|
+
callArg: function(pos) {
|
1189
|
+
this.args[pos]();
|
1190
|
+
},
|
1191
|
+
|
1192
|
+
callArgOn: function(pos, thisValue) {
|
1193
|
+
this.args[pos].apply(thisValue);
|
1194
|
+
},
|
1195
|
+
|
1196
|
+
callArgWith: function(pos) {
|
1197
|
+
this.callArgOnWith.apply(this, [pos, null].concat(slice.call(arguments, 1)));
|
1198
|
+
},
|
1199
|
+
|
1200
|
+
callArgOnWith: function(pos, thisValue) {
|
1201
|
+
var args = slice.call(arguments, 2);
|
1202
|
+
this.args[pos].apply(thisValue, args);
|
1203
|
+
},
|
1204
|
+
|
1205
|
+
"yield": function() {
|
1206
|
+
this.yieldOn.apply(this, [null].concat(slice.call(arguments, 0)));
|
1207
|
+
},
|
1208
|
+
|
1209
|
+
yieldOn: function(thisValue) {
|
1210
|
+
var args = this.args;
|
1211
|
+
for (var i = 0, l = args.length; i < l; ++i) {
|
1212
|
+
if (typeof args[i] === "function") {
|
1213
|
+
args[i].apply(thisValue, slice.call(arguments, 1));
|
1214
|
+
return;
|
1215
|
+
}
|
1216
|
+
}
|
1217
|
+
throwYieldError(this.proxy, " cannot yield since no callback was passed.", args);
|
1218
|
+
},
|
1219
|
+
|
1220
|
+
yieldTo: function(prop) {
|
1221
|
+
this.yieldToOn.apply(this, [prop, null].concat(slice.call(arguments, 1)));
|
1222
|
+
},
|
1223
|
+
|
1224
|
+
yieldToOn: function(prop, thisValue) {
|
1225
|
+
var args = this.args;
|
1226
|
+
for (var i = 0, l = args.length; i < l; ++i) {
|
1227
|
+
if (args[i] && typeof args[i][prop] === "function") {
|
1228
|
+
args[i][prop].apply(thisValue, slice.call(arguments, 2));
|
1229
|
+
return;
|
1230
|
+
}
|
1231
|
+
}
|
1232
|
+
throwYieldError(this.proxy, " cannot yield to '" + prop + "' since no callback was passed.", args);
|
1233
|
+
},
|
1234
|
+
|
1235
|
+
toString: function() {
|
1236
|
+
var callStr = this.proxy.toString() + "(";
|
1237
|
+
var args = [];
|
1238
|
+
|
1239
|
+
for (var i = 0, l = this.args.length; i < l; ++i) {
|
1240
|
+
args.push(sinon.format(this.args[i]));
|
1241
|
+
}
|
1242
|
+
|
1243
|
+
callStr = callStr + args.join(", ") + ")";
|
1244
|
+
|
1245
|
+
if (typeof this.returnValue != "undefined") {
|
1246
|
+
callStr += " => " + sinon.format(this.returnValue);
|
1247
|
+
}
|
1248
|
+
|
1249
|
+
if (this.exception) {
|
1250
|
+
callStr += " !" + this.exception.name;
|
1251
|
+
|
1252
|
+
if (this.exception.message) {
|
1253
|
+
callStr += "(" + this.exception.message + ")";
|
1254
|
+
}
|
1255
|
+
}
|
1256
|
+
|
1257
|
+
return callStr;
|
1258
|
+
}
|
1259
|
+
};
|
1260
|
+
|
1261
|
+
callProto.invokeCallback = callProto.yield;
|
1262
|
+
|
1263
|
+
function createSpyCall(spy, thisValue, args, returnValue, exception, id) {
|
1264
|
+
if (typeof id !== "number") {
|
1265
|
+
throw new TypeError("Call id is not a number");
|
1266
|
+
}
|
1267
|
+
var proxyCall = sinon.create(callProto);
|
1268
|
+
proxyCall.proxy = spy;
|
1269
|
+
proxyCall.thisValue = thisValue;
|
1270
|
+
proxyCall.args = args;
|
1271
|
+
proxyCall.returnValue = returnValue;
|
1272
|
+
proxyCall.exception = exception;
|
1273
|
+
proxyCall.callId = id;
|
1274
|
+
|
1275
|
+
return proxyCall;
|
1276
|
+
};
|
1277
|
+
createSpyCall.toString = callProto.toString; // used by mocks
|
1278
|
+
|
1279
|
+
if (commonJSModule) {
|
1280
|
+
module.exports = createSpyCall;
|
1281
|
+
} else {
|
1282
|
+
sinon.spyCall = createSpyCall;
|
1283
|
+
}
|
1284
|
+
}(typeof sinon == "object" && sinon || null));
|
1285
|
+
|
1286
|
+
|
1287
|
+
/**
|
1288
|
+
* @depend ../sinon.js
|
1289
|
+
* @depend call.js
|
1290
|
+
*/
|
1291
|
+
/*jslint eqeqeq: false, onevar: false, plusplus: false*/
|
1292
|
+
/*global module, require, sinon*/
|
1293
|
+
/**
|
1294
|
+
* Spy functions
|
1295
|
+
*
|
1296
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
1297
|
+
* @license BSD
|
1298
|
+
*
|
1299
|
+
* Copyright (c) 2010-2013 Christian Johansen
|
1300
|
+
*/
|
1301
|
+
|
1302
|
+
(function(sinon) {
|
1303
|
+
var commonJSModule = typeof module == "object" && typeof require == "function";
|
1304
|
+
var push = Array.prototype.push;
|
1305
|
+
var slice = Array.prototype.slice;
|
1306
|
+
var callId = 0;
|
1307
|
+
|
1308
|
+
if (!sinon && commonJSModule) {
|
1309
|
+
sinon = require("../sinon");
|
1310
|
+
}
|
1311
|
+
|
1312
|
+
if (!sinon) {
|
1313
|
+
return;
|
1314
|
+
}
|
1315
|
+
|
1316
|
+
function spy(object, property) {
|
1317
|
+
if (!property && typeof object == "function") {
|
1318
|
+
return spy.create(object);
|
1319
|
+
}
|
1320
|
+
|
1321
|
+
if (!object && !property) {
|
1322
|
+
return spy.create(function() {});
|
1323
|
+
}
|
1324
|
+
|
1325
|
+
var method = object[property];
|
1326
|
+
return sinon.wrapMethod(object, property, spy.create(method));
|
1327
|
+
}
|
1328
|
+
|
1329
|
+
function matchingFake(fakes, args, strict) {
|
1330
|
+
if (!fakes) {
|
1331
|
+
return;
|
1332
|
+
}
|
1333
|
+
|
1334
|
+
var alen = args.length;
|
1335
|
+
|
1336
|
+
for (var i = 0, l = fakes.length; i < l; i++) {
|
1337
|
+
if (fakes[i].matches(args, strict)) {
|
1338
|
+
return fakes[i];
|
1339
|
+
}
|
1340
|
+
}
|
1341
|
+
}
|
1342
|
+
|
1343
|
+
function incrementCallCount() {
|
1344
|
+
this.called = true;
|
1345
|
+
this.callCount += 1;
|
1346
|
+
this.notCalled = false;
|
1347
|
+
this.calledOnce = this.callCount == 1;
|
1348
|
+
this.calledTwice = this.callCount == 2;
|
1349
|
+
this.calledThrice = this.callCount == 3;
|
1350
|
+
}
|
1351
|
+
|
1352
|
+
function createCallProperties() {
|
1353
|
+
this.firstCall = this.getCall(0);
|
1354
|
+
this.secondCall = this.getCall(1);
|
1355
|
+
this.thirdCall = this.getCall(2);
|
1356
|
+
this.lastCall = this.getCall(this.callCount - 1);
|
1357
|
+
}
|
1358
|
+
|
1359
|
+
var vars = "a,b,c,d,e,f,g,h,i,j,k,l";
|
1360
|
+
|
1361
|
+
function createProxy(func) {
|
1362
|
+
// Retain the function length:
|
1363
|
+
var p;
|
1364
|
+
if (func.length) {
|
1365
|
+
eval("p = (function proxy(" + vars.substring(0, func.length * 2 - 1) + ") { return p.invoke(func, this, slice.call(arguments)); });");
|
1366
|
+
} else {
|
1367
|
+
p = function proxy() {
|
1368
|
+
return p.invoke(func, this, slice.call(arguments));
|
1369
|
+
};
|
1370
|
+
}
|
1371
|
+
return p;
|
1372
|
+
}
|
1373
|
+
|
1374
|
+
var uuid = 0;
|
1375
|
+
|
1376
|
+
// Public API
|
1377
|
+
var spyApi = {
|
1378
|
+
reset: function() {
|
1379
|
+
this.called = false;
|
1380
|
+
this.notCalled = true;
|
1381
|
+
this.calledOnce = false;
|
1382
|
+
this.calledTwice = false;
|
1383
|
+
this.calledThrice = false;
|
1384
|
+
this.callCount = 0;
|
1385
|
+
this.firstCall = null;
|
1386
|
+
this.secondCall = null;
|
1387
|
+
this.thirdCall = null;
|
1388
|
+
this.lastCall = null;
|
1389
|
+
this.args = [];
|
1390
|
+
this.returnValues = [];
|
1391
|
+
this.thisValues = [];
|
1392
|
+
this.exceptions = [];
|
1393
|
+
this.callIds = [];
|
1394
|
+
if (this.fakes) {
|
1395
|
+
for (var i = 0; i < this.fakes.length; i++) {
|
1396
|
+
this.fakes[i].reset();
|
1397
|
+
}
|
1398
|
+
}
|
1399
|
+
},
|
1400
|
+
|
1401
|
+
create: function create(func) {
|
1402
|
+
var name;
|
1403
|
+
|
1404
|
+
if (typeof func != "function") {
|
1405
|
+
func = function() {};
|
1406
|
+
} else {
|
1407
|
+
name = sinon.functionName(func);
|
1408
|
+
}
|
1409
|
+
|
1410
|
+
var proxy = createProxy(func);
|
1411
|
+
|
1412
|
+
sinon.extend(proxy, spy);
|
1413
|
+
delete proxy.create;
|
1414
|
+
sinon.extend(proxy, func);
|
1415
|
+
|
1416
|
+
proxy.reset();
|
1417
|
+
proxy.prototype = func.prototype;
|
1418
|
+
proxy.displayName = name || "spy";
|
1419
|
+
proxy.toString = sinon.functionToString;
|
1420
|
+
proxy._create = sinon.spy.create;
|
1421
|
+
proxy.id = "spy#" + uuid++;
|
1422
|
+
|
1423
|
+
return proxy;
|
1424
|
+
},
|
1425
|
+
|
1426
|
+
invoke: function invoke(func, thisValue, args) {
|
1427
|
+
var matching = matchingFake(this.fakes, args);
|
1428
|
+
var exception, returnValue;
|
1429
|
+
|
1430
|
+
incrementCallCount.call(this);
|
1431
|
+
push.call(this.thisValues, thisValue);
|
1432
|
+
push.call(this.args, args);
|
1433
|
+
push.call(this.callIds, callId++);
|
1434
|
+
|
1435
|
+
try {
|
1436
|
+
if (matching) {
|
1437
|
+
returnValue = matching.invoke(func, thisValue, args);
|
1438
|
+
} else {
|
1439
|
+
returnValue = (this.func || func)
|
1440
|
+
.apply(thisValue, args);
|
1441
|
+
}
|
1442
|
+
} catch (e) {
|
1443
|
+
push.call(this.returnValues, undefined);
|
1444
|
+
exception = e;
|
1445
|
+
throw e;
|
1446
|
+
} finally {
|
1447
|
+
push.call(this.exceptions, exception);
|
1448
|
+
}
|
1449
|
+
|
1450
|
+
push.call(this.returnValues, returnValue);
|
1451
|
+
|
1452
|
+
createCallProperties.call(this);
|
1453
|
+
|
1454
|
+
return returnValue;
|
1455
|
+
},
|
1456
|
+
|
1457
|
+
getCall: function getCall(i) {
|
1458
|
+
if (i < 0 || i >= this.callCount) {
|
1459
|
+
return null;
|
1460
|
+
}
|
1461
|
+
|
1462
|
+
return sinon.spyCall(this, this.thisValues[i], this.args[i],
|
1463
|
+
this.returnValues[i], this.exceptions[i],
|
1464
|
+
this.callIds[i]);
|
1465
|
+
},
|
1466
|
+
|
1467
|
+
calledBefore: function calledBefore(spyFn) {
|
1468
|
+
if (!this.called) {
|
1469
|
+
return false;
|
1470
|
+
}
|
1471
|
+
|
1472
|
+
if (!spyFn.called) {
|
1473
|
+
return true;
|
1474
|
+
}
|
1475
|
+
|
1476
|
+
return this.callIds[0] < spyFn.callIds[spyFn.callIds.length - 1];
|
1477
|
+
},
|
1478
|
+
|
1479
|
+
calledAfter: function calledAfter(spyFn) {
|
1480
|
+
if (!this.called || !spyFn.called) {
|
1481
|
+
return false;
|
1482
|
+
}
|
1483
|
+
|
1484
|
+
return this.callIds[this.callCount - 1] > spyFn.callIds[spyFn.callCount - 1];
|
1485
|
+
},
|
1486
|
+
|
1487
|
+
withArgs: function() {
|
1488
|
+
var args = slice.call(arguments);
|
1489
|
+
|
1490
|
+
if (this.fakes) {
|
1491
|
+
var match = matchingFake(this.fakes, args, true);
|
1492
|
+
|
1493
|
+
if (match) {
|
1494
|
+
return match;
|
1495
|
+
}
|
1496
|
+
} else {
|
1497
|
+
this.fakes = [];
|
1498
|
+
}
|
1499
|
+
|
1500
|
+
var original = this;
|
1501
|
+
var fake = this._create();
|
1502
|
+
fake.matchingAguments = args;
|
1503
|
+
push.call(this.fakes, fake);
|
1504
|
+
|
1505
|
+
fake.withArgs = function() {
|
1506
|
+
return original.withArgs.apply(original, arguments);
|
1507
|
+
};
|
1508
|
+
|
1509
|
+
for (var i = 0; i < this.args.length; i++) {
|
1510
|
+
if (fake.matches(this.args[i])) {
|
1511
|
+
incrementCallCount.call(fake);
|
1512
|
+
push.call(fake.thisValues, this.thisValues[i]);
|
1513
|
+
push.call(fake.args, this.args[i]);
|
1514
|
+
push.call(fake.returnValues, this.returnValues[i]);
|
1515
|
+
push.call(fake.exceptions, this.exceptions[i]);
|
1516
|
+
push.call(fake.callIds, this.callIds[i]);
|
1517
|
+
}
|
1518
|
+
}
|
1519
|
+
createCallProperties.call(fake);
|
1520
|
+
|
1521
|
+
return fake;
|
1522
|
+
},
|
1523
|
+
|
1524
|
+
matches: function(args, strict) {
|
1525
|
+
var margs = this.matchingAguments;
|
1526
|
+
|
1527
|
+
if (margs.length <= args.length && sinon.deepEqual(margs, args.slice(0, margs.length))) {
|
1528
|
+
return !strict || margs.length == args.length;
|
1529
|
+
}
|
1530
|
+
},
|
1531
|
+
|
1532
|
+
printf: function(format) {
|
1533
|
+
var spy = this;
|
1534
|
+
var args = slice.call(arguments, 1);
|
1535
|
+
var formatter;
|
1536
|
+
|
1537
|
+
return (format || "")
|
1538
|
+
.replace(/%(.)/g, function(match, specifyer) {
|
1539
|
+
formatter = spyApi.formatters[specifyer];
|
1540
|
+
|
1541
|
+
if (typeof formatter == "function") {
|
1542
|
+
return formatter.call(null, spy, args);
|
1543
|
+
} else if (!isNaN(parseInt(specifyer), 10)) {
|
1544
|
+
return sinon.format(args[specifyer - 1]);
|
1545
|
+
}
|
1546
|
+
|
1547
|
+
return "%" + specifyer;
|
1548
|
+
});
|
1549
|
+
}
|
1550
|
+
};
|
1551
|
+
|
1552
|
+
function delegateToCalls(method, matchAny, actual, notCalled) {
|
1553
|
+
spyApi[method] = function() {
|
1554
|
+
if (!this.called) {
|
1555
|
+
if (notCalled) {
|
1556
|
+
return notCalled.apply(this, arguments);
|
1557
|
+
}
|
1558
|
+
return false;
|
1559
|
+
}
|
1560
|
+
|
1561
|
+
var currentCall;
|
1562
|
+
var matches = 0;
|
1563
|
+
|
1564
|
+
for (var i = 0, l = this.callCount; i < l; i += 1) {
|
1565
|
+
currentCall = this.getCall(i);
|
1566
|
+
|
1567
|
+
if (currentCall[actual || method].apply(currentCall, arguments)) {
|
1568
|
+
matches += 1;
|
1569
|
+
|
1570
|
+
if (matchAny) {
|
1571
|
+
return true;
|
1572
|
+
}
|
1573
|
+
}
|
1574
|
+
}
|
1575
|
+
|
1576
|
+
return matches === this.callCount;
|
1577
|
+
};
|
1578
|
+
}
|
1579
|
+
|
1580
|
+
delegateToCalls("calledOn", true);
|
1581
|
+
delegateToCalls("alwaysCalledOn", false, "calledOn");
|
1582
|
+
delegateToCalls("calledWith", true);
|
1583
|
+
delegateToCalls("calledWithMatch", true);
|
1584
|
+
delegateToCalls("alwaysCalledWith", false, "calledWith");
|
1585
|
+
delegateToCalls("alwaysCalledWithMatch", false, "calledWithMatch");
|
1586
|
+
delegateToCalls("calledWithExactly", true);
|
1587
|
+
delegateToCalls("alwaysCalledWithExactly", false, "calledWithExactly");
|
1588
|
+
delegateToCalls("neverCalledWith", false, "notCalledWith",
|
1589
|
+
|
1590
|
+
function() {
|
1591
|
+
return true;
|
1592
|
+
});
|
1593
|
+
delegateToCalls("neverCalledWithMatch", false, "notCalledWithMatch",
|
1594
|
+
|
1595
|
+
function() {
|
1596
|
+
return true;
|
1597
|
+
});
|
1598
|
+
delegateToCalls("threw", true);
|
1599
|
+
delegateToCalls("alwaysThrew", false, "threw");
|
1600
|
+
delegateToCalls("returned", true);
|
1601
|
+
delegateToCalls("alwaysReturned", false, "returned");
|
1602
|
+
delegateToCalls("calledWithNew", true);
|
1603
|
+
delegateToCalls("alwaysCalledWithNew", false, "calledWithNew");
|
1604
|
+
delegateToCalls("callArg", false, "callArgWith", function() {
|
1605
|
+
throw new Error(this.toString() + " cannot call arg since it was not yet invoked.");
|
1606
|
+
});
|
1607
|
+
spyApi.callArgWith = spyApi.callArg;
|
1608
|
+
delegateToCalls("callArgOn", false, "callArgOnWith", function() {
|
1609
|
+
throw new Error(this.toString() + " cannot call arg since it was not yet invoked.");
|
1610
|
+
});
|
1611
|
+
spyApi.callArgOnWith = spyApi.callArgOn;
|
1612
|
+
delegateToCalls("yield", false, "yield", function() {
|
1613
|
+
throw new Error(this.toString() + " cannot yield since it was not yet invoked.");
|
1614
|
+
});
|
1615
|
+
// "invokeCallback" is an alias for "yield" since "yield" is invalid in strict mode.
|
1616
|
+
spyApi.invokeCallback = spyApi.yield;
|
1617
|
+
delegateToCalls("yieldOn", false, "yieldOn", function() {
|
1618
|
+
throw new Error(this.toString() + " cannot yield since it was not yet invoked.");
|
1619
|
+
});
|
1620
|
+
delegateToCalls("yieldTo", false, "yieldTo", function(property) {
|
1621
|
+
throw new Error(this.toString() + " cannot yield to '" + property + "' since it was not yet invoked.");
|
1622
|
+
});
|
1623
|
+
delegateToCalls("yieldToOn", false, "yieldToOn", function(property) {
|
1624
|
+
throw new Error(this.toString() + " cannot yield to '" + property + "' since it was not yet invoked.");
|
1625
|
+
});
|
1626
|
+
|
1627
|
+
spyApi.formatters = {
|
1628
|
+
"c": function(spy) {
|
1629
|
+
return sinon.timesInWords(spy.callCount);
|
1630
|
+
},
|
1631
|
+
|
1632
|
+
"n": function(spy) {
|
1633
|
+
return spy.toString();
|
1634
|
+
},
|
1635
|
+
|
1636
|
+
"C": function(spy) {
|
1637
|
+
var calls = [];
|
1638
|
+
|
1639
|
+
for (var i = 0, l = spy.callCount; i < l; ++i) {
|
1640
|
+
var stringifiedCall = " " + spy.getCall(i)
|
1641
|
+
.toString();
|
1642
|
+
if (/\n/.test(calls[i - 1])) {
|
1643
|
+
stringifiedCall = "\n" + stringifiedCall;
|
1644
|
+
}
|
1645
|
+
push.call(calls, stringifiedCall);
|
1646
|
+
}
|
1647
|
+
|
1648
|
+
return calls.length > 0 ? "\n" + calls.join("\n") : "";
|
1649
|
+
},
|
1650
|
+
|
1651
|
+
"t": function(spy) {
|
1652
|
+
var objects = [];
|
1653
|
+
|
1654
|
+
for (var i = 0, l = spy.callCount; i < l; ++i) {
|
1655
|
+
push.call(objects, sinon.format(spy.thisValues[i]));
|
1656
|
+
}
|
1657
|
+
|
1658
|
+
return objects.join(", ");
|
1659
|
+
},
|
1660
|
+
|
1661
|
+
"*": function(spy, args) {
|
1662
|
+
var formatted = [];
|
1663
|
+
|
1664
|
+
for (var i = 0, l = args.length; i < l; ++i) {
|
1665
|
+
push.call(formatted, sinon.format(args[i]));
|
1666
|
+
}
|
1667
|
+
|
1668
|
+
return formatted.join(", ");
|
1669
|
+
}
|
1670
|
+
};
|
1671
|
+
|
1672
|
+
sinon.extend(spy, spyApi);
|
1673
|
+
|
1674
|
+
spy.spyCall = sinon.spyCall;
|
1675
|
+
|
1676
|
+
if (commonJSModule) {
|
1677
|
+
module.exports = spy;
|
1678
|
+
} else {
|
1679
|
+
sinon.spy = spy;
|
1680
|
+
}
|
1681
|
+
}(typeof sinon == "object" && sinon || null));
|
1682
|
+
|
1683
|
+
/**
|
1684
|
+
* @depend ../sinon.js
|
1685
|
+
* @depend spy.js
|
1686
|
+
*/
|
1687
|
+
/*jslint eqeqeq: false, onevar: false*/
|
1688
|
+
/*global module, require, sinon*/
|
1689
|
+
/**
|
1690
|
+
* Stub functions
|
1691
|
+
*
|
1692
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
1693
|
+
* @license BSD
|
1694
|
+
*
|
1695
|
+
* Copyright (c) 2010-2013 Christian Johansen
|
1696
|
+
*/
|
1697
|
+
|
1698
|
+
(function(sinon) {
|
1699
|
+
var commonJSModule = typeof module == "object" && typeof require == "function";
|
1700
|
+
|
1701
|
+
if (!sinon && commonJSModule) {
|
1702
|
+
sinon = require("../sinon");
|
1703
|
+
}
|
1704
|
+
|
1705
|
+
if (!sinon) {
|
1706
|
+
return;
|
1707
|
+
}
|
1708
|
+
|
1709
|
+
function stub(object, property, func) {
|
1710
|
+
if ( !! func && typeof func != "function") {
|
1711
|
+
throw new TypeError("Custom stub should be function");
|
1712
|
+
}
|
1713
|
+
|
1714
|
+
var wrapper;
|
1715
|
+
|
1716
|
+
if (func) {
|
1717
|
+
wrapper = sinon.spy && sinon.spy.create ? sinon.spy.create(func) : func;
|
1718
|
+
} else {
|
1719
|
+
wrapper = stub.create();
|
1720
|
+
}
|
1721
|
+
|
1722
|
+
if (!object && !property) {
|
1723
|
+
return sinon.stub.create();
|
1724
|
+
}
|
1725
|
+
|
1726
|
+
if (!property && !! object && typeof object == "object") {
|
1727
|
+
for (var prop in object) {
|
1728
|
+
if (typeof object[prop] === "function") {
|
1729
|
+
stub(object, prop);
|
1730
|
+
}
|
1731
|
+
}
|
1732
|
+
|
1733
|
+
return object;
|
1734
|
+
}
|
1735
|
+
|
1736
|
+
return sinon.wrapMethod(object, property, wrapper);
|
1737
|
+
}
|
1738
|
+
|
1739
|
+
function getChangingValue(stub, property) {
|
1740
|
+
var index = stub.callCount - 1;
|
1741
|
+
var values = stub[property];
|
1742
|
+
var prop = index in values ? values[index] : values[values.length - 1];
|
1743
|
+
stub[property + "Last"] = prop;
|
1744
|
+
|
1745
|
+
return prop;
|
1746
|
+
}
|
1747
|
+
|
1748
|
+
function getCallback(stub, args) {
|
1749
|
+
var callArgAt = getChangingValue(stub, "callArgAts");
|
1750
|
+
|
1751
|
+
if (callArgAt < 0) {
|
1752
|
+
var callArgProp = getChangingValue(stub, "callArgProps");
|
1753
|
+
|
1754
|
+
for (var i = 0, l = args.length; i < l; ++i) {
|
1755
|
+
if (!callArgProp && typeof args[i] == "function") {
|
1756
|
+
return args[i];
|
1757
|
+
}
|
1758
|
+
|
1759
|
+
if (callArgProp && args[i] && typeof args[i][callArgProp] == "function") {
|
1760
|
+
return args[i][callArgProp];
|
1761
|
+
}
|
1762
|
+
}
|
1763
|
+
|
1764
|
+
return null;
|
1765
|
+
}
|
1766
|
+
|
1767
|
+
return args[callArgAt];
|
1768
|
+
}
|
1769
|
+
|
1770
|
+
var join = Array.prototype.join;
|
1771
|
+
|
1772
|
+
function getCallbackError(stub, func, args) {
|
1773
|
+
if (stub.callArgAtsLast < 0) {
|
1774
|
+
var msg;
|
1775
|
+
|
1776
|
+
if (stub.callArgPropsLast) {
|
1777
|
+
msg = sinon.functionName(stub) + " expected to yield to '" + stub.callArgPropsLast + "', but no object with such a property was passed."
|
1778
|
+
} else {
|
1779
|
+
msg = sinon.functionName(stub) + " expected to yield, but no callback was passed."
|
1780
|
+
}
|
1781
|
+
|
1782
|
+
if (args.length > 0) {
|
1783
|
+
msg += " Received [" + join.call(args, ", ") + "]";
|
1784
|
+
}
|
1785
|
+
|
1786
|
+
return msg;
|
1787
|
+
}
|
1788
|
+
|
1789
|
+
return "argument at index " + stub.callArgAtsLast + " is not a function: " + func;
|
1790
|
+
}
|
1791
|
+
|
1792
|
+
var nextTick = (function() {
|
1793
|
+
if (typeof process === "object" && typeof process.nextTick === "function") {
|
1794
|
+
return process.nextTick;
|
1795
|
+
} else if (typeof setImmediate === "function") {
|
1796
|
+
return setImmediate;
|
1797
|
+
} else {
|
1798
|
+
return function(callback) {
|
1799
|
+
setTimeout(callback, 0);
|
1800
|
+
};
|
1801
|
+
}
|
1802
|
+
})();
|
1803
|
+
|
1804
|
+
function callCallback(stub, args) {
|
1805
|
+
if (stub.callArgAts.length > 0) {
|
1806
|
+
var func = getCallback(stub, args);
|
1807
|
+
|
1808
|
+
if (typeof func != "function") {
|
1809
|
+
throw new TypeError(getCallbackError(stub, func, args));
|
1810
|
+
}
|
1811
|
+
|
1812
|
+
var callbackArguments = getChangingValue(stub, "callbackArguments");
|
1813
|
+
var callbackContext = getChangingValue(stub, "callbackContexts");
|
1814
|
+
|
1815
|
+
if (stub.callbackAsync) {
|
1816
|
+
nextTick(function() {
|
1817
|
+
func.apply(callbackContext, callbackArguments);
|
1818
|
+
});
|
1819
|
+
} else {
|
1820
|
+
func.apply(callbackContext, callbackArguments);
|
1821
|
+
}
|
1822
|
+
}
|
1823
|
+
}
|
1824
|
+
|
1825
|
+
var uuid = 0;
|
1826
|
+
|
1827
|
+
sinon.extend(stub, (function() {
|
1828
|
+
var slice = Array.prototype.slice,
|
1829
|
+
proto;
|
1830
|
+
|
1831
|
+
function throwsException(error, message) {
|
1832
|
+
if (typeof error == "string") {
|
1833
|
+
this.exception = new Error(message || "");
|
1834
|
+
this.exception.name = error;
|
1835
|
+
} else if (!error) {
|
1836
|
+
this.exception = new Error("Error");
|
1837
|
+
} else {
|
1838
|
+
this.exception = error;
|
1839
|
+
}
|
1840
|
+
|
1841
|
+
return this;
|
1842
|
+
}
|
1843
|
+
|
1844
|
+
proto = {
|
1845
|
+
create: function create() {
|
1846
|
+
var functionStub = function() {
|
1847
|
+
|
1848
|
+
callCallback(functionStub, arguments);
|
1849
|
+
|
1850
|
+
if (functionStub.exception) {
|
1851
|
+
throw functionStub.exception;
|
1852
|
+
} else if (typeof functionStub.returnArgAt == 'number') {
|
1853
|
+
return arguments[functionStub.returnArgAt];
|
1854
|
+
} else if (functionStub.returnThis) {
|
1855
|
+
return this;
|
1856
|
+
}
|
1857
|
+
return functionStub.returnValue;
|
1858
|
+
};
|
1859
|
+
|
1860
|
+
functionStub.id = "stub#" + uuid++;
|
1861
|
+
var orig = functionStub;
|
1862
|
+
functionStub = sinon.spy.create(functionStub);
|
1863
|
+
functionStub.func = orig;
|
1864
|
+
|
1865
|
+
functionStub.callArgAts = [];
|
1866
|
+
functionStub.callbackArguments = [];
|
1867
|
+
functionStub.callbackContexts = [];
|
1868
|
+
functionStub.callArgProps = [];
|
1869
|
+
|
1870
|
+
sinon.extend(functionStub, stub);
|
1871
|
+
functionStub._create = sinon.stub.create;
|
1872
|
+
functionStub.displayName = "stub";
|
1873
|
+
functionStub.toString = sinon.functionToString;
|
1874
|
+
|
1875
|
+
return functionStub;
|
1876
|
+
},
|
1877
|
+
|
1878
|
+
resetBehavior: function() {
|
1879
|
+
var i;
|
1880
|
+
|
1881
|
+
this.callArgAts = [];
|
1882
|
+
this.callbackArguments = [];
|
1883
|
+
this.callbackContexts = [];
|
1884
|
+
this.callArgProps = [];
|
1885
|
+
|
1886
|
+
delete this.returnValue;
|
1887
|
+
delete this.returnArgAt;
|
1888
|
+
this.returnThis = false;
|
1889
|
+
|
1890
|
+
if (this.fakes) {
|
1891
|
+
for (i = 0; i < this.fakes.length; i++) {
|
1892
|
+
this.fakes[i].resetBehavior();
|
1893
|
+
}
|
1894
|
+
}
|
1895
|
+
},
|
1896
|
+
|
1897
|
+
returns: function returns(value) {
|
1898
|
+
this.returnValue = value;
|
1899
|
+
|
1900
|
+
return this;
|
1901
|
+
},
|
1902
|
+
|
1903
|
+
returnsArg: function returnsArg(pos) {
|
1904
|
+
if (typeof pos != "number") {
|
1905
|
+
throw new TypeError("argument index is not number");
|
1906
|
+
}
|
1907
|
+
|
1908
|
+
this.returnArgAt = pos;
|
1909
|
+
|
1910
|
+
return this;
|
1911
|
+
},
|
1912
|
+
|
1913
|
+
returnsThis: function returnsThis() {
|
1914
|
+
this.returnThis = true;
|
1915
|
+
|
1916
|
+
return this;
|
1917
|
+
},
|
1918
|
+
|
1919
|
+
"throws": throwsException,
|
1920
|
+
throwsException: throwsException,
|
1921
|
+
|
1922
|
+
callsArg: function callsArg(pos) {
|
1923
|
+
if (typeof pos != "number") {
|
1924
|
+
throw new TypeError("argument index is not number");
|
1925
|
+
}
|
1926
|
+
|
1927
|
+
this.callArgAts.push(pos);
|
1928
|
+
this.callbackArguments.push([]);
|
1929
|
+
this.callbackContexts.push(undefined);
|
1930
|
+
this.callArgProps.push(undefined);
|
1931
|
+
|
1932
|
+
return this;
|
1933
|
+
},
|
1934
|
+
|
1935
|
+
callsArgOn: function callsArgOn(pos, context) {
|
1936
|
+
if (typeof pos != "number") {
|
1937
|
+
throw new TypeError("argument index is not number");
|
1938
|
+
}
|
1939
|
+
if (typeof context != "object") {
|
1940
|
+
throw new TypeError("argument context is not an object");
|
1941
|
+
}
|
1942
|
+
|
1943
|
+
this.callArgAts.push(pos);
|
1944
|
+
this.callbackArguments.push([]);
|
1945
|
+
this.callbackContexts.push(context);
|
1946
|
+
this.callArgProps.push(undefined);
|
1947
|
+
|
1948
|
+
return this;
|
1949
|
+
},
|
1950
|
+
|
1951
|
+
callsArgWith: function callsArgWith(pos) {
|
1952
|
+
if (typeof pos != "number") {
|
1953
|
+
throw new TypeError("argument index is not number");
|
1954
|
+
}
|
1955
|
+
|
1956
|
+
this.callArgAts.push(pos);
|
1957
|
+
this.callbackArguments.push(slice.call(arguments, 1));
|
1958
|
+
this.callbackContexts.push(undefined);
|
1959
|
+
this.callArgProps.push(undefined);
|
1960
|
+
|
1961
|
+
return this;
|
1962
|
+
},
|
1963
|
+
|
1964
|
+
callsArgOnWith: function callsArgWith(pos, context) {
|
1965
|
+
if (typeof pos != "number") {
|
1966
|
+
throw new TypeError("argument index is not number");
|
1967
|
+
}
|
1968
|
+
if (typeof context != "object") {
|
1969
|
+
throw new TypeError("argument context is not an object");
|
1970
|
+
}
|
1971
|
+
|
1972
|
+
this.callArgAts.push(pos);
|
1973
|
+
this.callbackArguments.push(slice.call(arguments, 2));
|
1974
|
+
this.callbackContexts.push(context);
|
1975
|
+
this.callArgProps.push(undefined);
|
1976
|
+
|
1977
|
+
return this;
|
1978
|
+
},
|
1979
|
+
|
1980
|
+
yields: function() {
|
1981
|
+
this.callArgAts.push(-1);
|
1982
|
+
this.callbackArguments.push(slice.call(arguments, 0));
|
1983
|
+
this.callbackContexts.push(undefined);
|
1984
|
+
this.callArgProps.push(undefined);
|
1985
|
+
|
1986
|
+
return this;
|
1987
|
+
},
|
1988
|
+
|
1989
|
+
yieldsOn: function(context) {
|
1990
|
+
if (typeof context != "object") {
|
1991
|
+
throw new TypeError("argument context is not an object");
|
1992
|
+
}
|
1993
|
+
|
1994
|
+
this.callArgAts.push(-1);
|
1995
|
+
this.callbackArguments.push(slice.call(arguments, 1));
|
1996
|
+
this.callbackContexts.push(context);
|
1997
|
+
this.callArgProps.push(undefined);
|
1998
|
+
|
1999
|
+
return this;
|
2000
|
+
},
|
2001
|
+
|
2002
|
+
yieldsTo: function(prop) {
|
2003
|
+
this.callArgAts.push(-1);
|
2004
|
+
this.callbackArguments.push(slice.call(arguments, 1));
|
2005
|
+
this.callbackContexts.push(undefined);
|
2006
|
+
this.callArgProps.push(prop);
|
2007
|
+
|
2008
|
+
return this;
|
2009
|
+
},
|
2010
|
+
|
2011
|
+
yieldsToOn: function(prop, context) {
|
2012
|
+
if (typeof context != "object") {
|
2013
|
+
throw new TypeError("argument context is not an object");
|
2014
|
+
}
|
2015
|
+
|
2016
|
+
this.callArgAts.push(-1);
|
2017
|
+
this.callbackArguments.push(slice.call(arguments, 2));
|
2018
|
+
this.callbackContexts.push(context);
|
2019
|
+
this.callArgProps.push(prop);
|
2020
|
+
|
2021
|
+
return this;
|
2022
|
+
}
|
2023
|
+
};
|
2024
|
+
|
2025
|
+
// create asynchronous versions of callsArg* and yields* methods
|
2026
|
+
for (var method in proto) {
|
2027
|
+
// need to avoid creating anotherasync versions of the newly added async methods
|
2028
|
+
if (proto.hasOwnProperty(method) && method.match(/^(callsArg|yields|thenYields$)/) && !method.match(/Async/)) {
|
2029
|
+
proto[method + 'Async'] = (function(syncFnName) {
|
2030
|
+
return function() {
|
2031
|
+
this.callbackAsync = true;
|
2032
|
+
return this[syncFnName].apply(this, arguments);
|
2033
|
+
};
|
2034
|
+
})(method);
|
2035
|
+
}
|
2036
|
+
}
|
2037
|
+
|
2038
|
+
return proto;
|
2039
|
+
|
2040
|
+
}()));
|
2041
|
+
|
2042
|
+
if (commonJSModule) {
|
2043
|
+
module.exports = stub;
|
2044
|
+
} else {
|
2045
|
+
sinon.stub = stub;
|
2046
|
+
}
|
2047
|
+
}(typeof sinon == "object" && sinon || null));
|
2048
|
+
|
2049
|
+
/**
|
2050
|
+
* @depend ../sinon.js
|
2051
|
+
* @depend stub.js
|
2052
|
+
*/
|
2053
|
+
/*jslint eqeqeq: false, onevar: false, nomen: false*/
|
2054
|
+
/*global module, require, sinon*/
|
2055
|
+
/**
|
2056
|
+
* Mock functions.
|
2057
|
+
*
|
2058
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
2059
|
+
* @license BSD
|
2060
|
+
*
|
2061
|
+
* Copyright (c) 2010-2013 Christian Johansen
|
2062
|
+
*/
|
2063
|
+
|
2064
|
+
(function(sinon) {
|
2065
|
+
var commonJSModule = typeof module == "object" && typeof require == "function";
|
2066
|
+
var push = [].push;
|
2067
|
+
|
2068
|
+
if (!sinon && commonJSModule) {
|
2069
|
+
sinon = require("../sinon");
|
2070
|
+
}
|
2071
|
+
|
2072
|
+
if (!sinon) {
|
2073
|
+
return;
|
2074
|
+
}
|
2075
|
+
|
2076
|
+
function mock(object) {
|
2077
|
+
if (!object) {
|
2078
|
+
return sinon.expectation.create("Anonymous mock");
|
2079
|
+
}
|
2080
|
+
|
2081
|
+
return mock.create(object);
|
2082
|
+
}
|
2083
|
+
|
2084
|
+
sinon.mock = mock;
|
2085
|
+
|
2086
|
+
sinon.extend(mock, (function() {
|
2087
|
+
function each(collection, callback) {
|
2088
|
+
if (!collection) {
|
2089
|
+
return;
|
2090
|
+
}
|
2091
|
+
|
2092
|
+
for (var i = 0, l = collection.length; i < l; i += 1) {
|
2093
|
+
callback(collection[i]);
|
2094
|
+
}
|
2095
|
+
}
|
2096
|
+
|
2097
|
+
return {
|
2098
|
+
create: function create(object) {
|
2099
|
+
if (!object) {
|
2100
|
+
throw new TypeError("object is null");
|
2101
|
+
}
|
2102
|
+
|
2103
|
+
var mockObject = sinon.extend({}, mock);
|
2104
|
+
mockObject.object = object;
|
2105
|
+
delete mockObject.create;
|
2106
|
+
|
2107
|
+
return mockObject;
|
2108
|
+
},
|
2109
|
+
|
2110
|
+
expects: function expects(method) {
|
2111
|
+
if (!method) {
|
2112
|
+
throw new TypeError("method is falsy");
|
2113
|
+
}
|
2114
|
+
|
2115
|
+
if (!this.expectations) {
|
2116
|
+
this.expectations = {};
|
2117
|
+
this.proxies = [];
|
2118
|
+
}
|
2119
|
+
|
2120
|
+
if (!this.expectations[method]) {
|
2121
|
+
this.expectations[method] = [];
|
2122
|
+
var mockObject = this;
|
2123
|
+
|
2124
|
+
sinon.wrapMethod(this.object, method, function() {
|
2125
|
+
return mockObject.invokeMethod(method, this, arguments);
|
2126
|
+
});
|
2127
|
+
|
2128
|
+
push.call(this.proxies, method);
|
2129
|
+
}
|
2130
|
+
|
2131
|
+
var expectation = sinon.expectation.create(method);
|
2132
|
+
push.call(this.expectations[method], expectation);
|
2133
|
+
|
2134
|
+
return expectation;
|
2135
|
+
},
|
2136
|
+
|
2137
|
+
restore: function restore() {
|
2138
|
+
var object = this.object;
|
2139
|
+
|
2140
|
+
each(this.proxies, function(proxy) {
|
2141
|
+
if (typeof object[proxy].restore == "function") {
|
2142
|
+
object[proxy].restore();
|
2143
|
+
}
|
2144
|
+
});
|
2145
|
+
},
|
2146
|
+
|
2147
|
+
verify: function verify() {
|
2148
|
+
var expectations = this.expectations || {};
|
2149
|
+
var messages = [],
|
2150
|
+
met = [];
|
2151
|
+
|
2152
|
+
each(this.proxies, function(proxy) {
|
2153
|
+
each(expectations[proxy], function(expectation) {
|
2154
|
+
if (!expectation.met()) {
|
2155
|
+
push.call(messages, expectation.toString());
|
2156
|
+
} else {
|
2157
|
+
push.call(met, expectation.toString());
|
2158
|
+
}
|
2159
|
+
});
|
2160
|
+
});
|
2161
|
+
|
2162
|
+
this.restore();
|
2163
|
+
|
2164
|
+
if (messages.length > 0) {
|
2165
|
+
sinon.expectation.fail(messages.concat(met)
|
2166
|
+
.join("\n"));
|
2167
|
+
} else {
|
2168
|
+
sinon.expectation.pass(messages.concat(met)
|
2169
|
+
.join("\n"));
|
2170
|
+
}
|
2171
|
+
|
2172
|
+
return true;
|
2173
|
+
},
|
2174
|
+
|
2175
|
+
invokeMethod: function invokeMethod(method, thisValue, args) {
|
2176
|
+
var expectations = this.expectations && this.expectations[method];
|
2177
|
+
var length = expectations && expectations.length || 0,
|
2178
|
+
i;
|
2179
|
+
|
2180
|
+
for (i = 0; i < length; i += 1) {
|
2181
|
+
if (!expectations[i].met() && expectations[i].allowsCall(thisValue, args)) {
|
2182
|
+
return expectations[i].apply(thisValue, args);
|
2183
|
+
}
|
2184
|
+
}
|
2185
|
+
|
2186
|
+
var messages = [],
|
2187
|
+
available, exhausted = 0;
|
2188
|
+
|
2189
|
+
for (i = 0; i < length; i += 1) {
|
2190
|
+
if (expectations[i].allowsCall(thisValue, args)) {
|
2191
|
+
available = available || expectations[i];
|
2192
|
+
} else {
|
2193
|
+
exhausted += 1;
|
2194
|
+
}
|
2195
|
+
push.call(messages, " " + expectations[i].toString());
|
2196
|
+
}
|
2197
|
+
|
2198
|
+
if (exhausted === 0) {
|
2199
|
+
return available.apply(thisValue, args);
|
2200
|
+
}
|
2201
|
+
|
2202
|
+
messages.unshift("Unexpected call: " + sinon.spyCall.toString.call({
|
2203
|
+
proxy: method,
|
2204
|
+
args: args
|
2205
|
+
}));
|
2206
|
+
|
2207
|
+
sinon.expectation.fail(messages.join("\n"));
|
2208
|
+
}
|
2209
|
+
};
|
2210
|
+
}()));
|
2211
|
+
|
2212
|
+
var times = sinon.timesInWords;
|
2213
|
+
|
2214
|
+
sinon.expectation = (function() {
|
2215
|
+
var slice = Array.prototype.slice;
|
2216
|
+
var _invoke = sinon.spy.invoke;
|
2217
|
+
|
2218
|
+
function callCountInWords(callCount) {
|
2219
|
+
if (callCount == 0) {
|
2220
|
+
return "never called";
|
2221
|
+
} else {
|
2222
|
+
return "called " + times(callCount);
|
2223
|
+
}
|
2224
|
+
}
|
2225
|
+
|
2226
|
+
function expectedCallCountInWords(expectation) {
|
2227
|
+
var min = expectation.minCalls;
|
2228
|
+
var max = expectation.maxCalls;
|
2229
|
+
|
2230
|
+
if (typeof min == "number" && typeof max == "number") {
|
2231
|
+
var str = times(min);
|
2232
|
+
|
2233
|
+
if (min != max) {
|
2234
|
+
str = "at least " + str + " and at most " + times(max);
|
2235
|
+
}
|
2236
|
+
|
2237
|
+
return str;
|
2238
|
+
}
|
2239
|
+
|
2240
|
+
if (typeof min == "number") {
|
2241
|
+
return "at least " + times(min);
|
2242
|
+
}
|
2243
|
+
|
2244
|
+
return "at most " + times(max);
|
2245
|
+
}
|
2246
|
+
|
2247
|
+
function receivedMinCalls(expectation) {
|
2248
|
+
var hasMinLimit = typeof expectation.minCalls == "number";
|
2249
|
+
return !hasMinLimit || expectation.callCount >= expectation.minCalls;
|
2250
|
+
}
|
2251
|
+
|
2252
|
+
function receivedMaxCalls(expectation) {
|
2253
|
+
if (typeof expectation.maxCalls != "number") {
|
2254
|
+
return false;
|
2255
|
+
}
|
2256
|
+
|
2257
|
+
return expectation.callCount == expectation.maxCalls;
|
2258
|
+
}
|
2259
|
+
|
2260
|
+
return {
|
2261
|
+
minCalls: 1,
|
2262
|
+
maxCalls: 1,
|
2263
|
+
|
2264
|
+
create: function create(methodName) {
|
2265
|
+
var expectation = sinon.extend(sinon.stub.create(), sinon.expectation);
|
2266
|
+
delete expectation.create;
|
2267
|
+
expectation.method = methodName;
|
2268
|
+
|
2269
|
+
return expectation;
|
2270
|
+
},
|
2271
|
+
|
2272
|
+
invoke: function invoke(func, thisValue, args) {
|
2273
|
+
this.verifyCallAllowed(thisValue, args);
|
2274
|
+
|
2275
|
+
return _invoke.apply(this, arguments);
|
2276
|
+
},
|
2277
|
+
|
2278
|
+
atLeast: function atLeast(num) {
|
2279
|
+
if (typeof num != "number") {
|
2280
|
+
throw new TypeError("'" + num + "' is not number");
|
2281
|
+
}
|
2282
|
+
|
2283
|
+
if (!this.limitsSet) {
|
2284
|
+
this.maxCalls = null;
|
2285
|
+
this.limitsSet = true;
|
2286
|
+
}
|
2287
|
+
|
2288
|
+
this.minCalls = num;
|
2289
|
+
|
2290
|
+
return this;
|
2291
|
+
},
|
2292
|
+
|
2293
|
+
atMost: function atMost(num) {
|
2294
|
+
if (typeof num != "number") {
|
2295
|
+
throw new TypeError("'" + num + "' is not number");
|
2296
|
+
}
|
2297
|
+
|
2298
|
+
if (!this.limitsSet) {
|
2299
|
+
this.minCalls = null;
|
2300
|
+
this.limitsSet = true;
|
2301
|
+
}
|
2302
|
+
|
2303
|
+
this.maxCalls = num;
|
2304
|
+
|
2305
|
+
return this;
|
2306
|
+
},
|
2307
|
+
|
2308
|
+
never: function never() {
|
2309
|
+
return this.exactly(0);
|
2310
|
+
},
|
2311
|
+
|
2312
|
+
once: function once() {
|
2313
|
+
return this.exactly(1);
|
2314
|
+
},
|
2315
|
+
|
2316
|
+
twice: function twice() {
|
2317
|
+
return this.exactly(2);
|
2318
|
+
},
|
2319
|
+
|
2320
|
+
thrice: function thrice() {
|
2321
|
+
return this.exactly(3);
|
2322
|
+
},
|
2323
|
+
|
2324
|
+
exactly: function exactly(num) {
|
2325
|
+
if (typeof num != "number") {
|
2326
|
+
throw new TypeError("'" + num + "' is not a number");
|
2327
|
+
}
|
2328
|
+
|
2329
|
+
this.atLeast(num);
|
2330
|
+
return this.atMost(num);
|
2331
|
+
},
|
2332
|
+
|
2333
|
+
met: function met() {
|
2334
|
+
return !this.failed && receivedMinCalls(this);
|
2335
|
+
},
|
2336
|
+
|
2337
|
+
verifyCallAllowed: function verifyCallAllowed(thisValue, args) {
|
2338
|
+
if (receivedMaxCalls(this)) {
|
2339
|
+
this.failed = true;
|
2340
|
+
sinon.expectation.fail(this.method + " already called " + times(this.maxCalls));
|
2341
|
+
}
|
2342
|
+
|
2343
|
+
if ("expectedThis" in this && this.expectedThis !== thisValue) {
|
2344
|
+
sinon.expectation.fail(this.method + " called with " + thisValue + " as thisValue, expected " + this.expectedThis);
|
2345
|
+
}
|
2346
|
+
|
2347
|
+
if (!("expectedArguments" in this)) {
|
2348
|
+
return;
|
2349
|
+
}
|
2350
|
+
|
2351
|
+
if (!args) {
|
2352
|
+
sinon.expectation.fail(this.method + " received no arguments, expected " + sinon.format(this.expectedArguments));
|
2353
|
+
}
|
2354
|
+
|
2355
|
+
if (args.length < this.expectedArguments.length) {
|
2356
|
+
sinon.expectation.fail(this.method + " received too few arguments (" + sinon.format(args) + "), expected " + sinon.format(this.expectedArguments));
|
2357
|
+
}
|
2358
|
+
|
2359
|
+
if (this.expectsExactArgCount && args.length != this.expectedArguments.length) {
|
2360
|
+
sinon.expectation.fail(this.method + " received too many arguments (" + sinon.format(args) + "), expected " + sinon.format(this.expectedArguments));
|
2361
|
+
}
|
2362
|
+
|
2363
|
+
for (var i = 0, l = this.expectedArguments.length; i < l; i += 1) {
|
2364
|
+
if (!sinon.deepEqual(this.expectedArguments[i], args[i])) {
|
2365
|
+
sinon.expectation.fail(this.method + " received wrong arguments " + sinon.format(args) + ", expected " + sinon.format(this.expectedArguments));
|
2366
|
+
}
|
2367
|
+
}
|
2368
|
+
},
|
2369
|
+
|
2370
|
+
allowsCall: function allowsCall(thisValue, args) {
|
2371
|
+
if (this.met() && receivedMaxCalls(this)) {
|
2372
|
+
return false;
|
2373
|
+
}
|
2374
|
+
|
2375
|
+
if ("expectedThis" in this && this.expectedThis !== thisValue) {
|
2376
|
+
return false;
|
2377
|
+
}
|
2378
|
+
|
2379
|
+
if (!("expectedArguments" in this)) {
|
2380
|
+
return true;
|
2381
|
+
}
|
2382
|
+
|
2383
|
+
args = args || [];
|
2384
|
+
|
2385
|
+
if (args.length < this.expectedArguments.length) {
|
2386
|
+
return false;
|
2387
|
+
}
|
2388
|
+
|
2389
|
+
if (this.expectsExactArgCount && args.length != this.expectedArguments.length) {
|
2390
|
+
return false;
|
2391
|
+
}
|
2392
|
+
|
2393
|
+
for (var i = 0, l = this.expectedArguments.length; i < l; i += 1) {
|
2394
|
+
if (!sinon.deepEqual(this.expectedArguments[i], args[i])) {
|
2395
|
+
return false;
|
2396
|
+
}
|
2397
|
+
}
|
2398
|
+
|
2399
|
+
return true;
|
2400
|
+
},
|
2401
|
+
|
2402
|
+
withArgs: function withArgs() {
|
2403
|
+
this.expectedArguments = slice.call(arguments);
|
2404
|
+
return this;
|
2405
|
+
},
|
2406
|
+
|
2407
|
+
withExactArgs: function withExactArgs() {
|
2408
|
+
this.withArgs.apply(this, arguments);
|
2409
|
+
this.expectsExactArgCount = true;
|
2410
|
+
return this;
|
2411
|
+
},
|
2412
|
+
|
2413
|
+
on: function on(thisValue) {
|
2414
|
+
this.expectedThis = thisValue;
|
2415
|
+
return this;
|
2416
|
+
},
|
2417
|
+
|
2418
|
+
toString: function() {
|
2419
|
+
var args = (this.expectedArguments || [])
|
2420
|
+
.slice();
|
2421
|
+
|
2422
|
+
if (!this.expectsExactArgCount) {
|
2423
|
+
push.call(args, "[...]");
|
2424
|
+
}
|
2425
|
+
|
2426
|
+
var callStr = sinon.spyCall.toString.call({
|
2427
|
+
proxy: this.method || "anonymous mock expectation",
|
2428
|
+
args: args
|
2429
|
+
});
|
2430
|
+
|
2431
|
+
var message = callStr.replace(", [...", "[, ...") + " " + expectedCallCountInWords(this);
|
2432
|
+
|
2433
|
+
if (this.met()) {
|
2434
|
+
return "Expectation met: " + message;
|
2435
|
+
}
|
2436
|
+
|
2437
|
+
return "Expected " + message + " (" + callCountInWords(this.callCount) + ")";
|
2438
|
+
},
|
2439
|
+
|
2440
|
+
verify: function verify() {
|
2441
|
+
if (!this.met()) {
|
2442
|
+
sinon.expectation.fail(this.toString());
|
2443
|
+
} else {
|
2444
|
+
sinon.expectation.pass(this.toString());
|
2445
|
+
}
|
2446
|
+
|
2447
|
+
return true;
|
2448
|
+
},
|
2449
|
+
|
2450
|
+
pass: function(message) {
|
2451
|
+
sinon.assert.pass(message);
|
2452
|
+
},
|
2453
|
+
fail: function(message) {
|
2454
|
+
var exception = new Error(message);
|
2455
|
+
exception.name = "ExpectationError";
|
2456
|
+
|
2457
|
+
throw exception;
|
2458
|
+
}
|
2459
|
+
};
|
2460
|
+
}());
|
2461
|
+
|
2462
|
+
if (commonJSModule) {
|
2463
|
+
module.exports = mock;
|
2464
|
+
} else {
|
2465
|
+
sinon.mock = mock;
|
2466
|
+
}
|
2467
|
+
}(typeof sinon == "object" && sinon || null));
|
2468
|
+
|
2469
|
+
/**
|
2470
|
+
* @depend ../sinon.js
|
2471
|
+
* @depend stub.js
|
2472
|
+
* @depend mock.js
|
2473
|
+
*/
|
2474
|
+
/*jslint eqeqeq: false, onevar: false, forin: true*/
|
2475
|
+
/*global module, require, sinon*/
|
2476
|
+
/**
|
2477
|
+
* Collections of stubs, spies and mocks.
|
2478
|
+
*
|
2479
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
2480
|
+
* @license BSD
|
2481
|
+
*
|
2482
|
+
* Copyright (c) 2010-2013 Christian Johansen
|
2483
|
+
*/
|
2484
|
+
|
2485
|
+
(function(sinon) {
|
2486
|
+
var commonJSModule = typeof module == "object" && typeof require == "function";
|
2487
|
+
var push = [].push;
|
2488
|
+
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
2489
|
+
|
2490
|
+
if (!sinon && commonJSModule) {
|
2491
|
+
sinon = require("../sinon");
|
2492
|
+
}
|
2493
|
+
|
2494
|
+
if (!sinon) {
|
2495
|
+
return;
|
2496
|
+
}
|
2497
|
+
|
2498
|
+
function getFakes(fakeCollection) {
|
2499
|
+
if (!fakeCollection.fakes) {
|
2500
|
+
fakeCollection.fakes = [];
|
2501
|
+
}
|
2502
|
+
|
2503
|
+
return fakeCollection.fakes;
|
2504
|
+
}
|
2505
|
+
|
2506
|
+
function each(fakeCollection, method) {
|
2507
|
+
var fakes = getFakes(fakeCollection);
|
2508
|
+
|
2509
|
+
for (var i = 0, l = fakes.length; i < l; i += 1) {
|
2510
|
+
if (typeof fakes[i][method] == "function") {
|
2511
|
+
fakes[i][method]();
|
2512
|
+
}
|
2513
|
+
}
|
2514
|
+
}
|
2515
|
+
|
2516
|
+
function compact(fakeCollection) {
|
2517
|
+
var fakes = getFakes(fakeCollection);
|
2518
|
+
var i = 0;
|
2519
|
+
while (i < fakes.length) {
|
2520
|
+
fakes.splice(i, 1);
|
2521
|
+
}
|
2522
|
+
}
|
2523
|
+
|
2524
|
+
var collection = {
|
2525
|
+
verify: function resolve() {
|
2526
|
+
each(this, "verify");
|
2527
|
+
},
|
2528
|
+
|
2529
|
+
restore: function restore() {
|
2530
|
+
each(this, "restore");
|
2531
|
+
compact(this);
|
2532
|
+
},
|
2533
|
+
|
2534
|
+
verifyAndRestore: function verifyAndRestore() {
|
2535
|
+
var exception;
|
2536
|
+
|
2537
|
+
try {
|
2538
|
+
this.verify();
|
2539
|
+
} catch (e) {
|
2540
|
+
exception = e;
|
2541
|
+
}
|
2542
|
+
|
2543
|
+
this.restore();
|
2544
|
+
|
2545
|
+
if (exception) {
|
2546
|
+
throw exception;
|
2547
|
+
}
|
2548
|
+
},
|
2549
|
+
|
2550
|
+
add: function add(fake) {
|
2551
|
+
push.call(getFakes(this), fake);
|
2552
|
+
return fake;
|
2553
|
+
},
|
2554
|
+
|
2555
|
+
spy: function spy() {
|
2556
|
+
return this.add(sinon.spy.apply(sinon, arguments));
|
2557
|
+
},
|
2558
|
+
|
2559
|
+
stub: function stub(object, property, value) {
|
2560
|
+
if (property) {
|
2561
|
+
var original = object[property];
|
2562
|
+
|
2563
|
+
if (typeof original != "function") {
|
2564
|
+
if (!hasOwnProperty.call(object, property)) {
|
2565
|
+
throw new TypeError("Cannot stub non-existent own property " + property);
|
2566
|
+
}
|
2567
|
+
|
2568
|
+
object[property] = value;
|
2569
|
+
|
2570
|
+
return this.add({
|
2571
|
+
restore: function() {
|
2572
|
+
object[property] = original;
|
2573
|
+
}
|
2574
|
+
});
|
2575
|
+
}
|
2576
|
+
}
|
2577
|
+
if (!property && !! object && typeof object == "object") {
|
2578
|
+
var stubbedObj = sinon.stub.apply(sinon, arguments);
|
2579
|
+
|
2580
|
+
for (var prop in stubbedObj) {
|
2581
|
+
if (typeof stubbedObj[prop] === "function") {
|
2582
|
+
this.add(stubbedObj[prop]);
|
2583
|
+
}
|
2584
|
+
}
|
2585
|
+
|
2586
|
+
return stubbedObj;
|
2587
|
+
}
|
2588
|
+
|
2589
|
+
return this.add(sinon.stub.apply(sinon, arguments));
|
2590
|
+
},
|
2591
|
+
|
2592
|
+
mock: function mock() {
|
2593
|
+
return this.add(sinon.mock.apply(sinon, arguments));
|
2594
|
+
},
|
2595
|
+
|
2596
|
+
inject: function inject(obj) {
|
2597
|
+
var col = this;
|
2598
|
+
|
2599
|
+
obj.spy = function() {
|
2600
|
+
return col.spy.apply(col, arguments);
|
2601
|
+
};
|
2602
|
+
|
2603
|
+
obj.stub = function() {
|
2604
|
+
return col.stub.apply(col, arguments);
|
2605
|
+
};
|
2606
|
+
|
2607
|
+
obj.mock = function() {
|
2608
|
+
return col.mock.apply(col, arguments);
|
2609
|
+
};
|
2610
|
+
|
2611
|
+
return obj;
|
2612
|
+
}
|
2613
|
+
};
|
2614
|
+
|
2615
|
+
if (commonJSModule) {
|
2616
|
+
module.exports = collection;
|
2617
|
+
} else {
|
2618
|
+
sinon.collection = collection;
|
2619
|
+
}
|
2620
|
+
}(typeof sinon == "object" && sinon || null));
|
2621
|
+
|
2622
|
+
/*jslint eqeqeq: false, plusplus: false, evil: true, onevar: false, browser: true, forin: false*/
|
2623
|
+
/*global module, require, window*/
|
2624
|
+
/**
|
2625
|
+
* Fake timer API
|
2626
|
+
* setTimeout
|
2627
|
+
* setInterval
|
2628
|
+
* clearTimeout
|
2629
|
+
* clearInterval
|
2630
|
+
* tick
|
2631
|
+
* reset
|
2632
|
+
* Date
|
2633
|
+
*
|
2634
|
+
* Inspired by jsUnitMockTimeOut from JsUnit
|
2635
|
+
*
|
2636
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
2637
|
+
* @license BSD
|
2638
|
+
*
|
2639
|
+
* Copyright (c) 2010-2013 Christian Johansen
|
2640
|
+
*/
|
2641
|
+
|
2642
|
+
if (typeof sinon == "undefined") {
|
2643
|
+
var sinon = {};
|
2644
|
+
}
|
2645
|
+
|
2646
|
+
(function(global) {
|
2647
|
+
var id = 1;
|
2648
|
+
|
2649
|
+
function addTimer(args, recurring) {
|
2650
|
+
if (args.length === 0) {
|
2651
|
+
throw new Error("Function requires at least 1 parameter");
|
2652
|
+
}
|
2653
|
+
|
2654
|
+
var toId = id++;
|
2655
|
+
var delay = args[1] || 0;
|
2656
|
+
|
2657
|
+
if (!this.timeouts) {
|
2658
|
+
this.timeouts = {};
|
2659
|
+
}
|
2660
|
+
|
2661
|
+
this.timeouts[toId] = {
|
2662
|
+
id: toId,
|
2663
|
+
func: args[0],
|
2664
|
+
callAt: this.now + delay,
|
2665
|
+
invokeArgs: Array.prototype.slice.call(args, 2)
|
2666
|
+
};
|
2667
|
+
|
2668
|
+
if (recurring === true) {
|
2669
|
+
this.timeouts[toId].interval = delay;
|
2670
|
+
}
|
2671
|
+
|
2672
|
+
return toId;
|
2673
|
+
}
|
2674
|
+
|
2675
|
+
function parseTime(str) {
|
2676
|
+
if (!str) {
|
2677
|
+
return 0;
|
2678
|
+
}
|
2679
|
+
|
2680
|
+
var strings = str.split(":");
|
2681
|
+
var l = strings.length,
|
2682
|
+
i = l;
|
2683
|
+
var ms = 0,
|
2684
|
+
parsed;
|
2685
|
+
|
2686
|
+
if (l > 3 || !/^(\d\d:){0,2}\d\d?$/.test(str)) {
|
2687
|
+
throw new Error("tick only understands numbers and 'h:m:s'");
|
2688
|
+
}
|
2689
|
+
|
2690
|
+
while (i--) {
|
2691
|
+
parsed = parseInt(strings[i], 10);
|
2692
|
+
|
2693
|
+
if (parsed >= 60) {
|
2694
|
+
throw new Error("Invalid time " + str);
|
2695
|
+
}
|
2696
|
+
|
2697
|
+
ms += parsed * Math.pow(60, (l - i - 1));
|
2698
|
+
}
|
2699
|
+
|
2700
|
+
return ms * 1000;
|
2701
|
+
}
|
2702
|
+
|
2703
|
+
function createObject(object) {
|
2704
|
+
var newObject;
|
2705
|
+
|
2706
|
+
if (Object.create) {
|
2707
|
+
newObject = Object.create(object);
|
2708
|
+
} else {
|
2709
|
+
var F = function() {};
|
2710
|
+
F.prototype = object;
|
2711
|
+
newObject = new F();
|
2712
|
+
}
|
2713
|
+
|
2714
|
+
newObject.Date.clock = newObject;
|
2715
|
+
return newObject;
|
2716
|
+
}
|
2717
|
+
|
2718
|
+
sinon.clock = {
|
2719
|
+
now: 0,
|
2720
|
+
|
2721
|
+
create: function create(now) {
|
2722
|
+
var clock = createObject(this);
|
2723
|
+
|
2724
|
+
if (typeof now == "number") {
|
2725
|
+
clock.now = now;
|
2726
|
+
}
|
2727
|
+
|
2728
|
+
if ( !! now && typeof now == "object") {
|
2729
|
+
throw new TypeError("now should be milliseconds since UNIX epoch");
|
2730
|
+
}
|
2731
|
+
|
2732
|
+
return clock;
|
2733
|
+
},
|
2734
|
+
|
2735
|
+
setTimeout: function setTimeout(callback, timeout) {
|
2736
|
+
return addTimer.call(this, arguments, false);
|
2737
|
+
},
|
2738
|
+
|
2739
|
+
clearTimeout: function clearTimeout(timerId) {
|
2740
|
+
if (!this.timeouts) {
|
2741
|
+
this.timeouts = [];
|
2742
|
+
}
|
2743
|
+
|
2744
|
+
if (timerId in this.timeouts) {
|
2745
|
+
delete this.timeouts[timerId];
|
2746
|
+
}
|
2747
|
+
},
|
2748
|
+
|
2749
|
+
setInterval: function setInterval(callback, timeout) {
|
2750
|
+
return addTimer.call(this, arguments, true);
|
2751
|
+
},
|
2752
|
+
|
2753
|
+
clearInterval: function clearInterval(timerId) {
|
2754
|
+
this.clearTimeout(timerId);
|
2755
|
+
},
|
2756
|
+
|
2757
|
+
tick: function tick(ms) {
|
2758
|
+
ms = typeof ms == "number" ? ms : parseTime(ms);
|
2759
|
+
var tickFrom = this.now,
|
2760
|
+
tickTo = this.now + ms,
|
2761
|
+
previous = this.now;
|
2762
|
+
var timer = this.firstTimerInRange(tickFrom, tickTo);
|
2763
|
+
|
2764
|
+
var firstException;
|
2765
|
+
while (timer && tickFrom <= tickTo) {
|
2766
|
+
if (this.timeouts[timer.id]) {
|
2767
|
+
tickFrom = this.now = timer.callAt;
|
2768
|
+
try {
|
2769
|
+
this.callTimer(timer);
|
2770
|
+
} catch (e) {
|
2771
|
+
firstException = firstException || e;
|
2772
|
+
}
|
2773
|
+
}
|
2774
|
+
|
2775
|
+
timer = this.firstTimerInRange(previous, tickTo);
|
2776
|
+
previous = tickFrom;
|
2777
|
+
}
|
2778
|
+
|
2779
|
+
this.now = tickTo;
|
2780
|
+
|
2781
|
+
if (firstException) {
|
2782
|
+
throw firstException;
|
2783
|
+
}
|
2784
|
+
|
2785
|
+
return this.now;
|
2786
|
+
},
|
2787
|
+
|
2788
|
+
firstTimerInRange: function(from, to) {
|
2789
|
+
var timer, smallest, originalTimer;
|
2790
|
+
|
2791
|
+
for (var id in this.timeouts) {
|
2792
|
+
if (this.timeouts.hasOwnProperty(id)) {
|
2793
|
+
if (this.timeouts[id].callAt < from || this.timeouts[id].callAt > to) {
|
2794
|
+
continue;
|
2795
|
+
}
|
2796
|
+
|
2797
|
+
if (!smallest || this.timeouts[id].callAt < smallest) {
|
2798
|
+
originalTimer = this.timeouts[id];
|
2799
|
+
smallest = this.timeouts[id].callAt;
|
2800
|
+
|
2801
|
+
timer = {
|
2802
|
+
func: this.timeouts[id].func,
|
2803
|
+
callAt: this.timeouts[id].callAt,
|
2804
|
+
interval: this.timeouts[id].interval,
|
2805
|
+
id: this.timeouts[id].id,
|
2806
|
+
invokeArgs: this.timeouts[id].invokeArgs
|
2807
|
+
};
|
2808
|
+
}
|
2809
|
+
}
|
2810
|
+
}
|
2811
|
+
|
2812
|
+
return timer || null;
|
2813
|
+
},
|
2814
|
+
|
2815
|
+
callTimer: function(timer) {
|
2816
|
+
if (typeof timer.interval == "number") {
|
2817
|
+
this.timeouts[timer.id].callAt += timer.interval;
|
2818
|
+
} else {
|
2819
|
+
delete this.timeouts[timer.id];
|
2820
|
+
}
|
2821
|
+
|
2822
|
+
try {
|
2823
|
+
if (typeof timer.func == "function") {
|
2824
|
+
timer.func.apply(null, timer.invokeArgs);
|
2825
|
+
} else {
|
2826
|
+
eval(timer.func);
|
2827
|
+
}
|
2828
|
+
} catch (e) {
|
2829
|
+
var exception = e;
|
2830
|
+
}
|
2831
|
+
|
2832
|
+
if (!this.timeouts[timer.id]) {
|
2833
|
+
if (exception) {
|
2834
|
+
throw exception;
|
2835
|
+
}
|
2836
|
+
return;
|
2837
|
+
}
|
2838
|
+
|
2839
|
+
if (exception) {
|
2840
|
+
throw exception;
|
2841
|
+
}
|
2842
|
+
},
|
2843
|
+
|
2844
|
+
reset: function reset() {
|
2845
|
+
this.timeouts = {};
|
2846
|
+
},
|
2847
|
+
|
2848
|
+
Date: (function() {
|
2849
|
+
var NativeDate = Date;
|
2850
|
+
|
2851
|
+
function ClockDate(year, month, date, hour, minute, second, ms) {
|
2852
|
+
// Defensive and verbose to avoid potential harm in passing
|
2853
|
+
// explicit undefined when user does not pass argument
|
2854
|
+
switch (arguments.length) {
|
2855
|
+
case 0:
|
2856
|
+
return new NativeDate(ClockDate.clock.now);
|
2857
|
+
case 1:
|
2858
|
+
return new NativeDate(year);
|
2859
|
+
case 2:
|
2860
|
+
return new NativeDate(year, month);
|
2861
|
+
case 3:
|
2862
|
+
return new NativeDate(year, month, date);
|
2863
|
+
case 4:
|
2864
|
+
return new NativeDate(year, month, date, hour);
|
2865
|
+
case 5:
|
2866
|
+
return new NativeDate(year, month, date, hour, minute);
|
2867
|
+
case 6:
|
2868
|
+
return new NativeDate(year, month, date, hour, minute, second);
|
2869
|
+
default:
|
2870
|
+
return new NativeDate(year, month, date, hour, minute, second, ms);
|
2871
|
+
}
|
2872
|
+
}
|
2873
|
+
|
2874
|
+
return mirrorDateProperties(ClockDate, NativeDate);
|
2875
|
+
}())
|
2876
|
+
};
|
2877
|
+
|
2878
|
+
function mirrorDateProperties(target, source) {
|
2879
|
+
if (source.now) {
|
2880
|
+
target.now = function now() {
|
2881
|
+
return target.clock.now;
|
2882
|
+
};
|
2883
|
+
} else {
|
2884
|
+
delete target.now;
|
2885
|
+
}
|
2886
|
+
|
2887
|
+
if (source.toSource) {
|
2888
|
+
target.toSource = function toSource() {
|
2889
|
+
return source.toSource();
|
2890
|
+
};
|
2891
|
+
} else {
|
2892
|
+
delete target.toSource;
|
2893
|
+
}
|
2894
|
+
|
2895
|
+
target.toString = function toString() {
|
2896
|
+
return source.toString();
|
2897
|
+
};
|
2898
|
+
|
2899
|
+
target.prototype = source.prototype;
|
2900
|
+
target.parse = source.parse;
|
2901
|
+
target.UTC = source.UTC;
|
2902
|
+
target.prototype.toUTCString = source.prototype.toUTCString;
|
2903
|
+
return target;
|
2904
|
+
}
|
2905
|
+
|
2906
|
+
var methods = ["Date", "setTimeout", "setInterval", "clearTimeout", "clearInterval"];
|
2907
|
+
|
2908
|
+
function restore() {
|
2909
|
+
var method;
|
2910
|
+
|
2911
|
+
for (var i = 0, l = this.methods.length; i < l; i++) {
|
2912
|
+
method = this.methods[i];
|
2913
|
+
if (global[method].hadOwnProperty) {
|
2914
|
+
global[method] = this["_" + method];
|
2915
|
+
} else {
|
2916
|
+
delete global[method];
|
2917
|
+
}
|
2918
|
+
}
|
2919
|
+
|
2920
|
+
// Prevent multiple executions which will completely remove these props
|
2921
|
+
this.methods = [];
|
2922
|
+
}
|
2923
|
+
|
2924
|
+
function stubGlobal(method, clock) {
|
2925
|
+
clock[method].hadOwnProperty = Object.prototype.hasOwnProperty.call(global, method);
|
2926
|
+
clock["_" + method] = global[method];
|
2927
|
+
|
2928
|
+
if (method == "Date") {
|
2929
|
+
var date = mirrorDateProperties(clock[method], global[method]);
|
2930
|
+
global[method] = date;
|
2931
|
+
} else {
|
2932
|
+
global[method] = function() {
|
2933
|
+
return clock[method].apply(clock, arguments);
|
2934
|
+
};
|
2935
|
+
|
2936
|
+
for (var prop in clock[method]) {
|
2937
|
+
if (clock[method].hasOwnProperty(prop)) {
|
2938
|
+
global[method][prop] = clock[method][prop];
|
2939
|
+
}
|
2940
|
+
}
|
2941
|
+
}
|
2942
|
+
|
2943
|
+
global[method].clock = clock;
|
2944
|
+
}
|
2945
|
+
|
2946
|
+
sinon.useFakeTimers = function useFakeTimers(now) {
|
2947
|
+
var clock = sinon.clock.create(now);
|
2948
|
+
clock.restore = restore;
|
2949
|
+
clock.methods = Array.prototype.slice.call(arguments,
|
2950
|
+
typeof now == "number" ? 1 : 0);
|
2951
|
+
|
2952
|
+
if (clock.methods.length === 0) {
|
2953
|
+
clock.methods = methods;
|
2954
|
+
}
|
2955
|
+
|
2956
|
+
for (var i = 0, l = clock.methods.length; i < l; i++) {
|
2957
|
+
stubGlobal(clock.methods[i], clock);
|
2958
|
+
}
|
2959
|
+
|
2960
|
+
return clock;
|
2961
|
+
};
|
2962
|
+
}(typeof global != "undefined" && typeof global !== "function" ? global : this));
|
2963
|
+
|
2964
|
+
sinon.timers = {
|
2965
|
+
setTimeout: setTimeout,
|
2966
|
+
clearTimeout: clearTimeout,
|
2967
|
+
setInterval: setInterval,
|
2968
|
+
clearInterval: clearInterval,
|
2969
|
+
Date: Date
|
2970
|
+
};
|
2971
|
+
|
2972
|
+
if (typeof module == "object" && typeof require == "function") {
|
2973
|
+
module.exports = sinon;
|
2974
|
+
}
|
2975
|
+
|
2976
|
+
/*jslint eqeqeq: false, onevar: false*/
|
2977
|
+
/*global sinon, module, require, ActiveXObject, XMLHttpRequest, DOMParser*/
|
2978
|
+
/**
|
2979
|
+
* Minimal Event interface implementation
|
2980
|
+
*
|
2981
|
+
* Original implementation by Sven Fuchs: https://gist.github.com/995028
|
2982
|
+
* Modifications and tests by Christian Johansen.
|
2983
|
+
*
|
2984
|
+
* @author Sven Fuchs (svenfuchs@artweb-design.de)
|
2985
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
2986
|
+
* @license BSD
|
2987
|
+
*
|
2988
|
+
* Copyright (c) 2011 Sven Fuchs, Christian Johansen
|
2989
|
+
*/
|
2990
|
+
|
2991
|
+
if (typeof sinon == "undefined") {
|
2992
|
+
this.sinon = {};
|
2993
|
+
}
|
2994
|
+
|
2995
|
+
(function() {
|
2996
|
+
var push = [].push;
|
2997
|
+
|
2998
|
+
sinon.Event = function Event(type, bubbles, cancelable, target) {
|
2999
|
+
this.initEvent(type, bubbles, cancelable, target);
|
3000
|
+
};
|
3001
|
+
|
3002
|
+
sinon.Event.prototype = {
|
3003
|
+
initEvent: function(type, bubbles, cancelable, target) {
|
3004
|
+
this.type = type;
|
3005
|
+
this.bubbles = bubbles;
|
3006
|
+
this.cancelable = cancelable;
|
3007
|
+
this.target = target;
|
3008
|
+
},
|
3009
|
+
|
3010
|
+
stopPropagation: function() {},
|
3011
|
+
|
3012
|
+
preventDefault: function() {
|
3013
|
+
this.defaultPrevented = true;
|
3014
|
+
}
|
3015
|
+
};
|
3016
|
+
|
3017
|
+
sinon.EventTarget = {
|
3018
|
+
addEventListener: function addEventListener(event, listener, useCapture) {
|
3019
|
+
this.eventListeners = this.eventListeners || {};
|
3020
|
+
this.eventListeners[event] = this.eventListeners[event] || [];
|
3021
|
+
push.call(this.eventListeners[event], listener);
|
3022
|
+
},
|
3023
|
+
|
3024
|
+
removeEventListener: function removeEventListener(event, listener, useCapture) {
|
3025
|
+
var listeners = this.eventListeners && this.eventListeners[event] || [];
|
3026
|
+
|
3027
|
+
for (var i = 0, l = listeners.length; i < l; ++i) {
|
3028
|
+
if (listeners[i] == listener) {
|
3029
|
+
return listeners.splice(i, 1);
|
3030
|
+
}
|
3031
|
+
}
|
3032
|
+
},
|
3033
|
+
|
3034
|
+
dispatchEvent: function dispatchEvent(event) {
|
3035
|
+
var type = event.type;
|
3036
|
+
var listeners = this.eventListeners && this.eventListeners[type] || [];
|
3037
|
+
|
3038
|
+
for (var i = 0; i < listeners.length; i++) {
|
3039
|
+
if (typeof listeners[i] == "function") {
|
3040
|
+
listeners[i].call(this, event);
|
3041
|
+
} else {
|
3042
|
+
listeners[i].handleEvent(event);
|
3043
|
+
}
|
3044
|
+
}
|
3045
|
+
|
3046
|
+
return !!event.defaultPrevented;
|
3047
|
+
}
|
3048
|
+
};
|
3049
|
+
}());
|
3050
|
+
|
3051
|
+
/**
|
3052
|
+
* @depend ../../sinon.js
|
3053
|
+
* @depend event.js
|
3054
|
+
*/
|
3055
|
+
/*jslint eqeqeq: false, onevar: false*/
|
3056
|
+
/*global sinon, module, require, ActiveXObject, XMLHttpRequest, DOMParser*/
|
3057
|
+
/**
|
3058
|
+
* Fake XMLHttpRequest object
|
3059
|
+
*
|
3060
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
3061
|
+
* @license BSD
|
3062
|
+
*
|
3063
|
+
* Copyright (c) 2010-2013 Christian Johansen
|
3064
|
+
*/
|
3065
|
+
|
3066
|
+
if (typeof sinon == "undefined") {
|
3067
|
+
this.sinon = {};
|
3068
|
+
}
|
3069
|
+
sinon.xhr = {
|
3070
|
+
XMLHttpRequest: this.XMLHttpRequest
|
3071
|
+
};
|
3072
|
+
|
3073
|
+
// wrapper for global
|
3074
|
+
(function(global) {
|
3075
|
+
var xhr = sinon.xhr;
|
3076
|
+
xhr.GlobalXMLHttpRequest = global.XMLHttpRequest;
|
3077
|
+
xhr.GlobalActiveXObject = global.ActiveXObject;
|
3078
|
+
xhr.supportsActiveX = typeof xhr.GlobalActiveXObject != "undefined";
|
3079
|
+
xhr.supportsXHR = typeof xhr.GlobalXMLHttpRequest != "undefined";
|
3080
|
+
xhr.workingXHR = xhr.supportsXHR ? xhr.GlobalXMLHttpRequest : xhr.supportsActiveX ? function() {
|
3081
|
+
return new xhr.GlobalActiveXObject("MSXML2.XMLHTTP.3.0")
|
3082
|
+
} : false;
|
3083
|
+
|
3084
|
+
/*jsl:ignore*/
|
3085
|
+
var unsafeHeaders = {
|
3086
|
+
"Accept-Charset": true,
|
3087
|
+
"Accept-Encoding": true,
|
3088
|
+
"Connection": true,
|
3089
|
+
"Content-Length": true,
|
3090
|
+
"Cookie": true,
|
3091
|
+
"Cookie2": true,
|
3092
|
+
"Content-Transfer-Encoding": true,
|
3093
|
+
"Date": true,
|
3094
|
+
"Expect": true,
|
3095
|
+
"Host": true,
|
3096
|
+
"Keep-Alive": true,
|
3097
|
+
"Referer": true,
|
3098
|
+
"TE": true,
|
3099
|
+
"Trailer": true,
|
3100
|
+
"Transfer-Encoding": true,
|
3101
|
+
"Upgrade": true,
|
3102
|
+
"User-Agent": true,
|
3103
|
+
"Via": true
|
3104
|
+
};
|
3105
|
+
/*jsl:end*/
|
3106
|
+
|
3107
|
+
function FakeXMLHttpRequest() {
|
3108
|
+
this.readyState = FakeXMLHttpRequest.UNSENT;
|
3109
|
+
this.requestHeaders = {};
|
3110
|
+
this.requestBody = null;
|
3111
|
+
this.status = 0;
|
3112
|
+
this.statusText = "";
|
3113
|
+
|
3114
|
+
var xhr = this;
|
3115
|
+
|
3116
|
+
["loadstart", "load", "abort", "loadend"].forEach(function(eventName) {
|
3117
|
+
xhr.addEventListener(eventName, function(event) {
|
3118
|
+
var listener = xhr["on" + eventName];
|
3119
|
+
|
3120
|
+
if (listener && typeof listener == "function") {
|
3121
|
+
listener(event);
|
3122
|
+
}
|
3123
|
+
});
|
3124
|
+
});
|
3125
|
+
|
3126
|
+
if (typeof FakeXMLHttpRequest.onCreate == "function") {
|
3127
|
+
FakeXMLHttpRequest.onCreate(this);
|
3128
|
+
}
|
3129
|
+
}
|
3130
|
+
|
3131
|
+
function verifyState(xhr) {
|
3132
|
+
if (xhr.readyState !== FakeXMLHttpRequest.OPENED) {
|
3133
|
+
throw new Error("INVALID_STATE_ERR");
|
3134
|
+
}
|
3135
|
+
|
3136
|
+
if (xhr.sendFlag) {
|
3137
|
+
throw new Error("INVALID_STATE_ERR");
|
3138
|
+
}
|
3139
|
+
}
|
3140
|
+
|
3141
|
+
// filtering to enable a white-list version of Sinon FakeXhr,
|
3142
|
+
// where whitelisted requests are passed through to real XHR
|
3143
|
+
function each(collection, callback) {
|
3144
|
+
if (!collection) return;
|
3145
|
+
for (var i = 0, l = collection.length; i < l; i += 1) {
|
3146
|
+
callback(collection[i]);
|
3147
|
+
}
|
3148
|
+
}
|
3149
|
+
|
3150
|
+
function some(collection, callback) {
|
3151
|
+
for (var index = 0; index < collection.length; index++) {
|
3152
|
+
if (callback(collection[index]) === true) return true;
|
3153
|
+
};
|
3154
|
+
return false;
|
3155
|
+
}
|
3156
|
+
// largest arity in XHR is 5 - XHR#open
|
3157
|
+
var apply = function(obj, method, args) {
|
3158
|
+
switch (args.length) {
|
3159
|
+
case 0:
|
3160
|
+
return obj[method]();
|
3161
|
+
case 1:
|
3162
|
+
return obj[method](args[0]);
|
3163
|
+
case 2:
|
3164
|
+
return obj[method](args[0], args[1]);
|
3165
|
+
case 3:
|
3166
|
+
return obj[method](args[0], args[1], args[2]);
|
3167
|
+
case 4:
|
3168
|
+
return obj[method](args[0], args[1], args[2], args[3]);
|
3169
|
+
case 5:
|
3170
|
+
return obj[method](args[0], args[1], args[2], args[3], args[4]);
|
3171
|
+
};
|
3172
|
+
};
|
3173
|
+
|
3174
|
+
FakeXMLHttpRequest.filters = [];
|
3175
|
+
FakeXMLHttpRequest.addFilter = function(fn) {
|
3176
|
+
this.filters.push(fn)
|
3177
|
+
};
|
3178
|
+
var IE6Re = /MSIE 6/;
|
3179
|
+
FakeXMLHttpRequest.defake = function(fakeXhr, xhrArgs) {
|
3180
|
+
var xhr = new sinon.xhr.workingXHR();
|
3181
|
+
each(["open", "setRequestHeader", "send", "abort", "getResponseHeader", "getAllResponseHeaders", "addEventListener", "overrideMimeType", "removeEventListener"],
|
3182
|
+
|
3183
|
+
function(method) {
|
3184
|
+
fakeXhr[method] = function() {
|
3185
|
+
return apply(xhr, method, arguments);
|
3186
|
+
};
|
3187
|
+
});
|
3188
|
+
|
3189
|
+
var copyAttrs = function(args) {
|
3190
|
+
each(args, function(attr) {
|
3191
|
+
try {
|
3192
|
+
fakeXhr[attr] = xhr[attr]
|
3193
|
+
} catch (e) {
|
3194
|
+
if (!IE6Re.test(navigator.userAgent)) throw e;
|
3195
|
+
}
|
3196
|
+
});
|
3197
|
+
};
|
3198
|
+
|
3199
|
+
var stateChange = function() {
|
3200
|
+
fakeXhr.readyState = xhr.readyState;
|
3201
|
+
if (xhr.readyState >= FakeXMLHttpRequest.HEADERS_RECEIVED) {
|
3202
|
+
copyAttrs(["status", "statusText"]);
|
3203
|
+
}
|
3204
|
+
if (xhr.readyState >= FakeXMLHttpRequest.LOADING) {
|
3205
|
+
copyAttrs(["responseText"]);
|
3206
|
+
}
|
3207
|
+
if (xhr.readyState === FakeXMLHttpRequest.DONE) {
|
3208
|
+
copyAttrs(["responseXML"]);
|
3209
|
+
}
|
3210
|
+
if (fakeXhr.onreadystatechange) fakeXhr.onreadystatechange.call(fakeXhr);
|
3211
|
+
};
|
3212
|
+
if (xhr.addEventListener) {
|
3213
|
+
for (var event in fakeXhr.eventListeners) {
|
3214
|
+
if (fakeXhr.eventListeners.hasOwnProperty(event)) {
|
3215
|
+
each(fakeXhr.eventListeners[event], function(handler) {
|
3216
|
+
xhr.addEventListener(event, handler);
|
3217
|
+
});
|
3218
|
+
}
|
3219
|
+
}
|
3220
|
+
xhr.addEventListener("readystatechange", stateChange);
|
3221
|
+
} else {
|
3222
|
+
xhr.onreadystatechange = stateChange;
|
3223
|
+
}
|
3224
|
+
apply(xhr, "open", xhrArgs);
|
3225
|
+
};
|
3226
|
+
FakeXMLHttpRequest.useFilters = false;
|
3227
|
+
|
3228
|
+
function verifyRequestSent(xhr) {
|
3229
|
+
if (xhr.readyState == FakeXMLHttpRequest.DONE) {
|
3230
|
+
throw new Error("Request done");
|
3231
|
+
}
|
3232
|
+
}
|
3233
|
+
|
3234
|
+
function verifyHeadersReceived(xhr) {
|
3235
|
+
if (xhr.async && xhr.readyState != FakeXMLHttpRequest.HEADERS_RECEIVED) {
|
3236
|
+
throw new Error("No headers received");
|
3237
|
+
}
|
3238
|
+
}
|
3239
|
+
|
3240
|
+
function verifyResponseBodyType(body) {
|
3241
|
+
if (typeof body != "string") {
|
3242
|
+
var error = new Error("Attempted to respond to fake XMLHttpRequest with " + body + ", which is not a string.");
|
3243
|
+
error.name = "InvalidBodyException";
|
3244
|
+
throw error;
|
3245
|
+
}
|
3246
|
+
}
|
3247
|
+
|
3248
|
+
sinon.extend(FakeXMLHttpRequest.prototype, sinon.EventTarget, {
|
3249
|
+
async: true,
|
3250
|
+
|
3251
|
+
open: function open(method, url, async, username, password) {
|
3252
|
+
this.method = method;
|
3253
|
+
this.url = url;
|
3254
|
+
this.async = typeof async == "boolean" ? async : true;
|
3255
|
+
this.username = username;
|
3256
|
+
this.password = password;
|
3257
|
+
this.responseText = null;
|
3258
|
+
this.responseXML = null;
|
3259
|
+
this.requestHeaders = {};
|
3260
|
+
this.sendFlag = false;
|
3261
|
+
if (sinon.FakeXMLHttpRequest.useFilters === true) {
|
3262
|
+
var xhrArgs = arguments;
|
3263
|
+
var defake = some(FakeXMLHttpRequest.filters, function(filter) {
|
3264
|
+
return filter.apply(this, xhrArgs)
|
3265
|
+
});
|
3266
|
+
if (defake) {
|
3267
|
+
return sinon.FakeXMLHttpRequest.defake(this, arguments);
|
3268
|
+
}
|
3269
|
+
}
|
3270
|
+
this.readyStateChange(FakeXMLHttpRequest.OPENED);
|
3271
|
+
},
|
3272
|
+
|
3273
|
+
readyStateChange: function readyStateChange(state) {
|
3274
|
+
this.readyState = state;
|
3275
|
+
|
3276
|
+
if (typeof this.onreadystatechange == "function") {
|
3277
|
+
try {
|
3278
|
+
this.onreadystatechange();
|
3279
|
+
} catch (e) {
|
3280
|
+
sinon.logError("Fake XHR onreadystatechange handler", e);
|
3281
|
+
}
|
3282
|
+
}
|
3283
|
+
|
3284
|
+
this.dispatchEvent(new sinon.Event("readystatechange"));
|
3285
|
+
|
3286
|
+
switch (this.readyState) {
|
3287
|
+
case FakeXMLHttpRequest.DONE:
|
3288
|
+
this.dispatchEvent(new sinon.Event("load", false, false, this));
|
3289
|
+
this.dispatchEvent(new sinon.Event("loadend", false, false, this));
|
3290
|
+
break;
|
3291
|
+
}
|
3292
|
+
},
|
3293
|
+
|
3294
|
+
setRequestHeader: function setRequestHeader(header, value) {
|
3295
|
+
verifyState(this);
|
3296
|
+
|
3297
|
+
if (unsafeHeaders[header] || /^(Sec-|Proxy-)/.test(header)) {
|
3298
|
+
throw new Error("Refused to set unsafe header \"" + header + "\"");
|
3299
|
+
}
|
3300
|
+
|
3301
|
+
if (this.requestHeaders[header]) {
|
3302
|
+
this.requestHeaders[header] += "," + value;
|
3303
|
+
} else {
|
3304
|
+
this.requestHeaders[header] = value;
|
3305
|
+
}
|
3306
|
+
},
|
3307
|
+
|
3308
|
+
// Helps testing
|
3309
|
+
setResponseHeaders: function setResponseHeaders(headers) {
|
3310
|
+
this.responseHeaders = {};
|
3311
|
+
|
3312
|
+
for (var header in headers) {
|
3313
|
+
if (headers.hasOwnProperty(header)) {
|
3314
|
+
this.responseHeaders[header] = headers[header];
|
3315
|
+
}
|
3316
|
+
}
|
3317
|
+
|
3318
|
+
if (this.async) {
|
3319
|
+
this.readyStateChange(FakeXMLHttpRequest.HEADERS_RECEIVED);
|
3320
|
+
} else {
|
3321
|
+
this.readyState = FakeXMLHttpRequest.HEADERS_RECEIVED;
|
3322
|
+
}
|
3323
|
+
},
|
3324
|
+
|
3325
|
+
// Currently treats ALL data as a DOMString (i.e. no Document)
|
3326
|
+
send: function send(data) {
|
3327
|
+
verifyState(this);
|
3328
|
+
|
3329
|
+
if (!/^(get|head)$/i.test(this.method)) {
|
3330
|
+
if (this.requestHeaders["Content-Type"]) {
|
3331
|
+
var value = this.requestHeaders["Content-Type"].split(";");
|
3332
|
+
this.requestHeaders["Content-Type"] = value[0] + ";charset=utf-8";
|
3333
|
+
} else {
|
3334
|
+
this.requestHeaders["Content-Type"] = "text/plain;charset=utf-8";
|
3335
|
+
}
|
3336
|
+
|
3337
|
+
this.requestBody = data;
|
3338
|
+
}
|
3339
|
+
|
3340
|
+
this.errorFlag = false;
|
3341
|
+
this.sendFlag = this.async;
|
3342
|
+
this.readyStateChange(FakeXMLHttpRequest.OPENED);
|
3343
|
+
|
3344
|
+
if (typeof this.onSend == "function") {
|
3345
|
+
this.onSend(this);
|
3346
|
+
}
|
3347
|
+
|
3348
|
+
this.dispatchEvent(new sinon.Event("loadstart", false, false, this));
|
3349
|
+
},
|
3350
|
+
|
3351
|
+
abort: function abort() {
|
3352
|
+
this.aborted = true;
|
3353
|
+
this.responseText = null;
|
3354
|
+
this.errorFlag = true;
|
3355
|
+
this.requestHeaders = {};
|
3356
|
+
|
3357
|
+
if (this.readyState > sinon.FakeXMLHttpRequest.UNSENT && this.sendFlag) {
|
3358
|
+
this.readyStateChange(sinon.FakeXMLHttpRequest.DONE);
|
3359
|
+
this.sendFlag = false;
|
3360
|
+
}
|
3361
|
+
|
3362
|
+
this.readyState = sinon.FakeXMLHttpRequest.UNSENT;
|
3363
|
+
|
3364
|
+
this.dispatchEvent(new sinon.Event("abort", false, false, this));
|
3365
|
+
if (typeof this.onerror === "function") {
|
3366
|
+
this.onerror();
|
3367
|
+
}
|
3368
|
+
},
|
3369
|
+
|
3370
|
+
getResponseHeader: function getResponseHeader(header) {
|
3371
|
+
if (this.readyState < FakeXMLHttpRequest.HEADERS_RECEIVED) {
|
3372
|
+
return null;
|
3373
|
+
}
|
3374
|
+
|
3375
|
+
if (/^Set-Cookie2?$/i.test(header)) {
|
3376
|
+
return null;
|
3377
|
+
}
|
3378
|
+
|
3379
|
+
header = header.toLowerCase();
|
3380
|
+
|
3381
|
+
for (var h in this.responseHeaders) {
|
3382
|
+
if (h.toLowerCase() == header) {
|
3383
|
+
return this.responseHeaders[h];
|
3384
|
+
}
|
3385
|
+
}
|
3386
|
+
|
3387
|
+
return null;
|
3388
|
+
},
|
3389
|
+
|
3390
|
+
getAllResponseHeaders: function getAllResponseHeaders() {
|
3391
|
+
if (this.readyState < FakeXMLHttpRequest.HEADERS_RECEIVED) {
|
3392
|
+
return "";
|
3393
|
+
}
|
3394
|
+
|
3395
|
+
var headers = "";
|
3396
|
+
|
3397
|
+
for (var header in this.responseHeaders) {
|
3398
|
+
if (this.responseHeaders.hasOwnProperty(header) && !/^Set-Cookie2?$/i.test(header)) {
|
3399
|
+
headers += header + ": " + this.responseHeaders[header] + "\r\n";
|
3400
|
+
}
|
3401
|
+
}
|
3402
|
+
|
3403
|
+
return headers;
|
3404
|
+
},
|
3405
|
+
|
3406
|
+
setResponseBody: function setResponseBody(body) {
|
3407
|
+
verifyRequestSent(this);
|
3408
|
+
verifyHeadersReceived(this);
|
3409
|
+
verifyResponseBodyType(body);
|
3410
|
+
|
3411
|
+
var chunkSize = this.chunkSize || 10;
|
3412
|
+
var index = 0;
|
3413
|
+
this.responseText = "";
|
3414
|
+
|
3415
|
+
do {
|
3416
|
+
if (this.async) {
|
3417
|
+
this.readyStateChange(FakeXMLHttpRequest.LOADING);
|
3418
|
+
}
|
3419
|
+
|
3420
|
+
this.responseText += body.substring(index, index + chunkSize);
|
3421
|
+
index += chunkSize;
|
3422
|
+
} while (index < body.length);
|
3423
|
+
|
3424
|
+
var type = this.getResponseHeader("Content-Type");
|
3425
|
+
|
3426
|
+
if (this.responseText && (!type || /(text\/xml)|(application\/xml)|(\+xml)/.test(type))) {
|
3427
|
+
try {
|
3428
|
+
this.responseXML = FakeXMLHttpRequest.parseXML(this.responseText);
|
3429
|
+
} catch (e) {
|
3430
|
+
// Unable to parse XML - no biggie
|
3431
|
+
}
|
3432
|
+
}
|
3433
|
+
|
3434
|
+
if (this.async) {
|
3435
|
+
this.readyStateChange(FakeXMLHttpRequest.DONE);
|
3436
|
+
} else {
|
3437
|
+
this.readyState = FakeXMLHttpRequest.DONE;
|
3438
|
+
}
|
3439
|
+
},
|
3440
|
+
|
3441
|
+
respond: function respond(status, headers, body) {
|
3442
|
+
this.setResponseHeaders(headers || {});
|
3443
|
+
this.status = typeof status == "number" ? status : 200;
|
3444
|
+
this.statusText = FakeXMLHttpRequest.statusCodes[this.status];
|
3445
|
+
this.setResponseBody(body || "");
|
3446
|
+
if (typeof this.onload === "function") {
|
3447
|
+
this.onload();
|
3448
|
+
}
|
3449
|
+
|
3450
|
+
}
|
3451
|
+
});
|
3452
|
+
|
3453
|
+
sinon.extend(FakeXMLHttpRequest, {
|
3454
|
+
UNSENT: 0,
|
3455
|
+
OPENED: 1,
|
3456
|
+
HEADERS_RECEIVED: 2,
|
3457
|
+
LOADING: 3,
|
3458
|
+
DONE: 4
|
3459
|
+
});
|
3460
|
+
|
3461
|
+
// Borrowed from JSpec
|
3462
|
+
FakeXMLHttpRequest.parseXML = function parseXML(text) {
|
3463
|
+
var xmlDoc;
|
3464
|
+
|
3465
|
+
if (typeof DOMParser != "undefined") {
|
3466
|
+
var parser = new DOMParser();
|
3467
|
+
xmlDoc = parser.parseFromString(text, "text/xml");
|
3468
|
+
} else {
|
3469
|
+
xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
|
3470
|
+
xmlDoc.async = "false";
|
3471
|
+
xmlDoc.loadXML(text);
|
3472
|
+
}
|
3473
|
+
|
3474
|
+
return xmlDoc;
|
3475
|
+
};
|
3476
|
+
|
3477
|
+
FakeXMLHttpRequest.statusCodes = {
|
3478
|
+
100: "Continue",
|
3479
|
+
101: "Switching Protocols",
|
3480
|
+
200: "OK",
|
3481
|
+
201: "Created",
|
3482
|
+
202: "Accepted",
|
3483
|
+
203: "Non-Authoritative Information",
|
3484
|
+
204: "No Content",
|
3485
|
+
205: "Reset Content",
|
3486
|
+
206: "Partial Content",
|
3487
|
+
300: "Multiple Choice",
|
3488
|
+
301: "Moved Permanently",
|
3489
|
+
302: "Found",
|
3490
|
+
303: "See Other",
|
3491
|
+
304: "Not Modified",
|
3492
|
+
305: "Use Proxy",
|
3493
|
+
307: "Temporary Redirect",
|
3494
|
+
400: "Bad Request",
|
3495
|
+
401: "Unauthorized",
|
3496
|
+
402: "Payment Required",
|
3497
|
+
403: "Forbidden",
|
3498
|
+
404: "Not Found",
|
3499
|
+
405: "Method Not Allowed",
|
3500
|
+
406: "Not Acceptable",
|
3501
|
+
407: "Proxy Authentication Required",
|
3502
|
+
408: "Request Timeout",
|
3503
|
+
409: "Conflict",
|
3504
|
+
410: "Gone",
|
3505
|
+
411: "Length Required",
|
3506
|
+
412: "Precondition Failed",
|
3507
|
+
413: "Request Entity Too Large",
|
3508
|
+
414: "Request-URI Too Long",
|
3509
|
+
415: "Unsupported Media Type",
|
3510
|
+
416: "Requested Range Not Satisfiable",
|
3511
|
+
417: "Expectation Failed",
|
3512
|
+
422: "Unprocessable Entity",
|
3513
|
+
500: "Internal Server Error",
|
3514
|
+
501: "Not Implemented",
|
3515
|
+
502: "Bad Gateway",
|
3516
|
+
503: "Service Unavailable",
|
3517
|
+
504: "Gateway Timeout",
|
3518
|
+
505: "HTTP Version Not Supported"
|
3519
|
+
};
|
3520
|
+
|
3521
|
+
sinon.useFakeXMLHttpRequest = function() {
|
3522
|
+
sinon.FakeXMLHttpRequest.restore = function restore(keepOnCreate) {
|
3523
|
+
if (xhr.supportsXHR) {
|
3524
|
+
global.XMLHttpRequest = xhr.GlobalXMLHttpRequest;
|
3525
|
+
}
|
3526
|
+
|
3527
|
+
if (xhr.supportsActiveX) {
|
3528
|
+
global.ActiveXObject = xhr.GlobalActiveXObject;
|
3529
|
+
}
|
3530
|
+
|
3531
|
+
delete sinon.FakeXMLHttpRequest.restore;
|
3532
|
+
|
3533
|
+
if (keepOnCreate !== true) {
|
3534
|
+
delete sinon.FakeXMLHttpRequest.onCreate;
|
3535
|
+
}
|
3536
|
+
};
|
3537
|
+
if (xhr.supportsXHR) {
|
3538
|
+
global.XMLHttpRequest = sinon.FakeXMLHttpRequest;
|
3539
|
+
}
|
3540
|
+
|
3541
|
+
if (xhr.supportsActiveX) {
|
3542
|
+
global.ActiveXObject = function ActiveXObject(objId) {
|
3543
|
+
if (objId == "Microsoft.XMLHTTP" || /^Msxml2\.XMLHTTP/i.test(objId)) {
|
3544
|
+
|
3545
|
+
return new sinon.FakeXMLHttpRequest();
|
3546
|
+
}
|
3547
|
+
|
3548
|
+
return new xhr.GlobalActiveXObject(objId);
|
3549
|
+
};
|
3550
|
+
}
|
3551
|
+
|
3552
|
+
return sinon.FakeXMLHttpRequest;
|
3553
|
+
};
|
3554
|
+
|
3555
|
+
sinon.FakeXMLHttpRequest = FakeXMLHttpRequest;
|
3556
|
+
})(this);
|
3557
|
+
|
3558
|
+
if (typeof module == "object" && typeof require == "function") {
|
3559
|
+
module.exports = sinon;
|
3560
|
+
}
|
3561
|
+
|
3562
|
+
/**
|
3563
|
+
* @depend fake_xml_http_request.js
|
3564
|
+
*/
|
3565
|
+
/*jslint eqeqeq: false, onevar: false, regexp: false, plusplus: false*/
|
3566
|
+
/*global module, require, window*/
|
3567
|
+
/**
|
3568
|
+
* The Sinon "server" mimics a web server that receives requests from
|
3569
|
+
* sinon.FakeXMLHttpRequest and provides an API to respond to those requests,
|
3570
|
+
* both synchronously and asynchronously. To respond synchronuously, canned
|
3571
|
+
* answers have to be provided upfront.
|
3572
|
+
*
|
3573
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
3574
|
+
* @license BSD
|
3575
|
+
*
|
3576
|
+
* Copyright (c) 2010-2013 Christian Johansen
|
3577
|
+
*/
|
3578
|
+
|
3579
|
+
if (typeof sinon == "undefined") {
|
3580
|
+
var sinon = {};
|
3581
|
+
}
|
3582
|
+
|
3583
|
+
sinon.fakeServer = (function() {
|
3584
|
+
var push = [].push;
|
3585
|
+
|
3586
|
+
function F() {}
|
3587
|
+
|
3588
|
+
function create(proto) {
|
3589
|
+
F.prototype = proto;
|
3590
|
+
return new F();
|
3591
|
+
}
|
3592
|
+
|
3593
|
+
function responseArray(handler) {
|
3594
|
+
var response = handler;
|
3595
|
+
|
3596
|
+
if (Object.prototype.toString.call(handler) != "[object Array]") {
|
3597
|
+
response = [200, {},
|
3598
|
+
handler];
|
3599
|
+
}
|
3600
|
+
|
3601
|
+
if (typeof response[2] != "string") {
|
3602
|
+
throw new TypeError("Fake server response body should be string, but was " + typeof response[2]);
|
3603
|
+
}
|
3604
|
+
|
3605
|
+
return response;
|
3606
|
+
}
|
3607
|
+
|
3608
|
+
var wloc = typeof window !== "undefined" ? window.location : {};
|
3609
|
+
var rCurrLoc = new RegExp("^" + wloc.protocol + "//" + wloc.host);
|
3610
|
+
|
3611
|
+
function matchOne(response, reqMethod, reqUrl) {
|
3612
|
+
var rmeth = response.method;
|
3613
|
+
var matchMethod = !rmeth || rmeth.toLowerCase() == reqMethod.toLowerCase();
|
3614
|
+
var url = response.url;
|
3615
|
+
var matchUrl = !url || url == reqUrl || (typeof url.test == "function" && url.test(reqUrl));
|
3616
|
+
|
3617
|
+
return matchMethod && matchUrl;
|
3618
|
+
}
|
3619
|
+
|
3620
|
+
function match(response, request) {
|
3621
|
+
var requestMethod = this.getHTTPMethod(request);
|
3622
|
+
var requestUrl = request.url;
|
3623
|
+
|
3624
|
+
if (!/^https?:\/\//.test(requestUrl) || rCurrLoc.test(requestUrl)) {
|
3625
|
+
requestUrl = requestUrl.replace(rCurrLoc, "");
|
3626
|
+
}
|
3627
|
+
|
3628
|
+
if (matchOne(response, this.getHTTPMethod(request), requestUrl)) {
|
3629
|
+
if (typeof response.response == "function") {
|
3630
|
+
var ru = response.url;
|
3631
|
+
var args = [request].concat(!ru ? [] : requestUrl.match(ru)
|
3632
|
+
.slice(1));
|
3633
|
+
return response.response.apply(response, args);
|
3634
|
+
}
|
3635
|
+
|
3636
|
+
return true;
|
3637
|
+
}
|
3638
|
+
|
3639
|
+
return false;
|
3640
|
+
}
|
3641
|
+
|
3642
|
+
function log(response, request) {
|
3643
|
+
var str;
|
3644
|
+
|
3645
|
+
str = "Request:\n" + sinon.format(request) + "\n\n";
|
3646
|
+
str += "Response:\n" + sinon.format(response) + "\n\n";
|
3647
|
+
|
3648
|
+
sinon.log(str);
|
3649
|
+
}
|
3650
|
+
|
3651
|
+
return {
|
3652
|
+
create: function() {
|
3653
|
+
var server = create(this);
|
3654
|
+
this.xhr = sinon.useFakeXMLHttpRequest();
|
3655
|
+
server.requests = [];
|
3656
|
+
|
3657
|
+
this.xhr.onCreate = function(xhrObj) {
|
3658
|
+
server.addRequest(xhrObj);
|
3659
|
+
};
|
3660
|
+
|
3661
|
+
return server;
|
3662
|
+
},
|
3663
|
+
|
3664
|
+
addRequest: function addRequest(xhrObj) {
|
3665
|
+
var server = this;
|
3666
|
+
push.call(this.requests, xhrObj);
|
3667
|
+
|
3668
|
+
xhrObj.onSend = function() {
|
3669
|
+
server.handleRequest(this);
|
3670
|
+
};
|
3671
|
+
|
3672
|
+
if (this.autoRespond && !this.responding) {
|
3673
|
+
setTimeout(function() {
|
3674
|
+
server.responding = false;
|
3675
|
+
server.respond();
|
3676
|
+
}, this.autoRespondAfter || 10);
|
3677
|
+
|
3678
|
+
this.responding = true;
|
3679
|
+
}
|
3680
|
+
},
|
3681
|
+
|
3682
|
+
getHTTPMethod: function getHTTPMethod(request) {
|
3683
|
+
if (this.fakeHTTPMethods && /post/i.test(request.method)) {
|
3684
|
+
var matches = (request.requestBody || "")
|
3685
|
+
.match(/_method=([^\b;]+)/);
|
3686
|
+
return !!matches ? matches[1] : request.method;
|
3687
|
+
}
|
3688
|
+
|
3689
|
+
return request.method;
|
3690
|
+
},
|
3691
|
+
|
3692
|
+
handleRequest: function handleRequest(xhr) {
|
3693
|
+
if (xhr.async) {
|
3694
|
+
if (!this.queue) {
|
3695
|
+
this.queue = [];
|
3696
|
+
}
|
3697
|
+
|
3698
|
+
push.call(this.queue, xhr);
|
3699
|
+
} else {
|
3700
|
+
this.processRequest(xhr);
|
3701
|
+
}
|
3702
|
+
},
|
3703
|
+
|
3704
|
+
respondWith: function respondWith(method, url, body) {
|
3705
|
+
if (arguments.length == 1 && typeof method != "function") {
|
3706
|
+
this.response = responseArray(method);
|
3707
|
+
return;
|
3708
|
+
}
|
3709
|
+
|
3710
|
+
if (!this.responses) {
|
3711
|
+
this.responses = [];
|
3712
|
+
}
|
3713
|
+
|
3714
|
+
if (arguments.length == 1) {
|
3715
|
+
body = method;
|
3716
|
+
url = method = null;
|
3717
|
+
}
|
3718
|
+
|
3719
|
+
if (arguments.length == 2) {
|
3720
|
+
body = url;
|
3721
|
+
url = method;
|
3722
|
+
method = null;
|
3723
|
+
}
|
3724
|
+
|
3725
|
+
push.call(this.responses, {
|
3726
|
+
method: method,
|
3727
|
+
url: url,
|
3728
|
+
response: typeof body == "function" ? body : responseArray(body)
|
3729
|
+
});
|
3730
|
+
},
|
3731
|
+
|
3732
|
+
respond: function respond() {
|
3733
|
+
if (arguments.length > 0) this.respondWith.apply(this, arguments);
|
3734
|
+
var queue = this.queue || [];
|
3735
|
+
var request;
|
3736
|
+
|
3737
|
+
while (request = queue.shift()) {
|
3738
|
+
this.processRequest(request);
|
3739
|
+
}
|
3740
|
+
},
|
3741
|
+
|
3742
|
+
processRequest: function processRequest(request) {
|
3743
|
+
try {
|
3744
|
+
if (request.aborted) {
|
3745
|
+
return;
|
3746
|
+
}
|
3747
|
+
|
3748
|
+
var response = this.response || [404, {}, ""];
|
3749
|
+
|
3750
|
+
if (this.responses) {
|
3751
|
+
for (var i = 0, l = this.responses.length; i < l; i++) {
|
3752
|
+
if (match.call(this, this.responses[i], request)) {
|
3753
|
+
response = this.responses[i].response;
|
3754
|
+
break;
|
3755
|
+
}
|
3756
|
+
}
|
3757
|
+
}
|
3758
|
+
|
3759
|
+
if (request.readyState != 4) {
|
3760
|
+
log(response, request);
|
3761
|
+
|
3762
|
+
request.respond(response[0], response[1], response[2]);
|
3763
|
+
}
|
3764
|
+
} catch (e) {
|
3765
|
+
sinon.logError("Fake server request processing", e);
|
3766
|
+
}
|
3767
|
+
},
|
3768
|
+
|
3769
|
+
restore: function restore() {
|
3770
|
+
return this.xhr.restore && this.xhr.restore.apply(this.xhr, arguments);
|
3771
|
+
}
|
3772
|
+
};
|
3773
|
+
}());
|
3774
|
+
|
3775
|
+
if (typeof module == "object" && typeof require == "function") {
|
3776
|
+
module.exports = sinon;
|
3777
|
+
}
|
3778
|
+
|
3779
|
+
/**
|
3780
|
+
* @depend fake_server.js
|
3781
|
+
* @depend fake_timers.js
|
3782
|
+
*/
|
3783
|
+
/*jslint browser: true, eqeqeq: false, onevar: false*/
|
3784
|
+
/*global sinon*/
|
3785
|
+
/**
|
3786
|
+
* Add-on for sinon.fakeServer that automatically handles a fake timer along with
|
3787
|
+
* the FakeXMLHttpRequest. The direct inspiration for this add-on is jQuery
|
3788
|
+
* 1.3.x, which does not use xhr object's onreadystatehandler at all - instead,
|
3789
|
+
* it polls the object for completion with setInterval. Dispite the direct
|
3790
|
+
* motivation, there is nothing jQuery-specific in this file, so it can be used
|
3791
|
+
* in any environment where the ajax implementation depends on setInterval or
|
3792
|
+
* setTimeout.
|
3793
|
+
*
|
3794
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
3795
|
+
* @license BSD
|
3796
|
+
*
|
3797
|
+
* Copyright (c) 2010-2013 Christian Johansen
|
3798
|
+
*/
|
3799
|
+
|
3800
|
+
(function() {
|
3801
|
+
function Server() {}
|
3802
|
+
Server.prototype = sinon.fakeServer;
|
3803
|
+
|
3804
|
+
sinon.fakeServerWithClock = new Server();
|
3805
|
+
|
3806
|
+
sinon.fakeServerWithClock.addRequest = function addRequest(xhr) {
|
3807
|
+
if (xhr.async) {
|
3808
|
+
if (typeof setTimeout.clock == "object") {
|
3809
|
+
this.clock = setTimeout.clock;
|
3810
|
+
} else {
|
3811
|
+
this.clock = sinon.useFakeTimers();
|
3812
|
+
this.resetClock = true;
|
3813
|
+
}
|
3814
|
+
|
3815
|
+
if (!this.longestTimeout) {
|
3816
|
+
var clockSetTimeout = this.clock.setTimeout;
|
3817
|
+
var clockSetInterval = this.clock.setInterval;
|
3818
|
+
var server = this;
|
3819
|
+
|
3820
|
+
this.clock.setTimeout = function(fn, timeout) {
|
3821
|
+
server.longestTimeout = Math.max(timeout, server.longestTimeout || 0);
|
3822
|
+
|
3823
|
+
return clockSetTimeout.apply(this, arguments);
|
3824
|
+
};
|
3825
|
+
|
3826
|
+
this.clock.setInterval = function(fn, timeout) {
|
3827
|
+
server.longestTimeout = Math.max(timeout, server.longestTimeout || 0);
|
3828
|
+
|
3829
|
+
return clockSetInterval.apply(this, arguments);
|
3830
|
+
};
|
3831
|
+
}
|
3832
|
+
}
|
3833
|
+
|
3834
|
+
return sinon.fakeServer.addRequest.call(this, xhr);
|
3835
|
+
};
|
3836
|
+
|
3837
|
+
sinon.fakeServerWithClock.respond = function respond() {
|
3838
|
+
var returnVal = sinon.fakeServer.respond.apply(this, arguments);
|
3839
|
+
|
3840
|
+
if (this.clock) {
|
3841
|
+
this.clock.tick(this.longestTimeout || 0);
|
3842
|
+
this.longestTimeout = 0;
|
3843
|
+
|
3844
|
+
if (this.resetClock) {
|
3845
|
+
this.clock.restore();
|
3846
|
+
this.resetClock = false;
|
3847
|
+
}
|
3848
|
+
}
|
3849
|
+
|
3850
|
+
return returnVal;
|
3851
|
+
};
|
3852
|
+
|
3853
|
+
sinon.fakeServerWithClock.restore = function restore() {
|
3854
|
+
if (this.clock) {
|
3855
|
+
this.clock.restore();
|
3856
|
+
}
|
3857
|
+
|
3858
|
+
return sinon.fakeServer.restore.apply(this, arguments);
|
3859
|
+
};
|
3860
|
+
}());
|
3861
|
+
|
3862
|
+
/**
|
3863
|
+
* @depend ../sinon.js
|
3864
|
+
* @depend collection.js
|
3865
|
+
* @depend util/fake_timers.js
|
3866
|
+
* @depend util/fake_server_with_clock.js
|
3867
|
+
*/
|
3868
|
+
/*jslint eqeqeq: false, onevar: false, plusplus: false*/
|
3869
|
+
/*global require, module*/
|
3870
|
+
/**
|
3871
|
+
* Manages fake collections as well as fake utilities such as Sinon's
|
3872
|
+
* timers and fake XHR implementation in one convenient object.
|
3873
|
+
*
|
3874
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
3875
|
+
* @license BSD
|
3876
|
+
*
|
3877
|
+
* Copyright (c) 2010-2013 Christian Johansen
|
3878
|
+
*/
|
3879
|
+
|
3880
|
+
if (typeof module == "object" && typeof require == "function") {
|
3881
|
+
var sinon = require("../sinon");
|
3882
|
+
sinon.extend(sinon, require("./util/fake_timers"));
|
3883
|
+
}
|
3884
|
+
|
3885
|
+
(function() {
|
3886
|
+
var push = [].push;
|
3887
|
+
|
3888
|
+
function exposeValue(sandbox, config, key, value) {
|
3889
|
+
if (!value) {
|
3890
|
+
return;
|
3891
|
+
}
|
3892
|
+
|
3893
|
+
if (config.injectInto) {
|
3894
|
+
config.injectInto[key] = value;
|
3895
|
+
} else {
|
3896
|
+
push.call(sandbox.args, value);
|
3897
|
+
}
|
3898
|
+
}
|
3899
|
+
|
3900
|
+
function prepareSandboxFromConfig(config) {
|
3901
|
+
var sandbox = sinon.create(sinon.sandbox);
|
3902
|
+
|
3903
|
+
if (config.useFakeServer) {
|
3904
|
+
if (typeof config.useFakeServer == "object") {
|
3905
|
+
sandbox.serverPrototype = config.useFakeServer;
|
3906
|
+
}
|
3907
|
+
|
3908
|
+
sandbox.useFakeServer();
|
3909
|
+
}
|
3910
|
+
|
3911
|
+
if (config.useFakeTimers) {
|
3912
|
+
if (typeof config.useFakeTimers == "object") {
|
3913
|
+
sandbox.useFakeTimers.apply(sandbox, config.useFakeTimers);
|
3914
|
+
} else {
|
3915
|
+
sandbox.useFakeTimers();
|
3916
|
+
}
|
3917
|
+
}
|
3918
|
+
|
3919
|
+
return sandbox;
|
3920
|
+
}
|
3921
|
+
|
3922
|
+
sinon.sandbox = sinon.extend(sinon.create(sinon.collection), {
|
3923
|
+
useFakeTimers: function useFakeTimers() {
|
3924
|
+
this.clock = sinon.useFakeTimers.apply(sinon, arguments);
|
3925
|
+
|
3926
|
+
return this.add(this.clock);
|
3927
|
+
},
|
3928
|
+
|
3929
|
+
serverPrototype: sinon.fakeServer,
|
3930
|
+
|
3931
|
+
useFakeServer: function useFakeServer() {
|
3932
|
+
var proto = this.serverPrototype || sinon.fakeServer;
|
3933
|
+
|
3934
|
+
if (!proto || !proto.create) {
|
3935
|
+
return null;
|
3936
|
+
}
|
3937
|
+
|
3938
|
+
this.server = proto.create();
|
3939
|
+
return this.add(this.server);
|
3940
|
+
},
|
3941
|
+
|
3942
|
+
inject: function(obj) {
|
3943
|
+
sinon.collection.inject.call(this, obj);
|
3944
|
+
|
3945
|
+
if (this.clock) {
|
3946
|
+
obj.clock = this.clock;
|
3947
|
+
}
|
3948
|
+
|
3949
|
+
if (this.server) {
|
3950
|
+
obj.server = this.server;
|
3951
|
+
obj.requests = this.server.requests;
|
3952
|
+
}
|
3953
|
+
|
3954
|
+
return obj;
|
3955
|
+
},
|
3956
|
+
|
3957
|
+
create: function(config) {
|
3958
|
+
if (!config) {
|
3959
|
+
return sinon.create(sinon.sandbox);
|
3960
|
+
}
|
3961
|
+
|
3962
|
+
var sandbox = prepareSandboxFromConfig(config);
|
3963
|
+
sandbox.args = sandbox.args || [];
|
3964
|
+
var prop, value, exposed = sandbox.inject({});
|
3965
|
+
|
3966
|
+
if (config.properties) {
|
3967
|
+
for (var i = 0, l = config.properties.length; i < l; i++) {
|
3968
|
+
prop = config.properties[i];
|
3969
|
+
value = exposed[prop] || prop == "sandbox" && sandbox;
|
3970
|
+
exposeValue(sandbox, config, prop, value);
|
3971
|
+
}
|
3972
|
+
} else {
|
3973
|
+
exposeValue(sandbox, config, "sandbox", value);
|
3974
|
+
}
|
3975
|
+
|
3976
|
+
return sandbox;
|
3977
|
+
}
|
3978
|
+
});
|
3979
|
+
|
3980
|
+
sinon.sandbox.useFakeXMLHttpRequest = sinon.sandbox.useFakeServer;
|
3981
|
+
|
3982
|
+
if (typeof module == "object" && typeof require == "function") {
|
3983
|
+
module.exports = sinon.sandbox;
|
3984
|
+
}
|
3985
|
+
}());
|
3986
|
+
|
3987
|
+
/**
|
3988
|
+
* @depend ../sinon.js
|
3989
|
+
* @depend stub.js
|
3990
|
+
* @depend mock.js
|
3991
|
+
* @depend sandbox.js
|
3992
|
+
*/
|
3993
|
+
/*jslint eqeqeq: false, onevar: false, forin: true, plusplus: false*/
|
3994
|
+
/*global module, require, sinon*/
|
3995
|
+
/**
|
3996
|
+
* Test function, sandboxes fakes
|
3997
|
+
*
|
3998
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
3999
|
+
* @license BSD
|
4000
|
+
*
|
4001
|
+
* Copyright (c) 2010-2013 Christian Johansen
|
4002
|
+
*/
|
4003
|
+
|
4004
|
+
(function(sinon) {
|
4005
|
+
var commonJSModule = typeof module == "object" && typeof require == "function";
|
4006
|
+
|
4007
|
+
if (!sinon && commonJSModule) {
|
4008
|
+
sinon = require("../sinon");
|
4009
|
+
}
|
4010
|
+
|
4011
|
+
if (!sinon) {
|
4012
|
+
return;
|
4013
|
+
}
|
4014
|
+
|
4015
|
+
function test(callback) {
|
4016
|
+
var type = typeof callback;
|
4017
|
+
|
4018
|
+
if (type != "function") {
|
4019
|
+
throw new TypeError("sinon.test needs to wrap a test function, got " + type);
|
4020
|
+
}
|
4021
|
+
|
4022
|
+
return function() {
|
4023
|
+
var config = sinon.getConfig(sinon.config);
|
4024
|
+
config.injectInto = config.injectIntoThis && this || config.injectInto;
|
4025
|
+
var sandbox = sinon.sandbox.create(config);
|
4026
|
+
var exception, result;
|
4027
|
+
var args = Array.prototype.slice.call(arguments)
|
4028
|
+
.concat(sandbox.args);
|
4029
|
+
|
4030
|
+
try {
|
4031
|
+
result = callback.apply(this, args);
|
4032
|
+
} catch (e) {
|
4033
|
+
exception = e;
|
4034
|
+
}
|
4035
|
+
|
4036
|
+
if (typeof exception !== "undefined") {
|
4037
|
+
sandbox.restore();
|
4038
|
+
throw exception;
|
4039
|
+
} else {
|
4040
|
+
sandbox.verifyAndRestore();
|
4041
|
+
}
|
4042
|
+
|
4043
|
+
return result;
|
4044
|
+
};
|
4045
|
+
}
|
4046
|
+
|
4047
|
+
test.config = {
|
4048
|
+
injectIntoThis: true,
|
4049
|
+
injectInto: null,
|
4050
|
+
properties: ["spy", "stub", "mock", "clock", "server", "requests"],
|
4051
|
+
useFakeTimers: true,
|
4052
|
+
useFakeServer: true
|
4053
|
+
};
|
4054
|
+
|
4055
|
+
if (commonJSModule) {
|
4056
|
+
module.exports = test;
|
4057
|
+
} else {
|
4058
|
+
sinon.test = test;
|
4059
|
+
}
|
4060
|
+
}(typeof sinon == "object" && sinon || null));
|
4061
|
+
|
4062
|
+
/**
|
4063
|
+
* @depend ../sinon.js
|
4064
|
+
* @depend test.js
|
4065
|
+
*/
|
4066
|
+
/*jslint eqeqeq: false, onevar: false, eqeqeq: false*/
|
4067
|
+
/*global module, require, sinon*/
|
4068
|
+
/**
|
4069
|
+
* Test case, sandboxes all test functions
|
4070
|
+
*
|
4071
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
4072
|
+
* @license BSD
|
4073
|
+
*
|
4074
|
+
* Copyright (c) 2010-2013 Christian Johansen
|
4075
|
+
*/
|
4076
|
+
|
4077
|
+
(function(sinon) {
|
4078
|
+
var commonJSModule = typeof module == "object" && typeof require == "function";
|
4079
|
+
|
4080
|
+
if (!sinon && commonJSModule) {
|
4081
|
+
sinon = require("../sinon");
|
4082
|
+
}
|
4083
|
+
|
4084
|
+
if (!sinon || !Object.prototype.hasOwnProperty) {
|
4085
|
+
return;
|
4086
|
+
}
|
4087
|
+
|
4088
|
+
function createTest(property, setUp, tearDown) {
|
4089
|
+
return function() {
|
4090
|
+
if (setUp) {
|
4091
|
+
setUp.apply(this, arguments);
|
4092
|
+
}
|
4093
|
+
|
4094
|
+
var exception, result;
|
4095
|
+
|
4096
|
+
try {
|
4097
|
+
result = property.apply(this, arguments);
|
4098
|
+
} catch (e) {
|
4099
|
+
exception = e;
|
4100
|
+
}
|
4101
|
+
|
4102
|
+
if (tearDown) {
|
4103
|
+
tearDown.apply(this, arguments);
|
4104
|
+
}
|
4105
|
+
|
4106
|
+
if (exception) {
|
4107
|
+
throw exception;
|
4108
|
+
}
|
4109
|
+
|
4110
|
+
return result;
|
4111
|
+
};
|
4112
|
+
}
|
4113
|
+
|
4114
|
+
function testCase(tests, prefix) {
|
4115
|
+
/*jsl:ignore*/
|
4116
|
+
if (!tests || typeof tests != "object") {
|
4117
|
+
throw new TypeError("sinon.testCase needs an object with test functions");
|
4118
|
+
}
|
4119
|
+
/*jsl:end*/
|
4120
|
+
|
4121
|
+
prefix = prefix || "test";
|
4122
|
+
var rPrefix = new RegExp("^" + prefix);
|
4123
|
+
var methods = {}, testName, property, method;
|
4124
|
+
var setUp = tests.setUp;
|
4125
|
+
var tearDown = tests.tearDown;
|
4126
|
+
|
4127
|
+
for (testName in tests) {
|
4128
|
+
if (tests.hasOwnProperty(testName)) {
|
4129
|
+
property = tests[testName];
|
4130
|
+
|
4131
|
+
if (/^(setUp|tearDown)$/.test(testName)) {
|
4132
|
+
continue;
|
4133
|
+
}
|
4134
|
+
|
4135
|
+
if (typeof property == "function" && rPrefix.test(testName)) {
|
4136
|
+
method = property;
|
4137
|
+
|
4138
|
+
if (setUp || tearDown) {
|
4139
|
+
method = createTest(property, setUp, tearDown);
|
4140
|
+
}
|
4141
|
+
|
4142
|
+
methods[testName] = sinon.test(method);
|
4143
|
+
} else {
|
4144
|
+
methods[testName] = tests[testName];
|
4145
|
+
}
|
4146
|
+
}
|
4147
|
+
}
|
4148
|
+
|
4149
|
+
return methods;
|
4150
|
+
}
|
4151
|
+
|
4152
|
+
if (commonJSModule) {
|
4153
|
+
module.exports = testCase;
|
4154
|
+
} else {
|
4155
|
+
sinon.testCase = testCase;
|
4156
|
+
}
|
4157
|
+
}(typeof sinon == "object" && sinon || null));
|
4158
|
+
|
4159
|
+
/**
|
4160
|
+
* @depend ../sinon.js
|
4161
|
+
* @depend stub.js
|
4162
|
+
*/
|
4163
|
+
/*jslint eqeqeq: false, onevar: false, nomen: false, plusplus: false*/
|
4164
|
+
/*global module, require, sinon*/
|
4165
|
+
/**
|
4166
|
+
* Assertions matching the test spy retrieval interface.
|
4167
|
+
*
|
4168
|
+
* @author Christian Johansen (christian@cjohansen.no)
|
4169
|
+
* @license BSD
|
4170
|
+
*
|
4171
|
+
* Copyright (c) 2010-2013 Christian Johansen
|
4172
|
+
*/
|
4173
|
+
|
4174
|
+
(function(sinon, global) {
|
4175
|
+
var commonJSModule = typeof module == "object" && typeof require == "function";
|
4176
|
+
var slice = Array.prototype.slice;
|
4177
|
+
var assert;
|
4178
|
+
|
4179
|
+
if (!sinon && commonJSModule) {
|
4180
|
+
sinon = require("../sinon");
|
4181
|
+
}
|
4182
|
+
|
4183
|
+
if (!sinon) {
|
4184
|
+
return;
|
4185
|
+
}
|
4186
|
+
|
4187
|
+
function verifyIsStub() {
|
4188
|
+
var method;
|
4189
|
+
|
4190
|
+
for (var i = 0, l = arguments.length; i < l; ++i) {
|
4191
|
+
method = arguments[i];
|
4192
|
+
|
4193
|
+
if (!method) {
|
4194
|
+
assert.fail("fake is not a spy");
|
4195
|
+
}
|
4196
|
+
|
4197
|
+
if (typeof method != "function") {
|
4198
|
+
assert.fail(method + " is not a function");
|
4199
|
+
}
|
4200
|
+
|
4201
|
+
if (typeof method.getCall != "function") {
|
4202
|
+
assert.fail(method + " is not stubbed");
|
4203
|
+
}
|
4204
|
+
}
|
4205
|
+
}
|
4206
|
+
|
4207
|
+
function failAssertion(object, msg) {
|
4208
|
+
object = object || global;
|
4209
|
+
var failMethod = object.fail || assert.fail;
|
4210
|
+
failMethod.call(object, msg);
|
4211
|
+
}
|
4212
|
+
|
4213
|
+
function mirrorPropAsAssertion(name, method, message) {
|
4214
|
+
if (arguments.length == 2) {
|
4215
|
+
message = method;
|
4216
|
+
method = name;
|
4217
|
+
}
|
4218
|
+
|
4219
|
+
assert[name] = function(fake) {
|
4220
|
+
verifyIsStub(fake);
|
4221
|
+
|
4222
|
+
var args = slice.call(arguments, 1);
|
4223
|
+
var failed = false;
|
4224
|
+
|
4225
|
+
if (typeof method == "function") {
|
4226
|
+
failed = !method(fake);
|
4227
|
+
} else {
|
4228
|
+
failed = typeof fake[method] == "function" ? !fake[method].apply(fake, args) : !fake[method];
|
4229
|
+
}
|
4230
|
+
|
4231
|
+
if (failed) {
|
4232
|
+
failAssertion(this, fake.printf.apply(fake, [message].concat(args)));
|
4233
|
+
} else {
|
4234
|
+
assert.pass(name);
|
4235
|
+
}
|
4236
|
+
};
|
4237
|
+
}
|
4238
|
+
|
4239
|
+
function exposedName(prefix, prop) {
|
4240
|
+
return !prefix || /^fail/.test(prop) ? prop : prefix + prop.slice(0, 1)
|
4241
|
+
.toUpperCase() + prop.slice(1);
|
4242
|
+
};
|
4243
|
+
|
4244
|
+
assert = {
|
4245
|
+
failException: "AssertError",
|
4246
|
+
|
4247
|
+
fail: function fail(message) {
|
4248
|
+
var error = new Error(message);
|
4249
|
+
error.name = this.failException || assert.failException;
|
4250
|
+
|
4251
|
+
throw error;
|
4252
|
+
},
|
4253
|
+
|
4254
|
+
pass: function pass(assertion) {},
|
4255
|
+
|
4256
|
+
callOrder: function assertCallOrder() {
|
4257
|
+
verifyIsStub.apply(null, arguments);
|
4258
|
+
var expected = "",
|
4259
|
+
actual = "";
|
4260
|
+
|
4261
|
+
if (!sinon.calledInOrder(arguments)) {
|
4262
|
+
try {
|
4263
|
+
expected = [].join.call(arguments, ", ");
|
4264
|
+
var calls = slice.call(arguments);
|
4265
|
+
var i = calls.length;
|
4266
|
+
while (i) {
|
4267
|
+
if (!calls[--i].called) {
|
4268
|
+
calls.splice(i, 1);
|
4269
|
+
}
|
4270
|
+
}
|
4271
|
+
actual = sinon.orderByFirstCall(calls)
|
4272
|
+
.join(", ");
|
4273
|
+
} catch (e) {
|
4274
|
+
// If this fails, we'll just fall back to the blank string
|
4275
|
+
}
|
4276
|
+
|
4277
|
+
failAssertion(this, "expected " + expected + " to be " + "called in order but were called as " + actual);
|
4278
|
+
} else {
|
4279
|
+
assert.pass("callOrder");
|
4280
|
+
}
|
4281
|
+
},
|
4282
|
+
|
4283
|
+
callCount: function assertCallCount(method, count) {
|
4284
|
+
verifyIsStub(method);
|
4285
|
+
|
4286
|
+
if (method.callCount != count) {
|
4287
|
+
var msg = "expected %n to be called " + sinon.timesInWords(count) + " but was called %c%C";
|
4288
|
+
failAssertion(this, method.printf(msg));
|
4289
|
+
} else {
|
4290
|
+
assert.pass("callCount");
|
4291
|
+
}
|
4292
|
+
},
|
4293
|
+
|
4294
|
+
expose: function expose(target, options) {
|
4295
|
+
if (!target) {
|
4296
|
+
throw new TypeError("target is null or undefined");
|
4297
|
+
}
|
4298
|
+
|
4299
|
+
var o = options || {};
|
4300
|
+
var prefix = typeof o.prefix == "undefined" && "assert" || o.prefix;
|
4301
|
+
var includeFail = typeof o.includeFail == "undefined" || !! o.includeFail;
|
4302
|
+
|
4303
|
+
for (var method in this) {
|
4304
|
+
if (method != "export" && (includeFail || !/^(fail)/.test(method))) {
|
4305
|
+
target[exposedName(prefix, method)] = this[method];
|
4306
|
+
}
|
4307
|
+
}
|
4308
|
+
|
4309
|
+
return target;
|
4310
|
+
}
|
4311
|
+
};
|
4312
|
+
|
4313
|
+
mirrorPropAsAssertion("called", "expected %n to have been called at least once but was never called");
|
4314
|
+
mirrorPropAsAssertion("notCalled", function(spy) {
|
4315
|
+
return !spy.called;
|
4316
|
+
}, "expected %n to not have been called but was called %c%C");
|
4317
|
+
mirrorPropAsAssertion("calledOnce", "expected %n to be called once but was called %c%C");
|
4318
|
+
mirrorPropAsAssertion("calledTwice", "expected %n to be called twice but was called %c%C");
|
4319
|
+
mirrorPropAsAssertion("calledThrice", "expected %n to be called thrice but was called %c%C");
|
4320
|
+
mirrorPropAsAssertion("calledOn", "expected %n to be called with %1 as this but was called with %t");
|
4321
|
+
mirrorPropAsAssertion("alwaysCalledOn", "expected %n to always be called with %1 as this but was called with %t");
|
4322
|
+
mirrorPropAsAssertion("calledWithNew", "expected %n to be called with new");
|
4323
|
+
mirrorPropAsAssertion("alwaysCalledWithNew", "expected %n to always be called with new");
|
4324
|
+
mirrorPropAsAssertion("calledWith", "expected %n to be called with arguments %*%C");
|
4325
|
+
mirrorPropAsAssertion("calledWithMatch", "expected %n to be called with match %*%C");
|
4326
|
+
mirrorPropAsAssertion("alwaysCalledWith", "expected %n to always be called with arguments %*%C");
|
4327
|
+
mirrorPropAsAssertion("alwaysCalledWithMatch", "expected %n to always be called with match %*%C");
|
4328
|
+
mirrorPropAsAssertion("calledWithExactly", "expected %n to be called with exact arguments %*%C");
|
4329
|
+
mirrorPropAsAssertion("alwaysCalledWithExactly", "expected %n to always be called with exact arguments %*%C");
|
4330
|
+
mirrorPropAsAssertion("neverCalledWith", "expected %n to never be called with arguments %*%C");
|
4331
|
+
mirrorPropAsAssertion("neverCalledWithMatch", "expected %n to never be called with match %*%C");
|
4332
|
+
mirrorPropAsAssertion("threw", "%n did not throw exception%C");
|
4333
|
+
mirrorPropAsAssertion("alwaysThrew", "%n did not always throw exception%C");
|
4334
|
+
|
4335
|
+
if (commonJSModule) {
|
4336
|
+
module.exports = assert;
|
4337
|
+
} else {
|
4338
|
+
sinon.assert = assert;
|
4339
|
+
}
|
4340
|
+
}(typeof sinon == "object" && sinon || null, typeof window != "undefined" ? window : (typeof self != "undefined") ? self : global));
|
4341
|
+
|
4342
|
+
return sinon;
|
4343
|
+
}.call(typeof window != 'undefined' && window || {}));
|