░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/lib/canvas/migration/external_content
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: translator_spec.rb
# frozen_string_literal: true # # Copyright (C) 2016 - 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 "../../../../spec_helper" describe Canvas::Migration::ExternalContent::Translator do context "#translate_data" do before :once do @copy_from = course_model @quiz = @copy_from.quizzes.create! @mig_id = CC::CCHelper.create_key(@quiz) @copy_to = course_model @quiz_copy = @copy_to.quizzes.new @quiz_copy.migration_id = @mig_id @quiz_copy.save! @cm = @course.content_migrations.create! @cm.add_imported_item(@quiz_copy) @translator = described_class.new(content_migration: @cm) end it "searches through arrays" do data = [ { "something" => "somethingelse" }, { "$canvas_quiz_id" => @quiz.id } ] exported_data = @translator.translate_data(data, :export) expect(exported_data.last["$canvas_quiz_id"]).to eq @mig_id imported_data = @translator.translate_data(exported_data, :import) expect(imported_data.last["$canvas_quiz_id"]).to eq @quiz_copy.id end it "searches through nested hashes" do data = { "key" => { "$canvas_quiz_id" => @quiz.id } } exported_data = @translator.translate_data(data, :export) expect(exported_data["key"]["$canvas_quiz_id"]).to eq @mig_id imported_data = @translator.translate_data(exported_data, :import) expect(imported_data["key"]["$canvas_quiz_id"]).to eq @quiz_copy.id end end context "#get_canvas_id_from_migration_id" do before :once do course_model @cm = @course.content_migrations.create! @translator = described_class.new(content_migration: @cm) end it "is able to search for all of the types in the course" do # make sure none of the types asplode the fallback logic described_class::TYPES_TO_CLASSES.each_value do |obj_class| expect(@translator.get_canvas_id_from_migration_id(obj_class, "some_migration_id")).to eq described_class::NOT_FOUND end end it "is able to find an already imported item" do mig_id = "somemigrationid" assmt = @course.assignments.new assmt.migration_id = mig_id assmt.save! expect(@translator.get_canvas_id_from_migration_id(Assignment, mig_id)).to eq assmt.id end it "searches through recently imported items first" do mig_id = "somemigrationid" assmt = @course.assignments.new assmt.migration_id = mig_id assmt.save! @cm.add_imported_item(assmt) expect(@course).not_to receive(:assignments) expect(@translator.get_canvas_id_from_migration_id(Assignment, mig_id)).to eq assmt.id end end context "#get_migration_id_from_canvas_id" do before :once do course_model template = MasterCourses::MasterTemplate.create!(course: @course) mm = template.master_migrations.create! @cm = @course.content_migrations.create! ce = ContentExport.create!(export_type: ContentExport::MASTER_COURSE_COPY, content_migration: @cm, context: @course, workflow_state: "active", settings: { master_migration_id: mm.id }) @translator = described_class.new(content_export: ce) end it "returns the same migration_id for graded item assignments as it does for the item" do quiz = assignment_quiz([], course: @course, due_at: Time.zone.now) quiz_mig_id = @translator.get_migration_id_from_canvas_id(quiz.class, quiz.id) assign_mig_id = @translator.get_migration_id_from_canvas_id(quiz.assignment.class, quiz.assignment.id) expect(assign_mig_id).to eq quiz_mig_id end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 translator_spec.rb
RB
4.3 KB
2023-09-24 03:36
EDIT