Mercurial > hg > soundsoftware-site
comparison .svn/pristine/ba/bad1f699e1f3a4c780f1a2113b7720aca97c767e.svn-base @ 1517:dffacf8a6908 redmine-2.5
Update to Redmine SVN revision 13367 on 2.5-stable branch
author | Chris Cannam |
---|---|
date | Tue, 09 Sep 2014 09:29:00 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1516:b450a9d58aed | 1517:dffacf8a6908 |
---|---|
1 # Redmine - project management software | |
2 # Copyright (C) 2006-2014 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.each {|c| c.destroy if c.revision.to_i > 3} | |
120 @project.reload | |
121 @repository.reload | |
122 assert_equal 3, @repository.changesets.count | |
123 assert_equal %w|3 2 1|, @repository.changesets.collect(&:revision) | |
124 | |
125 rev3_commit = @repository.changesets.reorder('committed_on DESC').first | |
126 assert_equal '3', rev3_commit.revision | |
127 # 2007-12-14 01:27:22 +0900 | |
128 rev3_committed_on = Time.gm(2007, 12, 13, 16, 27, 22) | |
129 assert_equal 'HEAD-20071213-162722', rev3_commit.scmid | |
130 assert_equal rev3_committed_on, rev3_commit.committed_on | |
131 latest_rev = @repository.latest_changeset | |
132 assert_equal rev3_committed_on, latest_rev.committed_on | |
133 | |
134 @repository.fetch_changesets | |
135 @project.reload | |
136 @repository.reload | |
137 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
138 assert_equal %w|7 6 5 4 3 2 1|, @repository.changesets.collect(&:revision) | |
139 rev5_commit = @repository.changesets.find_by_revision('5') | |
140 assert_equal 'HEAD-20071213-163001', rev5_commit.scmid | |
141 # 2007-12-14 01:30:01 +0900 | |
142 rev5_committed_on = Time.gm(2007, 12, 13, 16, 30, 1) | |
143 assert_equal rev5_committed_on, rev5_commit.committed_on | |
144 end | |
145 | |
146 def test_deleted_files_should_not_be_listed | |
147 assert_equal 0, @repository.changesets.count | |
148 @repository.fetch_changesets | |
149 @project.reload | |
150 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
151 | |
152 entries = @repository.entries('sources') | |
153 assert entries.detect {|e| e.name == 'watchers_controller.rb'} | |
154 assert_nil entries.detect {|e| e.name == 'welcome_controller.rb'} | |
155 end | |
156 | |
157 def test_entries_rev3 | |
158 assert_equal 0, @repository.changesets.count | |
159 @repository.fetch_changesets | |
160 @project.reload | |
161 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
162 entries = @repository.entries('', '3') | |
163 assert_kind_of Redmine::Scm::Adapters::Entries, entries | |
164 assert_equal 3, entries.size | |
165 assert_equal entries[2].name, "README" | |
166 assert_equal entries[2].lastrev.time, Time.gm(2007, 12, 13, 16, 27, 22) | |
167 assert_equal entries[2].lastrev.identifier, '3' | |
168 assert_equal entries[2].lastrev.revision, '3' | |
169 assert_equal entries[2].lastrev.author, 'LANG' | |
170 end | |
171 | |
172 def test_entries_invalid_path | |
173 assert_equal 0, @repository.changesets.count | |
174 @repository.fetch_changesets | |
175 @project.reload | |
176 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
177 assert_nil @repository.entries('missing') | |
178 assert_nil @repository.entries('missing', '3') | |
179 end | |
180 | |
181 def test_entries_invalid_revision | |
182 assert_equal 0, @repository.changesets.count | |
183 @repository.fetch_changesets | |
184 @project.reload | |
185 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
186 assert_nil @repository.entries('', '123') | |
187 end | |
188 | |
189 def test_cat | |
190 assert_equal 0, @repository.changesets.count | |
191 @repository.fetch_changesets | |
192 @project.reload | |
193 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
194 buf = @repository.cat('README') | |
195 assert buf | |
196 lines = buf.split("\n") | |
197 assert_equal 3, lines.length | |
198 buf = lines[1].gsub(/\r$/, "") | |
199 assert_equal 'with one change', buf | |
200 buf = @repository.cat('README', '1') | |
201 assert buf | |
202 lines = buf.split("\n") | |
203 assert_equal 1, lines.length | |
204 buf = lines[0].gsub(/\r$/, "") | |
205 assert_equal 'CVS test repository', buf | |
206 assert_nil @repository.cat('missing.rb') | |
207 | |
208 # sources/welcome_controller.rb is removed at revision 5. | |
209 assert @repository.cat('sources/welcome_controller.rb', '4') | |
210 assert @repository.cat('sources/welcome_controller.rb', '5').blank? | |
211 | |
212 # invalid revision | |
213 assert @repository.cat('README', '123').blank? | |
214 end | |
215 | |
216 def test_annotate | |
217 assert_equal 0, @repository.changesets.count | |
218 @repository.fetch_changesets | |
219 @project.reload | |
220 assert_equal CHANGESETS_NUM, @repository.changesets.count | |
221 ann = @repository.annotate('README') | |
222 assert ann | |
223 assert_equal 3, ann.revisions.length | |
224 assert_equal '1.2', ann.revisions[1].revision | |
225 assert_equal 'LANG', ann.revisions[1].author | |
226 assert_equal 'with one change', ann.lines[1] | |
227 | |
228 ann = @repository.annotate('README', '1') | |
229 assert ann | |
230 assert_equal 1, ann.revisions.length | |
231 assert_equal '1.1', ann.revisions[0].revision | |
232 assert_equal 'LANG', ann.revisions[0].author | |
233 assert_equal 'CVS test repository', ann.lines[0] | |
234 | |
235 # invalid revision | |
236 assert_nil @repository.annotate('README', '123') | |
237 end | |
238 | |
239 else | |
240 puts "CVS test repository NOT FOUND. Skipping unit tests !!!" | |
241 def test_fake; assert true end | |
242 end | |
243 end |