123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- var App = require('app');
- require('views/application');
- var view,
- modals = [],
- removed = false,
- events = [
- {
- event: 'keyup',
- which: 27,
- key: 'Esc',
- html: '<div id="modal"><div class="modal-header"><span class="close"></span></div></div>',
- particle: '',
- length: 0
- },
- {
- event: 'keyup',
- keyCode: 27,
- key: 'Esc',
- html: '<div id="modal"><div class="modal-header"><span class="close"></span></div></div>',
- particle: '',
- length: 0
- },
- {
- event: 'keydown',
- which: 13,
- key: 'Enter',
- html: '<div id="modal"><div class="modal-footer"><span></span></div></div>',
- particle: 'not ',
- length: 1
- },
- {
- event: 'keydown',
- keyCode: 13,
- key: 'Enter',
- html: '<div id="modal"><div class="modal-footer"><span></span></div></div>',
- particle: 'not ',
- length: 1
- },
- {
- event: 'keyup',
- which: 27,
- key: 'Esc',
- html: '<div id="modal"><div class="modal-header"><span></span></div></div>',
- particle: 'not ',
- length: 1
- },
- {
- event: 'keyup',
- keyCode: 27,
- key: 'Esc',
- html: '<div id="modal"><div class="modal-header"><span></span></div></div>',
- particle: 'not ',
- length: 1
- },
- {
- event: 'keydown',
- which: 13,
- key: 'Enter',
- html: '<div id="modal"><div class="modal-footer"><span class="btn-success" disabled="disabled"></span></div></div>',
- particle: 'not ',
- length: 1
- },
- {
- event: 'keydown',
- keyCode: 13,
- key: 'Enter',
- html: '<div id="modal"><div class="modal-footer"><span class="btn-success" disabled="disabled"></span></div></div>',
- particle: 'not ',
- length: 1
- },
- {
- event: 'keydown',
- key: 'Enter',
- html: '<div id="modal"><div class="modal-footer"><span class="btn-success"></span></div></div>',
- particle: 'not ',
- length: 1
- },
- {
- event: 'keyup',
- key: 'Esc',
- html: '<div id="modal"><div class="modal-footer"><span class="close"></span></div></div>',
- particle: 'not ',
- length: 1
- }
- ];
- describe.skip('App.ApplicationView', function () {
- before(function () {
- if($('#modal').length) {
- removed = true;
- }
- while($('#modal').length) {
- modals.push({
- modal: $('#modal'),
- parent: $('modal').parent()
- });
- $('#modal').remove();
- }
- });
- beforeEach(function () {
- view = App.ApplicationView.create({
- template: null
- });
- });
- afterEach(function () {
- $('#modal').remove();
- });
- after(function () {
- if (removed) {
- modals.forEach(function (item) {
- item.parent.append(item.modal);
- });
- }
- });
- describe('#didInsertElement', function () {
- events.forEach(function (item) {
- it('should ' + item.particle + 'close modal window on ' + item.key + ' press', function () {
- $('body').append(item.html);
- $('span').click(function () {
- $('#modal').remove();
- });
- view.didInsertElement();
- var e = $.Event(item.event);
- e.which = item.which;
- e.keyCode = item.keyCode;
- $(document).trigger(e);
- expect($('#modal')).to.have.length(item.length);
- });
- });
- });
- });
|