canvas-lms/spec/import_helper.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

76 lines
2.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2011-02-01 09:57:29 +08:00
#
# Copyright (C) 2011 - present Instructure, Inc.
2011-02-01 09:57:29 +08:00
#
# 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/>.
#
IMPORT_JSON_DIR = File.dirname(__FILE__) + "/fixtures/importer/"
2011-02-01 09:57:29 +08:00
QUESTIONS = [
["calculated_complex", "calculated_question"],
["calculated_simple", "calculated_question"],
["essay"],
["file_upload", "unsupported"],
["fill_in_multiple_blanks"],
["hot_spot", "unsupported"],
["matching"],
["multiple_answers"],
["multiple_choice"],
["multiple_dropdowns"],
["numerical"],
["ordering", "matching_question"],
["short_answer"],
["true_false"],
].freeze
SYSTEMS = %w[vista bb8 bb9 angel].freeze
2011-02-01 09:57:29 +08:00
def import_data_exists?(sub_folder, hash_name)
File.exist? File.join(IMPORT_JSON_DIR, sub_folder, "#{hash_name}.json")
2011-02-01 09:57:29 +08:00
end
def get_import_data(sub_folder, hash_name)
json = File.open(File.join(IMPORT_JSON_DIR, sub_folder, "#{hash_name}.json")).read
data = JSON.parse(json)
data = data.with_indifferent_access if data.is_a? Hash
data
end
def import_example_questions
questions = []
2011-02-01 09:57:29 +08:00
QUESTIONS.each do |question|
if import_data_exists?(["vista", "quiz"], question[0])
q = get_import_data ["vista", "quiz"], question[0]
questions << q
2011-02-01 09:57:29 +08:00
end
end
hash = { "assessment_questions" => { "assessment_questions" => questions } }
Importers::AssessmentQuestionImporter.process_migration(hash, @migration)
2011-02-01 09:57:29 +08:00
end
def get_import_context(system = nil)
context = course_model
context.import_source == :webct if system == "vista"
2011-02-01 09:57:29 +08:00
context
end
class ImportHelper
def self.get_import_data_xml(sub_folder, file_name)
File.open(File.join(IMPORT_JSON_DIR, sub_folder, "#{file_name}.xml")) { |f| Nokogiri::XML(f) }
end
end