Skip to content

Commit

Permalink
update some of the install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
David Chelimsky committed Jan 23, 2010
1 parent 057d264 commit 9569381
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 152 deletions.
250 changes: 102 additions & 148 deletions lib/generators/rspec/install/templates/lib/tasks/rspec.rake
Original file line number Diff line number Diff line change
@@ -1,29 +1,26 @@
gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f >= 1.9
rspec_gem_dir = nil
Dir["#{RAILS_ROOT}/vendor/gems/*"].each do |subdir|
rspec_gem_dir = subdir if subdir.gsub("#{RAILS_ROOT}/vendor/gems/","") =~ /^(\w+-)?rspec-(\d+)/ && File.exist?("#{subdir}/lib/spec/rake/spectask.rb")
end
rspec_plugin_dir = File.expand_path(File.dirname(__FILE__) + '/../../vendor/plugins/rspec')

if rspec_gem_dir && (test ?d, rspec_plugin_dir)
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"
end

if rspec_gem_dir
$LOAD_PATH.unshift("#{rspec_gem_dir}/lib")
elsif File.exist?(rspec_plugin_dir)
$LOAD_PATH.unshift("#{rspec_plugin_dir}/lib")
end

# Don't load rspec if running "rake gems:*"
unless ARGV.any? {|a| a =~ /^gems/}
# rspec_gem_dir = nil
# Dir["#{Rails.root}/vendor/gems/*"].each do |subdir|
# rspec_gem_dir = subdir if subdir.gsub("#{Rails.root}/vendor/gems/","") =~ /^(\w+-)?rspec-(\d+)/ && File.exist?("#{subdir}/lib/spec/rake/spectask.rb")
# end
# rspec_plugin_dir = File.expand_path(File.dirname(__FILE__) + '/../../vendor/plugins/rspec')

# if rspec_gem_dir && (test ?d, rspec_plugin_dir)
# 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"
# end

# if rspec_gem_dir
# $LOAD_PATH.unshift("#{rspec_gem_dir}/lib")
# elsif File.exist?(rspec_plugin_dir)
# $LOAD_PATH.unshift("#{rspec_plugin_dir}/lib")
# end

begin
require 'spec/rake/spectask'
rescue MissingSourceFile
module Spec
module Rake
class SpecTask
require 'rspec/core'
require 'rspec/core/rake_task'
rescue MissingSourceFile
module Rspec
module Core
class RakeTask
def initialize(name)
task name do
# if rspec-rails is a configured gem, this will output helpful material and exit ...
Expand All @@ -47,136 +44,93 @@ end

Rake.application.instance_variable_get('@tasks').delete('default')

spec_prereq = File.exist?(File.join(RAILS_ROOT, 'config', 'database.yml')) ? "db:test:prepare" : :noop
spec_prereq = File.exist?(File.join(Rails.root, 'config', 'database.yml')) ? "db:test:prepare" : :noop
task :noop do
end

task :default => :spec
task :stats => "spec:statsetup"

desc "Run all specs in spec directory (excluding plugin specs)"
Spec::Rake::SpecTask.new(:spec => spec_prereq) do |t|
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
t.spec_files = FileList['spec/**/*_spec.rb']
end

namespace :spec do
desc "Run all specs in spec directory with RCov (excluding plugin specs)"
Spec::Rake::SpecTask.new(:rcov) do |t|
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
t.spec_files = FileList['spec/**/*_spec.rb']
t.rcov = true
t.rcov_opts = lambda do
IO.readlines("#{RAILS_ROOT}/spec/rcov.opts").map {|l| l.chomp.split " "}.flatten
end
end

desc "Print Specdoc for all specs (excluding plugin specs)"
Spec::Rake::SpecTask.new(:doc) do |t|
t.spec_opts = ["--format", "specdoc", "--dry-run"]
t.spec_files = FileList['spec/**/*_spec.rb']
end

desc "Print Specdoc for all plugin examples"
Spec::Rake::SpecTask.new(:plugin_doc) do |t|
t.spec_opts = ["--format", "specdoc", "--dry-run"]
t.spec_files = FileList['vendor/plugins/**/spec/**/*_spec.rb'].exclude('vendor/plugins/rspec/*')
end

[:models, :controllers, :views, :helpers, :lib, :integration].each do |sub|
desc "Run the code examples in spec/#{sub}"
Spec::Rake::SpecTask.new(sub => spec_prereq) do |t|
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
t.spec_files = FileList["spec/#{sub}/**/*_spec.rb"]
end
end

desc "Run the code examples in vendor/plugins (except RSpec's own)"
Spec::Rake::SpecTask.new(:plugins => spec_prereq) do |t|
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
t.spec_files = FileList['vendor/plugins/**/spec/**/*_spec.rb'].exclude('vendor/plugins/rspec/*').exclude("vendor/plugins/rspec-rails/*")
end

