44 lines
1.7 KiB
Ruby
44 lines
1.7 KiB
Ruby
#
|
|
# Copyright (C) 2011 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.rb')
|
|
|
|
describe ZipFileImport do
|
|
it "should process asynchronously into a folder" do
|
|
course_with_teacher
|
|
folder = Folder.root_folders(@course).first
|
|
zf = @course.zip_file_imports.create!(:folder => folder)
|
|
zf.attachment = attachment_model(:uploaded_data => stub_file_data("attachments.zip", File.read(Rails.root+"spec/fixtures/attachments.zip"), "application/zip"))
|
|
zf.attachment.update_attributes(:context => zf)
|
|
zf.save!
|
|
job = zf.process
|
|
job.should be_is_a(Delayed::Job)
|
|
zf.reload.progress.should be_nil
|
|
zf.state.should == :created
|
|
run_job(job)
|
|
zf.reload.state.should == :imported
|
|
zf.progress.should == 1.0
|
|
folder.attachments.active.map(&:display_name).should == ["first_entry.txt"]
|
|
folder.sub_folders.active.count.should == 1
|
|
sub = folder.sub_folders.active.first
|
|
sub.name.should == "adir"
|
|
sub.attachments.active.map(&:display_name).should == ["second_entry.txt"]
|
|
end
|
|
end
|
|
|