Chris@0
|
1 # redMine - project management software
|
Chris@0
|
2 # Copyright (C) 2006-2008 Jean-Philippe Lang
|
Chris@0
|
3 #
|
Chris@0
|
4 # This program is free software; you can redistribute it and/or
|
Chris@0
|
5 # modify it under the terms of the GNU General Public License
|
Chris@0
|
6 # as published by the Free Software Foundation; either version 2
|
Chris@0
|
7 # of the License, or (at your option) any later version.
|
Chris@0
|
8 #
|
Chris@0
|
9 # This program is distributed in the hope that it will be useful,
|
Chris@0
|
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
Chris@0
|
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
Chris@0
|
12 # GNU General Public License for more details.
|
Chris@0
|
13 #
|
Chris@0
|
14 # You should have received a copy of the GNU General Public License
|
Chris@0
|
15 # along with this program; if not, write to the Free Software
|
Chris@0
|
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
Chris@0
|
17
|
Chris@0
|
18 require File.dirname(__FILE__) + '/../test_helper'
|
Chris@0
|
19 require 'repositories_controller'
|
Chris@0
|
20
|
Chris@0
|
21 # Re-raise errors caught by the controller.
|
Chris@0
|
22 class RepositoriesController; def rescue_action(e) raise e end; end
|
Chris@0
|
23
|
Chris@0
|
24 class RepositoriesCvsControllerTest < ActionController::TestCase
|
Chris@0
|
25
|
Chris@0
|
26 # No '..' in the repository path
|
Chris@0
|
27 REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/cvs_repository'
|
Chris@0
|
28 REPOSITORY_PATH.gsub!(/\//, "\\") if Redmine::Platform.mswin?
|
Chris@0
|
29 # CVS module
|
Chris@0
|
30 MODULE_NAME = 'test'
|
Chris@0
|
31
|
Chris@0
|
32 def setup
|
Chris@0
|
33 @controller = RepositoriesController.new
|
Chris@0
|
34 @request = ActionController::TestRequest.new
|
Chris@0
|
35 @response = ActionController::TestResponse.new
|
Chris@0
|
36 Setting.default_language = 'en'
|
Chris@0
|
37 User.current = nil
|
Chris@0
|
38
|
Chris@0
|
39 @project = Project.find(1)
|
Chris@0
|
40 @project.repository = Repository::Cvs.create(:root_url => REPOSITORY_PATH,
|
Chris@0
|
41 :url => MODULE_NAME)
|
Chris@0
|
42 end
|
Chris@0
|
43
|
Chris@0
|
44 if File.directory?(REPOSITORY_PATH)
|
Chris@0
|
45 def test_show
|
Chris@0
|
46 get :show, :id => 1
|
Chris@0
|
47 assert_response :success
|
Chris@0
|
48 assert_template 'show'
|
Chris@0
|
49 assert_not_nil assigns(:entries)
|
Chris@0
|
50 assert_not_nil assigns(:changesets)
|
Chris@0
|
51 end
|
Chris@0
|
52
|
Chris@0
|
53 def test_browse_root
|
Chris@0
|
54 get :show, :id => 1
|
Chris@0
|
55 assert_response :success
|
Chris@0
|
56 assert_template 'show'
|
Chris@0
|
57 assert_not_nil assigns(:entries)
|
Chris@0
|
58 assert_equal 3, assigns(:entries).size
|
Chris@0
|
59
|
Chris@0
|
60 entry = assigns(:entries).detect {|e| e.name == 'images'}
|
Chris@0
|
61 assert_equal 'dir', entry.kind
|
Chris@0
|
62
|
Chris@0
|
63 entry = assigns(:entries).detect {|e| e.name == 'README'}
|
Chris@0
|
64 assert_equal 'file', entry.kind
|
Chris@0
|
65 end
|
Chris@0
|
66
|
Chris@0
|
67 def test_browse_directory
|
Chris@0
|
68 get :show, :id => 1, :path => ['images']
|
Chris@0
|
69 assert_response :success
|
Chris@0
|
70 assert_template 'show'
|
Chris@0
|
71 assert_not_nil assigns(:entries)
|
Chris@0
|
72 assert_equal ['add.png', 'delete.png', 'edit.png'], assigns(:entries).collect(&:name)
|
Chris@0
|
73 entry = assigns(:entries).detect {|e| e.name == 'edit.png'}
|
Chris@0
|
74 assert_not_nil entry
|
Chris@0
|
75 assert_equal 'file', entry.kind
|
Chris@0
|
76 assert_equal 'images/edit.png', entry.path
|
Chris@0
|
77 end
|
Chris@0
|
78
|
Chris@0
|
79 def test_browse_at_given_revision
|
Chris@0
|
80 Project.find(1).repository.fetch_changesets
|
Chris@0
|
81 get :show, :id => 1, :path => ['images'], :rev => 1
|
Chris@0
|
82 assert_response :success
|
Chris@0
|
83 assert_template 'show'
|
Chris@0
|
84 assert_not_nil assigns(:entries)
|
Chris@0
|
85 assert_equal ['delete.png', 'edit.png'], assigns(:entries).collect(&:name)
|
Chris@0
|
86 end
|
Chris@0
|
87
|
Chris@0
|
88 def test_entry
|
Chris@0
|
89 get :entry, :id => 1, :path => ['sources', 'watchers_controller.rb']
|
Chris@0
|
90 assert_response :success
|
Chris@0
|
91 assert_template 'entry'
|
Chris@0
|
92 assert_no_tag :tag => 'td', :attributes => { :class => /line-code/},
|
Chris@0
|
93 :content => /before_filter/
|
Chris@0
|
94 end
|
Chris@0
|
95
|
Chris@0
|
96 def test_entry_at_given_revision
|
Chris@0
|
97 # changesets must be loaded
|
Chris@0
|
98 Project.find(1).repository.fetch_changesets
|
Chris@0
|
99 get :entry, :id => 1, :path => ['sources', 'watchers_controller.rb'], :rev => 2
|
Chris@0
|
100 assert_response :success
|
Chris@0
|
101 assert_template 'entry'
|
Chris@0
|
102 # this line was removed in r3
|
Chris@0
|
103 assert_tag :tag => 'td', :attributes => { :class => /line-code/},
|
Chris@0
|
104 :content => /before_filter/
|
Chris@0
|
105 end
|
Chris@0
|
106
|
Chris@0
|
107 def test_entry_not_found
|
Chris@0
|
108 get :entry, :id => 1, :path => ['sources', 'zzz.c']
|
Chris@0
|
109 assert_tag :tag => 'div', :attributes => { :class => /error/ },
|
Chris@0
|
110 :content => /The entry or revision was not found in the repository/
|
Chris@0
|
111 end
|
Chris@0
|
112
|
Chris@0
|
113 def test_entry_download
|
Chris@0
|
114 get :entry, :id => 1, :path => ['sources', 'watchers_controller.rb'], :format => 'raw'
|
Chris@0
|
115 assert_response :success
|
Chris@0
|
116 end
|
Chris@0
|
117
|
Chris@0
|
118 def test_directory_entry
|
Chris@0
|
119 get :entry, :id => 1, :path => ['sources']
|
Chris@0
|
120 assert_response :success
|
Chris@0
|
121 assert_template 'show'
|
Chris@0
|
122 assert_not_nil assigns(:entry)
|
Chris@0
|
123 assert_equal 'sources', assigns(:entry).name
|
Chris@0
|
124 end
|
Chris@0
|
125
|
Chris@0
|
126 def test_diff
|
Chris@0
|
127 Project.find(1).repository.fetch_changesets
|
Chris@0
|
128 get :diff, :id => 1, :rev => 3, :type => 'inline'
|
Chris@0
|
129 assert_response :success
|
Chris@0
|
130 assert_template 'diff'
|
Chris@0
|
131 assert_tag :tag => 'td', :attributes => { :class => 'line-code diff_out' },
|
Chris@0
|
132 :content => /watched.remove_watcher/
|
Chris@0
|
133 assert_tag :tag => 'td', :attributes => { :class => 'line-code diff_in' },
|
Chris@0
|
134 :content => /watched.remove_all_watcher/
|
Chris@0
|
135 end
|
Chris@0
|
136
|
Chris@0
|
137 def test_annotate
|
Chris@0
|
138 Project.find(1).repository.fetch_changesets
|
Chris@0
|
139 get :annotate, :id => 1, :path => ['sources', 'watchers_controller.rb']
|
Chris@0
|
140 assert_response :success
|
Chris@0
|
141 assert_template 'annotate'
|
Chris@0
|
142 # 1.1 line
|
Chris@0
|
143 assert_tag :tag => 'th', :attributes => { :class => 'line-num' },
|
Chris@0
|
144 :content => '18',
|
Chris@0
|
145 :sibling => { :tag => 'td', :attributes => { :class => 'revision' },
|
Chris@0
|
146 :content => /1.1/,
|
Chris@0
|
147 :sibling => { :tag => 'td', :attributes => { :class => 'author' },
|
Chris@0
|
148 :content => /LANG/
|
Chris@0
|
149 }
|
Chris@0
|
150 }
|
Chris@0
|
151 # 1.2 line
|
Chris@0
|
152 assert_tag :tag => 'th', :attributes => { :class => 'line-num' },
|
Chris@0
|
153 :content => '32',
|
Chris@0
|
154 :sibling => { :tag => 'td', :attributes => { :class => 'revision' },
|
Chris@0
|
155 :content => /1.2/,
|
Chris@0
|
156 :sibling => { :tag => 'td', :attributes => { :class => 'author' },
|
Chris@0
|
157 :content => /LANG/
|
Chris@0
|
158 }
|
Chris@0
|
159 }
|
Chris@0
|
160 end
|
Chris@0
|
161 else
|
Chris@0
|
162 puts "CVS test repository NOT FOUND. Skipping functional tests !!!"
|
Chris@0
|
163 def test_fake; assert true end
|
Chris@0
|
164 end
|
Chris@0
|
165 end
|