░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/selenium/files
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: new_files_tools_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" describe "files page with tools" do include_context "in-process server selenium tests" context "file index menu tools" do before do course_with_teacher_logged_in @tool = Account.default.context_external_tools.new(name: "a", domain: "google.com", consumer_key: "12345", shared_secret: "secret") @tool.file_index_menu = { url: "http://www.example.com", text: "Import Stuff" } @tool.save! end it "is able to launch the index menu tool via the tray", custom_timeout: 60 do get "/courses/#{@course.id}/files" gear = f("#file_menu_link") gear.click tool_link = f(".al-options li.ui-menu-item a") expect(tool_link).to include_text("Import Stuff") tool_link.click wait_for_ajaximations tray = f("[role='dialog']") expect(tray["aria-label"]).to eq "Import Stuff" iframe = tray.find_element(:css, "iframe") expect(iframe["src"]).to include("/courses/#{@course.id}/external_tools/#{@tool.id}") query_params = Rack::Utils.parse_nested_query(URI.parse(iframe["src"]).query) expect(query_params["launch_type"]).to eq "file_index_menu" expect(query_params["com_instructure_course_allow_canvas_resource_selection"]).to eq "false" expect(query_params["com_instructure_course_accept_canvas_resource_types"]).to match_array(%w[audio document image video]) expect(query_params["com_instructure_course_canvas_resource_type"]).to eq "document" expect(query_params["com_instructure_course_available_canvas_resources"]).to be_blank end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 new_files_folders_spec.rb
RB
6.6 KB
2023-09-24 03:36
EDIT
📄 new_files_spec.rb
RB
20.4 KB
2023-09-24 03:39
EDIT
📄 new_files_student_spec.rb
RB
5.1 KB
2023-09-24 03:36
EDIT
📄 new_files_tools_spec.rb
RB
2.3 KB
2023-09-24 03:36
EDIT