hkroger-websocket-rails 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +328 -0
  3. data/Gemfile +27 -0
  4. data/MIT-LICENSE +20 -0
  5. data/README.md +237 -0
  6. data/Rakefile +72 -0
  7. data/bin/thin-socketrails +45 -0
  8. data/lib/assets/javascripts/websocket_rails/abstract_connection.js.coffee +45 -0
  9. data/lib/assets/javascripts/websocket_rails/channel.js.coffee +70 -0
  10. data/lib/assets/javascripts/websocket_rails/event.js.coffee +42 -0
  11. data/lib/assets/javascripts/websocket_rails/http_connection.js.coffee +66 -0
  12. data/lib/assets/javascripts/websocket_rails/main.js +6 -0
  13. data/lib/assets/javascripts/websocket_rails/websocket_connection.js.coffee +29 -0
  14. data/lib/assets/javascripts/websocket_rails/websocket_rails.js.coffee +158 -0
  15. data/lib/config.ru +3 -0
  16. data/lib/generators/websocket_rails/install/install_generator.rb +33 -0
  17. data/lib/generators/websocket_rails/install/templates/events.rb +14 -0
  18. data/lib/generators/websocket_rails/install/templates/websocket_rails.rb +63 -0
  19. data/lib/hkroger-websocket-rails.rb +1 -0
  20. data/lib/rails/app/controllers/websocket_rails/delegation_controller.rb +13 -0
  21. data/lib/rails/config/routes.rb +7 -0
  22. data/lib/rails/tasks/websocket_rails.tasks +42 -0
  23. data/lib/spec_helpers/matchers/route_matchers.rb +65 -0
  24. data/lib/spec_helpers/matchers/trigger_matchers.rb +113 -0
  25. data/lib/spec_helpers/spec_helper_event.rb +34 -0
  26. data/lib/websocket-rails.rb +108 -0
  27. data/lib/websocket_rails/base_controller.rb +197 -0
  28. data/lib/websocket_rails/channel.rb +97 -0
  29. data/lib/websocket_rails/channel_manager.rb +55 -0
  30. data/lib/websocket_rails/configuration.rb +169 -0
  31. data/lib/websocket_rails/connection_adapters.rb +195 -0
  32. data/lib/websocket_rails/connection_adapters/http.rb +120 -0
  33. data/lib/websocket_rails/connection_adapters/web_socket.rb +36 -0
  34. data/lib/websocket_rails/connection_manager.rb +119 -0
  35. data/lib/websocket_rails/controller_factory.rb +80 -0
  36. data/lib/websocket_rails/data_store.rb +145 -0
  37. data/lib/websocket_rails/dispatcher.rb +129 -0
  38. data/lib/websocket_rails/engine.rb +26 -0
  39. data/lib/websocket_rails/event.rb +189 -0
  40. data/lib/websocket_rails/event_map.rb +184 -0
  41. data/lib/websocket_rails/event_queue.rb +33 -0
  42. data/lib/websocket_rails/internal_events.rb +37 -0
  43. data/lib/websocket_rails/logging.rb +133 -0
  44. data/lib/websocket_rails/spec_helpers.rb +3 -0
  45. data/lib/websocket_rails/synchronization.rb +182 -0
  46. data/lib/websocket_rails/user_manager.rb +276 -0
  47. data/lib/websocket_rails/version.rb +3 -0
  48. data/spec/dummy/Rakefile +7 -0
  49. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  50. data/spec/dummy/app/controllers/chat_controller.rb +53 -0
  51. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  52. data/spec/dummy/app/models/user.rb +2 -0
  53. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  54. data/spec/dummy/config.ru +4 -0
  55. data/spec/dummy/config/application.rb +45 -0
  56. data/spec/dummy/config/boot.rb +10 -0
  57. data/spec/dummy/config/database.yml +22 -0
  58. data/spec/dummy/config/environment.rb +5 -0
  59. data/spec/dummy/config/environments/development.rb +26 -0
  60. data/spec/dummy/config/environments/production.rb +49 -0
  61. data/spec/dummy/config/environments/test.rb +34 -0
  62. data/spec/dummy/config/events.rb +7 -0
  63. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  64. data/spec/dummy/config/initializers/inflections.rb +10 -0
  65. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  66. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  67. data/spec/dummy/config/initializers/session_store.rb +8 -0
  68. data/spec/dummy/config/locales/en.yml +5 -0
  69. data/spec/dummy/config/routes.rb +58 -0
  70. data/spec/dummy/db/development.sqlite3 +0 -0
  71. data/spec/dummy/db/migrate/20130902222552_create_users.rb +10 -0
  72. data/spec/dummy/db/schema.rb +23 -0
  73. data/spec/dummy/db/test.sqlite3 +0 -0
  74. data/spec/dummy/log/development.log +17 -0
  75. data/spec/dummy/log/production.log +0 -0
  76. data/spec/dummy/log/server.log +0 -0
  77. data/spec/dummy/public/404.html +26 -0
  78. data/spec/dummy/public/422.html +26 -0
  79. data/spec/dummy/public/500.html +26 -0
  80. data/spec/dummy/public/favicon.ico +0 -0
  81. data/spec/dummy/public/javascripts/application.js +2 -0
  82. data/spec/dummy/public/javascripts/controls.js +965 -0
  83. data/spec/dummy/public/javascripts/dragdrop.js +974 -0
  84. data/spec/dummy/public/javascripts/effects.js +1123 -0
  85. data/spec/dummy/public/javascripts/prototype.js +6001 -0
  86. data/spec/dummy/public/javascripts/rails.js +202 -0
  87. data/spec/dummy/script/rails +6 -0
  88. data/spec/integration/connection_manager_spec.rb +135 -0
  89. data/spec/javascripts/support/jasmine.yml +52 -0
  90. data/spec/javascripts/support/jasmine_helper.rb +38 -0
  91. data/spec/javascripts/support/vendor/sinon-1.7.1.js +4343 -0
  92. data/spec/javascripts/websocket_rails/channel_spec.coffee +112 -0
  93. data/spec/javascripts/websocket_rails/event_spec.coffee +69 -0
  94. data/spec/javascripts/websocket_rails/helpers.coffee +6 -0
  95. data/spec/javascripts/websocket_rails/websocket_connection_spec.coffee +158 -0
  96. data/spec/javascripts/websocket_rails/websocket_rails_spec.coffee +274 -0
  97. data/spec/spec_helper.rb +41 -0
  98. data/spec/spec_helpers/matchers/route_matchers_spec.rb +109 -0
  99. data/spec/spec_helpers/matchers/trigger_matchers_spec.rb +247 -0
  100. data/spec/spec_helpers/spec_helper_event_spec.rb +66 -0
  101. data/spec/support/helper_methods.rb +42 -0
  102. data/spec/support/mock_web_socket.rb +41 -0
  103. data/spec/unit/base_controller_spec.rb +74 -0
  104. data/spec/unit/channel_manager_spec.rb +58 -0
  105. data/spec/unit/channel_spec.rb +169 -0
  106. data/spec/unit/connection_adapters/http_spec.rb +88 -0
  107. data/spec/unit/connection_adapters/web_socket_spec.rb +30 -0
  108. data/spec/unit/connection_adapters_spec.rb +259 -0
  109. data/spec/unit/connection_manager_spec.rb +148 -0
  110. data/spec/unit/controller_factory_spec.rb +76 -0
  111. data/spec/unit/data_store_spec.rb +106 -0
  112. data/spec/unit/dispatcher_spec.rb +203 -0
  113. data/spec/unit/event_map_spec.rb +120 -0
  114. data/spec/unit/event_queue_spec.rb +36 -0
  115. data/spec/unit/event_spec.rb +181 -0
  116. data/spec/unit/logging_spec.rb +162 -0
  117. data/spec/unit/synchronization_spec.rb +150 -0
  118. data/spec/unit/target_validator_spec.rb +88 -0
  119. data/spec/unit/user_manager_spec.rb +165 -0
  120. metadata +320 -0
