blob: 7dabebeda30d399e913b5e3e44e1bf0740305d42 [file] [log] [blame]
/**
* 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);
});
});
});
});