summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2018-04-21 12:00:22 +0000
committerGo MAEDA <maeda@farend.jp>2018-04-21 12:00:22 +0000
commita4ffda7b3714076ffd920efeeef86dd8c0e5710c (patch)
tree120e553396c7e9f17039ad397adea8057daec2e7 /test
parent07b9ce80f6252fd028c72db382183fdfd367a4b6 (diff)
downloadredmine-a4ffda7b3714076ffd920efeeef86dd8c0e5710c.tar.gz
redmine-a4ffda7b3714076ffd920efeeef86dd8c0e5710c.zip
Use button as additional option for contextmenu (#26655).
Patch by Felix Gliesche. git-svn-id: http://svn.redmine.org/redmine/trunk@17298 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r--test/functional/issues_controller_test.rb21
-rw-r--r--test/functional/my_controller_test.rb6
-rw-r--r--test/test_helper.rb2
3 files changed, 15 insertions, 14 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb
index 9f62758e4..fc5b03576 100644
--- a/test/functional/issues_controller_test.rb
+++ b/test/functional/issues_controller_test.rb
@@ -1004,7 +1004,7 @@ class IssuesControllerTest < Redmine::ControllerTest
end
def test_index_with_columns
- columns = ['tracker', 'subject', 'assigned_to']
+ columns = ['tracker', 'subject', 'assigned_to', 'buttons']
get :index, :params => {
:set_filter => 1,
:c => columns
@@ -1017,6 +1017,7 @@ class IssuesControllerTest < Redmine::ControllerTest
assert_select 'th.tracker'
assert_select 'th.subject'
assert_select 'th.assigned_to'
+ assert_select 'th.buttons'
end
# columns should be stored in session
@@ -1245,8 +1246,8 @@ class IssuesControllerTest < Redmine::ControllerTest
:c => %w(subject description)
}
- assert_select 'table.issues thead th', 3 # columns: chekbox + id + subject
- assert_select 'td.description[colspan="3"]', :text => 'Unable to print recipes'
+ assert_select 'table.issues thead th', 4 # columns: chekbox + id + subject
+ assert_select 'td.description[colspan="4"]', :text => 'Unable to print recipes'
get :index, :params => {
:set_filter => 1,
@@ -1264,10 +1265,10 @@ class IssuesControllerTest < Redmine::ControllerTest
}
assert_response :success
- assert_select 'table.issues thead th', 3 # columns: chekbox + id + subject
+ assert_select 'table.issues thead th', 4 # columns: chekbox + id + subject
- assert_select 'td.last_notes[colspan="3"]', :text => 'Some notes with Redmine links: #2, r2.'
- assert_select 'td.last_notes[colspan="3"]', :text => 'A comment with inline image: and a reference to #1 and r2.'
+ assert_select 'td.last_notes[colspan="4"]', :text => 'Some notes with Redmine links: #2, r2.'
+ assert_select 'td.last_notes[colspan="4"]', :text => 'A comment with inline image: and a reference to #1 and r2.'
get :index, :params => {
:set_filter => 1,
@@ -1288,7 +1289,7 @@ class IssuesControllerTest < Redmine::ControllerTest
:c => %w(subject last_notes)
}
assert_response :success
- assert_select 'td.last_notes[colspan="3"]', :text => 'Privates notes'
+ assert_select 'td.last_notes[colspan="4"]', :text => 'Privates notes'
Role.find(1).remove_permission! :view_private_notes
@@ -1297,7 +1298,7 @@ class IssuesControllerTest < Redmine::ControllerTest
:c => %w(subject last_notes)
}
assert_response :success
- assert_select 'td.last_notes[colspan="3"]', :text => 'Public notes'
+ assert_select 'td.last_notes[colspan="4"]', :text => 'Public notes'
end
def test_index_with_description_and_last_notes_columns_should_display_column_name
@@ -1307,8 +1308,8 @@ class IssuesControllerTest < Redmine::ControllerTest
}
assert_response :success
- assert_select 'td.last_notes[colspan="3"] span', :text => 'Last notes'
- assert_select 'td.description[colspan="3"] span', :text => 'Description'
+ assert_select 'td.last_notes[colspan="4"] span', :text => 'Last notes'
+ assert_select 'td.description[colspan="4"] span', :text => 'Description'
end
def test_index_with_parent_column
diff --git a/test/functional/my_controller_test.rb b/test/functional/my_controller_test.rb
index 206bba4cf..6a618c4a3 100644
--- a/test/functional/my_controller_test.rb
+++ b/test/functional/my_controller_test.rb
@@ -125,7 +125,7 @@ class MyControllerTest < Redmine::ControllerTest
assert_select '#block-issuequery' do
assert_select 'a[href=?]', "/issues?query_id=#{query.id}"
# assert number of columns (columns from query + id column + checkbox column)
- assert_select 'table.issues th', 6
+ assert_select 'table.issues th', 7
# assert results limit
assert_select 'table.issues tr.issue', 10
assert_select 'table.issues td.assigned_to'
@@ -145,7 +145,7 @@ class MyControllerTest < Redmine::ControllerTest
assert_select '#block-issuequery' do
assert_select 'a[href=?]', "/projects/ecookbook/issues?query_id=#{query.id}"
# assert number of columns (columns from query + id column + checkbox column)
- assert_select 'table.issues th', 6
+ assert_select 'table.issues th', 7
# assert results limit
assert_select 'table.issues tr.issue', 10
assert_select 'table.issues td.assigned_to'
@@ -164,7 +164,7 @@ class MyControllerTest < Redmine::ControllerTest
assert_select '#block-issuequery' do
# assert number of columns (columns from query + id column + checkbox column)
- assert_select 'table.issues th', 4
+ assert_select 'table.issues th', 5
assert_select 'table.issues th', :text => 'Due date'
end
end
diff --git a/test/test_helper.rb b/test/test_helper.rb
index 34aebd4d2..6dcdb7a7c 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -305,7 +305,7 @@ module Redmine
# Return the columns that are displayed in the issue list
def columns_in_issues_list
- css_select('table.issues thead th:not(.checkbox)').map(&:text)
+ css_select('table.issues thead th:not(.checkbox)').map(&:text).select(&:present?)
end
# Return the columns that are displayed in the list