Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
spec
/
integration
/
Filename :
varied_due_dates_spec.rb
back
Copy
# frozen_string_literal: true # # Copyright (C) 2012 - 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/>. # require "nokogiri" describe "varied due dates" do include TextHelper let(:multiple_due_dates) { "Multiple Due Dates" } def assert_coming_up_due_date(response, expected) doc = Nokogiri::HTML5(response.body) expect(doc.at_css("#right-side .coming_up .event a .event-details").text).to include( expected.is_a?(String) ? expected : datetime_string(expected) ) end def assert_todo_due_date(response, expected) doc = Nokogiri::HTML5(response.body) expect(doc.at_css("#right-side .to-do-list").text).to include( expected.is_a?(String) ? expected : datetime_string(expected) ) end def assert_recent_feedback_due_date(response, expected) doc = Nokogiri::HTML5(response.body) expect(doc.at_css("#right-side .recent_feedback .event a .event-details").text).to include( expected.is_a?(String) ? expected : datetime_string(expected) ) end before do # Create a course with a student course_with_student(active_all: true) @student1 = user_with_pseudonym user: @student # Enroll another student @s2enrollment = student_in_course(course: @course, active_all: true) @student2 = user_with_pseudonym user: @user # Create another section @section = @course.course_sections.create! # Add the second student to the new section @s2enrollment.course_section = @section @s2enrollment.save! # Let's enroll another student, this one in both sections @s3enrollment1 = student_in_course(course: @course, active_all: true) @student3 = user_with_pseudonym user: @user @s3enrollment2 = @s3enrollment1.clone @s3enrollment2.course_section = @section @s3enrollment2.save! # Create an assignment @course_due_date = 3.days.from_now @section_due_date = 5.days.from_now course_with_teacher(course: @course, active_all: true) @teacher = user_with_pseudonym user: @user create_coming_up_assignment end def create_recent_feedback(student) @assignment.find_or_create_submission(student) @assignment.update_submission(student, { comment: "you should turn this in ...", commenter: @teacher }) end def create_teacher_todo_assignment @teacher_todo_assignment = @course.assignments.create!( title: "Teacher Todo", due_at: @course_due_date, submission_types: "online_text_entry" ) create_override_for(@teacher_todo_assignment, @section_due_date) @submission = @teacher_todo_assignment.submit_homework(@student1, { submission_type: "online_text_entry", body: "canvas ate my homework" }) @submission.save! end def create_student_todo_assignment @student_todo_course_due_at = 1.day.from_now @student_todo_section_due_at = 2.days.from_now @student_todo_assignment = @course.assignments.create!( title: "Student Todo", due_at: @student_todo_course_due_at, submission_types: "online_text_entry" ) @student_todo_override = create_override_for(@student_todo_assignment, @student_todo_section_due_at) end def create_coming_up_assignment @assignment = @course.assignments.create!( title: "Test Assignment", due_at: @course_due_date ) @coming_up_override = create_override_for(@assignment, @section_due_date) end def create_override_for(assignment, due_at) override = AssignmentOverride.new override.assignment = assignment override.set = @section override.due_at = due_at override.due_at_overridden = true override.save! override end context "on the dashboard" do def wrap_partial(response) response.body = "<html id='right-side'>#{response.body}</html>" response end context "as the teacher" do it "shows multiple due dates in 'coming up'" do user_session(@teacher) get "/dashboard-sidebar" assert_coming_up_due_date wrap_partial(response), multiple_due_dates end it "shows multiple due dates in 'todo'" do create_teacher_todo_assignment user_session(@teacher) get "/dashboard-sidebar" assert_todo_due_date wrap_partial(response), multiple_due_dates end end end end