Revision 1297:0a574315af3e .svn/pristine/9a

View differences:

.svn/pristine/9a/9a10c680e3ed6512b76eea2309743889991eb4fc.svn-base
1
# Redmine - project management software
2
# Copyright (C) 2006-2012  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.find(: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.find(:first, :order => 'committed_on DESC')
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
.svn/pristine/9a/9a4ae899a69fa8b0415ce4a0f4d85618005a45cd.svn-base
1
Message-ID: <50AA00C6.4070108@gmail.com>
2
Date: Mon, 19 Nov 2012 18:49:58 +0900
3
From: John Smith <JSmith@somenet.foo>
4
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.15) Gecko/20101027 Fedora/3.0.10-1.fc12 Lightning/1.0b1 Thunderbird/3.0.10
5
MIME-Version: 1.0
6
To: redmine@somenet.foo
7
Subject: test
8
Content-Type: multipart/mixed;
9
 boundary="------------030104060902010800050907"
10

  
11
This is a multi-part message in MIME format.
12
--------------030104060902010800050907
13
Content-Type: text/plain; charset=ISO-2022-JP
14
Content-Transfer-Encoding: 7bit
15

  
16
test
17

  
18
--------------030104060902010800050907
19
Content-Type: text/plain;
20
 name="=?ISO-2022-JP?B?GyRCJUYlOSVIGyhCLnR4dA==?="
21
Content-Transfer-Encoding: base64
22
Content-Disposition: attachment;
23
 filename*=ISO-2022-JP''%1B%24%42%25%46%25%39%25%48%1B%28%42%2E%74%78%74
24

  
25
dGVzdAo=
26
--------------030104060902010800050907--
.svn/pristine/9a/9a6608eaf5694578bc6922b2d4af3ade833f39df.svn-base
1
<%= labelled_form_for @user do |f| %>
2
  <%= render :partial => 'form', :locals => { :f => f } %>
3
  <% if @user.active? && email_delivery_enabled? -%>
4
    <p><label><%= check_box_tag 'send_information', 1, true %> <%= l(:label_send_information) %></label></p>
5
  <% end -%>
6
  <p><%= submit_tag l(:button_save) %></p>
7
<% end %>
.svn/pristine/9a/9ac63e5e929a03c7b0bb70dd2dff7c8190cd753b.svn-base
1
<div class="contextual">
2
<%= watcher_tag(@news, User.current) %>
3
<%= link_to(l(:button_edit),
4
      edit_news_path(@news),
5
      :class => 'icon icon-edit',
6
      :accesskey => accesskey(:edit),
7
      :onclick => '$("#edit-news").show(); return false;') if User.current.allowed_to?(:manage_news, @project) %>
8
<%= delete_link news_path(@news) if User.current.allowed_to?(:manage_news, @project) %>
9
</div>
10

  
11
<h2><%= avatar(@news.author, :size => "24") %><%=h @news.title %></h2>
12

  
13
<% if authorize_for('news', 'edit') %>
14
<div id="edit-news" style="display:none;">
15
<%= labelled_form_for :news, @news, :url => news_path(@news),
16
                                           :html => { :id => 'news-form', :multipart => true, :method => :put } do |f| %>
17
<%= render :partial => 'form', :locals => { :f => f } %>
18
<%= submit_tag l(:button_save) %>
19
<%= preview_link preview_news_path(:project_id => @project, :id => @news), 'news-form' %> |
20
<%= link_to l(:button_cancel), "#", :onclick => '$("#edit-news").hide(); return false;' %>
21
<% end %>
22
<div id="preview" class="wiki"></div>
23
</div>
24
<% end %>
25

  
26
<p><% unless @news.summary.blank? %><em><%=h @news.summary %></em><br /><% end %>
27
<span class="author"><%= authoring @news.created_on, @news.author %></span></p>
28
<div class="wiki">
29
<%= textilizable(@news, :description) %>
30
</div>
31
<%= link_to_attachments @news %>
32
<br />
33

  
34
<div id="comments" style="margin-bottom:16px;">
35
<h3 class="comments"><%= l(:label_comment_plural) %></h3>
36
<% @comments.each do |comment| %>
37
    <% next if comment.new_record? %>
38
    <div class="contextual">
39
    <%= link_to_if_authorized image_tag('delete.png'), {:controller => 'comments', :action => 'destroy', :id => @news, :comment_id => comment},
40
                                                       :data => {:confirm => l(:text_are_you_sure)}, :method => :delete, :title => l(:button_delete) %>
41
    </div>
42
    <h4><%= avatar(comment.author, :size => "24") %><%= authoring comment.created_on, comment.author %></h4>
43
    <%= textilizable(comment.comments) %>
44
<% end if @comments.any? %>
45
</div>
46

  
47
<% if @news.commentable? %>
48
<p><%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments" %></p>
49
<%= form_tag({:controller => 'comments', :action => 'create', :id => @news}, :id => "add_comment_form", :style => "display:none;") do %>
50
<div class="box">
51
    <%= text_area 'comment', 'comments', :cols => 80, :rows => 15, :class => 'wiki-edit' %>
52
    <%= wikitoolbar_for 'comment_comments' %>
53
</div>
54
<p><%= submit_tag l(:button_add) %></p>
55
<% end %>
56
<% end %>
57

  
58
<% html_title @news.title -%>
59

  
60
<% content_for :header_tags do %>
61
  <%= stylesheet_link_tag 'scm' %>
62
<% end %>
.svn/pristine/9a/9acb372c97a0d954d509a96216c2a1e2cb11ffa9.svn-base
1
$('#content').html('<%= escape_javascript(render :template => 'repositories/new', :formats => [:html]) %>');

Also available in: Unified diff