mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-06-27 16:10:13 +08:00
tests for select method
This commit is contained in:
@@ -55,6 +55,7 @@ function SelectionManager() {
|
||||
renderSelection(start, end);
|
||||
reportSelection(start, end);
|
||||
}
|
||||
// TODO: better date normalization. see notes in automated test
|
||||
|
||||
|
||||
function unselect(ev) {
|
||||
|
||||
@@ -0,0 +1,198 @@
|
||||
describe('select method', function() {
|
||||
|
||||
var options;
|
||||
|
||||
beforeEach(function() {
|
||||
affix('#cal');
|
||||
options = {
|
||||
defaultDate: '2014-05-25',
|
||||
selectable: true
|
||||
};
|
||||
});
|
||||
|
||||
afterEach(function() {
|
||||
$('#cal').fullCalendar('destroy');
|
||||
});
|
||||
|
||||
/*
|
||||
THINGS TO IMPLEMENT IN SRC (in addition to notes further down):
|
||||
- better date normalization (for both render and reporting to select callback)
|
||||
- if second date is the same or before the first
|
||||
- if given a mixture of timed/all-day
|
||||
- for basic/month views, when given timed dates, should really be all-day
|
||||
*/
|
||||
|
||||
[ false, true ].forEach(function(isRTL) {
|
||||
describe('when isRTL is ' + isRTL, function() {
|
||||
beforeEach(function() {
|
||||
options.isRTL = isRTL;
|
||||
});
|
||||
describe('when in month view', function() {
|
||||
beforeEach(function() {
|
||||
options.defaultView = 'month';
|
||||
});
|
||||
describe('when called with all-day moments', function() {
|
||||
describe('when in bounds', function() {
|
||||
it('renders a selection', function() {
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2014-05-07', '2014-05-09');
|
||||
expect($('.fc-cell-overlay')).toBeVisible();
|
||||
});
|
||||
it('renders a selection when called with one argument', function() {
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2014-05-07');
|
||||
expect($('.fc-cell-overlay')).toBeVisible();
|
||||
});
|
||||
it('fires a selection event', function() {
|
||||
options.select = function(start, end) {
|
||||
expect(start.hasTime()).toEqual(false);
|
||||
expect(end.hasTime()).toEqual(false);
|
||||
expect(start).toEqualMoment('2014-05-07');
|
||||
expect(end).toEqualMoment('2014-05-09');
|
||||
};
|
||||
spyOn(options, 'select').and.callThrough();
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2014-05-07', '2014-05-09');
|
||||
expect(options.select).toHaveBeenCalled();
|
||||
});
|
||||
});
|
||||
describe('when out of bounds', function() {
|
||||
it('doesn\'t render a selection', function() {
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2015-05-07', '2015-05-09');
|
||||
expect($('.fc-cell-overlay')).not.toBeVisible();
|
||||
});
|
||||
/*
|
||||
TODO: implement this behavior
|
||||
it('doesn\'t fire a selection event', function() {
|
||||
options.select = function(start, end) {
|
||||
expect(start).toEqualMoment('2014-05-07');
|
||||
expect(end).toEqualMoment('2014-05-09');
|
||||
};
|
||||
spyOn(options, 'select').and.callThrough();
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2015-05-07', '2015-05-09');
|
||||
expect(options.select).not.toHaveBeenCalled();
|
||||
});
|
||||
*/
|
||||
});
|
||||
});
|
||||
describe('when called with timed moments', function() {
|
||||
it('renders a selection', function() {
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2014-05-07T06:00:00', '2014-05-09T07:00:00');
|
||||
expect($('.fc-cell-overlay')).toBeVisible();
|
||||
});
|
||||
it('fires a selection event', function() {
|
||||
options.select = function(start, end) {
|
||||
expect(start.hasTime()).toEqual(true);
|
||||
expect(end.hasTime()).toEqual(true);
|
||||
expect(start).toEqualMoment('2014-05-07T06:00:00');
|
||||
expect(end).toEqualMoment('2014-05-09T06:00:00');
|
||||
};
|
||||
spyOn(options, 'select').and.callThrough();
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2014-05-07T06:00:00', '2014-05-09T06:00:00');
|
||||
expect(options.select).toHaveBeenCalled();
|
||||
});
|
||||
});
|
||||
});
|
||||
describe('when in agendaWeek view', function() { // May 25 - 31
|
||||
beforeEach(function() {
|
||||
options.defaultView = 'agendaWeek';
|
||||
});
|
||||
describe('when called with timed moments', function() {
|
||||
describe('when in bounds', function() {
|
||||
it('renders a selection when called with one argument', function() {
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2014-05-26T06:00:00');
|
||||
expect($('.fc-cell-overlay')).toBeVisible();
|
||||
});
|
||||
it('renders a selection over the slot area', function() {
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2014-05-26T06:00:00', '2014-05-26T08:00:00');
|
||||
expect($('.fc-cell-overlay')).toBeVisible();
|
||||
var slotArea = $('.fc-agenda-slots').parent().parent();
|
||||
var slotAreaTop = slotArea.offset().top;
|
||||
var overlayTop = $('.fc-cell-overlay').offset().top;
|
||||
expect(overlayTop).toBeGreaterThan(slotAreaTop);
|
||||
});
|
||||
});
|
||||
describe('when out of bounds', function() {
|
||||
it('doesn\'t render a selection', function() {
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2015-05-26T06:00:00', '2015-05-26T07:00:00');
|
||||
expect($('.fc-cell-overlay')).not.toBeVisible();
|
||||
});
|
||||
/*
|
||||
TODO: implement this behavior
|
||||
it('doesn\'t fire a selection event', function() {
|
||||
options.select = function(start, end) {
|
||||
expect(start).toEqualMoment('2015-05-07T06:00:00');
|
||||
expect(end).toEqualMoment('2015-05-09T07:00:00');
|
||||
};
|
||||
spyOn(options, 'select').and.callThrough();
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2015-05-07T06:00:00', '2015-05-09T07:00:00');
|
||||
expect(options.select).not.toHaveBeenCalled();
|
||||
});
|
||||
*/
|
||||
});
|
||||
});
|
||||
describe('when called with all-day moments', function() { // forget about in/out bounds for this :)
|
||||
describe('when allDaySlot is on', function() {
|
||||
beforeEach(function() {
|
||||
options.allDaySlot = true;
|
||||
});
|
||||
it('renders a selection over the day area', function() {
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2014-05-26', '2014-05-28');
|
||||
expect($('.fc-cell-overlay')).toBeVisible();
|
||||
var slotArea = $('.fc-agenda-slots').parent().parent();
|
||||
var slotAreaTop = slotArea.offset().top;
|
||||
var overlayTop = $('.fc-cell-overlay').offset().top;
|
||||
expect(overlayTop).toBeLessThan(slotAreaTop);
|
||||
});
|
||||
it('fires a selection event', function() {
|
||||
options.select = function(start, end) {
|
||||
expect(start.hasTime()).toEqual(false);
|
||||
expect(end.hasTime()).toEqual(false);
|
||||
expect(start).toEqualMoment('2014-05-26');
|
||||
expect(end).toEqualMoment('2014-05-28');
|
||||
};
|
||||
spyOn(options, 'select').and.callThrough();
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2014-05-26', '2014-05-28');
|
||||
expect(options.select).toHaveBeenCalled();
|
||||
});
|
||||
});
|
||||
describe('when allDaySlot is off', function() {
|
||||
beforeEach(function() {
|
||||
options.allDaySlot = false;
|
||||
});
|
||||
it('doesn\'t render', function() {
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2014-05-26', '2014-05-28');
|
||||
expect($('.fc-cell-overlay')).not.toBeVisible();
|
||||
});
|
||||
/*
|
||||
TODO: implement
|
||||
it('doesn\'t fire a selection event', function() {
|
||||
options.select = function(start, end) {
|
||||
expect(start.hasTime()).toEqual(false);
|
||||
expect(end.hasTime()).toEqual(false);
|
||||
expect(start).toEqualMoment('2014-05-26');
|
||||
expect(end).toEqualMoment('2014-05-28');
|
||||
};
|
||||
spyOn(options, 'select').and.callThrough();
|
||||
$('#cal').fullCalendar(options);
|
||||
$('#cal').fullCalendar('select', '2014-05-26', '2014-05-28');
|
||||
expect(options.select).not.toHaveBeenCalled();
|
||||
});
|
||||
*/
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user