░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/selenium/admin/analytics_2
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: student_context_tray_spec.rb
# frozen_string_literal: true # Copyright (C) 2019 - 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_relative "../../common" require_relative "../pages/course_page" require_relative "../pages/student_context_tray_page" require_relative "../../../factories/analytics_2_tool_factory" describe "analytics in Canvas" do include_context "in-process server selenium tests" include CourseHomePage include StudentContextTray include Factories context "Analytics 2.0 LTI installed" do before :once do @admin = account_admin_user(active_all: true) # Analytics1.0 is enabled for all tests by default @admin.account.update(allowed_services: "+analytics") # add the analytics 2 LTI to the account analytics_2_tool_factory @tool_id = @admin.account.context_external_tools.first.id # create a course, @teacher and student in course @course = course_with_teacher( account: @admin.account, course_name: "A New Course", name: "Teacher1", active_all: true ).course @student = student_in_course( course: @course, name: "First Student", active_all: true ).user end describe "student context tray for teacher role" do context "with A2 FF enabled" do before do @course.root_account.enable_feature!(:analytics_2) user_session(@teacher) visit_course_people_page(@course.id) course_user_link(@student.id).click wait_for_student_tray end it "displays Analytics 2 button on Student Tray" do expect(student_tray_quick_links.text).to include("Analytics 2") end end context "with A2 FF disabled" do before do @course.root_account.disable_feature!(:analytics_2) user_session(@teacher) visit_course_people_page(@course.id) course_user_link(@student.id).click wait_for_student_tray end it "displays Analytics 1 button on Student Tray" do expect(student_tray_quick_links.text).to include("Analytics") expect(student_tray_quick_links.text).not_to include("Analytics 2") end end context "with permissions" do context "with A2 FF disabled and view_analytics permission disabled" do before do @course.account.role_overrides.create!(permission: :view_analytics, role: teacher_role, enabled: false) @course.root_account.disable_feature!(:analytics_2) user_session(@teacher) visit_course_people_page(@course.id) course_user_link(@student.id).click wait_for_student_tray end it "does not display Analytics 1 button" do skip "Flakey spec. Fix via LA-849" expect(student_tray_quick_links.text).not_to include("Analytics") end end context "with A2 FF enabled and view_all_grades disabled" do before do @course.account.role_overrides.create!(permission: :view_all_grades, role: teacher_role, enabled: false) @course.root_account.enable_feature!(:analytics_2) user_session(@teacher) visit_course_people_page(@course.id) course_user_link(@student.id).click wait_for_student_tray end it "does not display Analytics 2 button" do expect(student_tray_quick_links.text).not_to include("Analytics 2") end end end end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 analytics_2.0_spec.rb
RB
6.9 KB
2023-09-24 03:36
EDIT
📄 student_context_tray_spec.rb
RB
4.1 KB
2023-09-24 03:36
EDIT