%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.146 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/ppaobm/vendor/bower-asset/fullcalendar/tests/automated/event-data/ |
Upload File : |
describe('Event::setStart', function() { pushOptions({ now: '2018-09-03', timeZone: 'UTC', defaultTimedEventDuration: '01:00' }) describe('when event doesn\'t have an end', function() { pushOptions({ events: [ { id: '1', start: '2018-09-05T00:00:00' } ] }) describe('when not maintaining duration', function() { it('moves start and gives event an end', function() { initCalendar() let event = currentCalendar.getEventById('1') event.setStart('2018-09-01') expect(event.start).toEqualDate('2018-09-01T00:00:00Z') expect(event.end).toEqualDate('2018-09-05T01:00:00Z') }) }) describe('when maintaining duration', function() { it('moves start and keeps no end', function() { initCalendar() let event = currentCalendar.getEventById('1') event.setStart('2018-09-01', { maintainDuration: true }) expect(event.start).toEqualDate('2018-09-01') expect(event.end).toBe(null) }) }) }) describe('when event does have an end', function() { pushOptions({ events: [ { id: '1', start: '2018-09-05T00:00:00', end: '2018-09-07T00:00:00' } ] }) describe('when not maintaining duration', function() { it('moves start and keeps the same end', function() { initCalendar() let event = currentCalendar.getEventById('1') event.setStart('2018-09-01') expect(event.start).toEqualDate('2018-09-01') expect(event.end).toEqualDate('2018-09-07') }) }) describe('when maintaining duration', function() { it('move start and keeps the end', function() { initCalendar() let event = currentCalendar.getEventById('1') event.setStart('2018-09-01', { maintainDuration: true }) expect(event.start).toEqualDate('2018-09-01') expect(event.end).toEqualDate('2018-09-03') }) }) }) describe('when event is all-day', function() { pushOptions({ events: [ { id: '1', start: '2018-09-05', end: '2018-09-07', allDay: true } ] }) describe('when setting start to another all-day', function() { it('moves start', function() { initCalendar() let event = currentCalendar.getEventById('1') event.setStart('2018-09-01') expect(event.start).toEqualDate('2018-09-01') expect(event.end).toEqualDate('2018-09-07') expect(event.allDay).toBe(true) }) }) describe('when setting start to timed', function() { it('moves start to rounded-down start-of-day', function() { initCalendar() let event = currentCalendar.getEventById('1') event.setStart('2018-09-01T23:00:00') expect(event.start).toEqualDate('2018-09-01') expect(event.end).toEqualDate('2018-09-07') expect(event.allDay).toBe(true) }) }) }) it('shortens related events of different duration by same delta', function() { initCalendar({ events: [ { id: '1', groupId: 'a', start: '2018-09-05T00:00:00', end: '2018-09-10T00:00:00' }, { id: '2', groupId: 'a', start: '2018-09-06T00:00:00', end: '2018-09-09T00:00:00' } ] }) let event1 = currentCalendar.getEventById('1') event1.setStart('2018-09-01') // move start back by 4 days expect(event1.start).toEqualDate('2018-09-01') expect(event1.end).toEqualDate('2018-09-10') let event2 = currentCalendar.getEventById('2') expect(event2.start).toEqualDate('2018-09-02') expect(event2.end).toEqualDate('2018-09-09') }) })