comparison test/unit/time_entry_query_test.rb @ 1464:261b3d9a4903 redmine-2.4

Update to Redmine 2.4 branch rev 12663
author Chris Cannam
date Tue, 14 Jan 2014 14:37:42 +0000
parents
children e248c7af89ec
comparison
equal deleted inserted replaced
1296:038ba2d95de8 1464:261b3d9a4903
1 # Redmine - project management software
2 # Copyright (C) 2006-2013 Jean-Philippe Lang
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 require File.expand_path('../../test_helper', __FILE__)
19
20 class TimeEntryQueryTest < ActiveSupport::TestCase
21 fixtures :projects, :users, :enumerations
22
23 def test_activity_filter_should_consider_system_and_project_activities
24 TimeEntry.delete_all
25 system = TimeEntryActivity.create!(:name => 'Foo')
26 override = TimeEntryActivity.create!(:name => 'Foo', :parent_id => system.id, :project_id => 1)
27 other = TimeEntryActivity.create!(:name => 'Bar')
28 TimeEntry.generate!(:activity => system, :hours => 1.0)
29 TimeEntry.generate!(:activity => override, :hours => 2.0)
30 TimeEntry.generate!(:activity => other, :hours => 4.0)
31
32 query = TimeEntryQuery.new(:name => '_')
33 query.add_filter('activity_id', '=', [system.id.to_s])
34 assert_equal 3.0, query.results_scope.sum(:hours)
35
36 query = TimeEntryQuery.new(:name => '_')
37 query.add_filter('activity_id', '!', [system.id.to_s])
38 assert_equal 4.0, query.results_scope.sum(:hours)
39 end
40 end