Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
spec
/
helpers
/
messages
/
Filename :
peer_reviews_helper_spec.rb
back
Copy
# frozen_string_literal: true # # 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/>. # describe Messages::PeerReviewsHelper do describe "assessment requests" do before :once do assessment_request_model end it "shoulds return reviewee name" do expect(reviewee_name(@assessment_request, @user)).to eq(@assessment_request.asset.user.name) end it "returns anonymous when anonymous peer reviews enabled" do assignment = @assessment_request.asset.assignment assignment.update_attribute(:anonymous_peer_reviews, true) @assessment_request.reload expect(reviewee_name(@assessment_request, @user2)).to eq(I18n.t(:anonymous_user, "Anonymous User")) end it "returns anonymous URL when get_submission_link is called with anonymous peer reviews enabled" do assignment = @assessment_request.asset.assignment assignment.update!(anonymous_peer_reviews: true) expect(get_submission_link(@assessment_request, @user)).to include("anonymous_submission") end it "returns normal URL when get_submission_link is called without anonymous peer reviews enabled" do assignment = @assessment_request.asset.assignment assignment.update!(anonymous_peer_reviews: false) expect(get_submission_link(@assessment_request, @user)).to include("/submissions/") end it "returns a url with host" do expect(HostUrl).to receive(:context_host).with(Account.default).and_return("customhost.example.com") expect(get_submission_link(@assessment_request, @user)).to include("#{HostUrl.protocol}://customhost.example.com") end end describe "submission comments" do context "anonymous peer reviews disabled" do it "returns author name" do submission_model comment = @submission.add_comment(comment: "new comment") expect(submission_comment_author(comment, @user)).to eq(comment.author_name) end it "returns anonymous" do @user2 = user_model submission_model comment = @submission.add_comment(comment: "new comment", user: @user2) @submission.assignment.update_attribute(:anonymous_peer_reviews, true) comment.reload expect(submission_comment_author(comment, @user)).to eq(I18n.t(:anonymous_user, "Anonymous User")) end end context "anonymous peer reviews enabled" do it "returns submittor" do submission_model comment = @submission.add_comment(comment: "new comment") expect(submission_comment_submittor(comment, @user)).to eq(@submission.user.short_name) end it "returns anonymous" do @user2 = user_model submission_model comment = @submission.add_comment(comment: "new comment", user: @user2) @submission.assignment.update_attribute(:anonymous_peer_reviews, true) comment.reload expect(submission_comment_submittor(comment, @user2)).to eq(I18n.t(:anonymous_user, "Anonymous User")) end end end end