##// END OF EJS Templates
Converted routing and urls to follow the Rails REST convention....
Converted routing and urls to follow the Rails REST convention. Patch supplied by commits from Gerrit Kaiser on Github. Existing routes will still work (backwards compatible) but any new urls will be generated using the new routing rules. Changes listed below: * made the URLs for some project tabs and project settings follow the new rails RESTful conventions of /collection/:id/subcollection/:sub_id * prettier URL for project roadmap * more nice project URLs * use GET for filtering form * prettified URLs used on issues tab * custom route for activity atom feeds * prettier repository urls * fixed broken route definition * fixed failing tests for issuecontroller that were hardcoding the url string * more RESTful routes for boards and messages * RESTful routes for wiki pages * RESTful routes for documents * moved old routes that are retained for compatibility to the bottom and grouped them together * added RESTful URIs for issues * RESTfulness for the news section * fixed route order * changed hardcoded URLs in tests * fixed badly written tests * fixed forgotten parameter in routes * changed hardcoded URLS to new scheme * changed project add url to the standard POST to collection * create new issue by POSTing to collection * changed hardcoded URLs in integrations tests * made project add form work again * restful routes for project deletion * prettier routes for project (un)archival * made routes table more readable * fixed note quoting * user routing * fixed bug * always sort by GET * Fixed: cross-project issue list should not show issues of projects for which the issue tracking module was disabled. * prettified URLs used on issues tab * urls for time log * fixed reply routing * eliminate revision query paremeter for diff and entry actions * fixed test failures with hard-coded urls * ensure ajax links always use get * refactored ajax link generation into separate method #1901 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2317 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2256:da01ee7c37f2
r2315:765f7abc6033
Show More
query_test.rb
254 lines | 9.5 KiB | text/x-ruby | RubyLexer
Jean-Philippe Lang
Fixed: queries with multiple custom fields return no result....
r662 # redMine - project management software
Jean-Philippe Lang
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296 # Copyright (C) 2006-2008 Jean-Philippe Lang
Jean-Philippe Lang
Fixed: queries with multiple custom fields return no result....
r662 #
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.dirname(__FILE__) + '/../test_helper'
class QueryTest < Test::Unit::TestCase
Jean-Philippe Lang
Fixed date filters accuracy with SQLite (#2221)....
r2052 fixtures :projects, :enabled_modules, :users, :members, :roles, :trackers, :issue_statuses, :issue_categories, :enumerations, :issues, :custom_fields, :custom_values, :versions, :queries
Jean-Philippe Lang
Fixed: queries with multiple custom fields return no result....
r662
Jean-Philippe Lang
Add filters on cross-project issue list for custom fields marked as 'For all projects'....
r1562 def test_custom_fields_for_all_projects_should_be_available_in_global_queries
query = Query.new(:project => nil, :name => '_')
assert query.available_filters.has_key?('cf_1')
assert !query.available_filters.has_key?('cf_3')
end
Jean-Philippe Lang
Adds estimated hours to issue filters (#1678)....
r1687 def find_issues_with_query(query)
Issue.find :all,
:include => [ :assigned_to, :status, :tracker, :project, :priority ],
:conditions => query.statement
end
Jean-Philippe Lang
Fixed: queries with multiple custom fields return no result....
r662 def test_query_with_multiple_custom_fields
query = Query.find(1)
assert query.valid?
Jean-Philippe Lang
Fixes custom field filters behaviour (#1078)....
r1347 assert query.statement.include?("#{CustomValue.table_name}.value IN ('MySQL')")
Jean-Philippe Lang
Adds estimated hours to issue filters (#1678)....
r1687 issues = find_issues_with_query(query)
Jean-Philippe Lang
Fixed: queries with multiple custom fields return no result....
r662 assert_equal 1, issues.length
assert_equal Issue.find(3), issues.first
end
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771
Jean-Philippe Lang
Fixed: Search for target version of "none" fails with postgres 8.3 (#1134)....
r1364 def test_operator_none
query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('fixed_version_id', '!*', [''])
query.add_filter('cf_1', '!*', [''])
assert query.statement.include?("#{Issue.table_name}.fixed_version_id IS NULL")
assert query.statement.include?("#{CustomValue.table_name}.value IS NULL OR #{CustomValue.table_name}.value = ''")
Jean-Philippe Lang
Adds estimated hours to issue filters (#1678)....
r1687 find_issues_with_query(query)
Jean-Philippe Lang
Fixed: Search for target version of "none" fails with postgres 8.3 (#1134)....
r1364 end
Jean-Philippe Lang
Adds estimated hours to issue filters (#1678)....
r1687 def test_operator_none_for_integer
query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('estimated_hours', '!*', [''])
issues = find_issues_with_query(query)
assert !issues.empty?
assert issues.all? {|i| !i.estimated_hours}
end
Jean-Philippe Lang
Fixed: Search for target version of "none" fails with postgres 8.3 (#1134)....
r1364 def test_operator_all
query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('fixed_version_id', '*', [''])
query.add_filter('cf_1', '*', [''])
assert query.statement.include?("#{Issue.table_name}.fixed_version_id IS NOT NULL")
assert query.statement.include?("#{CustomValue.table_name}.value IS NOT NULL AND #{CustomValue.table_name}.value <> ''")
Jean-Philippe Lang
Adds estimated hours to issue filters (#1678)....
r1687 find_issues_with_query(query)
Jean-Philippe Lang
Fixed: Search for target version of "none" fails with postgres 8.3 (#1134)....
r1364 end
def test_operator_greater_than
query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('done_ratio', '>=', ['40'])
assert query.statement.include?("#{Issue.table_name}.done_ratio >= 40")
Jean-Philippe Lang
Adds estimated hours to issue filters (#1678)....
r1687 find_issues_with_query(query)
Jean-Philippe Lang
Fixed: Search for target version of "none" fails with postgres 8.3 (#1134)....
r1364 end
def test_operator_in_more_than
Jean-Philippe Lang
Fixed date filters accuracy with SQLite (#2221)....
r2052 Issue.find(7).update_attribute(:due_date, (Date.today + 15))
Jean-Philippe Lang
Fixed: Search for target version of "none" fails with postgres 8.3 (#1134)....
r1364 query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('due_date', '>t+', ['15'])
Jean-Philippe Lang
Fixed date filters accuracy with SQLite (#2221)....
r2052 issues = find_issues_with_query(query)
assert !issues.empty?
issues.each {|issue| assert(issue.due_date >= (Date.today + 15))}
Jean-Philippe Lang
Fixed: Search for target version of "none" fails with postgres 8.3 (#1134)....
r1364 end
def test_operator_in_less_than
query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('due_date', '<t+', ['15'])
Jean-Philippe Lang
Fixed date filters accuracy with SQLite (#2221)....
r2052 issues = find_issues_with_query(query)
assert !issues.empty?
issues.each {|issue| assert(issue.due_date >= Date.today && issue.due_date <= (Date.today + 15))}
end
def test_operator_less_than_ago
Issue.find(7).update_attribute(:due_date, (Date.today - 3))
query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('due_date', '>t-', ['3'])
issues = find_issues_with_query(query)
assert !issues.empty?
issues.each {|issue| assert(issue.due_date >= (Date.today - 3) && issue.due_date <= Date.today)}
end
def test_operator_more_than_ago
Issue.find(7).update_attribute(:due_date, (Date.today - 10))
query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('due_date', '<t-', ['10'])
assert query.statement.include?("#{Issue.table_name}.due_date <=")
issues = find_issues_with_query(query)
assert !issues.empty?
issues.each {|issue| assert(issue.due_date <= (Date.today - 10))}
end
def test_operator_in
Issue.find(7).update_attribute(:due_date, (Date.today + 2))
query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('due_date', 't+', ['2'])
issues = find_issues_with_query(query)
assert !issues.empty?
issues.each {|issue| assert_equal((Date.today + 2), issue.due_date)}
end
def test_operator_ago
Issue.find(7).update_attribute(:due_date, (Date.today - 3))
query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('due_date', 't-', ['3'])
issues = find_issues_with_query(query)
assert !issues.empty?
issues.each {|issue| assert_equal((Date.today - 3), issue.due_date)}
Jean-Philippe Lang
Fixed: Search for target version of "none" fails with postgres 8.3 (#1134)....
r1364 end
def test_operator_today
query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('due_date', 't', [''])
Jean-Philippe Lang
Fixed date filters accuracy with SQLite (#2221)....
r2052 issues = find_issues_with_query(query)
assert !issues.empty?
issues.each {|issue| assert_equal Date.today, issue.due_date}
Jean-Philippe Lang
Fixed: Search for target version of "none" fails with postgres 8.3 (#1134)....
r1364 end
def test_operator_this_week_on_date
query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('due_date', 'w', [''])
Jean-Philippe Lang
Adds estimated hours to issue filters (#1678)....
r1687 find_issues_with_query(query)
Jean-Philippe Lang
Fixed: Search for target version of "none" fails with postgres 8.3 (#1134)....
r1364 end
def test_operator_this_week_on_datetime
query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('created_on', 'w', [''])
Jean-Philippe Lang
Adds estimated hours to issue filters (#1678)....
r1687 find_issues_with_query(query)
Jean-Philippe Lang
Fixed: Search for target version of "none" fails with postgres 8.3 (#1134)....
r1364 end
def test_operator_contains
query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('subject', '~', ['string'])
assert query.statement.include?("#{Issue.table_name}.subject LIKE '%string%'")
Jean-Philippe Lang
Adds estimated hours to issue filters (#1678)....
r1687 find_issues_with_query(query)
Jean-Philippe Lang
Fixed: Search for target version of "none" fails with postgres 8.3 (#1134)....
r1364 end
def test_operator_does_not_contains
query = Query.new(:project => Project.find(1), :name => '_')
query.add_filter('subject', '!~', ['string'])
assert query.statement.include?("#{Issue.table_name}.subject NOT LIKE '%string%'")
Jean-Philippe Lang
Adds estimated hours to issue filters (#1678)....
r1687 find_issues_with_query(query)
Jean-Philippe Lang
Fixed: Search for target version of "none" fails with postgres 8.3 (#1134)....
r1364 end
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 def test_default_columns
q = Query.new
assert !q.columns.empty?
end
def test_set_column_names
q = Query.new
q.column_names = ['tracker', :subject, '', 'unknonw_column']
assert_equal [:tracker, :subject], q.columns.collect {|c| c.name}
c = q.columns.first
assert q.has_column?(c)
end
Jean-Philippe Lang
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296
Jean-Philippe Lang
Ability to sort the issue list by text, list, date and boolean custom fields (#1139)....
r2255 def test_sort_by_string_custom_field_asc
q = Query.new
c = q.available_columns.find {|col| col.is_a?(QueryCustomFieldColumn) && col.custom_field.field_format == 'string' }
assert c
assert c.sortable
issues = Issue.find :all,
:include => [ :assigned_to, :status, :tracker, :project, :priority ],
:conditions => q.statement,
:order => "#{c.sortable} ASC"
values = issues.collect {|i| i.custom_value_for(c.custom_field).to_s}
Jean-Philippe Lang
Ability to sort the issue list by text, int and float custom fields (#1139)....
r2256 assert !values.empty?
Jean-Philippe Lang
Ability to sort the issue list by text, list, date and boolean custom fields (#1139)....
r2255 assert_equal values.sort, values
end
def test_sort_by_string_custom_field_desc
q = Query.new
c = q.available_columns.find {|col| col.is_a?(QueryCustomFieldColumn) && col.custom_field.field_format == 'string' }
assert c
assert c.sortable
issues = Issue.find :all,
:include => [ :assigned_to, :status, :tracker, :project, :priority ],
:conditions => q.statement,
:order => "#{c.sortable} DESC"
values = issues.collect {|i| i.custom_value_for(c.custom_field).to_s}
Jean-Philippe Lang
Ability to sort the issue list by text, int and float custom fields (#1139)....
r2256 assert !values.empty?
Jean-Philippe Lang
Ability to sort the issue list by text, list, date and boolean custom fields (#1139)....
r2255 assert_equal values.sort.reverse, values
end
Jean-Philippe Lang
Ability to sort the issue list by text, int and float custom fields (#1139)....
r2256 def test_sort_by_float_custom_field_asc
q = Query.new
c = q.available_columns.find {|col| col.is_a?(QueryCustomFieldColumn) && col.custom_field.field_format == 'float' }
assert c
assert c.sortable
issues = Issue.find :all,
:include => [ :assigned_to, :status, :tracker, :project, :priority ],
:conditions => q.statement,
:order => "#{c.sortable} ASC"
values = issues.collect {|i| begin; Kernel.Float(i.custom_value_for(c.custom_field).to_s); rescue; nil; end}.compact
assert !values.empty?
assert_equal values.sort, values
end
Jean-Philippe Lang
Prevents NoMethodError on @available_filters.has_key? in query.rb (#1178)....
r1440 def test_label_for
q = Query.new
assert_equal 'assigned_to', q.label_for('assigned_to_id')
end
Jean-Philippe Lang
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296 def test_editable_by
admin = User.find(1)
manager = User.find(2)
developer = User.find(3)
# Public query on project 1
q = Query.find(1)
assert q.editable_by?(admin)
assert q.editable_by?(manager)
assert !q.editable_by?(developer)
# Private query on project 1
q = Query.find(2)
assert q.editable_by?(admin)
assert !q.editable_by?(manager)
assert q.editable_by?(developer)
# Private query for all projects
q = Query.find(3)
assert q.editable_by?(admin)
assert !q.editable_by?(manager)
assert q.editable_by?(developer)
# Public query for all projects
q = Query.find(4)
assert q.editable_by?(admin)
assert !q.editable_by?(manager)
assert !q.editable_by?(developer)
end
Jean-Philippe Lang
Fixed: queries with multiple custom fields return no result....
r662 end