]> source.dussan.org Git - redmine.git/commitdiff
set "svn:eol-style" native to lib/tasks/testing.rake
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 24 Dec 2011 00:05:29 +0000 (00:05 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 24 Dec 2011 00:05:29 +0000 (00:05 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8331 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/tasks/testing.rake

index 28a2dfafc87037ecfd3acfd6df1ab130f213f3b4..933962e10cfdae6b4a35939ef273b7c86cfc79f0 100644 (file)
@@ -1,98 +1,98 @@
-### From http://svn.geekdaily.org/public/rails/plugins/generally_useful/tasks/coverage_via_rcov.rake\r
-\r
-namespace :test do\r
-  desc 'Measures test coverage'\r
-  task :coverage do\r
-    rm_f "coverage"\r
-    rm_f "coverage.data"\r
-    rcov = "rcov --rails --aggregate coverage.data --text-summary -Ilib --html --exclude gems/"\r
-    files = Dir.glob("test/**/*_test.rb").join(" ")\r
-    system("#{rcov} #{files}")\r
-    system("open coverage/index.html") if PLATFORM['darwin']\r
-  end\r
-\r
-  desc 'Run unit and functional scm tests'\r
-  task :scm do\r
-    errors = %w(test:scm:units test:scm:functionals).collect do |task|\r
-      begin\r
-        Rake::Task[task].invoke\r
-        nil\r
-      rescue => e\r
-        task\r
-      end\r
-    end.compact\r
-    abort "Errors running #{errors.to_sentence(:locale => :en)}!" if errors.any?\r
-  end\r
-\r
-  namespace :scm do\r
-    namespace :setup do\r
-      desc "Creates directory for test repositories"\r
-      task :create_dir do\r
-        FileUtils.mkdir_p Rails.root + '/tmp/test'\r
-      end\r
-\r
-      supported_scms = [:subversion, :cvs, :bazaar, :mercurial, :git, :darcs, :filesystem]\r
-\r
-      desc "Creates a test subversion repository"\r
-      task :subversion => :create_dir do\r
-        repo_path = "tmp/test/subversion_repository"\r
-        system "svnadmin create #{repo_path}"\r
-        system "gunzip < test/fixtures/repositories/subversion_repository.dump.gz | svnadmin load #{repo_path}"\r
-      end\r
-\r
-      desc "Creates a test mercurial repository"\r
-      task :mercurial => :create_dir do\r
-        repo_path = "tmp/test/mercurial_repository"\r
-        bundle_path = "test/fixtures/repositories/mercurial_repository.hg"\r
-        system "hg init #{repo_path}"\r
-        system "hg -R #{repo_path} pull #{bundle_path}"\r
-      end\r
-\r
-      (supported_scms - [:subversion, :mercurial]).each do |scm|\r
-        desc "Creates a test #{scm} repository"\r
-        task scm => :create_dir do\r
-          # system "gunzip < test/fixtures/repositories/#{scm}_repository.tar.gz | tar -xv -C tmp/test"\r
-          system "tar -xvz -C tmp/test -f test/fixtures/repositories/#{scm}_repository.tar.gz"\r
-        end\r
-      end\r
-\r
-      desc "Creates all test repositories"\r
-      task :all => supported_scms\r
-    end\r
-\r
-    desc "Updates installed test repositories"\r
-    task :update do\r
-      require 'fileutils'\r
-      Dir.glob("tmp/test/*_repository").each do |dir|\r
-        next unless File.basename(dir) =~ %r{^(.+)_repository$} && File.directory?(dir)\r
-        scm = $1\r
-        next unless fixture = Dir.glob("test/fixtures/repositories/#{scm}_repository.*").first\r
-        next if File.stat(dir).ctime > File.stat(fixture).mtime\r
-\r
-        FileUtils.rm_rf dir\r
-        Rake::Task["test:scm:setup:#{scm}"].execute\r
-      end\r
-    end\r
-\r
-    Rake::TestTask.new(:units => "db:test:prepare") do |t|\r
-      t.libs << "test"\r
-      t.verbose = true\r
-      t.test_files = FileList['test/unit/repository*_test.rb'] + FileList['test/unit/lib/redmine/scm/**/*_test.rb']\r
-    end\r
-    Rake::Task['test:scm:units'].comment = "Run the scm unit tests"\r
-\r
-    Rake::TestTask.new(:functionals => "db:test:prepare") do |t|\r
-      t.libs << "test"\r
-      t.verbose = true\r
-      t.test_files = FileList['test/functional/repositories*_test.rb']\r
-    end\r
-    Rake::Task['test:scm:functionals'].comment = "Run the scm functional tests"\r
-  end\r
-\r
-  Rake::TestTask.new(:rdm_routing) do |t|\r
-    t.libs << "test"\r
-    t.verbose = true\r
-    t.test_files = FileList['test/integration/routing/*_test.rb']\r
-  end\r
-  Rake::Task['test:rdm_routing'].comment = "Run the routing tests"\r
-end\r
+### From http://svn.geekdaily.org/public/rails/plugins/generally_useful/tasks/coverage_via_rcov.rake
+
+namespace :test do
+  desc 'Measures test coverage'
+  task :coverage do
+    rm_f "coverage"
+    rm_f "coverage.data"
+    rcov = "rcov --rails --aggregate coverage.data --text-summary -Ilib --html --exclude gems/"
+    files = Dir.glob("test/**/*_test.rb").join(" ")
+    system("#{rcov} #{files}")
+    system("open coverage/index.html") if PLATFORM['darwin']
+  end
+
+  desc 'Run unit and functional scm tests'
+  task :scm do
+    errors = %w(test:scm:units test:scm:functionals).collect do |task|
+      begin
+        Rake::Task[task].invoke
+        nil
+      rescue => e
+        task
+      end
+    end.compact
+    abort "Errors running #{errors.to_sentence(:locale => :en)}!" if errors.any?
+  end
+
+  namespace :scm do
+    namespace :setup do
+      desc "Creates directory for test repositories"
+      task :create_dir do
+        FileUtils.mkdir_p Rails.root + '/tmp/test'
+      end
+
+      supported_scms = [:subversion, :cvs, :bazaar, :mercurial, :git, :darcs, :filesystem]
+
+      desc "Creates a test subversion repository"
+      task :subversion => :create_dir do
+        repo_path = "tmp/test/subversion_repository"
+        system "svnadmin create #{repo_path}"
+        system "gunzip < test/fixtures/repositories/subversion_repository.dump.gz | svnadmin load #{repo_path}"
+      end
+
+      desc "Creates a test mercurial repository"
+      task :mercurial => :create_dir do
+        repo_path = "tmp/test/mercurial_repository"
+        bundle_path = "test/fixtures/repositories/mercurial_repository.hg"
+        system "hg init #{repo_path}"
+        system "hg -R #{repo_path} pull #{bundle_path}"
+      end
+
+      (supported_scms - [:subversion, :mercurial]).each do |scm|
+        desc "Creates a test #{scm} repository"
+        task scm => :create_dir do
+          # system "gunzip < test/fixtures/repositories/#{scm}_repository.tar.gz | tar -xv -C tmp/test"
+          system "tar -xvz -C tmp/test -f test/fixtures/repositories/#{scm}_repository.tar.gz"
+        end
+      end
+
+      desc "Creates all test repositories"
+      task :all => supported_scms
+    end
+
+    desc "Updates installed test repositories"
+    task :update do
+      require 'fileutils'
+      Dir.glob("tmp/test/*_repository").each do |dir|
+        next unless File.basename(dir) =~ %r{^(.+)_repository$} && File.directory?(dir)
+        scm = $1
+        next unless fixture = Dir.glob("test/fixtures/repositories/#{scm}_repository.*").first
+        next if File.stat(dir).ctime > File.stat(fixture).mtime
+
+        FileUtils.rm_rf dir
+        Rake::Task["test:scm:setup:#{scm}"].execute
+      end
+    end
+
+    Rake::TestTask.new(:units => "db:test:prepare") do |t|
+      t.libs << "test"
+      t.verbose = true
+      t.test_files = FileList['test/unit/repository*_test.rb'] + FileList['test/unit/lib/redmine/scm/**/*_test.rb']
+    end
+    Rake::Task['test:scm:units'].comment = "Run the scm unit tests"
+
+    Rake::TestTask.new(:functionals => "db:test:prepare") do |t|
+      t.libs << "test"
+      t.verbose = true
+      t.test_files = FileList['test/functional/repositories*_test.rb']
+    end
+    Rake::Task['test:scm:functionals'].comment = "Run the scm functional tests"
+  end
+
+  Rake::TestTask.new(:rdm_routing) do |t|
+    t.libs << "test"
+    t.verbose = true
+    t.test_files = FileList['test/integration/routing/*_test.rb']
+  end
+  Rake::Task['test:rdm_routing'].comment = "Run the routing tests"
+end