|
|
@@ -44,6 +44,31 @@ describe('select callback', function() {
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
+ it('gets fired correctly when the user selects cells via touch', function(done) {
|
|
|
+ options.isTouch = true;
|
|
|
+ options.longPressDelay = 100;
|
|
|
+ options.select = function(start, end, jsEvent, view) {
|
|
|
+ expect(moment.isMoment(start)).toEqual(true);
|
|
|
+ expect(moment.isMoment(end)).toEqual(true);
|
|
|
+ expect(typeof jsEvent).toEqual('object'); // TODO: more descrimination
|
|
|
+ expect(typeof view).toEqual('object'); // "
|
|
|
+ expect(start.hasTime()).toEqual(false);
|
|
|
+ expect(end.hasTime()).toEqual(false);
|
|
|
+ expect(start).toEqualMoment('2014-04-28');
|
|
|
+ expect(end).toEqualMoment('2014-05-07');
|
|
|
+ };
|
|
|
+ spyOn(options, 'select').and.callThrough();
|
|
|
+ $('#cal').fullCalendar(options);
|
|
|
+ $('.fc-day[data-date="2014-04-28"]').simulate('drag', {
|
|
|
+ isTouch: true,
|
|
|
+ delay: 200,
|
|
|
+ end: '.fc-day[data-date="2014-05-06"]',
|
|
|
+ callback: function() {
|
|
|
+ expect(options.select).toHaveBeenCalled();
|
|
|
+ done();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
it('gets fired correctly when the user selects just one cell', function(done) {
|
|
|
options.select = function(start, end, jsEvent, view) {
|
|
|
expect(moment.isMoment(start)).toEqual(true);
|
|
|
@@ -136,6 +161,33 @@ describe('select callback', function() {
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
+ it('gets fired correctly when the user selects slots via touch', function(done) {
|
|
|
+ options.isTouch = true;
|
|
|
+ options.longPressDelay = 1000;
|
|
|
+ options.select = function(start, end, jsEvent, view) {
|
|
|
+ expect(moment.isMoment(start)).toEqual(true);
|
|
|
+ expect(moment.isMoment(end)).toEqual(true);
|
|
|
+ expect(typeof jsEvent).toEqual('object'); // TODO: more descrimination
|
|
|
+ expect(typeof view).toEqual('object'); // "
|
|
|
+ expect(start.hasTime()).toEqual(true);
|
|
|
+ expect(end.hasTime()).toEqual(true);
|
|
|
+ expect(start).toEqualMoment('2014-05-28T09:00:00');
|
|
|
+ expect(end).toEqualMoment('2014-05-28T10:30:00');
|
|
|
+ };
|
|
|
+ spyOn(options, 'select').and.callThrough();
|
|
|
+ $('#cal').fullCalendar(options);
|
|
|
+ setTimeout(function() { // prevent scroll from being triggered, killing the select interaction
|
|
|
+ $('.fc-slats tr:eq(18) td:not(.fc-time)').simulate('drag', { // middle will be 2014-05-28T09:00:00
|
|
|
+ isTouch: true,
|
|
|
+ delay: 1500,
|
|
|
+ dy: $('.fc-slats tr:eq(18)').outerHeight() * 2, // move down two slots
|
|
|
+ callback: function() {
|
|
|
+ expect(options.select).toHaveBeenCalled();
|
|
|
+ done();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }, 0);
|
|
|
+ });
|
|
|
it('gets fired correctly when the user selects slots in a different day', function(done) {
|
|
|
options.select = function(start, end, jsEvent, view) {
|
|
|
expect(moment.isMoment(start)).toEqual(true);
|