@@ -1,96 +1,104 | |||||
1 | # redMine - project management software |
|
1 | # redMine - project management software | |
2 | # Copyright (C) 2006 Jean-Philippe Lang |
|
2 | # Copyright (C) 2006 Jean-Philippe Lang | |
3 | # |
|
3 | # | |
4 | # This program is free software; you can redistribute it and/or |
|
4 | # This program is free software; you can redistribute it and/or | |
5 | # modify it under the terms of the GNU General Public License |
|
5 | # modify it under the terms of the GNU General Public License | |
6 | # as published by the Free Software Foundation; either version 2 |
|
6 | # as published by the Free Software Foundation; either version 2 | |
7 | # of the License, or (at your option) any later version. |
|
7 | # of the License, or (at your option) any later version. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU General Public License |
|
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 |
|
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. |
|
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
17 |
|
17 | |||
18 | class CustomField < ActiveRecord::Base |
|
18 | class CustomField < ActiveRecord::Base | |
19 | has_many :custom_values, :dependent => :delete_all |
|
19 | has_many :custom_values, :dependent => :delete_all | |
20 | acts_as_list :scope => 'type = \'#{self.class}\'' |
|
20 | acts_as_list :scope => 'type = \'#{self.class}\'' | |
21 | serialize :possible_values |
|
21 | serialize :possible_values | |
22 |
|
22 | |||
23 | FIELD_FORMATS = { "string" => { :name => :label_string, :order => 1 }, |
|
23 | FIELD_FORMATS = { "string" => { :name => :label_string, :order => 1 }, | |
24 | "text" => { :name => :label_text, :order => 2 }, |
|
24 | "text" => { :name => :label_text, :order => 2 }, | |
25 | "int" => { :name => :label_integer, :order => 3 }, |
|
25 | "int" => { :name => :label_integer, :order => 3 }, | |
26 | "float" => { :name => :label_float, :order => 4 }, |
|
26 | "float" => { :name => :label_float, :order => 4 }, | |
27 | "list" => { :name => :label_list, :order => 5 }, |
|
27 | "list" => { :name => :label_list, :order => 5 }, | |
28 | "date" => { :name => :label_date, :order => 6 }, |
|
28 | "date" => { :name => :label_date, :order => 6 }, | |
29 | "bool" => { :name => :label_boolean, :order => 7 } |
|
29 | "bool" => { :name => :label_boolean, :order => 7 } | |
30 | }.freeze |
|
30 | }.freeze | |
31 |
|
31 | |||
32 | validates_presence_of :name, :field_format |
|
32 | validates_presence_of :name, :field_format | |
33 | validates_uniqueness_of :name, :scope => :type |
|
33 | validates_uniqueness_of :name, :scope => :type | |
34 | validates_length_of :name, :maximum => 30 |
|
34 | validates_length_of :name, :maximum => 30 | |
35 | validates_format_of :name, :with => /^[\w\s\.\'\-]*$/i |
|
35 | validates_format_of :name, :with => /^[\w\s\.\'\-]*$/i | |
36 | validates_inclusion_of :field_format, :in => FIELD_FORMATS.keys |
|
36 | validates_inclusion_of :field_format, :in => FIELD_FORMATS.keys | |
37 |
|
37 | |||
38 | def initialize(attributes = nil) |
|
38 | def initialize(attributes = nil) | |
39 | super |
|
39 | super | |
40 | self.possible_values ||= [] |
|
40 | self.possible_values ||= [] | |
41 | end |
|
41 | end | |
42 |
|
42 | |||
43 | def before_validation |
|
43 | def before_validation | |
44 | # remove empty values |
|
44 | # remove empty values | |
45 | self.possible_values = self.possible_values.collect{|v| v unless v.empty?}.compact |
|
45 | self.possible_values = self.possible_values.collect{|v| v unless v.empty?}.compact | |
46 | # make sure these fields are not searchable |
|
46 | # make sure these fields are not searchable | |
47 | self.searchable = false if %w(int float date bool).include?(field_format) |
|
47 | self.searchable = false if %w(int float date bool).include?(field_format) | |
48 | true |
|
48 | true | |
49 | end |
|
49 | end | |
50 |
|
50 | |||
51 | def validate |
|
51 | def validate | |
52 | if self.field_format == "list" |
|
52 | if self.field_format == "list" | |
53 | errors.add(:possible_values, :activerecord_error_blank) if self.possible_values.nil? || self.possible_values.empty? |
|
53 | errors.add(:possible_values, :activerecord_error_blank) if self.possible_values.nil? || self.possible_values.empty? | |
54 | errors.add(:possible_values, :activerecord_error_invalid) unless self.possible_values.is_a? Array |
|
54 | errors.add(:possible_values, :activerecord_error_invalid) unless self.possible_values.is_a? Array | |
55 | end |
|
55 | end | |
56 |
|
56 | |||
57 | # validate default value |
|
57 | # validate default value | |
58 | v = CustomValue.new(:custom_field => self.clone, :value => default_value, :customized => nil) |
|
58 | v = CustomValue.new(:custom_field => self.clone, :value => default_value, :customized => nil) | |
59 | v.custom_field.is_required = false |
|
59 | v.custom_field.is_required = false | |
60 | errors.add(:default_value, :activerecord_error_invalid) unless v.valid? |
|
60 | errors.add(:default_value, :activerecord_error_invalid) unless v.valid? | |
61 | end |
|
61 | end | |
62 |
|
62 | |||
63 | # Returns a ORDER BY clause that can used to sort customized |
|
63 | # Returns a ORDER BY clause that can used to sort customized | |
64 | # objects by their value of the custom field. |
|
64 | # objects by their value of the custom field. | |
65 | # Returns false, if the custom field can not be used for sorting. |
|
65 | # Returns false, if the custom field can not be used for sorting. | |
66 | def order_statement |
|
66 | def order_statement | |
67 | case field_format |
|
67 | case field_format | |
68 | when 'string', 'list', 'date', 'bool' |
|
68 | when 'string', 'text', 'list', 'date', 'bool' | |
69 | # COALESCE is here to make sure that blank and NULL values are sorted equally |
|
69 | # COALESCE is here to make sure that blank and NULL values are sorted equally | |
70 | "COALESCE((SELECT cv_sort.value FROM #{CustomValue.table_name} cv_sort" + |
|
70 | "COALESCE((SELECT cv_sort.value FROM #{CustomValue.table_name} cv_sort" + | |
71 | " WHERE cv_sort.customized_type='#{self.class.customized_class.name}'" + |
|
71 | " WHERE cv_sort.customized_type='#{self.class.customized_class.name}'" + | |
72 | " AND cv_sort.customized_id=#{self.class.customized_class.table_name}.id" + |
|
72 | " AND cv_sort.customized_id=#{self.class.customized_class.table_name}.id" + | |
73 | " AND cv_sort.custom_field_id=#{id} LIMIT 1), '')" |
|
73 | " AND cv_sort.custom_field_id=#{id} LIMIT 1), '')" | |
|
74 | when 'int', 'float' | |||
|
75 | # Make the database cast values into numeric | |||
|
76 | # Postgresql will raise an error if a value can not be casted! | |||
|
77 | # CustomValue validations should ensure that it doesn't occur | |||
|
78 | "(SELECT CAST(cv_sort.value AS decimal(60,3)) FROM #{CustomValue.table_name} cv_sort" + | |||
|
79 | " WHERE cv_sort.customized_type='#{self.class.customized_class.name}'" + | |||
|
80 | " AND cv_sort.customized_id=#{self.class.customized_class.table_name}.id" + | |||
|
81 | " AND cv_sort.custom_field_id=#{id} AND cv_sort.value <> '' AND cv_sort.value IS NOT NULL LIMIT 1)" | |||
74 | else |
|
82 | else | |
75 | nil |
|
83 | nil | |
76 | end |
|
84 | end | |
77 | end |
|
85 | end | |
78 |
|
86 | |||
79 | def <=>(field) |
|
87 | def <=>(field) | |
80 | position <=> field.position |
|
88 | position <=> field.position | |
81 | end |
|
89 | end | |
82 |
|
90 | |||
83 | def self.customized_class |
|
91 | def self.customized_class | |
84 | self.name =~ /^(.+)CustomField$/ |
|
92 | self.name =~ /^(.+)CustomField$/ | |
85 | begin; $1.constantize; rescue nil; end |
|
93 | begin; $1.constantize; rescue nil; end | |
86 | end |
|
94 | end | |
87 |
|
95 | |||
88 | # to move in project_custom_field |
|
96 | # to move in project_custom_field | |
89 | def self.for_all |
|
97 | def self.for_all | |
90 | find(:all, :conditions => ["is_for_all=?", true], :order => 'position') |
|
98 | find(:all, :conditions => ["is_for_all=?", true], :order => 'position') | |
91 | end |
|
99 | end | |
92 |
|
100 | |||
93 | def type_name |
|
101 | def type_name | |
94 | nil |
|
102 | nil | |
95 | end |
|
103 | end | |
96 | end |
|
104 | end |
@@ -1,72 +1,84 | |||||
1 | --- |
|
1 | --- | |
2 | custom_fields_001: |
|
2 | custom_fields_001: | |
3 | name: Database |
|
3 | name: Database | |
4 | min_length: 0 |
|
4 | min_length: 0 | |
5 | regexp: "" |
|
5 | regexp: "" | |
6 | is_for_all: true |
|
6 | is_for_all: true | |
7 | is_filter: true |
|
7 | is_filter: true | |
8 | type: IssueCustomField |
|
8 | type: IssueCustomField | |
9 | max_length: 0 |
|
9 | max_length: 0 | |
10 | possible_values: |
|
10 | possible_values: | |
11 | - MySQL |
|
11 | - MySQL | |
12 | - PostgreSQL |
|
12 | - PostgreSQL | |
13 | - Oracle |
|
13 | - Oracle | |
14 | id: 1 |
|
14 | id: 1 | |
15 | is_required: false |
|
15 | is_required: false | |
16 | field_format: list |
|
16 | field_format: list | |
17 | default_value: "" |
|
17 | default_value: "" | |
18 | custom_fields_002: |
|
18 | custom_fields_002: | |
19 | name: Searchable field |
|
19 | name: Searchable field | |
20 | min_length: 1 |
|
20 | min_length: 1 | |
21 | regexp: "" |
|
21 | regexp: "" | |
22 | is_for_all: true |
|
22 | is_for_all: true | |
23 | type: IssueCustomField |
|
23 | type: IssueCustomField | |
24 | max_length: 100 |
|
24 | max_length: 100 | |
25 | possible_values: "" |
|
25 | possible_values: "" | |
26 | id: 2 |
|
26 | id: 2 | |
27 | is_required: false |
|
27 | is_required: false | |
28 | field_format: string |
|
28 | field_format: string | |
29 | searchable: true |
|
29 | searchable: true | |
30 | default_value: "Default string" |
|
30 | default_value: "Default string" | |
31 | custom_fields_003: |
|
31 | custom_fields_003: | |
32 | name: Development status |
|
32 | name: Development status | |
33 | min_length: 0 |
|
33 | min_length: 0 | |
34 | regexp: "" |
|
34 | regexp: "" | |
35 | is_for_all: false |
|
35 | is_for_all: false | |
36 | is_filter: true |
|
36 | is_filter: true | |
37 | type: ProjectCustomField |
|
37 | type: ProjectCustomField | |
38 | max_length: 0 |
|
38 | max_length: 0 | |
39 | possible_values: |
|
39 | possible_values: | |
40 | - Stable |
|
40 | - Stable | |
41 | - Beta |
|
41 | - Beta | |
42 | - Alpha |
|
42 | - Alpha | |
43 | - Planning |
|
43 | - Planning | |
44 | id: 3 |
|
44 | id: 3 | |
45 | is_required: true |
|
45 | is_required: true | |
46 | field_format: list |
|
46 | field_format: list | |
47 | default_value: "" |
|
47 | default_value: "" | |
48 | custom_fields_004: |
|
48 | custom_fields_004: | |
49 | name: Phone number |
|
49 | name: Phone number | |
50 | min_length: 0 |
|
50 | min_length: 0 | |
51 | regexp: "" |
|
51 | regexp: "" | |
52 | is_for_all: false |
|
52 | is_for_all: false | |
53 | type: UserCustomField |
|
53 | type: UserCustomField | |
54 | max_length: 0 |
|
54 | max_length: 0 | |
55 | possible_values: "" |
|
55 | possible_values: "" | |
56 | id: 4 |
|
56 | id: 4 | |
57 | is_required: false |
|
57 | is_required: false | |
58 | field_format: string |
|
58 | field_format: string | |
59 | default_value: "" |
|
59 | default_value: "" | |
60 | custom_fields_005: |
|
60 | custom_fields_005: | |
61 | name: Money |
|
61 | name: Money | |
62 | min_length: 0 |
|
62 | min_length: 0 | |
63 | regexp: "" |
|
63 | regexp: "" | |
64 | is_for_all: false |
|
64 | is_for_all: false | |
65 | type: UserCustomField |
|
65 | type: UserCustomField | |
66 | max_length: 0 |
|
66 | max_length: 0 | |
67 | possible_values: "" |
|
67 | possible_values: "" | |
68 | id: 5 |
|
68 | id: 5 | |
69 | is_required: false |
|
69 | is_required: false | |
70 | field_format: float |
|
70 | field_format: float | |
71 | default_value: "" |
|
71 | default_value: "" | |
|
72 | custom_fields_006: | |||
|
73 | name: Float field | |||
|
74 | min_length: 0 | |||
|
75 | regexp: "" | |||
|
76 | is_for_all: true | |||
|
77 | type: IssueCustomField | |||
|
78 | max_length: 0 | |||
|
79 | possible_values: "" | |||
|
80 | id: 6 | |||
|
81 | is_required: false | |||
|
82 | field_format: float | |||
|
83 | default_value: "" | |||
72 | No newline at end of file |
|
84 |
@@ -1,10 +1,19 | |||||
1 | --- |
|
1 | --- | |
2 | custom_fields_trackers_001: |
|
2 | custom_fields_trackers_001: | |
3 | custom_field_id: 1 |
|
3 | custom_field_id: 1 | |
4 | tracker_id: 1 |
|
4 | tracker_id: 1 | |
5 | custom_fields_trackers_002: |
|
5 | custom_fields_trackers_002: | |
6 | custom_field_id: 2 |
|
6 | custom_field_id: 2 | |
7 | tracker_id: 1 |
|
7 | tracker_id: 1 | |
8 | custom_fields_trackers_003: |
|
8 | custom_fields_trackers_003: | |
9 | custom_field_id: 2 |
|
9 | custom_field_id: 2 | |
10 | tracker_id: 3 |
|
10 | tracker_id: 3 | |
|
11 | custom_fields_trackers_004: | |||
|
12 | custom_field_id: 6 | |||
|
13 | tracker_id: 1 | |||
|
14 | custom_fields_trackers_005: | |||
|
15 | custom_field_id: 6 | |||
|
16 | tracker_id: 2 | |||
|
17 | custom_fields_trackers_006: | |||
|
18 | custom_field_id: 6 | |||
|
19 | tracker_id: 3 |
@@ -1,56 +1,86 | |||||
1 | --- |
|
1 | --- | |
2 | custom_values_006: |
|
2 | custom_values_006: | |
3 | customized_type: Issue |
|
3 | customized_type: Issue | |
4 | custom_field_id: 2 |
|
4 | custom_field_id: 2 | |
5 | customized_id: 3 |
|
5 | customized_id: 3 | |
6 |
id: |
|
6 | id: 6 | |
7 | value: "125" |
|
7 | value: "125" | |
8 | custom_values_007: |
|
8 | custom_values_007: | |
9 | customized_type: Project |
|
9 | customized_type: Project | |
10 | custom_field_id: 3 |
|
10 | custom_field_id: 3 | |
11 | customized_id: 1 |
|
11 | customized_id: 1 | |
12 |
id: |
|
12 | id: 7 | |
13 | value: Stable |
|
13 | value: Stable | |
14 | custom_values_001: |
|
14 | custom_values_001: | |
15 | customized_type: User |
|
15 | customized_type: User | |
16 | custom_field_id: 4 |
|
16 | custom_field_id: 4 | |
17 | customized_id: 3 |
|
17 | customized_id: 3 | |
18 |
id: |
|
18 | id: 1 | |
19 | value: "" |
|
19 | value: "" | |
20 | custom_values_002: |
|
20 | custom_values_002: | |
21 | customized_type: User |
|
21 | customized_type: User | |
22 | custom_field_id: 4 |
|
22 | custom_field_id: 4 | |
23 | customized_id: 4 |
|
23 | customized_id: 4 | |
24 |
id: |
|
24 | id: 2 | |
25 | value: 01 23 45 67 89 |
|
25 | value: 01 23 45 67 89 | |
26 | custom_values_003: |
|
26 | custom_values_003: | |
27 | customized_type: User |
|
27 | customized_type: User | |
28 | custom_field_id: 4 |
|
28 | custom_field_id: 4 | |
29 | customized_id: 2 |
|
29 | customized_id: 2 | |
30 |
id: |
|
30 | id: 3 | |
31 | value: "" |
|
31 | value: "" | |
32 | custom_values_004: |
|
32 | custom_values_004: | |
33 | customized_type: Issue |
|
33 | customized_type: Issue | |
34 | custom_field_id: 2 |
|
34 | custom_field_id: 2 | |
35 | customized_id: 1 |
|
35 | customized_id: 1 | |
36 |
id: |
|
36 | id: 4 | |
37 | value: "125" |
|
37 | value: "125" | |
38 | custom_values_005: |
|
38 | custom_values_005: | |
39 | customized_type: Issue |
|
39 | customized_type: Issue | |
40 | custom_field_id: 2 |
|
40 | custom_field_id: 2 | |
41 | customized_id: 2 |
|
41 | customized_id: 2 | |
42 |
id: |
|
42 | id: 5 | |
43 | value: "" |
|
43 | value: "" | |
44 | custom_values_008: |
|
44 | custom_values_008: | |
45 | customized_type: Issue |
|
45 | customized_type: Issue | |
46 | custom_field_id: 1 |
|
46 | custom_field_id: 1 | |
47 | customized_id: 3 |
|
47 | customized_id: 3 | |
48 |
id: |
|
48 | id: 8 | |
49 | value: "MySQL" |
|
49 | value: "MySQL" | |
50 | custom_values_009: |
|
50 | custom_values_009: | |
51 | customized_type: Issue |
|
51 | customized_type: Issue | |
52 | custom_field_id: 2 |
|
52 | custom_field_id: 2 | |
53 | customized_id: 3 |
|
53 | customized_id: 3 | |
54 |
id: |
|
54 | id: 9 | |
55 | value: "this is a stringforcustomfield search" |
|
55 | value: "this is a stringforcustomfield search" | |
|
56 | custom_values_010: | |||
|
57 | customized_type: Issue | |||
|
58 | custom_field_id: 6 | |||
|
59 | customized_id: 1 | |||
|
60 | id: 10 | |||
|
61 | value: "2.1" | |||
|
62 | custom_values_011: | |||
|
63 | customized_type: Issue | |||
|
64 | custom_field_id: 6 | |||
|
65 | customized_id: 2 | |||
|
66 | id: 11 | |||
|
67 | value: "2.05" | |||
|
68 | custom_values_012: | |||
|
69 | customized_type: Issue | |||
|
70 | custom_field_id: 6 | |||
|
71 | customized_id: 3 | |||
|
72 | id: 12 | |||
|
73 | value: "11.65" | |||
|
74 | custom_values_013: | |||
|
75 | customized_type: Issue | |||
|
76 | custom_field_id: 6 | |||
|
77 | customized_id: 7 | |||
|
78 | id: 13 | |||
|
79 | value: "" | |||
|
80 | custom_values_014: | |||
|
81 | customized_type: Issue | |||
|
82 | custom_field_id: 6 | |||
|
83 | customized_id: 5 | |||
|
84 | id: 14 | |||
|
85 | value: "-7.6" | |||
56 | No newline at end of file |
|
86 |
@@ -1,238 +1,254 | |||||
1 | # redMine - project management software |
|
1 | # redMine - project management software | |
2 | # Copyright (C) 2006-2008 Jean-Philippe Lang |
|
2 | # Copyright (C) 2006-2008 Jean-Philippe Lang | |
3 | # |
|
3 | # | |
4 | # This program is free software; you can redistribute it and/or |
|
4 | # This program is free software; you can redistribute it and/or | |
5 | # modify it under the terms of the GNU General Public License |
|
5 | # modify it under the terms of the GNU General Public License | |
6 | # as published by the Free Software Foundation; either version 2 |
|
6 | # as published by the Free Software Foundation; either version 2 | |
7 | # of the License, or (at your option) any later version. |
|
7 | # of the License, or (at your option) any later version. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU General Public License |
|
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 |
|
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. |
|
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
17 |
|
17 | |||
18 | require File.dirname(__FILE__) + '/../test_helper' |
|
18 | require File.dirname(__FILE__) + '/../test_helper' | |
19 |
|
19 | |||
20 | class QueryTest < Test::Unit::TestCase |
|
20 | class QueryTest < Test::Unit::TestCase | |
21 | fixtures :projects, :enabled_modules, :users, :members, :roles, :trackers, :issue_statuses, :issue_categories, :enumerations, :issues, :custom_fields, :custom_values, :versions, :queries |
|
21 | fixtures :projects, :enabled_modules, :users, :members, :roles, :trackers, :issue_statuses, :issue_categories, :enumerations, :issues, :custom_fields, :custom_values, :versions, :queries | |
22 |
|
22 | |||
23 | def test_custom_fields_for_all_projects_should_be_available_in_global_queries |
|
23 | def test_custom_fields_for_all_projects_should_be_available_in_global_queries | |
24 | query = Query.new(:project => nil, :name => '_') |
|
24 | query = Query.new(:project => nil, :name => '_') | |
25 | assert query.available_filters.has_key?('cf_1') |
|
25 | assert query.available_filters.has_key?('cf_1') | |
26 | assert !query.available_filters.has_key?('cf_3') |
|
26 | assert !query.available_filters.has_key?('cf_3') | |
27 | end |
|
27 | end | |
28 |
|
28 | |||
29 | def find_issues_with_query(query) |
|
29 | def find_issues_with_query(query) | |
30 | Issue.find :all, |
|
30 | Issue.find :all, | |
31 | :include => [ :assigned_to, :status, :tracker, :project, :priority ], |
|
31 | :include => [ :assigned_to, :status, :tracker, :project, :priority ], | |
32 | :conditions => query.statement |
|
32 | :conditions => query.statement | |
33 | end |
|
33 | end | |
34 |
|
34 | |||
35 | def test_query_with_multiple_custom_fields |
|
35 | def test_query_with_multiple_custom_fields | |
36 | query = Query.find(1) |
|
36 | query = Query.find(1) | |
37 | assert query.valid? |
|
37 | assert query.valid? | |
38 | assert query.statement.include?("#{CustomValue.table_name}.value IN ('MySQL')") |
|
38 | assert query.statement.include?("#{CustomValue.table_name}.value IN ('MySQL')") | |
39 | issues = find_issues_with_query(query) |
|
39 | issues = find_issues_with_query(query) | |
40 | assert_equal 1, issues.length |
|
40 | assert_equal 1, issues.length | |
41 | assert_equal Issue.find(3), issues.first |
|
41 | assert_equal Issue.find(3), issues.first | |
42 | end |
|
42 | end | |
43 |
|
43 | |||
44 | def test_operator_none |
|
44 | def test_operator_none | |
45 | query = Query.new(:project => Project.find(1), :name => '_') |
|
45 | query = Query.new(:project => Project.find(1), :name => '_') | |
46 | query.add_filter('fixed_version_id', '!*', ['']) |
|
46 | query.add_filter('fixed_version_id', '!*', ['']) | |
47 | query.add_filter('cf_1', '!*', ['']) |
|
47 | query.add_filter('cf_1', '!*', ['']) | |
48 | assert query.statement.include?("#{Issue.table_name}.fixed_version_id IS NULL") |
|
48 | assert query.statement.include?("#{Issue.table_name}.fixed_version_id IS NULL") | |
49 | assert query.statement.include?("#{CustomValue.table_name}.value IS NULL OR #{CustomValue.table_name}.value = ''") |
|
49 | assert query.statement.include?("#{CustomValue.table_name}.value IS NULL OR #{CustomValue.table_name}.value = ''") | |
50 | find_issues_with_query(query) |
|
50 | find_issues_with_query(query) | |
51 | end |
|
51 | end | |
52 |
|
52 | |||
53 | def test_operator_none_for_integer |
|
53 | def test_operator_none_for_integer | |
54 | query = Query.new(:project => Project.find(1), :name => '_') |
|
54 | query = Query.new(:project => Project.find(1), :name => '_') | |
55 | query.add_filter('estimated_hours', '!*', ['']) |
|
55 | query.add_filter('estimated_hours', '!*', ['']) | |
56 | issues = find_issues_with_query(query) |
|
56 | issues = find_issues_with_query(query) | |
57 | assert !issues.empty? |
|
57 | assert !issues.empty? | |
58 | assert issues.all? {|i| !i.estimated_hours} |
|
58 | assert issues.all? {|i| !i.estimated_hours} | |
59 | end |
|
59 | end | |
60 |
|
60 | |||
61 | def test_operator_all |
|
61 | def test_operator_all | |
62 | query = Query.new(:project => Project.find(1), :name => '_') |
|
62 | query = Query.new(:project => Project.find(1), :name => '_') | |
63 | query.add_filter('fixed_version_id', '*', ['']) |
|
63 | query.add_filter('fixed_version_id', '*', ['']) | |
64 | query.add_filter('cf_1', '*', ['']) |
|
64 | query.add_filter('cf_1', '*', ['']) | |
65 | assert query.statement.include?("#{Issue.table_name}.fixed_version_id IS NOT NULL") |
|
65 | assert query.statement.include?("#{Issue.table_name}.fixed_version_id IS NOT NULL") | |
66 | assert query.statement.include?("#{CustomValue.table_name}.value IS NOT NULL AND #{CustomValue.table_name}.value <> ''") |
|
66 | assert query.statement.include?("#{CustomValue.table_name}.value IS NOT NULL AND #{CustomValue.table_name}.value <> ''") | |
67 | find_issues_with_query(query) |
|
67 | find_issues_with_query(query) | |
68 | end |
|
68 | end | |
69 |
|
69 | |||
70 | def test_operator_greater_than |
|
70 | def test_operator_greater_than | |
71 | query = Query.new(:project => Project.find(1), :name => '_') |
|
71 | query = Query.new(:project => Project.find(1), :name => '_') | |
72 | query.add_filter('done_ratio', '>=', ['40']) |
|
72 | query.add_filter('done_ratio', '>=', ['40']) | |
73 | assert query.statement.include?("#{Issue.table_name}.done_ratio >= 40") |
|
73 | assert query.statement.include?("#{Issue.table_name}.done_ratio >= 40") | |
74 | find_issues_with_query(query) |
|
74 | find_issues_with_query(query) | |
75 | end |
|
75 | end | |
76 |
|
76 | |||
77 | def test_operator_in_more_than |
|
77 | def test_operator_in_more_than | |
78 | Issue.find(7).update_attribute(:due_date, (Date.today + 15)) |
|
78 | Issue.find(7).update_attribute(:due_date, (Date.today + 15)) | |
79 | query = Query.new(:project => Project.find(1), :name => '_') |
|
79 | query = Query.new(:project => Project.find(1), :name => '_') | |
80 | query.add_filter('due_date', '>t+', ['15']) |
|
80 | query.add_filter('due_date', '>t+', ['15']) | |
81 | issues = find_issues_with_query(query) |
|
81 | issues = find_issues_with_query(query) | |
82 | assert !issues.empty? |
|
82 | assert !issues.empty? | |
83 | issues.each {|issue| assert(issue.due_date >= (Date.today + 15))} |
|
83 | issues.each {|issue| assert(issue.due_date >= (Date.today + 15))} | |
84 | end |
|
84 | end | |
85 |
|
85 | |||
86 | def test_operator_in_less_than |
|
86 | def test_operator_in_less_than | |
87 | query = Query.new(:project => Project.find(1), :name => '_') |
|
87 | query = Query.new(:project => Project.find(1), :name => '_') | |
88 | query.add_filter('due_date', '<t+', ['15']) |
|
88 | query.add_filter('due_date', '<t+', ['15']) | |
89 | issues = find_issues_with_query(query) |
|
89 | issues = find_issues_with_query(query) | |
90 | assert !issues.empty? |
|
90 | assert !issues.empty? | |
91 | issues.each {|issue| assert(issue.due_date >= Date.today && issue.due_date <= (Date.today + 15))} |
|
91 | issues.each {|issue| assert(issue.due_date >= Date.today && issue.due_date <= (Date.today + 15))} | |
92 | end |
|
92 | end | |
93 |
|
93 | |||
94 | def test_operator_less_than_ago |
|
94 | def test_operator_less_than_ago | |
95 | Issue.find(7).update_attribute(:due_date, (Date.today - 3)) |
|
95 | Issue.find(7).update_attribute(:due_date, (Date.today - 3)) | |
96 | query = Query.new(:project => Project.find(1), :name => '_') |
|
96 | query = Query.new(:project => Project.find(1), :name => '_') | |
97 | query.add_filter('due_date', '>t-', ['3']) |
|
97 | query.add_filter('due_date', '>t-', ['3']) | |
98 | issues = find_issues_with_query(query) |
|
98 | issues = find_issues_with_query(query) | |
99 | assert !issues.empty? |
|
99 | assert !issues.empty? | |
100 | issues.each {|issue| assert(issue.due_date >= (Date.today - 3) && issue.due_date <= Date.today)} |
|
100 | issues.each {|issue| assert(issue.due_date >= (Date.today - 3) && issue.due_date <= Date.today)} | |
101 | end |
|
101 | end | |
102 |
|
102 | |||
103 | def test_operator_more_than_ago |
|
103 | def test_operator_more_than_ago | |
104 | Issue.find(7).update_attribute(:due_date, (Date.today - 10)) |
|
104 | Issue.find(7).update_attribute(:due_date, (Date.today - 10)) | |
105 | query = Query.new(:project => Project.find(1), :name => '_') |
|
105 | query = Query.new(:project => Project.find(1), :name => '_') | |
106 | query.add_filter('due_date', '<t-', ['10']) |
|
106 | query.add_filter('due_date', '<t-', ['10']) | |
107 | assert query.statement.include?("#{Issue.table_name}.due_date <=") |
|
107 | assert query.statement.include?("#{Issue.table_name}.due_date <=") | |
108 | issues = find_issues_with_query(query) |
|
108 | issues = find_issues_with_query(query) | |
109 | assert !issues.empty? |
|
109 | assert !issues.empty? | |
110 | issues.each {|issue| assert(issue.due_date <= (Date.today - 10))} |
|
110 | issues.each {|issue| assert(issue.due_date <= (Date.today - 10))} | |
111 | end |
|
111 | end | |
112 |
|
112 | |||
113 | def test_operator_in |
|
113 | def test_operator_in | |
114 | Issue.find(7).update_attribute(:due_date, (Date.today + 2)) |
|
114 | Issue.find(7).update_attribute(:due_date, (Date.today + 2)) | |
115 | query = Query.new(:project => Project.find(1), :name => '_') |
|
115 | query = Query.new(:project => Project.find(1), :name => '_') | |
116 | query.add_filter('due_date', 't+', ['2']) |
|
116 | query.add_filter('due_date', 't+', ['2']) | |
117 | issues = find_issues_with_query(query) |
|
117 | issues = find_issues_with_query(query) | |
118 | assert !issues.empty? |
|
118 | assert !issues.empty? | |
119 | issues.each {|issue| assert_equal((Date.today + 2), issue.due_date)} |
|
119 | issues.each {|issue| assert_equal((Date.today + 2), issue.due_date)} | |
120 | end |
|
120 | end | |
121 |
|
121 | |||
122 | def test_operator_ago |
|
122 | def test_operator_ago | |
123 | Issue.find(7).update_attribute(:due_date, (Date.today - 3)) |
|
123 | Issue.find(7).update_attribute(:due_date, (Date.today - 3)) | |
124 | query = Query.new(:project => Project.find(1), :name => '_') |
|
124 | query = Query.new(:project => Project.find(1), :name => '_') | |
125 | query.add_filter('due_date', 't-', ['3']) |
|
125 | query.add_filter('due_date', 't-', ['3']) | |
126 | issues = find_issues_with_query(query) |
|
126 | issues = find_issues_with_query(query) | |
127 | assert !issues.empty? |
|
127 | assert !issues.empty? | |
128 | issues.each {|issue| assert_equal((Date.today - 3), issue.due_date)} |
|
128 | issues.each {|issue| assert_equal((Date.today - 3), issue.due_date)} | |
129 | end |
|
129 | end | |
130 |
|
130 | |||
131 | def test_operator_today |
|
131 | def test_operator_today | |
132 | query = Query.new(:project => Project.find(1), :name => '_') |
|
132 | query = Query.new(:project => Project.find(1), :name => '_') | |
133 | query.add_filter('due_date', 't', ['']) |
|
133 | query.add_filter('due_date', 't', ['']) | |
134 | issues = find_issues_with_query(query) |
|
134 | issues = find_issues_with_query(query) | |
135 | assert !issues.empty? |
|
135 | assert !issues.empty? | |
136 | issues.each {|issue| assert_equal Date.today, issue.due_date} |
|
136 | issues.each {|issue| assert_equal Date.today, issue.due_date} | |
137 | end |
|
137 | end | |
138 |
|
138 | |||
139 | def test_operator_this_week_on_date |
|
139 | def test_operator_this_week_on_date | |
140 | query = Query.new(:project => Project.find(1), :name => '_') |
|
140 | query = Query.new(:project => Project.find(1), :name => '_') | |
141 | query.add_filter('due_date', 'w', ['']) |
|
141 | query.add_filter('due_date', 'w', ['']) | |
142 | find_issues_with_query(query) |
|
142 | find_issues_with_query(query) | |
143 | end |
|
143 | end | |
144 |
|
144 | |||
145 | def test_operator_this_week_on_datetime |
|
145 | def test_operator_this_week_on_datetime | |
146 | query = Query.new(:project => Project.find(1), :name => '_') |
|
146 | query = Query.new(:project => Project.find(1), :name => '_') | |
147 | query.add_filter('created_on', 'w', ['']) |
|
147 | query.add_filter('created_on', 'w', ['']) | |
148 | find_issues_with_query(query) |
|
148 | find_issues_with_query(query) | |
149 | end |
|
149 | end | |
150 |
|
150 | |||
151 | def test_operator_contains |
|
151 | def test_operator_contains | |
152 | query = Query.new(:project => Project.find(1), :name => '_') |
|
152 | query = Query.new(:project => Project.find(1), :name => '_') | |
153 | query.add_filter('subject', '~', ['string']) |
|
153 | query.add_filter('subject', '~', ['string']) | |
154 | assert query.statement.include?("#{Issue.table_name}.subject LIKE '%string%'") |
|
154 | assert query.statement.include?("#{Issue.table_name}.subject LIKE '%string%'") | |
155 | find_issues_with_query(query) |
|
155 | find_issues_with_query(query) | |
156 | end |
|
156 | end | |
157 |
|
157 | |||
158 | def test_operator_does_not_contains |
|
158 | def test_operator_does_not_contains | |
159 | query = Query.new(:project => Project.find(1), :name => '_') |
|
159 | query = Query.new(:project => Project.find(1), :name => '_') | |
160 | query.add_filter('subject', '!~', ['string']) |
|
160 | query.add_filter('subject', '!~', ['string']) | |
161 | assert query.statement.include?("#{Issue.table_name}.subject NOT LIKE '%string%'") |
|
161 | assert query.statement.include?("#{Issue.table_name}.subject NOT LIKE '%string%'") | |
162 | find_issues_with_query(query) |
|
162 | find_issues_with_query(query) | |
163 | end |
|
163 | end | |
164 |
|
164 | |||
165 | def test_default_columns |
|
165 | def test_default_columns | |
166 | q = Query.new |
|
166 | q = Query.new | |
167 | assert !q.columns.empty? |
|
167 | assert !q.columns.empty? | |
168 | end |
|
168 | end | |
169 |
|
169 | |||
170 | def test_set_column_names |
|
170 | def test_set_column_names | |
171 | q = Query.new |
|
171 | q = Query.new | |
172 | q.column_names = ['tracker', :subject, '', 'unknonw_column'] |
|
172 | q.column_names = ['tracker', :subject, '', 'unknonw_column'] | |
173 | assert_equal [:tracker, :subject], q.columns.collect {|c| c.name} |
|
173 | assert_equal [:tracker, :subject], q.columns.collect {|c| c.name} | |
174 | c = q.columns.first |
|
174 | c = q.columns.first | |
175 | assert q.has_column?(c) |
|
175 | assert q.has_column?(c) | |
176 | end |
|
176 | end | |
177 |
|
177 | |||
178 | def test_sort_by_string_custom_field_asc |
|
178 | def test_sort_by_string_custom_field_asc | |
179 | q = Query.new |
|
179 | q = Query.new | |
180 | c = q.available_columns.find {|col| col.is_a?(QueryCustomFieldColumn) && col.custom_field.field_format == 'string' } |
|
180 | c = q.available_columns.find {|col| col.is_a?(QueryCustomFieldColumn) && col.custom_field.field_format == 'string' } | |
181 | assert c |
|
181 | assert c | |
182 | assert c.sortable |
|
182 | assert c.sortable | |
183 | issues = Issue.find :all, |
|
183 | issues = Issue.find :all, | |
184 | :include => [ :assigned_to, :status, :tracker, :project, :priority ], |
|
184 | :include => [ :assigned_to, :status, :tracker, :project, :priority ], | |
185 | :conditions => q.statement, |
|
185 | :conditions => q.statement, | |
186 | :order => "#{c.sortable} ASC" |
|
186 | :order => "#{c.sortable} ASC" | |
187 | values = issues.collect {|i| i.custom_value_for(c.custom_field).to_s} |
|
187 | values = issues.collect {|i| i.custom_value_for(c.custom_field).to_s} | |
|
188 | assert !values.empty? | |||
188 | assert_equal values.sort, values |
|
189 | assert_equal values.sort, values | |
189 | end |
|
190 | end | |
190 |
|
191 | |||
191 | def test_sort_by_string_custom_field_desc |
|
192 | def test_sort_by_string_custom_field_desc | |
192 | q = Query.new |
|
193 | q = Query.new | |
193 | c = q.available_columns.find {|col| col.is_a?(QueryCustomFieldColumn) && col.custom_field.field_format == 'string' } |
|
194 | c = q.available_columns.find {|col| col.is_a?(QueryCustomFieldColumn) && col.custom_field.field_format == 'string' } | |
194 | assert c |
|
195 | assert c | |
195 | assert c.sortable |
|
196 | assert c.sortable | |
196 | issues = Issue.find :all, |
|
197 | issues = Issue.find :all, | |
197 | :include => [ :assigned_to, :status, :tracker, :project, :priority ], |
|
198 | :include => [ :assigned_to, :status, :tracker, :project, :priority ], | |
198 | :conditions => q.statement, |
|
199 | :conditions => q.statement, | |
199 | :order => "#{c.sortable} DESC" |
|
200 | :order => "#{c.sortable} DESC" | |
200 | values = issues.collect {|i| i.custom_value_for(c.custom_field).to_s} |
|
201 | values = issues.collect {|i| i.custom_value_for(c.custom_field).to_s} | |
|
202 | assert !values.empty? | |||
201 | assert_equal values.sort.reverse, values |
|
203 | assert_equal values.sort.reverse, values | |
202 | end |
|
204 | end | |
203 |
|
205 | |||
|
206 | def test_sort_by_float_custom_field_asc | |||
|
207 | q = Query.new | |||
|
208 | c = q.available_columns.find {|col| col.is_a?(QueryCustomFieldColumn) && col.custom_field.field_format == 'float' } | |||
|
209 | assert c | |||
|
210 | assert c.sortable | |||
|
211 | issues = Issue.find :all, | |||
|
212 | :include => [ :assigned_to, :status, :tracker, :project, :priority ], | |||
|
213 | :conditions => q.statement, | |||
|
214 | :order => "#{c.sortable} ASC" | |||
|
215 | values = issues.collect {|i| begin; Kernel.Float(i.custom_value_for(c.custom_field).to_s); rescue; nil; end}.compact | |||
|
216 | assert !values.empty? | |||
|
217 | assert_equal values.sort, values | |||
|
218 | end | |||
|
219 | ||||
204 | def test_label_for |
|
220 | def test_label_for | |
205 | q = Query.new |
|
221 | q = Query.new | |
206 | assert_equal 'assigned_to', q.label_for('assigned_to_id') |
|
222 | assert_equal 'assigned_to', q.label_for('assigned_to_id') | |
207 | end |
|
223 | end | |
208 |
|
224 | |||
209 | def test_editable_by |
|
225 | def test_editable_by | |
210 | admin = User.find(1) |
|
226 | admin = User.find(1) | |
211 | manager = User.find(2) |
|
227 | manager = User.find(2) | |
212 | developer = User.find(3) |
|
228 | developer = User.find(3) | |
213 |
|
229 | |||
214 | # Public query on project 1 |
|
230 | # Public query on project 1 | |
215 | q = Query.find(1) |
|
231 | q = Query.find(1) | |
216 | assert q.editable_by?(admin) |
|
232 | assert q.editable_by?(admin) | |
217 | assert q.editable_by?(manager) |
|
233 | assert q.editable_by?(manager) | |
218 | assert !q.editable_by?(developer) |
|
234 | assert !q.editable_by?(developer) | |
219 |
|
235 | |||
220 | # Private query on project 1 |
|
236 | # Private query on project 1 | |
221 | q = Query.find(2) |
|
237 | q = Query.find(2) | |
222 | assert q.editable_by?(admin) |
|
238 | assert q.editable_by?(admin) | |
223 | assert !q.editable_by?(manager) |
|
239 | assert !q.editable_by?(manager) | |
224 | assert q.editable_by?(developer) |
|
240 | assert q.editable_by?(developer) | |
225 |
|
241 | |||
226 | # Private query for all projects |
|
242 | # Private query for all projects | |
227 | q = Query.find(3) |
|
243 | q = Query.find(3) | |
228 | assert q.editable_by?(admin) |
|
244 | assert q.editable_by?(admin) | |
229 | assert !q.editable_by?(manager) |
|
245 | assert !q.editable_by?(manager) | |
230 | assert q.editable_by?(developer) |
|
246 | assert q.editable_by?(developer) | |
231 |
|
247 | |||
232 | # Public query for all projects |
|
248 | # Public query for all projects | |
233 | q = Query.find(4) |
|
249 | q = Query.find(4) | |
234 | assert q.editable_by?(admin) |
|
250 | assert q.editable_by?(admin) | |
235 | assert !q.editable_by?(manager) |
|
251 | assert !q.editable_by?(manager) | |
236 | assert !q.editable_by?(developer) |
|
252 | assert !q.editable_by?(developer) | |
237 | end |
|
253 | end | |
238 | end |
|
254 | end |
General Comments 0
You need to be logged in to leave comments.
Login now