##// END OF EJS Templates
remove unneeded Relation#all from RepositoryCvsTest...
Toshi MARUYAMA -
r12299:4ab85ff0cb2d
parent child
Show More
@@ -1,242 +1,243
1 1 # Redmine - project management software
2 2 # Copyright (C) 2006-2013 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 require File.expand_path('../../test_helper', __FILE__)
19 19 require 'pp'
20 20 class RepositoryCvsTest < ActiveSupport::TestCase
21 21 fixtures :projects
22 22
23 23 include Redmine::I18n
24 24
25 25 REPOSITORY_PATH = Rails.root.join('tmp/test/cvs_repository').to_s
26 26 REPOSITORY_PATH.gsub!(/\//, "\\") if Redmine::Platform.mswin?
27 27 # CVS module
28 28 MODULE_NAME = 'test'
29 29 CHANGESETS_NUM = 7
30 30
31 31 def setup
32 32 @project = Project.find(3)
33 33 @repository = Repository::Cvs.create(:project => @project,
34 34 :root_url => REPOSITORY_PATH,
35 35 :url => MODULE_NAME,
36 36 :log_encoding => 'UTF-8')
37 37 assert @repository
38 38 end
39 39
40 40 def test_blank_module_error_message
41 41 set_language_if_valid 'en'
42 42 repo = Repository::Cvs.new(
43 43 :project => @project,
44 44 :identifier => 'test',
45 45 :log_encoding => 'UTF-8',
46 46 :root_url => REPOSITORY_PATH
47 47 )
48 48 assert !repo.save
49 49 assert_include "Module can't be blank",
50 50 repo.errors.full_messages
51 51 end
52 52
53 53 def test_blank_module_error_message_fr
54 54 set_language_if_valid 'fr'
55 55 str = "Module doit \xc3\xaatre renseign\xc3\xa9(e)"
56 56 str.force_encoding('UTF-8') if str.respond_to?(:force_encoding)
57 57 repo = Repository::Cvs.new(
58 58 :project => @project,
59 59 :identifier => 'test',
60 60 :log_encoding => 'UTF-8',
61 61 :path_encoding => '',
62 62 :url => '',
63 63 :root_url => REPOSITORY_PATH
64 64 )
65 65 assert !repo.save
66 66 assert_include str, repo.errors.full_messages
67 67 end
68 68
69 69 def test_blank_cvsroot_error_message
70 70 set_language_if_valid 'en'
71 71 repo = Repository::Cvs.new(
72 72 :project => @project,
73 73 :identifier => 'test',
74 74 :log_encoding => 'UTF-8',
75 75 :url => MODULE_NAME
76 76 )
77 77 assert !repo.save
78 78 assert_include "CVSROOT can't be blank",
79 79 repo.errors.full_messages
80 80 end
81 81
82 82 def test_blank_cvsroot_error_message_fr
83 83 set_language_if_valid 'fr'
84 84 str = "CVSROOT doit \xc3\xaatre renseign\xc3\xa9(e)"
85 85 str.force_encoding('UTF-8') if str.respond_to?(:force_encoding)
86 86 repo = Repository::Cvs.new(
87 87 :project => @project,
88 88 :identifier => 'test',
89 89 :log_encoding => 'UTF-8',
90 90 :path_encoding => '',
91 91 :url => MODULE_NAME,
92 92 :root_url => ''
93 93 )
94 94 assert !repo.save
95 95 assert_include str, repo.errors.full_messages
96 96 end
97 97
98 98 if File.directory?(REPOSITORY_PATH)
99 99 def test_fetch_changesets_from_scratch
100 100 assert_equal 0, @repository.changesets.count
101 101 @repository.fetch_changesets
102 102 @project.reload
103 103
104 104 assert_equal CHANGESETS_NUM, @repository.changesets.count
105 105 assert_equal 16, @repository.filechanges.count
106 106 assert_not_nil @repository.changesets.find_by_comments('Two files changed')
107 107
108 108 r2 = @repository.changesets.find_by_revision('2')
109 109 assert_equal 'v1-20071213-162510', r2.scmid
110 110 end
111 111
112 112 def test_fetch_changesets_incremental
113 113 assert_equal 0, @repository.changesets.count
114 114 @repository.fetch_changesets
115 115 @project.reload
116 116 assert_equal CHANGESETS_NUM, @repository.changesets.count
117 117
118 118 # Remove changesets with revision > 3
119 @repository.changesets.all.each {|c| c.destroy if c.revision.to_i > 3}
119 @repository.changesets.each {|c| c.destroy if c.revision.to_i > 3}
120 120 @project.reload
121 121 @repository.reload
122 122 assert_equal 3, @repository.changesets.count
123 assert_equal %w|3 2 1|, @repository.changesets.all.collect(&:revision)
123 assert_equal %w|3 2 1|, @repository.changesets.collect(&:revision)
124 124
125 125 rev3_commit = @repository.changesets.reorder('committed_on DESC').first
126 126 assert_equal '3', rev3_commit.revision
127 127 # 2007-12-14 01:27:22 +0900
128 128 rev3_committed_on = Time.gm(2007, 12, 13, 16, 27, 22)
129 129 assert_equal 'HEAD-20071213-162722', rev3_commit.scmid
130 130 assert_equal rev3_committed_on, rev3_commit.committed_on
131 131 latest_rev = @repository.latest_changeset
132 132 assert_equal rev3_committed_on, latest_rev.committed_on
133 133
134 134 @repository.fetch_changesets
135 135 @project.reload
136 @repository.reload
136 137 assert_equal CHANGESETS_NUM, @repository.changesets.count
137 assert_equal %w|7 6 5 4 3 2 1|, @repository.changesets.all.collect(&:revision)
138 assert_equal %w|7 6 5 4 3 2 1|, @repository.changesets.collect(&:revision)
138 139 rev5_commit = @repository.changesets.find_by_revision('5')
139 140 assert_equal 'HEAD-20071213-163001', rev5_commit.scmid
140 141 # 2007-12-14 01:30:01 +0900
141 142 rev5_committed_on = Time.gm(2007, 12, 13, 16, 30, 1)
142 143 assert_equal rev5_committed_on, rev5_commit.committed_on
143 144 end
144 145
145 146 def test_deleted_files_should_not_be_listed
146 147 assert_equal 0, @repository.changesets.count
147 148 @repository.fetch_changesets
148 149 @project.reload
149 150 assert_equal CHANGESETS_NUM, @repository.changesets.count
150 151
151 152 entries = @repository.entries('sources')
152 153 assert entries.detect {|e| e.name == 'watchers_controller.rb'}
153 154 assert_nil entries.detect {|e| e.name == 'welcome_controller.rb'}
154 155 end
155 156
156 157 def test_entries_rev3
157 158 assert_equal 0, @repository.changesets.count
158 159 @repository.fetch_changesets
159 160 @project.reload
160 161 assert_equal CHANGESETS_NUM, @repository.changesets.count
161 162 entries = @repository.entries('', '3')
162 163 assert_kind_of Redmine::Scm::Adapters::Entries, entries
163 164 assert_equal 3, entries.size
164 165 assert_equal entries[2].name, "README"
165 166 assert_equal entries[2].lastrev.time, Time.gm(2007, 12, 13, 16, 27, 22)
166 167 assert_equal entries[2].lastrev.identifier, '3'
167 168 assert_equal entries[2].lastrev.revision, '3'
168 169 assert_equal entries[2].lastrev.author, 'LANG'
169 170 end
170 171
171 172 def test_entries_invalid_path
172 173 assert_equal 0, @repository.changesets.count
173 174 @repository.fetch_changesets
174 175 @project.reload
175 176 assert_equal CHANGESETS_NUM, @repository.changesets.count
176 177 assert_nil @repository.entries('missing')
177 178 assert_nil @repository.entries('missing', '3')
178 179 end
179 180
180 181 def test_entries_invalid_revision
181 182 assert_equal 0, @repository.changesets.count
182 183 @repository.fetch_changesets
183 184 @project.reload
184 185 assert_equal CHANGESETS_NUM, @repository.changesets.count
185 186 assert_nil @repository.entries('', '123')
186 187 end
187 188
188 189 def test_cat
189 190 assert_equal 0, @repository.changesets.count
190 191 @repository.fetch_changesets
191 192 @project.reload
192 193 assert_equal CHANGESETS_NUM, @repository.changesets.count
193 194 buf = @repository.cat('README')
194 195 assert buf
195 196 lines = buf.split("\n")
196 197 assert_equal 3, lines.length
197 198 buf = lines[1].gsub(/\r$/, "")
198 199 assert_equal 'with one change', buf
199 200 buf = @repository.cat('README', '1')
200 201 assert buf
201 202 lines = buf.split("\n")
202 203 assert_equal 1, lines.length
203 204 buf = lines[0].gsub(/\r$/, "")
204 205 assert_equal 'CVS test repository', buf
205 206 assert_nil @repository.cat('missing.rb')
206 207
207 208 # sources/welcome_controller.rb is removed at revision 5.
208 209 assert @repository.cat('sources/welcome_controller.rb', '4')
209 210 assert @repository.cat('sources/welcome_controller.rb', '5').blank?
210 211
211 212 # invalid revision
212 213 assert @repository.cat('README', '123').blank?
213 214 end
214 215
215 216 def test_annotate
216 217 assert_equal 0, @repository.changesets.count
217 218 @repository.fetch_changesets
218 219 @project.reload
219 220 assert_equal CHANGESETS_NUM, @repository.changesets.count
220 221 ann = @repository.annotate('README')
221 222 assert ann
222 223 assert_equal 3, ann.revisions.length
223 224 assert_equal '1.2', ann.revisions[1].revision
224 225 assert_equal 'LANG', ann.revisions[1].author
225 226 assert_equal 'with one change', ann.lines[1]
226 227
227 228 ann = @repository.annotate('README', '1')
228 229 assert ann
229 230 assert_equal 1, ann.revisions.length
230 231 assert_equal '1.1', ann.revisions[0].revision
231 232 assert_equal 'LANG', ann.revisions[0].author
232 233 assert_equal 'CVS test repository', ann.lines[0]
233 234
234 235 # invalid revision
235 236 assert_nil @repository.annotate('README', '123')
236 237 end
237 238
238 239 else
239 240 puts "CVS test repository NOT FOUND. Skipping unit tests !!!"
240 241 def test_fake; assert true end
241 242 end
242 243 end
General Comments 0
You need to be logged in to leave comments. Login now