</div>
</fieldset>
<% end %>
- <% if User.current.allowed_to?(:log_time, @project) %>
- <fieldset class="tabular"><legend><%= l(:button_log_time) %></legend>
+ <% if User.current.allowed_to?(:log_time, @issue.project) %>
+ <fieldset class="tabular" id="log_time"><legend><%= l(:button_log_time) %></legend>
<%= labelled_fields_for :time_entry, @time_entry do |time_entry| %>
<div class="splitcontent">
<div class="splitcontentleft">
</fieldset>
<% end %>
<% if @issue.notes_addable? %>
- <fieldset><legend><%= l(:field_notes) %></legend>
+ <fieldset id="add_notes"><legend><%= l(:field_notes) %></legend>
<%= f.text_area :notes, :cols => 60, :rows => 10, :class => 'wiki-edit',
:data => {
:auto_complete => true
<%= call_hook(:view_issues_edit_notes_bottom, { :issue => @issue, :notes => @notes, :form => f }) %>
</fieldset>
- <fieldset><legend><%= l(:label_attachment_plural) %></legend>
+ <fieldset id="add_attachments"><legend><%= l(:label_attachment_plural) %></legend>
<% if @issue.attachments.any? && @issue.safe_attribute?('deleted_attachment_ids') %>
<div class="contextual"><%= link_to l(:label_edit_attachments), '#', :onclick => "$('#existing-attachments').toggle(); return false;" %></div>
<div id="existing-attachments" style="<%= @issue.deleted_attachment_ids.blank? ? 'display:none;' : '' %>">
-replaceIssueFormWith('<%= escape_javascript(render :partial => 'form') %>');
-
-<% if User.current.allowed_to?(:log_time, @issue.project) %>
- $('#log_time').show();
-<% else %>
- $('#log_time').hide();
-<% end %>
+replaceIssueFormWith('<%= escape_javascript(render :partial => 'edit') %>');
replacement.find('#'+object_id).val($(this).val());
}
});
- $('#all_attributes').empty();
- $('#all_attributes').prepend(replacement);
+
+ if ($('form.new_issue').length > 0) {
+ $('#all_attributes').empty();
+ $('#all_attributes').prepend(replacement);
+ } else {
+ $('#issue-form').replaceWith(replacement);
+ }
}
function updateBulkEditFrom(url) {
assert_equal '/my/page', current_path
end
+ def wait_for_ajax
+ Timeout.timeout(Capybara.default_max_wait_time) do
+ loop until page.evaluate_script("jQuery.active").zero?
+ end
+ end
+
def clear_downloaded_files
FileUtils.rm downloaded_files
end
assert page.has_text? 'Related to Bug #7'
end
end
+
+ def test_update_issue_form_should_include_time_entry_form_only_for_users_with_permission
+ log_user('jsmith', 'jsmith')
+
+ visit '/issues/2'
+ page.first(:link, 'Edit').click
+
+ # assert log time form exits for user with required permissions on the current project
+ assert page.has_css?('#log_time')
+
+ # Change project to trigger an update on issue form
+ page.find('#issue_project_id').select('» Private child of eCookbook')
+ wait_for_ajax
+
+ # assert log time form does not exist anymore for user without required permissions on the new project
+ assert_not page.has_css?('#log_time')
+ end
+
+ def test_update_issue_form_should_include_add_notes_form_only_for_users_with_permission
+ log_user('jsmith', 'jsmith')
+
+ visit '/issues/2'
+ page.first(:link, 'Edit').click
+
+ # assert add notes form exits for user with required permissions on the current project
+ assert page.has_css?('#add_notes')
+
+ # remove add issue notes permission from Manager role
+ Role.find_by_name('Manager').remove_permission! :add_issue_notes
+
+ # Change project to trigger an update on issue form
+ page.find('#issue_project_id').select('» Private child of eCookbook')
+ wait_for_ajax
+
+ # assert add notes form does not exist anymore for user without required permissions on the new project
+ assert_not page.has_css?('#add_notes')
+ end
end