namespace :plugins do
desc "Runs the examples for rspec_on_rails"
Spec::Rake::SpecTask.new(:rspec_on_rails) do |t|
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
t.spec_files = FileList['vendor/plugins/rspec-rails/spec/**/*_spec.rb']
end
end
Rspec::Core::RakeTask.new(:spec => spec_prereq)

# namespace :spec do
# desc "Run all specs in spec directory with RCov (excluding plugin specs)"
# Rspec::Core::RakeTask.new(:rcov) do |t|
# t.spec_opts = ['--options', "\"#{Rails.root}/spec/spec.opts\""]
# t.spec_files = FileList['spec/**/*_spec.rb']
# t.rcov = true
# t.rcov_opts = lambda do
# IO.readlines("#{Rails.root}/spec/rcov.opts").map {|l| l.chomp.split " "}.flatten
# end
# end

# desc "Print Rspecdoc for all specs (excluding plugin specs)"
# Rspec::Core::RakeTask.new(:doc) do |t|
# t.spec_opts = ["--format", "specdoc", "--dry-run"]
# t.spec_files = FileList['spec/**/*_spec.rb']
# end

# desc "Print Rspecdoc for all plugin examples"
# Rspec::Core::RakeTask.new(:plugin_doc) do |t|
# t.spec_opts = ["--format", "specdoc", "--dry-run"]
# t.spec_files = FileList['vendor/plugins/**/spec/**/*_spec.rb'].exclude('vendor/plugins/rspec/*')
# end

# [:models, :controllers, :views, :helpers, :lib, :integration].each do |sub|
# desc "Run the code examples in spec/#{sub}"
# Rspec::Core::RakeTask.new(sub => spec_prereq) do |t|
# t.spec_opts = ['--options', "\"#{Rails.root}/spec/spec.opts\""]
# t.spec_files = FileList["spec/#{sub}/**/*_spec.rb"]
# end
# end

# desc "Run the code examples in vendor/plugins (except RRspec's own)"
# Rspec::Core::RakeTask.new(:plugins => spec_prereq) do |t|
# t.spec_opts = ['--options', "\"#{Rails.root}/spec/spec.opts\""]
# t.spec_files = FileList['vendor/plugins/**/spec/**/*_spec.rb'].exclude('vendor/plugins/rspec/*').exclude("vendor/plugins/rspec-rails/*")
# end

# namespace :plugins do
# desc "Runs the examples for rspec_on_rails"
# Rspec::Core::RakeTask.new(:rspec_on_rails) do |t|
# t.spec_opts = ['--options', "\"#{Rails.root}/spec/spec.opts\""]
# t.spec_files = FileList['vendor/plugins/rspec-rails/spec/**/*_spec.rb']
# end
# end

# Setup specs for stats
task :statsetup do
require 'code_statistics'
::STATS_DIRECTORIES << %w(Model\ specs spec/models) if File.exist?('spec/models')
::STATS_DIRECTORIES << %w(View\ specs spec/views) if File.exist?('spec/views')
::STATS_DIRECTORIES << %w(Controller\ specs spec/controllers) if File.exist?('spec/controllers')
::STATS_DIRECTORIES << %w(Helper\ specs spec/helpers) if File.exist?('spec/helpers')
::STATS_DIRECTORIES << %w(Library\ specs spec/lib) if File.exist?('spec/lib')
::STATS_DIRECTORIES << %w(Routing\ specs spec/routing) if File.exist?('spec/routing')
::STATS_DIRECTORIES << %w(Integration\ specs spec/integration) if File.exist?('spec/integration')
::CodeStatistics::TEST_TYPES << "Model specs" if File.exist?('spec/models')
::CodeStatistics::TEST_TYPES << "View specs" if File.exist?('spec/views')
::CodeStatistics::TEST_TYPES << "Controller specs" if File.exist?('spec/controllers')
::CodeStatistics::TEST_TYPES << "Helper specs" if File.exist?('spec/helpers')
::CodeStatistics::TEST_TYPES << "Library specs" if File.exist?('spec/lib')
::CodeStatistics::TEST_TYPES << "Routing specs" if File.exist?('spec/routing')
::CodeStatistics::TEST_TYPES << "Integration specs" if File.exist?('spec/integration')
end

namespace :db do
namespace :fixtures do
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."
task :load => :environment do
ActiveRecord::Base.establish_connection(Rails.env)
base_dir = File.join(Rails.root, 'spec', 'fixtures')
fixtures_dir = ENV['FIXTURES_DIR'] ? File.join(base_dir, ENV['FIXTURES_DIR']) : base_dir