@@ -0,0 +1,202 @@
1
+ (function() {
2
+ Ajax.Responders.register({
3
+ onCreate: function(request) {
4
+ var token = $$('meta[name=csrf-token]')[0];
5
+ if (token) {
6
+ if (!request.options.requestHeaders) request.options.requestHeaders = {};
7
+ request.options.requestHeaders['X-CSRF-Token'] = token.readAttribute('content');
8
+ }
9
+ }
10
+ });
11
+
12
+ // Technique from Juriy Zaytsev
13
+ // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
14
+ function isEventSupported(eventName) {
15
+ var el = document.createElement('div');
16
+ eventName = 'on' + eventName;
17
+ var isSupported = (eventName in el);
18
+ if (!isSupported) {
19
+ el.setAttribute(eventName, 'return;');
20
+ isSupported = typeof el[eventName] == 'function';
21
+ }
22
+ el = null;
23
+ return isSupported;
24
+ }
25
+
26
+ function isForm(element) {
27
+ return Object.isElement(element) && element.nodeName.toUpperCase() == 'FORM';
28
+ }
29
+
30
+ function isInput(element) {
31
+ if (Object.isElement(element)) {
32
+ var name = element.nodeName.toUpperCase();
33
+ return name == 'INPUT' || name == 'SELECT' || name == 'TEXTAREA';
34
+ }
35
+ else return false;
36
+ }
37
+
38
+ var submitBubbles = isEventSupported('submit'),
39
+ changeBubbles = isEventSupported('change');
40
+
41
+ if (!submitBubbles || !changeBubbles) {
42
+ // augment the Event.Handler class to observe custom events when needed
43
+ Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap(
44
+ function(init, element, eventName, selector, callback) {
45
+ init(element, eventName, selector, callback);
46
+ // is the handler being attached to an element that doesn't support this event?
47
+ if ( (!submitBubbles && this.eventName == 'submit' && !isForm(this.element)) ||
48
+ (!changeBubbles && this.eventName == 'change' && !isInput(this.element)) ) {
49
+ // "submit" => "emulated:submit"
50
+ this.eventName = 'emulated:' + this.eventName;
51
+ }
52
+ }
53
+ );
54
+ }
55
+
56
+ if (!submitBubbles) {
57
+ // discover forms on the page by observing focus events which always bubble
58
+ document.on('focusin', 'form', function(focusEvent, form) {
59
+ // special handler for the real "submit" event (one-time operation)
60
+ if (!form.retrieve('emulated:submit')) {
61
+ form.on('submit', function(submitEvent) {
62
+ var emulated = form.fire('emulated:submit', submitEvent, true);
63
+ // if custom event received preventDefault, cancel the real one too
64
+ if (emulated.returnValue === false) submitEvent.preventDefault();
65
+ });
66
+ form.store('emulated:submit', true);
67
+ }
68
+ });
69
+ }
70
+
71
+ if (!changeBubbles) {
72
+ // discover form inputs on the page
73
+ document.on('focusin', 'input, select, textarea', function(focusEvent, input) {
74
+ // special handler for real "change" events
75
+ if (!input.retrieve('emulated:change')) {
76
+ input.on('change', function(changeEvent) {
77
+ input.fire('emulated:change', changeEvent, true);
78
+ });
79
+ input.store('emulated:change', true);
80
+ }
81
+ });
82
+ }
83
+
84
+ function handleRemote(element) {
85
+ var method, url, params;
86
+
87
+ var event = element.fire("ajax:before");
88
+ if (event.stopped) return false;
89
+
90
+ if (element.tagName.toLowerCase() === 'form') {
91
+ method = element.readAttribute('method') || 'post';
92
+ url = element.readAttribute('action');
93
+ // serialize the form with respect to the submit button that was pressed
94
+ params = element.serialize({ submit: element.retrieve('rails:submit-button') });
95
+ // clear the pressed submit button information
96
+ element.store('rails:submit-button', null);
97
+ } else {
98
+ method = element.readAttribute('data-method') || 'get';
99
+ url = element.readAttribute('href');
100
+ params = {};
101
+ }
102
+
103
+ new Ajax.Request(url, {
104
+ method: method,
105
+ parameters: params,
106
+ evalScripts: true,
107
+
108
+ onCreate: function(response) { element.fire("ajax:create", response); },
109
+ onComplete: function(response) { element.fire("ajax:complete", response); },
110
+ onSuccess: function(response) { element.fire("ajax:success", response); },
111
+ onFailure: function(response) { element.fire("ajax:failure", response); }
112
+ });
113
+
114
+ element.fire("ajax:after");
115
+ }
116
+
117
+ function insertHiddenField(form, name, value) {
118
+ form.insert(new Element('input', { type: 'hidden', name: name, value: value }));
119
+ }
120
+
121
+ function handleMethod(element) {
122
+ var method = element.readAttribute('data-method'),
123
+ url = element.readAttribute('href'),
124
+ csrf_param = $$('meta[name=csrf-param]')[0],
125
+ csrf_token = $$('meta[name=csrf-token]')[0];
126
+
127
+ var form = new Element('form', { method: "POST", action: url, style: "display: none;" });
128
+ $(element.parentNode).insert(form);
129
+
130
+ if (method !== 'post') {
131
+ insertHiddenField(form, '_method', method);
132
+ }
133
+
134
+ if (csrf_param) {
135
+ insertHiddenField(form, csrf_param.readAttribute('content'), csrf_token.readAttribute('content'));
136
+ }
137
+
138
+ form.submit();
139
+ }
140
+
141
+ function disableFormElements(form) {
142
+ form.select('input[type=submit][data-disable-with]').each(function(input) {
143
+ input.store('rails:original-value', input.getValue());
144
+ input.setValue(input.readAttribute('data-disable-with')).disable();
145
+ });
146
+ }
147
+
148
+ function enableFormElements(form) {
149
+ form.select('input[type=submit][data-disable-with]').each(function(input) {
150
+ input.setValue(input.retrieve('rails:original-value')).enable();
151
+ });
152
+ }
153
+
154
+ function allowAction(element) {
155
+ var message = element.readAttribute('data-confirm');
156
+ return !message || confirm(message);
157
+ }
158
+
159
+ document.on('click', 'a[data-confirm], a[data-remote], a[data-method]', function(event, link) {
160
+ if (!allowAction(link)) {
161
+ event.stop();
162
+ return false;
163
+ }
164
+
165
+ if (link.readAttribute('data-remote')) {
166
+ handleRemote(link);
167
+ event.stop();
168
+ } else if (link.readAttribute('data-method')) {
169
+ handleMethod(link);
170
+ event.stop();
171
+ }
172
+ });
173
+
174
+ document.on("click", "form input[type=submit], form button[type=submit], form button:not([type])", function(event, button) {
175
+ // register the pressed submit button
176
+ event.findElement('form').store('rails:submit-button', button.name || false);
177
+ });
178
+
179
+ document.on("submit", function(event) {
180
+ var form = event.findElement();
181
+
182
+ if (!allowAction(form)) {
183
+ event.stop();
184
+ return false;
185
+ }
186
+
187
+ if (form.readAttribute('data-remote')) {
188
+ handleRemote(form);
189
+ event.stop();
190
+ } else {
191
+ disableFormElements(form);
192
+ }
193
+ });
194
+
195
+ document.on('ajax:create', 'form', function(event, form) {
196
+ if (form == event.findElement()) disableFormElements(form);
197
+ });
198
+
199
+ document.on('ajax:complete', 'form', function(event, form) {
200
+ if (form == event.findElement()) enableFormElements(form);
201
+ });
202
+ })();
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,135 @@
1
+ require 'spec_helper'
2
+ require 'support/mock_web_socket'
3
+
4
+ module WebsocketRails
5
+ describe ConnectionManager, "integration test" do
6
+
7
+ class ProductController < BaseController
8
+ def update_list; true; end
9
+ end
10
+
11
+ def define_test_events
12
+ WebsocketRails.config.route_block = nil
13
+ WebsocketRails::EventMap.describe do
14
+ subscribe :client_connected, :to => ChatController, :with_method => :new_user
15
+ subscribe :change_username, :to => ChatController, :with_method => :change_username
16
+ subscribe :client_error, :to => ChatController, :with_method => :error_occurred
17
+ subscribe :client_disconnected, :to => ChatController, :with_method => :delete_user
18
+
19
+ subscribe :update_list, :to => ChatController, :with_method => :update_user_list
20
+
21
+ namespace :products do
22
+ subscribe :update_list, :to => ProductController, :with_method => :update_list
23
+ end
24
+ end
25
+ end
26
+
27
+ before(:all) do
28
+ define_test_events
29
+ if defined?(ConnectionAdapters::Test)
30
+ ConnectionAdapters.adapters.delete( ConnectionAdapters::Test )
31
+ end
32
+ end
33
+
34
+ around do |example|
35
+ EM.run do
36
+ example.run
37
+ end
38
+ end
39
+
40
+ after do
41
+ EM.stop
42
+ end
43
+
44
+ shared_examples "an evented rack server" do
45
+ context "new connections" do
46
+ it "should execute the controller action associated with the 'client_connected' event" do
47
+ ChatController.any_instance.should_receive(:new_user)
48
+ @server.call( env )
49
+ end
50
+ end
51
+
52
+ context "active connections" do
53
+ context "new message from client" do
54
+ let(:test_message) { ['change_username',{:user_name => 'Joe User'}] }
55
+ let(:encoded_message) { test_message.to_json }
56
+
57
+ it "should execute the controller action associated with the received event" do
58
+ ChatController.any_instance.should_receive(:change_username)
59
+ @server.call( env )
60
+ socket.on_message( encoded_message )
61
+ end
62
+ end
63
+
64
+ context "new message from client under a namespace" do
65
+ let(:test_message) { ['products.update_list',{:product => 'x-ray-vision'}] }
66
+ let(:encoded_message) { test_message.to_json }
67
+
68
+ it "should execute the controller action under the correct namespace" do
69
+ ChatController.any_instance.should_not_receive(:update_user_list)
70
+ ProductController.any_instance.should_receive(:update_list)
71
+ @server.call( env )
72
+ socket.on_message( encoded_message )
73
+ end
74
+ end
75
+
76
+ context "subscribing to a channel" do
77
+ let(:channel_message) { ['websocket_rails.subscribe',{:data => {:channel => 'test_chan'}}] }
78
+ let(:encoded_channel_message) { channel_message.to_json }
79
+
80
+ it "should subscribe the connection to the correct channel" do
81
+ channel = WebsocketRails[:test_chan]
82
+ @server.call( env )
83
+ channel.should_receive(:subscribe).with(socket)
84
+ socket.on_message encoded_channel_message
85
+ end
86
+ end
87
+
88
+ context "client error" do
89
+ it "should execute the controller action associated with the 'client_error' event" do
90
+ ChatController.any_instance.should_receive(:error_occurred)
91
+ @server.call( env )
92
+ socket.on_error
93
+ end
94
+ end
95
+
96
+ context "client disconnects" do
97
+ it "should execute the controller action associated with the 'client_disconnected' event" do
98
+ ChatController.any_instance.should_receive(:delete_user)
99
+ @server.call( env )
100
+ socket.on_close
101
+ end
102
+
103
+ it "should unsubscribe from channels" do
104
+ channel = WebsocketRails[:test_chan]
105
+ @server.call( env )
106
+ channel.should_receive(:unsubscribe).with(socket)
107
+ socket.on_close
108
+ end
109
+ end
110
+ end
111
+ end
112
+
113
+ context "WebSocket Adapter" do
114
+ let(:socket) { @server.connections.first[1] }
115
+
116
+ before do
117
+ ::Faye::WebSocket.stub(:websocket?).and_return(true)
118
+ @server = ConnectionManager.new
119
+ end
120
+
121
+ it_behaves_like 'an evented rack server'
122
+ end
123
+
124
+ describe "HTTP Adapter" do
125
+ let(:socket) { @server.connections.first[1] }
126
+
127
+ before do
128
+ @server = ConnectionManager.new
129
+ end
130
+
131
+ it_behaves_like 'an evented rack server'
132
+ end
133
+
134
+ end
135
+ end
@@ -0,0 +1,52 @@
1
+ # Return an array of filepaths relative to src_dir to include before jasmine specs.
2
+ # Default: []
3
+ #
4
+ # EXAMPLE:
5
+ #
6
+ # src_files:
7
+ # - lib/source1.js
8
+ # - lib/source2.js
9
+ # - dist/**/*.js
10
+ #
11
+ src_dir: spec/javascripts
12
+ src_files:
13
+ - support/vendor/sinon-1.7.1.js
14
+ - generated/assets/websocket_rails.js
15
+ - generated/assets/event.js
16
+ - generated/assets/abstract_connection.js
17
+ - generated/assets/http_connection.js
18
+ - generated/assets/websocket_connection.js
19
+ - generated/assets/channel.js
20
+ - generated/specs/helpers.js
21
+
22
+ spec_dir: spec/javascripts/generated
23
+ spec_files:
24
+ - specs/event_spec.js
25
+ - specs/websocket_connection_spec.js
26
+ - specs/channel_spec.js
27
+ - specs/websocket_rails_spec.js
28
+
29
+ # stylesheets
30
+ #
31
+ # Return an array of stylesheet filepaths relative to src_dir to include before jasmine specs.
32
+ # Default: []
33
+ #
34
+ # EXAMPLE:
35
+ #
36
+ # stylesheets:
37
+ # - css/style.css
38
+ # - stylesheets/*.css
39
+ #
40
+ stylesheets:
41
+
42
+ # helpers
43
+ #
44
+ # Return an array of filepaths relative to spec_dir to include before jasmine specs.
45
+ # Default: ["helpers/**/*.js"]
46
+ #
47
+ # EXAMPLE:
48
+ #
49
+ # helpers:
50
+ # - helpers/**/*.js
51
+ #
52
+ helpers:
@@ -0,0 +1,38 @@
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
+ require 'coffee-script'
12
+
13
+ puts "Precompiling assets..."
14
+
15
+ root = File.expand_path("../../../../lib/assets/javascripts/websocket_rails", __FILE__)
16
+ destination_dir = File.expand_path("../../../../spec/javascripts/generated/assets", __FILE__)
17
+
18
+ glob = File.expand_path("**/*.js.coffee", root)
19
+
20
+ Dir.glob(glob).each do |srcfile|
21
+ srcfile = Pathname.new(srcfile)
22
+ destfile = srcfile.sub(root, destination_dir).sub(".coffee", "")
23
+ FileUtils.mkdir_p(destfile.dirname)
24
+ File.open(destfile, "w") {|f| f.write(CoffeeScript.compile(File.new(srcfile)))}
25
+ end
26
+ puts "Compiling jasmine coffee scripts into javascript..."
27
+ root = File.expand_path("../../../../spec/javascripts/websocket_rails", __FILE__)
28
+ destination_dir = File.expand_path("../../generated/specs", __FILE__)
29
+
30
+ glob = File.expand_path("**/*.coffee", root)
31
+
32
+ Dir.glob(glob).each do |srcfile|
33
+ srcfile = Pathname.new(srcfile)
34
+ destfile = srcfile.sub(root, destination_dir).sub(".coffee", ".js")
35
+ FileUtils.mkdir_p(destfile.dirname)
36
+ File.open(destfile, "w") {|f| f.write(CoffeeScript.compile(File.new(srcfile)))}
37
+ end
38
+
@@ -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 || {}));