@@ -26,7 +26,7 class ChangesetTest < ActiveSupport::TestCase | |||
|
26 | 26 | |
|
27 | 27 | def setup |
|
28 | 28 | end |
|
29 | ||
|
29 | ||
|
30 | 30 | def test_ref_keywords_any |
|
31 | 31 | ActionMailer::Base.deliveries.clear |
|
32 | 32 | Setting.commit_fix_status_id = IssueStatus.find( |
@@ -35,9 +35,9 class ChangesetTest < ActiveSupport::TestCase | |||
|
35 | 35 | Setting.commit_ref_keywords = '*' |
|
36 | 36 | Setting.commit_fix_keywords = 'fixes , closes' |
|
37 | 37 | |
|
38 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
38 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
39 | 39 | :committed_on => Time.now, |
|
40 | :comments => 'New commit (#2). Fixes #1') | |
|
40 | :comments => 'New commit (#2). Fixes #1') | |
|
41 | 41 | c.scan_comment_for_issue_ids |
|
42 | 42 | |
|
43 | 43 | assert_equal [1, 2], c.issue_ids.sort |
@@ -46,14 +46,14 class ChangesetTest < ActiveSupport::TestCase | |||
|
46 | 46 | assert_equal 90, fixed.done_ratio |
|
47 | 47 | assert_equal 1, ActionMailer::Base.deliveries.size |
|
48 | 48 | end |
|
49 | ||
|
49 | ||
|
50 | 50 | def test_ref_keywords |
|
51 | 51 | Setting.commit_ref_keywords = 'refs' |
|
52 | 52 | Setting.commit_fix_keywords = '' |
|
53 | ||
|
54 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
53 | ||
|
54 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
55 | 55 | :committed_on => Time.now, |
|
56 | :comments => 'Ignores #2. Refs #1') | |
|
56 | :comments => 'Ignores #2. Refs #1') | |
|
57 | 57 | c.scan_comment_for_issue_ids |
|
58 | 58 | |
|
59 | 59 | assert_equal [1], c.issue_ids.sort |
@@ -63,9 +63,9 class ChangesetTest < ActiveSupport::TestCase | |||
|
63 | 63 | Setting.commit_ref_keywords = '*' |
|
64 | 64 | Setting.commit_fix_keywords = '' |
|
65 | 65 | |
|
66 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
66 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
67 | 67 | :committed_on => Time.now, |
|
68 | :comments => 'Ignores #2. Refs #1') | |
|
68 | :comments => 'Ignores #2. Refs #1') | |
|
69 | 69 | c.scan_comment_for_issue_ids |
|
70 | 70 | |
|
71 | 71 | assert_equal [1, 2], c.issue_ids.sort |
@@ -90,16 +90,16 class ChangesetTest < ActiveSupport::TestCase | |||
|
90 | 90 | '3,25' => 3.25, |
|
91 | 91 | '3,25h' => 3.25, |
|
92 | 92 | }.each do |syntax, expected_hours| |
|
93 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
93 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
94 | 94 | :committed_on => 24.hours.ago, |
|
95 | :comments => "Worked on this issue #1 @#{syntax}", | |
|
96 | :revision => '520', | |
|
97 | :user => User.find(2)) | |
|
95 | :comments => "Worked on this issue #1 @#{syntax}", | |
|
96 | :revision => '520', | |
|
97 | :user => User.find(2)) | |
|
98 | 98 | assert_difference 'TimeEntry.count' do |
|
99 | 99 | c.scan_comment_for_issue_ids |
|
100 | 100 | end |
|
101 | 101 | assert_equal [1], c.issue_ids.sort |
|
102 | ||
|
102 | ||
|
103 | 103 | time = TimeEntry.first(:order => 'id desc') |
|
104 | 104 | assert_equal 1, time.issue_id |
|
105 | 105 | assert_equal 1, time.project_id |
@@ -112,7 +112,7 class ChangesetTest < ActiveSupport::TestCase | |||
|
112 | 112 | "r520 was expected in time_entry comments: #{time.comments}" |
|
113 | 113 | end |
|
114 | 114 | end |
|
115 | ||
|
115 | ||
|
116 | 116 | def test_ref_keywords_closing_with_timelog |
|
117 | 117 | Setting.commit_fix_status_id = IssueStatus.find( |
|
118 | 118 | :first, :conditions => ["is_closed = ?", true]).id |
@@ -120,14 +120,14 class ChangesetTest < ActiveSupport::TestCase | |||
|
120 | 120 | Setting.commit_fix_keywords = 'fixes , closes' |
|
121 | 121 | Setting.commit_logtime_enabled = '1' |
|
122 | 122 | |
|
123 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
123 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
124 | 124 | :committed_on => Time.now, |
|
125 | :comments => 'This is a comment. Fixes #1 @4.5, #2 @1', | |
|
126 | :user => User.find(2)) | |
|
125 | :comments => 'This is a comment. Fixes #1 @4.5, #2 @1', | |
|
126 | :user => User.find(2)) | |
|
127 | 127 | assert_difference 'TimeEntry.count', 2 do |
|
128 | 128 | c.scan_comment_for_issue_ids |
|
129 | 129 | end |
|
130 | ||
|
130 | ||
|
131 | 131 | assert_equal [1, 2], c.issue_ids.sort |
|
132 | 132 | assert Issue.find(1).closed? |
|
133 | 133 | assert Issue.find(2).closed? |
@@ -135,13 +135,13 class ChangesetTest < ActiveSupport::TestCase | |||
|
135 | 135 | times = TimeEntry.all(:order => 'id desc', :limit => 2) |
|
136 | 136 | assert_equal [1, 2], times.collect(&:issue_id).sort |
|
137 | 137 | end |
|
138 | ||
|
138 | ||
|
139 | 139 | def test_ref_keywords_any_line_start |
|
140 | 140 | Setting.commit_ref_keywords = '*' |
|
141 | 141 | |
|
142 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
142 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
143 | 143 | :committed_on => Time.now, |
|
144 | :comments => '#1 is the reason of this commit') | |
|
144 | :comments => '#1 is the reason of this commit') | |
|
145 | 145 | c.scan_comment_for_issue_ids |
|
146 | 146 | |
|
147 | 147 | assert_equal [1], c.issue_ids.sort |
@@ -150,9 +150,9 class ChangesetTest < ActiveSupport::TestCase | |||
|
150 | 150 | def test_ref_keywords_allow_brackets_around_a_issue_number |
|
151 | 151 | Setting.commit_ref_keywords = '*' |
|
152 | 152 | |
|
153 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
153 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
154 | 154 | :committed_on => Time.now, |
|
155 | :comments => '[#1] Worked on this issue') | |
|
155 | :comments => '[#1] Worked on this issue') | |
|
156 | 156 | c.scan_comment_for_issue_ids |
|
157 | 157 | |
|
158 | 158 | assert_equal [1], c.issue_ids.sort |
@@ -161,20 +161,20 class ChangesetTest < ActiveSupport::TestCase | |||
|
161 | 161 | def test_ref_keywords_allow_brackets_around_multiple_issue_numbers |
|
162 | 162 | Setting.commit_ref_keywords = '*' |
|
163 | 163 | |
|
164 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
164 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
165 | 165 | :committed_on => Time.now, |
|
166 | :comments => '[#1 #2, #3] Worked on these') | |
|
166 | :comments => '[#1 #2, #3] Worked on these') | |
|
167 | 167 | c.scan_comment_for_issue_ids |
|
168 | 168 | |
|
169 | 169 | assert_equal [1,2,3], c.issue_ids.sort |
|
170 | 170 | end |
|
171 | ||
|
171 | ||
|
172 | 172 | def test_commit_referencing_a_subproject_issue |
|
173 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
173 | c = Changeset.new(:repository => Project.find(1).repository, | |
|
174 | 174 | :committed_on => Time.now, |
|
175 | :comments => 'refs #5, a subproject issue') | |
|
175 | :comments => 'refs #5, a subproject issue') | |
|
176 | 176 | c.scan_comment_for_issue_ids |
|
177 | ||
|
177 | ||
|
178 | 178 | assert_equal [5], c.issue_ids.sort |
|
179 | 179 | assert c.issues.first.project != c.project |
|
180 | 180 | end |
@@ -185,9 +185,9 class ChangesetTest < ActiveSupport::TestCase | |||
|
185 | 185 | :project => Project.find(3), |
|
186 | 186 | :url => 'svn://localhost/test') |
|
187 | 187 | |
|
188 | c = Changeset.new(:repository => r, | |
|
188 | c = Changeset.new(:repository => r, | |
|
189 | 189 | :committed_on => Time.now, |
|
190 | :comments => 'refs #2, an issue of a parent project') | |
|
190 | :comments => 'refs #2, an issue of a parent project') | |
|
191 | 191 | c.scan_comment_for_issue_ids |
|
192 | 192 | |
|
193 | 193 | assert_equal [2], c.issue_ids.sort |
@@ -232,133 +232,137 class ChangesetTest < ActiveSupport::TestCase | |||
|
232 | 232 | end |
|
233 | 233 | |
|
234 | 234 | def test_comments_should_be_converted_to_utf8 |
|
235 |
|
|
|
236 |
|
|
|
237 |
|
|
|
238 |
|
|
|
239 |
|
|
|
240 |
:project => proj, |
|
|
235 | proj = Project.find(3) | |
|
236 | # str = File.read("#{RAILS_ROOT}/test/fixtures/encoding/iso-8859-1.txt") | |
|
237 | str = "Texte encod\xe9 en ISO-8859-1." | |
|
238 | str.force_encoding("ASCII-8BIT") if str.respond_to?(:force_encoding) | |
|
239 | r = Repository::Bazaar.create!( | |
|
240 | :project => proj, | |
|
241 | :url => '/tmp/test/bazaar', | |
|
241 | 242 | :log_encoding => 'ISO-8859-1' ) |
|
242 |
|
|
|
243 |
|
|
|
244 |
|
|
|
245 |
|
|
|
246 |
|
|
|
247 |
|
|
|
248 |
|
|
|
249 |
|
|
|
250 |
|
|
|
251 |
|
|
|
243 | assert r | |
|
244 | c = Changeset.new(:repository => r, | |
|
245 | :committed_on => Time.now, | |
|
246 | :revision => '123', | |
|
247 | :scmid => '12345', | |
|
248 | :comments => str) | |
|
249 | assert( c.save ) | |
|
250 | str_utf8 = "Texte encod\xc3\xa9 en ISO-8859-1." | |
|
251 | str_utf8.force_encoding("UTF-8") if str_utf8.respond_to?(:force_encoding) | |
|
252 | assert_equal str_utf8, c.comments | |
|
252 | 253 | end |
|
253 | 254 | |
|
254 | 255 | def test_invalid_utf8_sequences_in_comments_should_be_replaced_latin1 |
|
255 |
|
|
|
256 |
|
|
|
257 |
|
|
|
258 |
|
|
|
259 |
|
|
|
260 |
|
|
|
261 |
|
|
|
262 | :project => proj, | |
|
263 | :url => '/tmp/test/bazaar', | |
|
256 | proj = Project.find(3) | |
|
257 | # str = File.read("#{RAILS_ROOT}/test/fixtures/encoding/iso-8859-1.txt") | |
|
258 | str1 = "Texte encod\xe9 en ISO-8859-1." | |
|
259 | str2 = "\xe9a\xe9b\xe9c\xe9d\xe9e" | |
|
260 | str1.force_encoding("UTF-8") if str1.respond_to?(:force_encoding) | |
|
261 | str2.force_encoding("ASCII-8BIT") if str2.respond_to?(:force_encoding) | |
|
262 | r = Repository::Bazaar.create!( | |
|
263 | :project => proj, | |
|
264 | :url => '/tmp/test/bazaar', | |
|
264 | 265 | :log_encoding => 'UTF-8' ) |
|
265 |
|
|
|
266 |
|
|
|
267 |
|
|
|
268 |
|
|
|
269 |
|
|
|
270 |
|
|
|
271 |
|
|
|
272 |
|
|
|
273 |
|
|
|
274 |
|
|
|
266 | assert r | |
|
267 | c = Changeset.new(:repository => r, | |
|
268 | :committed_on => Time.now, | |
|
269 | :revision => '123', | |
|
270 | :scmid => '12345', | |
|
271 | :comments => str1, | |
|
272 | :committer => str2) | |
|
273 | assert( c.save ) | |
|
274 | assert_equal "Texte encod? en ISO-8859-1.", c.comments | |
|
275 | assert_equal "?a?b?c?d?e", c.committer | |
|
275 | 276 | end |
|
276 | 277 | |
|
277 | 278 | def test_invalid_utf8_sequences_in_comments_should_be_replaced_ja_jis |
|
278 |
|
|
|
279 |
|
|
|
280 |
|
|
|
281 |
|
|
|
282 |
|
|
|
283 |
|
|
|
284 | :project => proj, | |
|
285 | :url => '/tmp/test/bazaar', | |
|
279 | proj = Project.find(3) | |
|
280 | str = "test\xb5\xfetest\xb5\xfe" | |
|
281 | if str.respond_to?(:force_encoding) | |
|
282 | str.force_encoding('ASCII-8BIT') | |
|
283 | end | |
|
284 | r = Repository::Bazaar.create!( | |
|
285 | :project => proj, | |
|
286 | :url => '/tmp/test/bazaar', | |
|
286 | 287 | :log_encoding => 'ISO-2022-JP' ) |
|
287 |
|
|
|
288 |
|
|
|
289 |
|
|
|
290 |
|
|
|
291 |
|
|
|
292 |
|
|
|
293 |
|
|
|
294 |
|
|
|
288 | assert r | |
|
289 | c = Changeset.new(:repository => r, | |
|
290 | :committed_on => Time.now, | |
|
291 | :revision => '123', | |
|
292 | :scmid => '12345', | |
|
293 | :comments => str) | |
|
294 | assert( c.save ) | |
|
295 | assert_equal "test??test??", c.comments | |
|
295 | 296 | end |
|
296 | 297 | |
|
297 | 298 | def test_comments_should_be_converted_all_latin1_to_utf8 |
|
298 |
|
|
|
299 |
|
|
|
300 |
|
|
|
301 |
|
|
|
302 |
|
|
|
303 |
|
|
|
304 |
|
|
|
305 |
|
|
|
306 |
|
|
|
307 |
|
|
|
308 |
|
|
|
309 |
|
|
|
310 |
|
|
|
311 |
:project => proj, |
|
|
299 | s1 = "\xC2\x80" | |
|
300 | s2 = "\xc3\x82\xc2\x80" | |
|
301 | s4 = s2.dup | |
|
302 | if s1.respond_to?(:force_encoding) | |
|
303 | s3 = s1.dup | |
|
304 | s1.force_encoding('ASCII-8BIT') | |
|
305 | s2.force_encoding('ASCII-8BIT') | |
|
306 | s3.force_encoding('ISO-8859-1') | |
|
307 | s4.force_encoding('UTF-8') | |
|
308 | assert_equal s3.encode('UTF-8'), s4 | |
|
309 | end | |
|
310 | proj = Project.find(3) | |
|
311 | r = Repository::Bazaar.create!( | |
|
312 | :project => proj, | |
|
313 | :url => '/tmp/test/bazaar', | |
|
312 | 314 | :log_encoding => 'ISO-8859-1' ) |
|
313 |
|
|
|
314 |
|
|
|
315 |
|
|
|
316 |
|
|
|
317 |
|
|
|
318 |
|
|
|
319 |
|
|
|
320 |
|
|
|
315 | assert r | |
|
316 | c = Changeset.new(:repository => r, | |
|
317 | :committed_on => Time.now, | |
|
318 | :revision => '123', | |
|
319 | :scmid => '12345', | |
|
320 | :comments => s1) | |
|
321 | assert( c.save ) | |
|
322 | assert_equal s4, c.comments | |
|
321 | 323 | end |
|
322 | 324 | |
|
323 | 325 | def test_comments_nil |
|
324 |
|
|
|
325 |
|
|
|
326 |
:project => proj, |
|
|
326 | proj = Project.find(3) | |
|
327 | r = Repository::Bazaar.create!( | |
|
328 | :project => proj, | |
|
329 | :url => '/tmp/test/bazaar', | |
|
327 | 330 | :log_encoding => 'ISO-8859-1' ) |
|
328 |
|
|
|
329 |
|
|
|
330 |
|
|
|
331 |
|
|
|
332 |
|
|
|
333 |
|
|
|
334 |
|
|
|
335 |
|
|
|
336 |
|
|
|
337 |
|
|
|
338 |
|
|
|
339 |
|
|
|
340 |
|
|
|
331 | assert r | |
|
332 | c = Changeset.new(:repository => r, | |
|
333 | :committed_on => Time.now, | |
|
334 | :revision => '123', | |
|
335 | :scmid => '12345', | |
|
336 | :comments => nil, | |
|
337 | :committer => nil) | |
|
338 | assert( c.save ) | |
|
339 | assert_equal "", c.comments | |
|
340 | assert_equal nil, c.committer | |
|
341 | if c.comments.respond_to?(:force_encoding) | |
|
342 | assert_equal "UTF-8", c.comments.encoding.to_s | |
|
343 | end | |
|
341 | 344 | end |
|
342 | 345 | |
|
343 | 346 | def test_comments_empty |
|
344 |
|
|
|
345 |
|
|
|
346 |
:project => proj, |
|
|
347 | proj = Project.find(3) | |
|
348 | r = Repository::Bazaar.create!( | |
|
349 | :project => proj, | |
|
350 | :url => '/tmp/test/bazaar', | |
|
347 | 351 | :log_encoding => 'ISO-8859-1' ) |
|
348 |
|
|
|
349 |
|
|
|
350 |
|
|
|
351 |
|
|
|
352 |
|
|
|
353 |
|
|
|
354 |
|
|
|
355 |
|
|
|
356 |
|
|
|
357 |
|
|
|
358 |
|
|
|
359 |
|
|
|
360 |
|
|
|
361 |
|
|
|
352 | assert r | |
|
353 | c = Changeset.new(:repository => r, | |
|
354 | :committed_on => Time.now, | |
|
355 | :revision => '123', | |
|
356 | :scmid => '12345', | |
|
357 | :comments => "", | |
|
358 | :committer => "") | |
|
359 | assert( c.save ) | |
|
360 | assert_equal "", c.comments | |
|
361 | assert_equal "", c.committer | |
|
362 | if c.comments.respond_to?(:force_encoding) | |
|
363 | assert_equal "UTF-8", c.comments.encoding.to_s | |
|
364 | assert_equal "UTF-8", c.committer.encoding.to_s | |
|
365 | end | |
|
362 | 366 | end |
|
363 | 367 | |
|
364 | 368 | def test_identifier |
General Comments 0
You need to be logged in to leave comments.
Login now