[#37] fix assignee

This commit is contained in:
Alexander Machehin 2013-08-19 16:53:12 +06:00
parent 13cfab3d91
commit f65f8be060
2 changed files with 21 additions and 0 deletions

View File

@ -39,6 +39,7 @@ class Api::V1::IssuesController < Api::V1::BaseController
def create
@issue.user = current_user
@issue.assignee = nil if cannot?(:write, @project)
create_subject @issue
end

View File

@ -139,6 +139,16 @@ describe Api::V1::IssuesController do
it 'cant create issue in hidden project' do
lambda { post :create, @create_params.merge(:project_id => @hidden_project.id)}.should change{ Issue.count }.by(0)
end
it 'can assignee issue in own project' do
post :create, @create_params.deep_merge(:issue => {:assignee_id => @issue.user.id})
@project.issues.reload.last.assignee.id.should == @issue.user.id
end
it 'cant assignee issue in open project' do
post :create, @create_params.deep_merge(:project_id => @open_project.id, :issue => {:assignee_id => @issue.user.id})
@open_project.issues.reload.last.assignee.should be_nil
end
end
context 'for anonymous user' do
@ -177,6 +187,16 @@ describe Api::V1::IssuesController do
put :update, @update_params.merge(:project_id => @hidden_project.id, :id => @hidden_issue.serial_id)
@hidden_issue.reload.title.should_not == 'title'
end
it 'cant assignee issue in open project' do
post :create, @update_params.deep_merge(:project_id => @open_project.id, :issue => {:assignee_id => @issue.user.id})
@open_issue.reload.assignee.id.should_not == @issue.user.id
end
it 'can assignee issue in own project' do
post :create, @update_params.deep_merge(:issue => {:assignee_id => @issue.user.id})
@issue.reload.assignee.id.should_not == @issue.user.id
end
end
context 'for anonymous user' do