diff options
author | Go MAEDA <maeda@farend.jp> | 2023-04-18 14:45:47 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2023-04-18 14:45:47 +0000 |
commit | 109962363437a7f5e9f724059a657f96dbe5de64 (patch) | |
tree | a5366541ed02c01b37ce1a7f2c103c801451ccd9 /test/functional | |
parent | fae39a954207bd055f4fa492b4ed08de9efbaf62 (diff) | |
download | redmine-109962363437a7f5e9f724059a657f96dbe5de64.tar.gz redmine-109962363437a7f5e9f724059a657f96dbe5de64.zip |
Support "my bookmarks" in the search (#38459).
Patch by Go MAEDA.
git-svn-id: https://svn.redmine.org/redmine/trunk@22204 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/search_controller_test.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/functional/search_controller_test.rb b/test/functional/search_controller_test.rb index 022ad29e9..ee5db1232 100644 --- a/test/functional/search_controller_test.rb +++ b/test/functional/search_controller_test.rb @@ -171,6 +171,19 @@ class SearchControllerTest < Redmine::ControllerTest end end + def test_search_my_bookmarks + @request.session[:user_id] = 1 + get :index, :params => {:q => 'project', :scope => 'bookmarks', :all_words => ''} + assert_response :success + + assert_select '#search-results' do + assert_select 'dt.issue', :count => 1 + assert_select 'dt.issue', :text => /Bug #6/ + assert_select 'dt.changeset', :count => 1 + assert_select 'dt.changeset', :text => /Revision 4/ + end + end + def test_search_project_and_subprojects get :index, :params => {:id => 1, :q => 'recipe subproject', :scope => 'subprojects', :all_words => ''} assert_response :success |