source: ruby/trunk/lib/tasks/rspec.rake@ 297

Last change on this file since 297 was 297, checked in by KOBAYASHI, Shinji, 15 years ago

hand merge

File size: 6.9 KB
Line 
1gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f >= 1.9
2rspec_gem_dir = nil
3Dir["#{RAILS_ROOT}/vendor/gems/*"].each do |subdir|
4 rspec_gem_dir = subdir if subdir.gsub("#{RAILS_ROOT}/vendor/gems/","") =~ /^(\w+-)?rspec-(\d+)/ && File.exist?("#{subdir}/lib/spec/rake/spectask.rb")
5end
6rspec_plugin_dir = File.expand_path(File.dirname(__FILE__) + '/../../vendor/plugins/rspec')
7
8if rspec_gem_dir && (test ?d, rspec_plugin_dir)
9 raise "\n#{'*'*50}\nYou have rspec installed in both vendor/gems and vendor/plugins\nPlease pick one and dispose of the other.\n#{'*'*50}\n\n"
10end
11
12if rspec_gem_dir
13 $LOAD_PATH.unshift("#{rspec_gem_dir}/lib")
14elsif File.exist?(rspec_plugin_dir)
15 $LOAD_PATH.unshift("#{rspec_plugin_dir}/lib")
16end
17
18# Don't load rspec if running "rake gems:*"
19unless ARGV.any? {|a| a =~ /^gems/}
20
21begin
22 require 'spec/rake/spectask'
23rescue MissingSourceFile
24 module Spec
25 module Rake
26 class SpecTask
27 def initialize(name)
28 task name do
29 # if rspec-rails is a configured gem, this will output helpful material and exit ...
30 require File.expand_path(File.dirname(__FILE__) + "/../../config/environment")
31
32 # ... otherwise, do this:
33 raise <<-MSG
34
35#{"*" * 80}
36* You are trying to run an rspec rake task defined in
37* #{__FILE__},
38* but rspec can not be found in vendor/gems, vendor/plugins or system gems.
39#{"*" * 80}
40MSG
41 end
42 end
43 end
44 end
45 end
46end
47
48Rake.application.instance_variable_get('@tasks').delete('default')
49
50spec_prereq = File.exist?(File.join(RAILS_ROOT, 'config', 'database.yml')) ? "db:test:prepare" : :noop
51task :noop do
52end
53
54task :default => :spec
55task :stats => "spec:statsetup"
56
57desc "Run all specs in spec directory (excluding plugin specs)"
58Spec::Rake::SpecTask.new(:spec => spec_prereq) do |t|
59 t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
60 t.spec_files = FileList['spec/**/*_spec.rb']
61end
62
63namespace :spec do
64 desc "Run all specs in spec directory with RCov (excluding plugin specs)"
65 Spec::Rake::SpecTask.new(:rcov) do |t|
66 t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
67 t.spec_files = FileList['spec/**/*_spec.rb']
68 t.rcov = true
69 t.rcov_opts = lambda do
70 IO.readlines("#{RAILS_ROOT}/spec/rcov.opts").map {|l| l.chomp.split " "}.flatten
71 end
72 end
73
74 desc "Print Specdoc for all specs (excluding plugin specs)"
75 Spec::Rake::SpecTask.new(:doc) do |t|
76 t.spec_opts = ["--format", "specdoc", "--dry-run"]
77 t.spec_files = FileList['spec/**/*_spec.rb']
78 end
79
80 desc "Print Specdoc for all plugin examples"
81 Spec::Rake::SpecTask.new(:plugin_doc) do |t|
82 t.spec_opts = ["--format", "specdoc", "--dry-run"]
83 t.spec_files = FileList['vendor/plugins/**/spec/**/*_spec.rb'].exclude('vendor/plugins/rspec/*')
84 end
85
86 [:models, :controllers, :views, :helpers, :lib, :integration].each do |sub|
87 desc "Run the code examples in spec/#{sub}"
88 Spec::Rake::SpecTask.new(sub => spec_prereq) do |t|
89 t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
90 t.spec_files = FileList["spec/#{sub}/**/*_spec.rb"]
91 end
92 end
93
94 desc "Run the code examples in vendor/plugins (except RSpec's own)"
95 Spec::Rake::SpecTask.new(:plugins => spec_prereq) do |t|
96 t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
97 t.spec_files = FileList['vendor/plugins/**/spec/**/*_spec.rb'].exclude('vendor/plugins/rspec/*').exclude("vendor/plugins/rspec-rails/*")
98 end
99
100 namespace :plugins do
101 desc "Runs the examples for rspec_on_rails"
102 Spec::Rake::SpecTask.new(:rspec_on_rails) do |t|
103 t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
104 t.spec_files = FileList['vendor/plugins/rspec-rails/spec/**/*_spec.rb']
105 end
106 end
107
108 # Setup specs for stats
109 task :statsetup do
110 require 'code_statistics'
111 ::STATS_DIRECTORIES << %w(Model\ specs spec/models) if File.exist?('spec/models')
112 ::STATS_DIRECTORIES << %w(View\ specs spec/views) if File.exist?('spec/views')
113 ::STATS_DIRECTORIES << %w(Controller\ specs spec/controllers) if File.exist?('spec/controllers')
114 ::STATS_DIRECTORIES << %w(Helper\ specs spec/helpers) if File.exist?('spec/helpers')
115 ::STATS_DIRECTORIES << %w(Library\ specs spec/lib) if File.exist?('spec/lib')
116 ::STATS_DIRECTORIES << %w(Routing\ specs spec/routing) if File.exist?('spec/routing')
117 ::STATS_DIRECTORIES << %w(Integration\ specs spec/integration) if File.exist?('spec/integration')
118 ::CodeStatistics::TEST_TYPES << "Model specs" if File.exist?('spec/models')
119 ::CodeStatistics::TEST_TYPES << "View specs" if File.exist?('spec/views')
120 ::CodeStatistics::TEST_TYPES << "Controller specs" if File.exist?('spec/controllers')
121 ::CodeStatistics::TEST_TYPES << "Helper specs" if File.exist?('spec/helpers')
122 ::CodeStatistics::TEST_TYPES << "Library specs" if File.exist?('spec/lib')
123 ::CodeStatistics::TEST_TYPES << "Routing specs" if File.exist?('spec/routing')
124 ::CodeStatistics::TEST_TYPES << "Integration specs" if File.exist?('spec/integration')
125 end
126
127 namespace :db do
128 namespace :fixtures do
129 desc "Load fixtures (from spec/fixtures) into the current environment's database. Load specific fixtures using FIXTURES=x,y. Load from subdirectory in test/fixtures using FIXTURES_DIR=z."
130 task :load => :environment do
131 ActiveRecord::Base.establish_connection(Rails.env)
132 base_dir = File.join(Rails.root, 'spec', 'fixtures')
133 fixtures_dir = ENV['FIXTURES_DIR'] ? File.join(base_dir, ENV['FIXTURES_DIR']) : base_dir
134
135 require 'active_record/fixtures'
136 (ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/).map {|f| File.join(fixtures_dir, f) } : Dir.glob(File.join(fixtures_dir, '*.{yml,csv}'))).each do |fixture_file|
137 Fixtures.create_fixtures(File.dirname(fixture_file), File.basename(fixture_file, '.*'))
138 end
139 end
140 end
141 end
142
143 namespace :server do
144 daemonized_server_pid = File.expand_path("#{RAILS_ROOT}/tmp/pids/spec_server.pid")
145
146 desc "start spec_server."
147 task :start do
148 if File.exist?(daemonized_server_pid)
149 $stderr.puts "spec_server is already running."
150 else
151 $stderr.puts %Q{Starting up spec_server ...}
152 FileUtils.mkdir_p('tmp/pids') unless test ?d, 'tmp/pids'
153 system("ruby", "script/spec_server", "--daemon", "--pid", daemonized_server_pid)
154 end
155 end
156
157 desc "stop spec_server."
158 task :stop do
159 unless File.exist?(daemonized_server_pid)
160 $stderr.puts "No server running."
161 else
162 $stderr.puts "Shutting down spec_server ..."
163 system("kill", "-s", "TERM", File.read(daemonized_server_pid).strip) &&
164 File.delete(daemonized_server_pid)
165 end
166 end
167
168 desc "restart spec_server."
169 task :restart => [:stop, :start]
170
171 desc "check if spec server is running"
172 task :status do
173 if File.exist?(daemonized_server_pid)
174 $stderr.puts %Q{spec_server is running (PID: #{File.read(daemonized_server_pid).gsub("\n","")})}
175 else
176 $stderr.puts "No server running."
177 end
178 end
179 end
180end
181
182end
Note: See TracBrowser for help on using the repository browser.