changeset_test.rb
405 lines
| 13.8 KiB
| text/x-ruby
|
RubyLexer
|
r3352 | # encoding: utf-8 | ||
# | ||||
# Redmine - project management software | ||||
|
r5776 | # Copyright (C) 2006-2011 Jean-Philippe Lang | ||
|
r905 | # | ||
# 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. | ||||
|
r5776 | # | ||
|
r905 | # 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. | ||||
|
r5776 | # | ||
|
r905 | # 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. | ||||
|
r4395 | require File.expand_path('../../test_helper', __FILE__) | ||
|
r905 | |||
|
r2773 | class ChangesetTest < ActiveSupport::TestCase | ||
|
r5392 | fixtures :projects, :repositories, | ||
:issues, :issue_statuses, :issue_categories, | ||||
|
r5776 | :changesets, :changes, | ||
|
r5392 | :enumerations, | ||
:custom_fields, :custom_values, | ||||
:users, :members, :member_roles, :trackers, | ||||
:enabled_modules, :roles | ||||
|
r905 | |||
def setup | ||||
end | ||||
|
r5353 | |||
|
r905 | def test_ref_keywords_any | ||
|
r2548 | ActionMailer::Base.deliveries.clear | ||
|
r5246 | Setting.commit_fix_status_id = IssueStatus.find( | ||
:first, :conditions => ["is_closed = ?", true]).id | ||||
|
r905 | Setting.commit_fix_done_ratio = '90' | ||
Setting.commit_ref_keywords = '*' | ||||
Setting.commit_fix_keywords = 'fixes , closes' | ||||
|
r5530 | |||
|
r5353 | c = Changeset.new(:repository => Project.find(1).repository, | ||
|
r905 | :committed_on => Time.now, | ||
|
r5353 | :comments => 'New commit (#2). Fixes #1') | ||
|
r905 | c.scan_comment_for_issue_ids | ||
|
r5530 | |||
|
r905 | assert_equal [1, 2], c.issue_ids.sort | ||
fixed = Issue.find(1) | ||||
assert fixed.closed? | ||||
assert_equal 90, fixed.done_ratio | ||||
|
r2548 | assert_equal 1, ActionMailer::Base.deliveries.size | ||
|
r905 | end | ||
|
r5353 | |||
|
r4356 | def test_ref_keywords | ||
Setting.commit_ref_keywords = 'refs' | ||||
Setting.commit_fix_keywords = '' | ||||
|
r5353 | |||
c = Changeset.new(:repository => Project.find(1).repository, | ||||
|
r4356 | :committed_on => Time.now, | ||
|
r5353 | :comments => 'Ignores #2. Refs #1') | ||
|
r4356 | c.scan_comment_for_issue_ids | ||
|
r5776 | |||
|
r4356 | assert_equal [1], c.issue_ids.sort | ||
end | ||||
|
r5530 | |||
|
r4356 | def test_ref_keywords_any_only | ||
Setting.commit_ref_keywords = '*' | ||||
Setting.commit_fix_keywords = '' | ||||
|
r5776 | |||
|
r5353 | c = Changeset.new(:repository => Project.find(1).repository, | ||
|
r4356 | :committed_on => Time.now, | ||
|
r5353 | :comments => 'Ignores #2. Refs #1') | ||
|
r4356 | c.scan_comment_for_issue_ids | ||
|
r5530 | |||
|
r4356 | assert_equal [1, 2], c.issue_ids.sort | ||
end | ||||
|
r5530 | |||
|
r4356 | def test_ref_keywords_any_with_timelog | ||
Setting.commit_ref_keywords = '*' | ||||
Setting.commit_logtime_enabled = '1' | ||||
|
r4831 | { | ||
'2' => 2.0, | ||||
'2h' => 2.0, | ||||
'2hours' => 2.0, | ||||
'15m' => 0.25, | ||||
'15min' => 0.25, | ||||
'3h15' => 3.25, | ||||
'3h15m' => 3.25, | ||||
'3h15min' => 3.25, | ||||
'3:15' => 3.25, | ||||
'3.25' => 3.25, | ||||
'3.25h' => 3.25, | ||||
'3,25' => 3.25, | ||||
'3,25h' => 3.25, | ||||
}.each do |syntax, expected_hours| | ||||
|
r5353 | c = Changeset.new(:repository => Project.find(1).repository, | ||
|
r4831 | :committed_on => 24.hours.ago, | ||
|
r5353 | :comments => "Worked on this issue #1 @#{syntax}", | ||
:revision => '520', | ||||
:user => User.find(2)) | ||||
|
r4831 | assert_difference 'TimeEntry.count' do | ||
c.scan_comment_for_issue_ids | ||||
end | ||||
assert_equal [1], c.issue_ids.sort | ||||
|
r5353 | |||
|
r4831 | time = TimeEntry.first(:order => 'id desc') | ||
assert_equal 1, time.issue_id | ||||
assert_equal 1, time.project_id | ||||
assert_equal 2, time.user_id | ||||
|
r5246 | assert_equal expected_hours, time.hours, | ||
"@#{syntax} should be logged as #{expected_hours} hours but was #{time.hours}" | ||||
|
r4831 | assert_equal Date.yesterday, time.spent_on | ||
assert time.activity.is_default? | ||||
|
r5246 | assert time.comments.include?('r520'), | ||
"r520 was expected in time_entry comments: #{time.comments}" | ||||
|
r4356 | end | ||
end | ||||
|
r5353 | |||
|
r4356 | def test_ref_keywords_closing_with_timelog | ||
|
r5246 | Setting.commit_fix_status_id = IssueStatus.find( | ||
:first, :conditions => ["is_closed = ?", true]).id | ||||
|
r4356 | Setting.commit_ref_keywords = '*' | ||
Setting.commit_fix_keywords = 'fixes , closes' | ||||
Setting.commit_logtime_enabled = '1' | ||||
|
r5776 | |||
|
r5353 | c = Changeset.new(:repository => Project.find(1).repository, | ||
|
r4356 | :committed_on => Time.now, | ||
|
r5353 | :comments => 'This is a comment. Fixes #1 @4.5, #2 @1', | ||
:user => User.find(2)) | ||||
|
r4356 | assert_difference 'TimeEntry.count', 2 do | ||
c.scan_comment_for_issue_ids | ||||
end | ||||
|
r5353 | |||
|
r4356 | assert_equal [1, 2], c.issue_ids.sort | ||
assert Issue.find(1).closed? | ||||
assert Issue.find(2).closed? | ||||
times = TimeEntry.all(:order => 'id desc', :limit => 2) | ||||
assert_equal [1, 2], times.collect(&:issue_id).sort | ||||
end | ||||
|
r5353 | |||
|
r1437 | def test_ref_keywords_any_line_start | ||
Setting.commit_ref_keywords = '*' | ||||
|
r5353 | c = Changeset.new(:repository => Project.find(1).repository, | ||
|
r1437 | :committed_on => Time.now, | ||
|
r5353 | :comments => '#1 is the reason of this commit') | ||
|
r1437 | c.scan_comment_for_issue_ids | ||
assert_equal [1], c.issue_ids.sort | ||||
end | ||||
|
r925 | |||
|
r2749 | def test_ref_keywords_allow_brackets_around_a_issue_number | ||
Setting.commit_ref_keywords = '*' | ||||
|
r5353 | c = Changeset.new(:repository => Project.find(1).repository, | ||
|
r2749 | :committed_on => Time.now, | ||
|
r5353 | :comments => '[#1] Worked on this issue') | ||
|
r2749 | c.scan_comment_for_issue_ids | ||
assert_equal [1], c.issue_ids.sort | ||||
end | ||||
def test_ref_keywords_allow_brackets_around_multiple_issue_numbers | ||||
Setting.commit_ref_keywords = '*' | ||||
|
r5353 | c = Changeset.new(:repository => Project.find(1).repository, | ||
|
r2749 | :committed_on => Time.now, | ||
|
r5353 | :comments => '[#1 #2, #3] Worked on these') | ||
|
r2749 | c.scan_comment_for_issue_ids | ||
assert_equal [1,2,3], c.issue_ids.sort | ||||
end | ||||
|
r5353 | |||
|
r3243 | def test_commit_referencing_a_subproject_issue | ||
|
r5353 | c = Changeset.new(:repository => Project.find(1).repository, | ||
|
r3243 | :committed_on => Time.now, | ||
|
r5353 | :comments => 'refs #5, a subproject issue') | ||
|
r3243 | c.scan_comment_for_issue_ids | ||
|
r5353 | |||
|
r3243 | assert_equal [5], c.issue_ids.sort | ||
assert c.issues.first.project != c.project | ||||
end | ||||
def test_commit_referencing_a_parent_project_issue | ||||
# repository of child project | ||||
|
r5041 | r = Repository::Subversion.create!( | ||
:project => Project.find(3), | ||||
:url => 'svn://localhost/test') | ||||
|
r5353 | c = Changeset.new(:repository => r, | ||
|
r3243 | :committed_on => Time.now, | ||
|
r5353 | :comments => 'refs #2, an issue of a parent project') | ||
|
r3243 | c.scan_comment_for_issue_ids | ||
|
r5041 | |||
|
r3243 | assert_equal [2], c.issue_ids.sort | ||
assert c.issues.first.project != c.project | ||||
end | ||||
|
r4864 | |||
|
r4376 | def test_text_tag_revision | ||
c = Changeset.new(:revision => '520') | ||||
|
r4356 | assert_equal 'r520', c.text_tag | ||
end | ||||
|
r4864 | |||
|
r4356 | def test_text_tag_hash | ||
|
r5041 | c = Changeset.new( | ||
:scmid => '7234cb2750b63f47bff735edc50a1c0a433c2518', | ||||
:revision => '7234cb2750b63f47bff735edc50a1c0a433c2518') | ||||
|
r4356 | assert_equal 'commit:7234cb2750b63f47bff735edc50a1c0a433c2518', c.text_tag | ||
end | ||||
|
r2749 | |||
|
r4376 | def test_text_tag_hash_all_number | ||
c = Changeset.new(:scmid => '0123456789', :revision => '0123456789') | ||||
assert_equal 'commit:0123456789', c.text_tag | ||||
end | ||||
|
r925 | def test_previous | ||
|
r1348 | changeset = Changeset.find_by_revision('3') | ||
assert_equal Changeset.find_by_revision('2'), changeset.previous | ||||
|
r925 | end | ||
def test_previous_nil | ||||
|
r1348 | changeset = Changeset.find_by_revision('1') | ||
|
r925 | assert_nil changeset.previous | ||
end | ||||
def test_next | ||||
|
r1348 | changeset = Changeset.find_by_revision('2') | ||
assert_equal Changeset.find_by_revision('3'), changeset.next | ||||
|
r925 | end | ||
def test_next_nil | ||||
|
r2784 | changeset = Changeset.find_by_revision('10') | ||
|
r925 | assert_nil changeset.next | ||
end | ||||
|
r4862 | |||
|
r3352 | def test_comments_should_be_converted_to_utf8 | ||
|
r5353 | proj = Project.find(3) | ||
# str = File.read("#{RAILS_ROOT}/test/fixtures/encoding/iso-8859-1.txt") | ||||
str = "Texte encod\xe9 en ISO-8859-1." | ||||
str.force_encoding("ASCII-8BIT") if str.respond_to?(:force_encoding) | ||||
r = Repository::Bazaar.create!( | ||||
:project => proj, | ||||
:url => '/tmp/test/bazaar', | ||||
|
r4862 | :log_encoding => 'ISO-8859-1' ) | ||
|
r5353 | assert r | ||
c = Changeset.new(:repository => r, | ||||
:committed_on => Time.now, | ||||
:revision => '123', | ||||
:scmid => '12345', | ||||
:comments => str) | ||||
assert( c.save ) | ||||
str_utf8 = "Texte encod\xc3\xa9 en ISO-8859-1." | ||||
str_utf8.force_encoding("UTF-8") if str_utf8.respond_to?(:force_encoding) | ||||
assert_equal str_utf8, c.comments | ||||
|
r3352 | end | ||
|
r4864 | |||
|
r5253 | def test_invalid_utf8_sequences_in_comments_should_be_replaced_latin1 | ||
|
r5353 | proj = Project.find(3) | ||
# str = File.read("#{RAILS_ROOT}/test/fixtures/encoding/iso-8859-1.txt") | ||||
str1 = "Texte encod\xe9 en ISO-8859-1." | ||||
|
r5528 | str2 = "\xe9a\xe9b\xe9c\xe9d\xe9e test" | ||
|
r5353 | str1.force_encoding("UTF-8") if str1.respond_to?(:force_encoding) | ||
str2.force_encoding("ASCII-8BIT") if str2.respond_to?(:force_encoding) | ||||
r = Repository::Bazaar.create!( | ||||
:project => proj, | ||||
:url => '/tmp/test/bazaar', | ||||
|
r4862 | :log_encoding => 'UTF-8' ) | ||
|
r5353 | assert r | ||
c = Changeset.new(:repository => r, | ||||
:committed_on => Time.now, | ||||
:revision => '123', | ||||
:scmid => '12345', | ||||
:comments => str1, | ||||
:committer => str2) | ||||
assert( c.save ) | ||||
assert_equal "Texte encod? en ISO-8859-1.", c.comments | ||||
|
r5528 | assert_equal "?a?b?c?d?e test", c.committer | ||
|
r3352 | end | ||
|
r4493 | |||
|
r5253 | def test_invalid_utf8_sequences_in_comments_should_be_replaced_ja_jis | ||
|
r5353 | proj = Project.find(3) | ||
str = "test\xb5\xfetest\xb5\xfe" | ||||
if str.respond_to?(:force_encoding) | ||||
str.force_encoding('ASCII-8BIT') | ||||
end | ||||
r = Repository::Bazaar.create!( | ||||
:project => proj, | ||||
:url => '/tmp/test/bazaar', | ||||
|
r5250 | :log_encoding => 'ISO-2022-JP' ) | ||
|
r5353 | assert r | ||
c = Changeset.new(:repository => r, | ||||
:committed_on => Time.now, | ||||
:revision => '123', | ||||
:scmid => '12345', | ||||
:comments => str) | ||||
assert( c.save ) | ||||
assert_equal "test??test??", c.comments | ||||
|
r5250 | end | ||
|
r4805 | def test_comments_should_be_converted_all_latin1_to_utf8 | ||
|
r5353 | s1 = "\xC2\x80" | ||
s2 = "\xc3\x82\xc2\x80" | ||||
s4 = s2.dup | ||||
if s1.respond_to?(:force_encoding) | ||||
s3 = s1.dup | ||||
s1.force_encoding('ASCII-8BIT') | ||||
s2.force_encoding('ASCII-8BIT') | ||||
s3.force_encoding('ISO-8859-1') | ||||
s4.force_encoding('UTF-8') | ||||
assert_equal s3.encode('UTF-8'), s4 | ||||
end | ||||
proj = Project.find(3) | ||||
r = Repository::Bazaar.create!( | ||||
:project => proj, | ||||
:url => '/tmp/test/bazaar', | ||||
|
r4862 | :log_encoding => 'ISO-8859-1' ) | ||
|
r5353 | assert r | ||
c = Changeset.new(:repository => r, | ||||
:committed_on => Time.now, | ||||
:revision => '123', | ||||
:scmid => '12345', | ||||
:comments => s1) | ||||
assert( c.save ) | ||||
assert_equal s4, c.comments | ||||
|
r4805 | end | ||
|
r5356 | def test_invalid_utf8_sequences_in_paths_should_be_replaced | ||
|
r5591 | proj = Project.find(3) | ||
str1 = "Texte encod\xe9 en ISO-8859-1" | ||||
str2 = "\xe9a\xe9b\xe9c\xe9d\xe9e test" | ||||
str1.force_encoding("UTF-8") if str1.respond_to?(:force_encoding) | ||||
str2.force_encoding("ASCII-8BIT") if str2.respond_to?(:force_encoding) | ||||
r = Repository::Bazaar.create!( | ||||
|
r5356 | :project => proj, | ||
:url => '/tmp/test/bazaar', | ||||
:log_encoding => 'UTF-8' ) | ||||
|
r5591 | assert r | ||
cs = Changeset.new( | ||||
|
r5356 | :repository => r, | ||
:committed_on => Time.now, | ||||
:revision => '123', | ||||
:scmid => '12345', | ||||
:comments => "test") | ||||
|
r5591 | assert(cs.save) | ||
ch = Change.new( | ||||
|
r5356 | :changeset => cs, | ||
:action => "A", | ||||
:path => str1, | ||||
:from_path => str2, | ||||
:from_revision => "345") | ||||
|
r5591 | assert(ch.save) | ||
assert_equal "Texte encod? en ISO-8859-1", ch.path | ||||
assert_equal "?a?b?c?d?e test", ch.from_path | ||||
|
r5356 | end | ||
|
r5248 | def test_comments_nil | ||
|
r5353 | proj = Project.find(3) | ||
r = Repository::Bazaar.create!( | ||||
:project => proj, | ||||
:url => '/tmp/test/bazaar', | ||||
|
r5248 | :log_encoding => 'ISO-8859-1' ) | ||
|
r5353 | assert r | ||
c = Changeset.new(:repository => r, | ||||
:committed_on => Time.now, | ||||
:revision => '123', | ||||
:scmid => '12345', | ||||
:comments => nil, | ||||
:committer => nil) | ||||
assert( c.save ) | ||||
assert_equal "", c.comments | ||||
assert_equal nil, c.committer | ||||
if c.comments.respond_to?(:force_encoding) | ||||
assert_equal "UTF-8", c.comments.encoding.to_s | ||||
end | ||||
|
r5248 | end | ||
def test_comments_empty | ||||
|
r5353 | proj = Project.find(3) | ||
r = Repository::Bazaar.create!( | ||||
:project => proj, | ||||
:url => '/tmp/test/bazaar', | ||||
|
r5248 | :log_encoding => 'ISO-8859-1' ) | ||
|
r5353 | assert r | ||
c = Changeset.new(:repository => r, | ||||
:committed_on => Time.now, | ||||
:revision => '123', | ||||
:scmid => '12345', | ||||
:comments => "", | ||||
:committer => "") | ||||
assert( c.save ) | ||||
assert_equal "", c.comments | ||||
assert_equal "", c.committer | ||||
if c.comments.respond_to?(:force_encoding) | ||||
assert_equal "UTF-8", c.comments.encoding.to_s | ||||
assert_equal "UTF-8", c.committer.encoding.to_s | ||||
end | ||||
|
r5248 | end | ||
|
r4493 | def test_identifier | ||
c = Changeset.find_by_revision('1') | ||||
assert_equal c.revision, c.identifier | ||||
end | ||||
|
r905 | end | ||