Sha256: 6e3fecb15bdc947470e2072c4ac237a72d28f1d882e938a402b9a3246a658c86

Contents?: true

Size: 1.58 KB

Versions: 5

Compression:

Stored size: 1.58 KB

Contents

ZIP_URL = "https://github.com/projectblacklight/blacklight-jetty/archive/v4.10.2.zip"

require 'jettywrapper'
require 'engine_cart/rake_task'

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |t|
  t.pattern =  'spec/**/*_spec.rb'
end

desc "Run test suite"
task :ci => 'blacklight:clean' do
  jetty_params = Jettywrapper.load_config('test')
  error = Jettywrapper.wrap(jetty_params) do
    Rake::Task["blacklight:fixtures"].invoke
    Rake::Task['blacklight:coverage'].invoke
  end
  raise "test failures: #{error}" if error
end

namespace :blacklight do
  desc "Load fixtures"
  task :fixtures => [:generate] do
    within_test_app do
      system "rake solr:marc:index_test_data RAILS_ENV=test"
      abort "Error running fixtures" unless $?.success?
    end
  end

  desc "Run tests with coverage"
  task :coverage do
    ENV['COVERAGE'] = 'true'
    Rake::Task["spec"].invoke
  end

  desc "Clean out the test rails app"
  task :clean => ['engine_cart:clean', 'jetty:clean'] do
  end

  desc "Create the test rails app"
  task :generate => ['engine_cart:generate'] do
  end

  task :server do
    if File.exists? 'spec/internal'
      within_test_app do
        system "bundle update"
      end
    else
      Rake::Task['engine_cart:generate'].invoke
    end

    unless File.exists? 'jetty'
      Rake::Task['jetty:clean'].invoke
    end

    jetty_params = Jettywrapper.load_config
    jetty_params[:startup_wait]= 60

    Jettywrapper.wrap(jetty_params) do
      within_test_app do
        system "rake solr:marc:index_test_data"
        system "bundle exec rails s"
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
blacklight-5.9.1 tasks/blacklight.rake
blacklight-5.9.0 tasks/blacklight.rake
blacklight-5.8.2 tasks/blacklight.rake
blacklight-5.8.1 tasks/blacklight.rake
blacklight-5.8.0 tasks/blacklight.rake