░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/coffeescripts/views/calendar
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: CalendarNavigatorSpec.js
/* * Copyright (C) 2015 - present Instructure, Inc. * * This file is part of Canvas. * * Canvas is free software: you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License as published by the Free * Software Foundation, version 3 of the License. * * Canvas is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more * details. * * You should have received a copy of the GNU Affero General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ import $ from 'jquery' import CalendarNavigator from 'ui/features/calendar/backbone/views/CalendarNavigator' import assertions from 'helpers/assertions' QUnit.module('CalendarNavigator', { setup() { this.navigator = new CalendarNavigator() this.navigator.$el.appendTo($('#fixtures')) }, teardown() { this.navigator.$el.remove() $('#fixtures').empty() $('#ui-datepicker-div').empty() $('.ui-dialog').remove() $('ul[id^=ui-id-]').remove() }, }) test('should be accessible', function (assert) { const done = assert.async() assertions.isAccessible(this.navigator, done, {a11yReport: true}) }) test('clicking a day in picker navigates to that date', function () { // instrument the callback const handler = sinon.spy() this.navigator.on('navigateDate', handler) // find and click a date other than today (typically tomorrow, but maybe // yesterday if we're at the end of the month) this.navigator.$title.click() const $today = $('.ui-datepicker-today') let $sibling = $today.next('td') if (!$sibling.length || !$('a.ui-state-default', $sibling).length) { $sibling = $today.prev('td') if (!$sibling.length || !$('a.ui-state-default', $sibling).length) { ok(false, 'expected to find a link for today or yesterday') return } } $('a.ui-state-default', $sibling).click() // the date we expect to have clicked const month = $sibling.data('month') const year = $sibling.data('year') const day = $sibling.text() const expectedDate = $.unfudgeDateForProfileTimezone(new Date(year, month, day)) // check that we got the expected value to the callback equal(+handler.getCall(0).args[0], +expectedDate) }) test('hitting enter in date field navigates to date', function () { // instrument the callback const handler = sinon.spy() this.navigator.on('navigateDate', handler) // type and "enter" a date this.navigator.$title.click() const {$dateField} = this.navigator $dateField.val('July 4, 2015') $dateField.trigger($.Event('keydown', {keyCode: 13})) // check that we got the expected value to the callback const expectedDate = $.unfudgeDateForProfileTimezone(new Date(2015, 6, 4)) equal(+handler.getCall(0).args[0], +expectedDate) })
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 CalendarHeaderSpec.js
JS
5.1 KB
2023-09-24 03:36
EDIT
📄 CalendarNavigatorSpec.js
JS
2.9 KB
2023-09-24 03:39
EDIT