Browse Source

Copy project attachments (#26622).

Patch by Holger Just.


git-svn-id: http://svn.redmine.org/redmine/trunk@17333 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.0.0
Go MAEDA 6 years ago
parent
commit
45478883a4
2 changed files with 13 additions and 0 deletions
  1. 5
    0
      app/models/project.rb
  2. 8
    0
      test/unit/project_copy_test.rb

+ 5
- 0
app/models/project.rb View File

@@ -827,6 +827,11 @@ class Project < ActiveRecord::Base
Project.transaction do
if save
reload

self.attachments = project.attachments.map do |attachment|
attachment.copy(:container => self)
end

to_be_copied.each do |name|
send "copy_#{name}", project
end

+ 8
- 0
test/unit/project_copy_test.rb View File

@@ -51,6 +51,14 @@ class ProjectCopyTest < ActiveSupport::TestCase
assert_equal false, project.copy(@source_project)
end

test "#copy should copy project attachments" do
Attachment.create!(:container => @source_project, :file => uploaded_test_file("testfile.txt", "text/plain"), :author_id => 1)
assert @project.copy(@source_project)

assert_equal 1, @project.attachments.count, "Attachment not copied"
assert_equal "testfile.txt", @project.attachments.first.filename
end

test "#copy should copy issues" do
@source_project.issues << Issue.generate!(:status => IssueStatus.find_by_name('Closed'),
:subject => "copy issue status",

Loading…
Cancel
Save