35 lines
1.2 KiB
Ruby
35 lines
1.2 KiB
Ruby
require File.expand_path('../../test_helper', __FILE__)
|
|
|
|
class AutoCompletesControllerTest < ActionController::TestCase
|
|
fixtures :all
|
|
|
|
def test_issues_should_not_be_case_sensitive
|
|
get :issues, :project_id => 'ecookbook', :q => 'ReCiPe'
|
|
assert_response :success
|
|
assert_not_nil assigns(:issues)
|
|
assert assigns(:issues).detect {|issue| issue.subject.match /recipe/}
|
|
end
|
|
|
|
def test_issues_should_return_issue_with_given_id
|
|
get :issues, :project_id => 'subproject1', :q => '13'
|
|
assert_response :success
|
|
assert_not_nil assigns(:issues)
|
|
assert assigns(:issues).include?(Issue.find(13))
|
|
end
|
|
|
|
def test_auto_complete_with_scope_all_and_cross_project_relations
|
|
Setting.cross_project_issue_relations = '1'
|
|
get :issues, :project_id => 'ecookbook', :q => '13', :scope => 'all'
|
|
assert_response :success
|
|
assert_not_nil assigns(:issues)
|
|
assert assigns(:issues).include?(Issue.find(13))
|
|
end
|
|
|
|
def test_auto_complete_with_scope_all_without_cross_project_relations
|
|
Setting.cross_project_issue_relations = '0'
|
|
get :issues, :project_id => 'ecookbook', :q => '13', :scope => 'all'
|
|
assert_response :success
|
|
assert_equal [], assigns(:issues)
|
|
end
|
|
end
|