canvas-lms/spec/integration/asset_accesses_spec.rb

96 lines
3.6 KiB
Ruby

#
# Copyright (C) 2011 - 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 File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
require 'nokogiri'
describe "user asset accesses" do
before(:each) do
Setting.set('enable_page_views', 'db')
username = "nobody@example.com"
password = "asdfasdf"
u = user_with_pseudonym :active_user => true,
:username => username,
:password => password
u.save!
@e = course_with_teacher :active_course => true,
:user => u,
:active_enrollment => true
@e.save!
@teacher = u
user_session(@user, @pseudonym)
user_model
@student = @user
@course.enroll_student(@student).accept
end
include ApplicationHelper
it "should record and show user asset accesses" do
now = Time.now.utc
allow(Time).to receive(:now).and_return(now)
assignment = @course.assignments.create(:title => 'Assignment 1')
assignment.workflow_state = 'active'
assignment.save!
user_session(@student)
get "/courses/#{@course.id}/assignments/#{assignment.id}"
expect(response).to be_successful
user_session(@teacher)
get "/courses/#{@course.id}/users/#{@student.id}/usage"
expect(response).to be_successful
html = Nokogiri::HTML(response.body)
expect(html.css('#usage_report .access.assignment').length).to eq 1
expect(html.css('#usage_report .access.assignment .readable_name').text.strip).to eq 'Assignment 1'
expect(html.css('#usage_report .access.assignment .view_score').text.strip).to eq '1'
expect(html.css('#usage_report .access.assignment .last_viewed').text.strip).to eq datetime_string(now)
expect(AssetUserAccess.where(:user_id => @student).first.last_access.to_i).to eq now.to_i
now2 = now + 1.hour
allow(Time).to receive(:now).and_return(now2)
# make sure that we're not using the uodated_at time as the time of the access
AssetUserAccess.where(:user_id => @student).update_all(:updated_at => now2 + 5.hours)
user_session(@student)
get "/courses/#{@course.id}/assignments/#{assignment.id}"
expect(response).to be_successful
user_session(@teacher)
get "/courses/#{@course.id}/users/#{@student.id}/usage"
expect(response).to be_successful
html = Nokogiri::HTML(response.body)
expect(html.css('#usage_report .access.assignment').length).to eq 1
expect(html.css('#usage_report .access.assignment .readable_name').text.strip).to eq 'Assignment 1'
expect(html.css('#usage_report .access.assignment .view_score').text.strip).to eq '2'
expect(html.css('#usage_report .access.assignment .last_viewed').text.strip).to eq datetime_string(now2)
expect(AssetUserAccess.where(:user_id => @student).first.last_access.to_i).to eq now2.to_i
end
it "should record user names when viewing profiles" do
user_session(@student)
get "/courses/#{@course.id}/users/#{@teacher.id}"
expect(AssetUserAccess.where(:user_id => @student).first.display_name).to eq @teacher.name
end
end