Commit d581510a authored by Eric Davis's avatar Eric Davis

Refactor: Start to extract IssuesController#edit into #update (REST).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3480 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 6ed9734c
...@@ -19,7 +19,7 @@ class IssuesController < ApplicationController ...@@ -19,7 +19,7 @@ class IssuesController < ApplicationController
menu_item :new_issue, :only => :new menu_item :new_issue, :only => :new
default_search_scope :issues default_search_scope :issues
before_filter :find_issue, :only => [:show, :edit, :reply] before_filter :find_issue, :only => [:show, :edit, :update, :reply]
before_filter :find_issues, :only => [:bulk_edit, :move, :destroy] before_filter :find_issues, :only => [:bulk_edit, :move, :destroy]
before_filter :find_project, :only => [:new, :update_form, :preview] before_filter :find_project, :only => [:new, :update_form, :preview]
before_filter :authorize, :except => [:index, :changes, :gantt, :calendar, :preview, :context_menu] before_filter :authorize, :except => [:index, :changes, :gantt, :calendar, :preview, :context_menu]
...@@ -226,7 +226,7 @@ class IssuesController < ApplicationController ...@@ -226,7 +226,7 @@ class IssuesController < ApplicationController
end end
# failure # failure
respond_to do |format| respond_to do |format|
format.html { } format.html { render :action => 'edit' }
format.xml { render :xml => @issue.errors, :status => :unprocessable_entity } format.xml { render :xml => @issue.errors, :status => :unprocessable_entity }
end end
end end
...@@ -237,6 +237,13 @@ class IssuesController < ApplicationController ...@@ -237,6 +237,13 @@ class IssuesController < ApplicationController
attachments.each(&:destroy) attachments.each(&:destroy)
end end
#--
# Start converting to the Rails REST controllers
#++
def update
edit
end
def reply def reply
journal = Journal.find(params[:journal_id]) if params[:journal_id] journal = Journal.find(params[:journal_id]) if params[:journal_id]
if journal if journal
......
<% labelled_tabular_form_for :issue, @issue, <% labelled_tabular_form_for :issue, @issue,
:url => {:action => 'edit', :id => @issue}, :url => {:action => 'update', :id => @issue},
:html => {:id => 'issue-form', :html => {:id => 'issue-form',
:class => nil, :class => nil,
:method => :put,
:multipart => true} do |f| %> :multipart => true} do |f| %>
<%= error_messages_for 'issue' %> <%= error_messages_for 'issue' %>
<%= error_messages_for 'time_entry' %> <%= error_messages_for 'time_entry' %>
......
...@@ -52,9 +52,9 @@ Redmine::AccessControl.map do |map| ...@@ -52,9 +52,9 @@ Redmine::AccessControl.map do |map|
:queries => :index, :queries => :index,
:reports => [:issue_report, :issue_report_details]} :reports => [:issue_report, :issue_report_details]}
map.permission :add_issues, {:issues => [:new, :update_form]} map.permission :add_issues, {:issues => [:new, :update_form]}
map.permission :edit_issues, {:issues => [:edit, :reply, :bulk_edit, :update_form]} map.permission :edit_issues, {:issues => [:edit, :update, :reply, :bulk_edit, :update_form]}
map.permission :manage_issue_relations, {:issue_relations => [:new, :destroy]} map.permission :manage_issue_relations, {:issue_relations => [:new, :destroy]}
map.permission :add_issue_notes, {:issues => [:edit, :reply]} map.permission :add_issue_notes, {:issues => [:edit, :update, :reply]}
map.permission :edit_issue_notes, {:journals => :edit}, :require => :loggedin map.permission :edit_issue_notes, {:journals => :edit}, :require => :loggedin
map.permission :edit_own_issue_notes, {:journals => :edit}, :require => :loggedin map.permission :edit_own_issue_notes, {:journals => :edit}, :require => :loggedin
map.permission :move_issues, {:issues => :move}, :require => :loggedin map.permission :move_issues, {:issues => :move}, :require => :loggedin
......
...@@ -657,7 +657,7 @@ class IssuesControllerTest < ActionController::TestCase ...@@ -657,7 +657,7 @@ class IssuesControllerTest < ActionController::TestCase
assert_select_rjs :show, "update" assert_select_rjs :show, "update"
end end
def test_post_edit_without_custom_fields_param def test_put_update_without_custom_fields_param
@request.session[:user_id] = 2 @request.session[:user_id] = 2
ActionMailer::Base.deliveries.clear ActionMailer::Base.deliveries.clear
...@@ -668,7 +668,7 @@ class IssuesControllerTest < ActionController::TestCase ...@@ -668,7 +668,7 @@ class IssuesControllerTest < ActionController::TestCase
assert_difference('Journal.count') do assert_difference('Journal.count') do
assert_difference('JournalDetail.count', 2) do assert_difference('JournalDetail.count', 2) do
post :edit, :id => 1, :issue => {:subject => new_subject, put :update, :id => 1, :issue => {:subject => new_subject,
:priority_id => '6', :priority_id => '6',
:category_id => '1' # no change :category_id => '1' # no change
} }
...@@ -686,14 +686,14 @@ class IssuesControllerTest < ActionController::TestCase ...@@ -686,14 +686,14 @@ class IssuesControllerTest < ActionController::TestCase
assert mail.body.include?("Subject changed from #{old_subject} to #{new_subject}") assert mail.body.include?("Subject changed from #{old_subject} to #{new_subject}")
end end
def test_post_edit_with_custom_field_change def test_put_update_with_custom_field_change
@request.session[:user_id] = 2 @request.session[:user_id] = 2
issue = Issue.find(1) issue = Issue.find(1)
assert_equal '125', issue.custom_value_for(2).value assert_equal '125', issue.custom_value_for(2).value
assert_difference('Journal.count') do assert_difference('Journal.count') do
assert_difference('JournalDetail.count', 3) do assert_difference('JournalDetail.count', 3) do
post :edit, :id => 1, :issue => {:subject => 'Custom field change', put :update, :id => 1, :issue => {:subject => 'Custom field change',
:priority_id => '6', :priority_id => '6',
:category_id => '1', # no change :category_id => '1', # no change
:custom_field_values => { '2' => 'New custom value' } :custom_field_values => { '2' => 'New custom value' }
...@@ -709,12 +709,12 @@ class IssuesControllerTest < ActionController::TestCase ...@@ -709,12 +709,12 @@ class IssuesControllerTest < ActionController::TestCase
assert mail.body.include?("Searchable field changed from 125 to New custom value") assert mail.body.include?("Searchable field changed from 125 to New custom value")
end end
def test_post_edit_with_status_and_assignee_change def test_put_update_with_status_and_assignee_change
issue = Issue.find(1) issue = Issue.find(1)
assert_equal 1, issue.status_id assert_equal 1, issue.status_id
@request.session[:user_id] = 2 @request.session[:user_id] = 2
assert_difference('TimeEntry.count', 0) do assert_difference('TimeEntry.count', 0) do
post :edit, put :update,
:id => 1, :id => 1,
:issue => { :status_id => 2, :assigned_to_id => 3 }, :issue => { :status_id => 2, :assigned_to_id => 3 },
:notes => 'Assigned to dlopper', :notes => 'Assigned to dlopper',
...@@ -733,10 +733,10 @@ class IssuesControllerTest < ActionController::TestCase ...@@ -733,10 +733,10 @@ class IssuesControllerTest < ActionController::TestCase
assert mail.subject.include?("(#{ IssueStatus.find(2).name })") assert mail.subject.include?("(#{ IssueStatus.find(2).name })")
end end
def test_post_edit_with_note_only def test_put_update_with_note_only
notes = 'Note added by IssuesControllerTest#test_update_with_note_only' notes = 'Note added by IssuesControllerTest#test_update_with_note_only'
# anonymous user # anonymous user
post :edit, put :update,
:id => 1, :id => 1,
:notes => notes :notes => notes
assert_redirected_to :action => 'show', :id => '1' assert_redirected_to :action => 'show', :id => '1'
...@@ -749,11 +749,11 @@ class IssuesControllerTest < ActionController::TestCase ...@@ -749,11 +749,11 @@ class IssuesControllerTest < ActionController::TestCase
assert mail.body.include?(notes) assert mail.body.include?(notes)
end end
def test_post_edit_with_note_and_spent_time def test_put_update_with_note_and_spent_time
@request.session[:user_id] = 2 @request.session[:user_id] = 2
spent_hours_before = Issue.find(1).spent_hours spent_hours_before = Issue.find(1).spent_hours
assert_difference('TimeEntry.count') do assert_difference('TimeEntry.count') do
post :edit, put :update,
:id => 1, :id => 1,
:notes => '2.5 hours added', :notes => '2.5 hours added',
:time_entry => { :hours => '2.5', :comments => '', :activity_id => TimeEntryActivity.first } :time_entry => { :hours => '2.5', :comments => '', :activity_id => TimeEntryActivity.first }
...@@ -772,7 +772,7 @@ class IssuesControllerTest < ActionController::TestCase ...@@ -772,7 +772,7 @@ class IssuesControllerTest < ActionController::TestCase
assert_equal spent_hours_before + 2.5, issue.spent_hours assert_equal spent_hours_before + 2.5, issue.spent_hours
end end
def test_post_edit_with_attachment_only def test_put_update_with_attachment_only
set_tmp_attachments_directory set_tmp_attachments_directory
# Delete all fixtured journals, a race condition can occur causing the wrong # Delete all fixtured journals, a race condition can occur causing the wrong
...@@ -780,7 +780,7 @@ class IssuesControllerTest < ActionController::TestCase ...@@ -780,7 +780,7 @@ class IssuesControllerTest < ActionController::TestCase
Journal.delete_all Journal.delete_all
# anonymous user # anonymous user
post :edit, put :update,
:id => 1, :id => 1,
:notes => '', :notes => '',
:attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain')}} :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain')}}
...@@ -795,12 +795,12 @@ class IssuesControllerTest < ActionController::TestCase ...@@ -795,12 +795,12 @@ class IssuesControllerTest < ActionController::TestCase
assert mail.body.include?('testfile.txt') assert mail.body.include?('testfile.txt')
end end
def test_post_edit_with_no_change def test_put_update_with_no_change
issue = Issue.find(1) issue = Issue.find(1)
issue.journals.clear issue.journals.clear
ActionMailer::Base.deliveries.clear ActionMailer::Base.deliveries.clear
post :edit, put :update,
:id => 1, :id => 1,
:notes => '' :notes => ''
assert_redirected_to :action => 'show', :id => '1' assert_redirected_to :action => 'show', :id => '1'
...@@ -811,26 +811,26 @@ class IssuesControllerTest < ActionController::TestCase ...@@ -811,26 +811,26 @@ class IssuesControllerTest < ActionController::TestCase
assert ActionMailer::Base.deliveries.empty? assert ActionMailer::Base.deliveries.empty?
end end
def test_post_edit_should_send_a_notification def test_put_update_should_send_a_notification
@request.session[:user_id] = 2 @request.session[:user_id] = 2
ActionMailer::Base.deliveries.clear ActionMailer::Base.deliveries.clear
issue = Issue.find(1) issue = Issue.find(1)
old_subject = issue.subject old_subject = issue.subject
new_subject = 'Subject modified by IssuesControllerTest#test_post_edit' new_subject = 'Subject modified by IssuesControllerTest#test_post_edit'
post :edit, :id => 1, :issue => {:subject => new_subject, put :update, :id => 1, :issue => {:subject => new_subject,
:priority_id => '6', :priority_id => '6',
:category_id => '1' # no change :category_id => '1' # no change
} }
assert_equal 1, ActionMailer::Base.deliveries.size assert_equal 1, ActionMailer::Base.deliveries.size
end end
def test_post_edit_with_invalid_spent_time def test_put_update_with_invalid_spent_time
@request.session[:user_id] = 2 @request.session[:user_id] = 2
notes = 'Note added by IssuesControllerTest#test_post_edit_with_invalid_spent_time' notes = 'Note added by IssuesControllerTest#test_post_edit_with_invalid_spent_time'
assert_no_difference('Journal.count') do assert_no_difference('Journal.count') do
post :edit, put :update,
:id => 1, :id => 1,
:notes => notes, :notes => notes,
:time_entry => {"comments"=>"", "activity_id"=>"", "hours"=>"2z"} :time_entry => {"comments"=>"", "activity_id"=>"", "hours"=>"2z"}
...@@ -843,11 +843,11 @@ class IssuesControllerTest < ActionController::TestCase ...@@ -843,11 +843,11 @@ class IssuesControllerTest < ActionController::TestCase
assert_tag :input, :attributes => { :name => 'time_entry[hours]', :value => "2z" } assert_tag :input, :attributes => { :name => 'time_entry[hours]', :value => "2z" }
end end
def test_post_edit_should_allow_fixed_version_to_be_set_to_a_subproject def test_put_update_should_allow_fixed_version_to_be_set_to_a_subproject
issue = Issue.find(2) issue = Issue.find(2)
@request.session[:user_id] = 2 @request.session[:user_id] = 2
post :edit, put :update,
:id => issue.id, :id => issue.id,
:issue => { :issue => {
:fixed_version_id => 4 :fixed_version_id => 4
...@@ -859,11 +859,11 @@ class IssuesControllerTest < ActionController::TestCase ...@@ -859,11 +859,11 @@ class IssuesControllerTest < ActionController::TestCase
assert_not_equal issue.project_id, issue.fixed_version.project_id assert_not_equal issue.project_id, issue.fixed_version.project_id
end end
def test_post_edit_should_redirect_back_using_the_back_url_parameter def test_put_update_should_redirect_back_using_the_back_url_parameter
issue = Issue.find(2) issue = Issue.find(2)
@request.session[:user_id] = 2 @request.session[:user_id] = 2
post :edit, put :update,
:id => issue.id, :id => issue.id,
:issue => { :issue => {
:fixed_version_id => 4 :fixed_version_id => 4
...@@ -874,11 +874,11 @@ class IssuesControllerTest < ActionController::TestCase ...@@ -874,11 +874,11 @@ class IssuesControllerTest < ActionController::TestCase
assert_redirected_to '/issues' assert_redirected_to '/issues'
end end
def test_post_edit_should_not_redirect_back_using_the_back_url_parameter_off_the_host def test_put_update_should_not_redirect_back_using_the_back_url_parameter_off_the_host
issue = Issue.find(2) issue = Issue.find(2)
@request.session[:user_id] = 2 @request.session[:user_id] = 2
post :edit, put :update,
:id => issue.id, :id => issue.id,
:issue => { :issue => {
:fixed_version_id => 4 :fixed_version_id => 4
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment