░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/javascripts/jsx/calendar
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: CommonEvent.CalendarEventSpec.js
/* * Copyright (C) 2016 - 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 CalendarEvent from '@canvas/calendar/jquery/CommonEvent/CalendarEvent' let calendarEvent const getFakeChildEvents = () => [ {user: {sortable_name: 'Stark, Tony'}}, {user: {sortable_name: 'Parker, Peter'}}, {user: {sortable_name: 'Rogers, Steve'}}, ] QUnit.module('CommonEvent.CalendarEvent', { setup() { const data = { child_events: [], } const contexts = ['course_1'] calendarEvent = new CalendarEvent(data, contexts) }, teardown() { calendarEvent = null }, }) test('Constructor sets reservedUsers from child_events limited to 5 and joined by "; "', () => { const data = { child_events: getFakeChildEvents().concat([ {user: {sortable_name: 'Banner, Bruce'}}, {user: {sortable_name: 'Lang, Scott'}}, ]), } calendarEvent = new CalendarEvent(data, ['course_1']) const expected = 'Banner, Bruce; Lang, Scott; Parker, Peter; Rogers, Steve; Stark, Tony' equal(calendarEvent.reservedUsers, expected) }) test('Constructor sets reservedUsers from child_events limited to 5 and joined by "; " with "and more..." if more than 5', () => { const data = { child_events: getFakeChildEvents().concat([ {user: {sortable_name: 'Banner, Bruce'}}, {user: {sortable_name: 'Lang, Scott'}}, {user: {sortable_name: 'Barton, Clint'}}, ]), } calendarEvent = new CalendarEvent(data, ['course_1']) const expected = 'Banner, Bruce; Barton, Clint; Lang, Scott; Parker, Peter; Rogers, Steve; and more...' equal(calendarEvent.reservedUsers, expected) }) test('calculateAppointmentGroupEventStatus returns number of available slots string when more than 0 and none are reserved', () => { calendarEvent.calendarEvent.available_slots = 20 equal(calendarEvent.calculateAppointmentGroupEventStatus(), '20 Available') }) test('calculateAppointmentGroupEventStatus returns "X more available" when there are some reserved and some open', () => { calendarEvent.calendarEvent.child_events = getFakeChildEvents() calendarEvent.calendarEvent.available_slots = 17 equal(calendarEvent.calculateAppointmentGroupEventStatus(), '17 more available') }) test('calculateAppointmentGroupEventStatus gives "Filled" string when 0 available_slots', () => { calendarEvent.calendarEvent.available_slots = 0 equal(calendarEvent.calculateAppointmentGroupEventStatus(), 'Filled') }) test('calculateAppointmentGroupEventStatus gives "Reserved" string when reserved', () => { calendarEvent.calendarEvent.reserved = true equal(calendarEvent.calculateAppointmentGroupEventStatus(), 'Reserved') }) test('calculateAppointmentGroupEventStatus gives "Reserved" string when there is an appointment_group_url and parent_event_id', () => { calendarEvent.calendarEvent.reserved = false calendarEvent.calendarEvent.appointment_group_url = 1 calendarEvent.calendarEvent.parent_event_id = 30 equal(calendarEvent.calculateAppointmentGroupEventStatus(), 'Reserved') }) test('consideredReserved returns true when reserve should be shown', () => { calendarEvent.calendarEvent.reserved = true ok(calendarEvent.consideredReserved(), 'true when reserved') calendarEvent.calendarEvent.reserved = false calendarEvent.calendarEvent.appointment_group_url = 1 calendarEvent.calendarEvent.parent_event_id = 30 ok(calendarEvent.consideredReserved(), 'true with appointment_group_url and parent_event_id') })
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📁 scheduler/
DIR
—
2023-09-24 03:39
📄 CalendarEventSpec.js
JS
2.2 KB
2023-09-24 03:39
EDIT
📄 CommonEvent.CalendarEventSpec.js
JS
4 KB
2023-09-24 03:36
EDIT