require 'active_record/fixtures'
(ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/).map {|f| File.join(fixtures_dir, f) } : Dir.glob(File.join(fixtures_dir, '*.{yml,csv}'))).each do |fixture_file|
Fixtures.create_fixtures(File.dirname(fixture_file), File.basename(fixture_file, '.*'))
end
end
end
end

namespace :server do
daemonized_server_pid = File.expand_path("#{RAILS_ROOT}/tmp/pids/spec_server.pid")

desc "start spec_server."
task :start do
if File.exist?(daemonized_server_pid)
$stderr.puts "spec_server is already running."
else
$stderr.puts %Q{Starting up spec_server ...}
FileUtils.mkdir_p('tmp/pids') unless test ?d, 'tmp/pids'
system("ruby", "script/spec_server", "--daemon", "--pid", daemonized_server_pid)
end
end

desc "stop spec_server."
task :stop do
unless File.exist?(daemonized_server_pid)
$stderr.puts "No server running."
else
$stderr.puts "Shutting down spec_server ..."
system("kill", "-s", "TERM", File.read(daemonized_server_pid).strip) &&
File.delete(daemonized_server_pid)
end
end

desc "restart spec_server."
task :restart => [:stop, :start]

desc "check if spec server is running"
task :status do
if File.exist?(daemonized_server_pid)
$stderr.puts %Q{spec_server is running (PID: #{File.read(daemonized_server_pid).gsub("\n","")})}
else
$stderr.puts "No server running."
end
end
end
end

end
# task :statsetup do
# require 'code_statistics'
# ::STATS_DIRECTORIES << %w(Model\ specs spec/models) if File.exist?('spec/models')
# ::STATS_DIRECTORIES << %w(View\ specs spec/views) if File.exist?('spec/views')
# ::STATS_DIRECTORIES << %w(Controller\ specs spec/controllers) if File.exist?('spec/controllers')
# ::STATS_DIRECTORIES << %w(Helper\ specs spec/helpers) if File.exist?('spec/helpers')
# ::STATS_DIRECTORIES << %w(Library\ specs spec/lib) if File.exist?('spec/lib')
# ::STATS_DIRECTORIES << %w(Routing\ specs spec/routing) if File.exist?('spec/routing')
# ::STATS_DIRECTORIES << %w(Integration\ specs spec/integration) if File.exist?('spec/integration')
# ::CodeStatistics::TEST_TYPES << "Model specs" if File.exist?('spec/models')
# ::CodeStatistics::TEST_TYPES << "View specs" if File.exist?('spec/views')
# ::CodeStatistics::TEST_TYPES << "Controller specs" if File.exist?('spec/controllers')
# ::CodeStatistics::TEST_TYPES << "Helper specs" if File.exist?('spec/helpers')
# ::CodeStatistics::TEST_TYPES << "Library specs" if File.exist?('spec/lib')
# ::CodeStatistics::TEST_TYPES << "Routing specs" if File.exist?('spec/routing')
# ::CodeStatistics::TEST_TYPES << "Integration specs" if File.exist?('spec/integration')
# end

# namespace :db do
# namespace :fixtures do
# 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."
# task :load => :environment do
# ActiveRecord::Base.establish_connection(Rails.env)
# base_dir = File.join(Rails.root, 'spec', 'fixtures')
# fixtures_dir = ENV['FIXTURES_DIR'] ? File.join(base_dir, ENV['FIXTURES_DIR']) : base_dir

# require 'active_record/fixtures'
# (ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/).map {|f| File.join(fixtures_dir, f) } : Dir.glob(File.join(fixtures_dir, '*.{yml,csv}'))).each do |fixture_file|
# Fixtures.create_fixtures(File.dirname(fixture_file), File.basename(fixture_file, '.*'))
# end
# end
# end
# end
# end
9 changes: 5 additions & 4 deletions lib/generators/rspec/install/templates/spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}

Rspec::Core.configure do |config|
config.include Rspec::Matchers
# If you're not using ActiveRecord you should remove these
# lines, delete config/database.yml and disable :active_record
# in your config/boot.rb
config.use_transactional_fixtures = true
config.use_instantiated_fixtures = false
config.fixture_path = RAILS_ROOT + '/spec/fixtures/'
# config.use_transactional_fixtures = true
# config.use_instantiated_fixtures = false
# config.fixture_path = RAILS_ROOT + '/spec/fixtures/'

# == Fixtures
#
Expand Down Expand Up @@ -46,5 +47,5 @@
#
# == Notes
#
# For more information take a look at Spec::Runner::Configuration and Spec::Runner
# For more information take a look at Rspec::Core::Configuration
end

0 comments on commit 9569381

Please sign in to comment.