source: pyenvjasmine/pyenvjasmine/envjasmine/lib/jasmine-jquery/jasmine-jquery.js@ 19:ab5f65372038

Last change on this file since 19:ab5f65372038 was 19:ab5f65372038, checked in by Borja Lopez <borja@…>, 9 years ago

Imported latest envjasmine version, the initial import from darcs had the wrong version

File size: 15.3 KB
Line 
1var readFixtures = function() {
2 return jasmine.getFixtures().proxyCallTo_('read', arguments)
3}
4
5var preloadFixtures = function() {
6 jasmine.getFixtures().proxyCallTo_('preload', arguments)
7}
8
9var loadFixtures = function() {
10 jasmine.getFixtures().proxyCallTo_('load', arguments)
11}
12
13var appendLoadFixtures = function() {
14 jasmine.getFixtures().proxyCallTo_('appendLoad', arguments)
15}
16
17var setFixtures = function(html) {
18 jasmine.getFixtures().proxyCallTo_('set', arguments)
19}
20
21var appendSetFixtures = function() {
22 jasmine.getFixtures().proxyCallTo_('appendSet', arguments)
23}
24
25var sandbox = function(attributes) {
26 return jasmine.getFixtures().sandbox(attributes)
27}
28
29var spyOnEvent = function(selector, eventName) {
30 return jasmine.JQuery.events.spyOn(selector, eventName)
31}
32
33var preloadStyleFixtures = function() {
34 jasmine.getStyleFixtures().proxyCallTo_('preload', arguments)
35}
36
37var loadStyleFixtures = function() {
38 jasmine.getStyleFixtures().proxyCallTo_('load', arguments)
39}
40
41var appendLoadStyleFixtures = function() {
42 jasmine.getStyleFixtures().proxyCallTo_('appendLoad', arguments)
43}
44
45var setStyleFixtures = function(html) {
46 jasmine.getStyleFixtures().proxyCallTo_('set', arguments)
47}
48
49var appendSetStyleFixtures = function(html) {
50 jasmine.getStyleFixtures().proxyCallTo_('appendSet', arguments)
51}
52
53var loadJSONFixtures = function() {
54 return jasmine.getJSONFixtures().proxyCallTo_('load', arguments)
55}
56
57var getJSONFixture = function(url) {
58 return jasmine.getJSONFixtures().proxyCallTo_('read', arguments)[url]
59}
60
61jasmine.spiedEventsKey = function (selector, eventName) {
62 return [$(selector).selector, eventName].toString()
63}
64
65jasmine.getFixtures = function() {
66 return jasmine.currentFixtures_ = jasmine.currentFixtures_ || new jasmine.Fixtures()
67}
68
69jasmine.getStyleFixtures = function() {
70 return jasmine.currentStyleFixtures_ = jasmine.currentStyleFixtures_ || new jasmine.StyleFixtures()
71}
72
73jasmine.Fixtures = function() {
74 this.containerId = 'jasmine-fixtures'
75 this.fixturesCache_ = {}
76 this.fixturesPath = 'spec/javascripts/fixtures'
77}
78
79jasmine.Fixtures.prototype.set = function(html) {
80 this.cleanUp()
81 this.createContainer_(html)
82}
83
84jasmine.Fixtures.prototype.appendSet= function(html) {
85 this.addToContainer_(html)
86}
87
88jasmine.Fixtures.prototype.preload = function() {
89 this.read.apply(this, arguments)
90}
91
92jasmine.Fixtures.prototype.load = function() {
93 this.cleanUp()
94 this.createContainer_(this.read.apply(this, arguments))
95}
96
97jasmine.Fixtures.prototype.appendLoad = function() {
98 this.addToContainer_(this.read.apply(this, arguments))
99}
100
101jasmine.Fixtures.prototype.read = function() {
102 var htmlChunks = []
103
104 var fixtureUrls = arguments
105 for(var urlCount = fixtureUrls.length, urlIndex = 0; urlIndex < urlCount; urlIndex++) {
106 htmlChunks.push(this.getFixtureHtml_(fixtureUrls[urlIndex]))
107 }
108
109 return htmlChunks.join('')
110}
111
112jasmine.Fixtures.prototype.clearCache = function() {
113 this.fixturesCache_ = {}
114}
115
116jasmine.Fixtures.prototype.cleanUp = function() {
117 $('#' + this.containerId).remove()
118}
119
120jasmine.Fixtures.prototype.sandbox = function(attributes) {
121 var attributesToSet = attributes || {}
122 return $('<div id="sandbox" />').attr(attributesToSet)
123}
124
125jasmine.Fixtures.prototype.createContainer_ = function(html) {
126 var container
127 if(html instanceof $) {
128 container = $('<div id="' + this.containerId + '" />')
129 container.html(html)
130 } else {
131 container = '<div id="' + this.containerId + '">' + html + '</div>'
132 }
133 $(document.body).append(container)
134}
135
136jasmine.Fixtures.prototype.addToContainer_ = function(html){
137 var container = $(document.body).find('#'+this.containerId).append(html)
138 if(!container.length){
139 this.createContainer_(html)
140 }
141}
142
143jasmine.Fixtures.prototype.getFixtureHtml_ = function(url) {
144 if (typeof this.fixturesCache_[url] === 'undefined') {
145 this.loadFixtureIntoCache_(url)
146 }
147 return this.fixturesCache_[url]
148}
149
150jasmine.Fixtures.prototype.loadFixtureIntoCache_ = function(relativeUrl) {
151 var url = this.makeFixtureUrl_(relativeUrl)
152 var request = $.ajax({
153 type: "GET",
154 url: url + "?" + new Date().getTime(),
155 async: false
156 })
157 this.fixturesCache_[relativeUrl] = request.responseText
158}
159
160jasmine.Fixtures.prototype.makeFixtureUrl_ = function(relativeUrl){
161 return this.fixturesPath.match('/$') ? this.fixturesPath + relativeUrl : this.fixturesPath + '/' + relativeUrl
162}
163
164jasmine.Fixtures.prototype.proxyCallTo_ = function(methodName, passedArguments) {
165 return this[methodName].apply(this, passedArguments)
166}
167
168
169jasmine.StyleFixtures = function() {
170 this.fixturesCache_ = {}
171 this.fixturesNodes_ = []
172 this.fixturesPath = 'spec/javascripts/fixtures'
173}
174
175jasmine.StyleFixtures.prototype.set = function(css) {
176 this.cleanUp()
177 this.createStyle_(css)
178}
179
180jasmine.StyleFixtures.prototype.appendSet = function(css) {
181 this.createStyle_(css)
182}
183
184jasmine.StyleFixtures.prototype.preload = function() {
185 this.read_.apply(this, arguments)
186}
187
188jasmine.StyleFixtures.prototype.load = function() {
189 this.cleanUp()
190 this.createStyle_(this.read_.apply(this, arguments))
191}
192
193jasmine.StyleFixtures.prototype.appendLoad = function() {
194 this.createStyle_(this.read_.apply(this, arguments))
195}
196
197jasmine.StyleFixtures.prototype.cleanUp = function() {
198 while(this.fixturesNodes_.length) {
199 this.fixturesNodes_.pop().remove()
200 }
201}
202
203jasmine.StyleFixtures.prototype.createStyle_ = function(html) {
204 var styleText = $('<div></div>').html(html).text(),
205 style = $('<style>' + styleText + '</style>')
206
207 this.fixturesNodes_.push(style)
208
209 $('head').append(style)
210}
211
212jasmine.StyleFixtures.prototype.clearCache = jasmine.Fixtures.prototype.clearCache
213
214jasmine.StyleFixtures.prototype.read_ = jasmine.Fixtures.prototype.read
215
216jasmine.StyleFixtures.prototype.getFixtureHtml_ = jasmine.Fixtures.prototype.getFixtureHtml_
217
218jasmine.StyleFixtures.prototype.loadFixtureIntoCache_ = jasmine.Fixtures.prototype.loadFixtureIntoCache_
219
220jasmine.StyleFixtures.prototype.makeFixtureUrl_ = jasmine.Fixtures.prototype.makeFixtureUrl_
221
222jasmine.StyleFixtures.prototype.proxyCallTo_ = jasmine.Fixtures.prototype.proxyCallTo_
223
224jasmine.getJSONFixtures = function() {
225 return jasmine.currentJSONFixtures_ = jasmine.currentJSONFixtures_ || new jasmine.JSONFixtures()
226}
227
228jasmine.JSONFixtures = function() {
229 this.fixturesCache_ = {}
230 this.fixturesPath = 'spec/javascripts/fixtures/json'
231}
232
233jasmine.JSONFixtures.prototype.load = function() {
234 this.read.apply(this, arguments)
235 return this.fixturesCache_
236}
237
238jasmine.JSONFixtures.prototype.read = function() {
239 var fixtureUrls = arguments
240 for(var urlCount = fixtureUrls.length, urlIndex = 0; urlIndex < urlCount; urlIndex++) {
241 this.getFixtureData_(fixtureUrls[urlIndex])
242 }
243 return this.fixturesCache_
244}
245
246jasmine.JSONFixtures.prototype.clearCache = function() {
247 this.fixturesCache_ = {}
248}
249
250jasmine.JSONFixtures.prototype.getFixtureData_ = function(url) {
251 this.loadFixtureIntoCache_(url)
252 return this.fixturesCache_[url]
253}
254
255jasmine.JSONFixtures.prototype.loadFixtureIntoCache_ = function(relativeUrl) {
256 var self = this
257 var url = this.fixturesPath.match('/$') ? this.fixturesPath + relativeUrl : this.fixturesPath + '/' + relativeUrl
258 $.ajax({
259 async: false, // must be synchronous to guarantee that no tests are run before fixture is loaded
260 cache: false,
261 dataType: 'json',
262 url: url,
263 success: function(data) {
264 self.fixturesCache_[relativeUrl] = data
265 },
266 fail: function(jqXHR, status, errorThrown) {
267 throw Error('JSONFixture could not be loaded: ' + url + ' (status: ' + status + ', message: ' + errorThrown.message + ')')
268 }
269 })
270}
271
272jasmine.JSONFixtures.prototype.proxyCallTo_ = function(methodName, passedArguments) {
273 return this[methodName].apply(this, passedArguments)
274}
275
276jasmine.JQuery = function() {}
277
278jasmine.JQuery.browserTagCaseIndependentHtml = function(html) {
279 return $('<div/>').append(html).html()
280}
281
282jasmine.JQuery.elementToString = function(element) {
283 var domEl = $(element).get(0)
284 if (domEl == undefined || domEl.cloneNode)
285 return $('<div />').append($(element).clone()).html()
286 else
287 return element.toString()
288}
289
290jasmine.JQuery.matchersClass = {}
291
292!function(namespace) {
293 var data = {
294 spiedEvents: {},
295 handlers: []
296 }
297
298 namespace.events = {
299 spyOn: function(selector, eventName) {
300 var handler = function(e) {
301 data.spiedEvents[jasmine.spiedEventsKey(selector, eventName)] = e
302 }
303 $(selector).bind(eventName, handler)
304 data.handlers.push(handler)
305 return {
306 selector: selector,
307 eventName: eventName,
308 handler: handler,
309 reset: function(){
310 delete data.spiedEvents[jasmine.spiedEventsKey(selector, eventName)]
311 }
312 }
313 },
314
315 wasTriggered: function(selector, eventName) {
316 return !!(data.spiedEvents[jasmine.spiedEventsKey(selector, eventName)])
317 },
318
319 wasPrevented: function(selector, eventName) {
320 var e;
321 return (e = data.spiedEvents[jasmine.spiedEventsKey(selector, eventName)]) && e.isDefaultPrevented()
322 },
323
324 cleanUp: function() {
325 data.spiedEvents = {}
326 data.handlers = []
327 }
328 }
329}(jasmine.JQuery)
330
331!function(){
332 var jQueryMatchers = {
333 toHaveClass: function(className) {
334 return this.actual.hasClass(className)
335 },
336
337 toHaveCss: function(css){
338 for (var prop in css){
339 if (this.actual.css(prop) !== css[prop]) return false
340 }
341 return true
342 },
343
344 toBeVisible: function() {
345 return this.actual.is(':visible')
346 },
347
348 toBeHidden: function() {
349 return this.actual.is(':hidden')
350 },
351
352 toBeSelected: function() {
353 return this.actual.is(':selected')
354 },
355
356 toBeChecked: function() {
357 return this.actual.is(':checked')
358 },
359
360 toBeEmpty: function() {
361 return this.actual.is(':empty')
362 },
363
364 toExist: function() {
365 return $(document).find(this.actual).length
366 },
367
368 toHaveLength: function(length) {
369 return this.actual.length === length
370 },
371
372 toHaveAttr: function(attributeName, expectedAttributeValue) {
373 return hasProperty(this.actual.attr(attributeName), expectedAttributeValue)
374 },
375
376 toHaveProp: function(propertyName, expectedPropertyValue) {
377 return hasProperty(this.actual.prop(propertyName), expectedPropertyValue)
378 },
379
380 toHaveId: function(id) {
381 return this.actual.attr('id') == id
382 },
383
384 toHaveHtml: function(html) {
385 return this.actual.html() == jasmine.JQuery.browserTagCaseIndependentHtml(html)
386 },
387
388 toContainHtml: function(html){
389 var actualHtml = this.actual.html()
390 var expectedHtml = jasmine.JQuery.browserTagCaseIndependentHtml(html)
391 return (actualHtml.indexOf(expectedHtml) >= 0)
392 },
393
394 toHaveText: function(text) {
395 var trimmedText = $.trim(this.actual.text())
396 if (text && $.isFunction(text.test)) {
397 return text.test(trimmedText)
398 } else {
399 return trimmedText == text
400 }
401 },
402
403 toHaveValue: function(value) {
404 return this.actual.val() === value
405 },
406
407 toHaveData: function(key, expectedValue) {
408 return hasProperty(this.actual.data(key), expectedValue)
409 },
410
411 toBe: function(selector) {
412 return this.actual.is(selector)
413 },
414
415 toContain: function(selector) {
416 return this.actual.find(selector).length
417 },
418
419 toBeDisabled: function(selector){
420 return this.actual.is(':disabled')
421 },
422
423 toBeFocused: function(selector) {
424 return this.actual[0] === this.actual[0].ownerDocument.activeElement
425 },
426
427 toHandle: function(event) {
428
429 var events = $._data(this.actual.get(0), "events")
430
431 if(!events || !event || typeof event !== "string") {
432 return false
433 }
434
435 var namespaces = event.split(".")
436 var eventType = namespaces.shift()
437 var sortedNamespaces = namespaces.slice(0).sort()
438 var namespaceRegExp = new RegExp("(^|\\.)" + sortedNamespaces.join("\\.(?:.*\\.)?") + "(\\.|$)")
439
440 if(events[eventType] && namespaces.length) {
441 for(var i = 0; i < events[eventType].length; i++) {
442 var namespace = events[eventType][i].namespace
443 if(namespaceRegExp.test(namespace)) {
444 return true
445 }
446 }
447 } else {
448 return events[eventType] && events[eventType].length > 0
449 }
450 },
451
452 // tests the existence of a specific event binding + handler
453 toHandleWith: function(eventName, eventHandler) {
454 var stack = $._data(this.actual.get(0), "events")[eventName]
455 for (var i = 0; i < stack.length; i++) {
456 if (stack[i].handler == eventHandler) return true
457 }
458 return false
459 }
460 }
461
462 var hasProperty = function(actualValue, expectedValue) {
463 if (expectedValue === undefined) return actualValue !== undefined
464 return actualValue == expectedValue
465 }
466
467 var bindMatcher = function(methodName) {
468 var builtInMatcher = jasmine.Matchers.prototype[methodName]
469
470 jasmine.JQuery.matchersClass[methodName] = function() {
471 if (this.actual
472 && (this.actual instanceof $
473 || jasmine.isDomNode(this.actual))) {
474 this.actual = $(this.actual)
475 var result = jQueryMatchers[methodName].apply(this, arguments)
476 var element
477 if (this.actual.get && (element = this.actual.get()[0]) && !$.isWindow(element) && element.tagName !== "HTML")
478 this.actual = jasmine.JQuery.elementToString(this.actual)
479 return result
480 }
481
482 if (builtInMatcher) {
483 return builtInMatcher.apply(this, arguments)
484 }
485
486 return false
487 }
488 }
489
490 for(var methodName in jQueryMatchers) {
491 bindMatcher(methodName)
492 }
493}()
494
495beforeEach(function() {
496 this.addMatchers(jasmine.JQuery.matchersClass)
497 this.addMatchers({
498 toHaveBeenTriggeredOn: function(selector) {
499 this.message = function() {
500 return [
501 "Expected event " + this.actual + " to have been triggered on " + selector,
502 "Expected event " + this.actual + " not to have been triggered on " + selector
503 ]
504 }
505 return jasmine.JQuery.events.wasTriggered(selector, this.actual)
506 }
507 })
508 this.addMatchers({
509 toHaveBeenTriggered: function(){
510 var eventName = this.actual.eventName,
511 selector = this.actual.selector
512 this.message = function() {
513 return [
514 "Expected event " + eventName + " to have been triggered on " + selector,
515 "Expected event " + eventName + " not to have been triggered on " + selector
516 ]
517 }
518 return jasmine.JQuery.events.wasTriggered(selector, eventName)
519 }
520 })
521 this.addMatchers({
522 toHaveBeenPreventedOn: function(selector) {
523 this.message = function() {
524 return [
525 "Expected event " + this.actual + " to have been prevented on " + selector,
526 "Expected event " + this.actual + " not to have been prevented on " + selector
527 ]
528 }
529 return jasmine.JQuery.events.wasPrevented(selector, this.actual)
530 }
531 })
532 this.addMatchers({
533 toHaveBeenPrevented: function() {
534 var eventName = this.actual.eventName,
535 selector = this.actual.selector
536 this.message = function() {
537 return [
538 "Expected event " + eventName + " to have been prevented on " + selector,
539 "Expected event " + eventName + " not to have been prevented on " + selector
540 ]
541 }
542 return jasmine.JQuery.events.wasPrevented(selector, eventName)
543 }
544 })
545})
546
547afterEach(function() {
548 jasmine.getFixtures().cleanUp()
549 jasmine.getStyleFixtures().cleanUp()
550 jasmine.JQuery.events.cleanUp()
551})
Note: See TracBrowser for help on using the repository browser.