;]
[askyou.git] / test / unit / repository_filesystem_test.rb
blob7688dd4ee31bb27bcbff0943605708bdfba9d807
1 # redMine - project management software
2 # Copyright (C) 2006-2007  Jean-Philippe Lang
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.
18 require File.dirname(__FILE__) + '/../test_helper'
20 class RepositoryFilesystemTest < ActiveSupport::TestCase
21   fixtures :projects
22   
23   # No '..' in the repository path
24   REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/filesystem_repository'
25   
26   def setup
27     @project = Project.find(1)
28     Setting.enabled_scm << 'Filesystem' unless Setting.enabled_scm.include?('Filesystem')
29     assert @repository = Repository::Filesystem.create(:project => @project, :url => REPOSITORY_PATH)
30   end
31   
32   if File.directory?(REPOSITORY_PATH)  
33     def test_fetch_changesets
34       @repository.fetch_changesets
35       @repository.reload
36       
37       assert_equal 0, @repository.changesets.count
38       assert_equal 0, @repository.changes.count
39     end
40         
41     def test_entries
42       assert_equal 2, @repository.entries("", 2).size
43       assert_equal 2, @repository.entries("dir", 3).size
44     end
46     def test_cat
47       assert_equal "TEST CAT\n", @repository.scm.cat("test")
48     end
50   else
51     puts "Filesystem test repository NOT FOUND. Skipping unit tests !!! See doc/RUNNING_TESTS."
52     def test_fake; assert true end
53   end
54 end