Mercurial > hg > soundsoftware-site
comparison .svn/pristine/a1/a17e85541ced0de37f4c279c99198e91fbe8ecd9.svn-base @ 1298:4f746d8966dd redmine_2.3_integration
Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author | Chris Cannam |
---|---|
date | Fri, 14 Jun 2013 09:28:30 +0100 |
parents | 622f24f53b42 |
children |
comparison
equal
deleted
inserted
replaced
1297:0a574315af3e | 1298:4f746d8966dd |
---|---|
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 require 'pp' | |
20 class RepositoryCvsTest < ActiveSupport::TestCase | |
21 fixtures :projects | |
22 | |
23 include Redmine::I18n | |
24 | |
25 REPOSITORY_PATH = Rails.root.join('tmp/test/cvs_repository').to_s | |
26 REPOSITORY_PATH.gsub!(/\//, "\\") if Redmine::Platform.mswin? | |
27 # CVS module | |
28 MODULE_NAME = 'test' | |
29 CHANGESETS_NUM = 7 | |
30 | |
31 def setup | |
32 @project = Project.find(3) | |
33 @repository = Repository::Cvs.create(:project => @project, | |
34 :root_url => REPOSITORY_PATH, | |
35 :url => MODULE_NAME, | |
36 :log_encoding => 'UTF-8') | |
37 assert @repository | |
38 end | |
39 | |
40 def test_blank_module_error_message | |
41 set_language_if_valid 'en' | |
42 repo = Repository::Cvs.new( | |
43 :project => @project, | |
44 :identifier => 'test', | |
45 :log_encoding => 'UTF-8', | |
46 :root_url => REPOSITORY_PATH | |
47 ) | |
48 assert !repo.save | |
49 assert_include "Module can't be blank", | |
50 repo.errors.full_messages | |
51 end | |
52 | |
53 def test_blank_module_error_message_fr | |
54 set_language_if_valid 'fr' | |
55 str = "Module doit \xc3\xaatre renseign\xc3\xa9(e)" | |
56 str.force_encoding('UTF-8') if str.respond_to?(:force_encoding) | |
57 repo = Repository::Cvs.new( | |
58 :project => @project, | |
59 :identifier => 'test', | |
60 :log_encoding => 'UTF-8', | |
61 :path_encoding => '', | |
62 :url => '', | |
63 :root_url => REPOSITORY_PATH | |
64 ) | |
65 assert !repo.save | |
66 assert_include str, repo.errors.full_messages | |
67 end | |
68 | |
69 def test_blank_cvsroot_error_message | |
70 set_language_if_valid 'en' | |
71 repo = Repository::Cvs.new( | |
72 :project => @project, | |
73 :identifier => 'test', | |
74 :log_encoding => 'UTF-8', | |
75 :url => MODULE_NAME | |
76 ) | |
77 assert !repo.save | |
78 assert_include "CVSROOT can't be blank", | |
79 repo.errors.full_messages | |
80 end | |
81 | |
82 def test_blank_cvsroot_error_message_fr | |
83 set_language_if_valid 'fr' | |
84 str = "CVSROOT doit \xc3\xaatre renseign\xc3\xa9(e)" | |
85 str.force_encoding('UTF-8') if str.respond_to?(:force_encoding) | |
86 repo = Repository::Cvs.new( | |
87 :project => @project, | |
88 :identifier => 'test', | |
89 :log_encoding => 'UTF-8', | |
90 :path_encoding => '', | |
91 :url => MODULE_NAME, | |
92 :root_url => '' | |
93 ) | |
94 assert !repo.save | |
95 assert_include str, repo.errors.full_messages | |
96 end | |
97 | |
98 if File.directory?(REPOSITORY_PATH) | |
99 def test_fetch_changesets_from_scratch | |
100 assert_equal 0, @repository.changesets.count | |
101 @repository.fetch_changesets | |
102 @project.reload | |
103 | |
104 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
105 assert_equal 16, @repository.filechanges.count | |
106 assert_not_nil @repository.changesets.find_by_comments('Two files changed') | |
107 | |
108 r2 = @repository.changesets.find_by_revision('2') | |
109 assert_equal 'v1-20071213-162510', r2.scmid | |
110 end | |
111 | |
112 def test_fetch_changesets_incremental | |
113 assert_equal 0, @repository.changesets.count | |
114 @repository.fetch_changesets | |
115 @project.reload | |
116 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
117 | |
118 # Remove changesets with revision > 3 | |
119 @repository.changesets.all.each {|c| c.destroy if c.revision.to_i > 3} | |
120 @project.reload | |
121 assert_equal 3, @repository.changesets.count | |
122 assert_equal %w|3 2 1|, @repository.changesets.all.collect(&:revision) | |
123 | |
124 rev3_commit = @repository.changesets.reorder('committed_on DESC').first | |
125 assert_equal '3', rev3_commit.revision | |
126 # 2007-12-14 01:27:22 +0900 | |
127 rev3_committed_on = Time.gm(2007, 12, 13, 16, 27, 22) | |
128 assert_equal 'HEAD-20071213-162722', rev3_commit.scmid | |
129 assert_equal rev3_committed_on, rev3_commit.committed_on | |
130 latest_rev = @repository.latest_changeset | |
131 assert_equal rev3_committed_on, latest_rev.committed_on | |
132 | |
133 @repository.fetch_changesets | |
134 @project.reload | |
135 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
136 assert_equal %w|7 6 5 4 3 2 1|, @repository.changesets.all.collect(&:revision) | |
137 rev5_commit = @repository.changesets.find_by_revision('5') | |
138 assert_equal 'HEAD-20071213-163001', rev5_commit.scmid | |
139 # 2007-12-14 01:30:01 +0900 | |
140 rev5_committed_on = Time.gm(2007, 12, 13, 16, 30, 1) | |
141 assert_equal rev5_committed_on, rev5_commit.committed_on | |
142 end | |
143 | |
144 def test_deleted_files_should_not_be_listed | |
145 assert_equal 0, @repository.changesets.count | |
146 @repository.fetch_changesets | |
147 @project.reload | |
148 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
149 | |
150 entries = @repository.entries('sources') | |
151 assert entries.detect {|e| e.name == 'watchers_controller.rb'} | |
152 assert_nil entries.detect {|e| e.name == 'welcome_controller.rb'} | |
153 end | |
154 | |
155 def test_entries_rev3 | |
156 assert_equal 0, @repository.changesets.count | |
157 @repository.fetch_changesets | |
158 @project.reload | |
159 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
160 entries = @repository.entries('', '3') | |
161 assert_kind_of Redmine::Scm::Adapters::Entries, entries | |
162 assert_equal 3, entries.size | |
163 assert_equal entries[2].name, "README" | |
164 assert_equal entries[2].lastrev.time, Time.gm(2007, 12, 13, 16, 27, 22) | |
165 assert_equal entries[2].lastrev.identifier, '3' | |
166 assert_equal entries[2].lastrev.revision, '3' | |
167 assert_equal entries[2].lastrev.author, 'LANG' | |
168 end | |
169 | |
170 def test_entries_invalid_path | |
171 assert_equal 0, @repository.changesets.count | |
172 @repository.fetch_changesets | |
173 @project.reload | |
174 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
175 assert_nil @repository.entries('missing') | |
176 assert_nil @repository.entries('missing', '3') | |
177 end | |
178 | |
179 def test_entries_invalid_revision | |
180 assert_equal 0, @repository.changesets.count | |
181 @repository.fetch_changesets | |
182 @project.reload | |
183 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
184 assert_nil @repository.entries('', '123') | |
185 end | |
186 | |
187 def test_cat | |
188 assert_equal 0, @repository.changesets.count | |
189 @repository.fetch_changesets | |
190 @project.reload | |
191 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
192 buf = @repository.cat('README') | |
193 assert buf | |
194 lines = buf.split("\n") | |
195 assert_equal 3, lines.length | |
196 buf = lines[1].gsub(/\r$/, "") | |
197 assert_equal 'with one change', buf | |
198 buf = @repository.cat('README', '1') | |
199 assert buf | |
200 lines = buf.split("\n") | |
201 assert_equal 1, lines.length | |
202 buf = lines[0].gsub(/\r$/, "") | |
203 assert_equal 'CVS test repository', buf | |
204 assert_nil @repository.cat('missing.rb') | |
205 | |
206 # sources/welcome_controller.rb is removed at revision 5. | |
207 assert @repository.cat('sources/welcome_controller.rb', '4') | |
208 assert @repository.cat('sources/welcome_controller.rb', '5').blank? | |
209 | |
210 # invalid revision | |
211 assert @repository.cat('README', '123').blank? | |
212 end | |
213 | |
214 def test_annotate | |
215 assert_equal 0, @repository.changesets.count | |
216 @repository.fetch_changesets | |
217 @project.reload | |
218 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
219 ann = @repository.annotate('README') | |
220 assert ann | |
221 assert_equal 3, ann.revisions.length | |
222 assert_equal '1.2', ann.revisions[1].revision | |
223 assert_equal 'LANG', ann.revisions[1].author | |
224 assert_equal 'with one change', ann.lines[1] | |
225 | |
226 ann = @repository.annotate('README', '1') | |
227 assert ann | |
228 assert_equal 1, ann.revisions.length | |
229 assert_equal '1.1', ann.revisions[0].revision | |
230 assert_equal 'LANG', ann.revisions[0].author | |
231 assert_equal 'CVS test repository', ann.lines[0] | |
232 | |
233 # invalid revision | |
234 assert_nil @repository.annotate('README', '123') | |
235 end | |
236 | |
237 else | |
238 puts "CVS test repository NOT FOUND. Skipping unit tests !!!" | |
239 def test_fake; assert true end | |
240 end | |
241 end |