Sha256: 22e6917ccc7b1a2caf6dedbe0aded60912993dad0c2c281f0bfa0951de310bf3

Contents?: true

Size: 1.6 KB

Versions: 5

Compression:

Stored size: 1.6 KB

Contents

# frozen_string_literal: true

module DummyApp
  class RakeTasks
    include Rake::DSL

    def initialize(gem_root:, lib_name:)
      task :dummy_environment do
        ENV['RAILS_ENV'] = 'test'
        require lib_name
        require 'spree/testing_support/dummy_app'
        DummyApp.setup(
          gem_root: gem_root,
          lib_name: lib_name,
          auto_migrate: false
        )
      end
    end
  end
end

namespace :db do
  desc "Drops the test database"
  task drop: :dummy_environment do
    ActiveRecord::Tasks::DatabaseTasks.drop_current
  end

  desc "Creates the test database"
  task create: :dummy_environment do
    ActiveRecord::Tasks::DatabaseTasks.create_current
  end

  desc "Migrates the test database"
  task migrate: :dummy_environment do
    ActiveRecord::Migration.verbose = false

    # We want to simulate how migrations would be run if a user ran
    # railties:install:migrations and then db:migrate.
    # Migrations should be run one directory at a time
    ActiveRecord::Migrator.migrations_paths.each do |path|
      ActiveRecord::MigrationContext.new([path]).migrate
    end

    ActiveRecord::Base.clear_cache!
  end

  desc "Recreates the test database and re-runs all migrations"
  task reset: ['db:drop', 'db:create', 'db:migrate']
end

desc "Open a sandboxed console in the test environment"
task console: :dummy_environment do
  begin
    require 'pry'
    Rails.application.config.console = Pry
  rescue LoadError
  end

  require 'rails/commands'
  require 'rails/commands/console/console_command'
  Rails::Console.new(Rails.application, sandbox: true, environment: "test").start
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
solidus_core-4.3.4 lib/spree/testing_support/dummy_app/rake_tasks.rb
solidus_core-4.3.3 lib/spree/testing_support/dummy_app/rake_tasks.rb
solidus_core-4.3.2 lib/spree/testing_support/dummy_app/rake_tasks.rb
solidus_core-4.3.1 lib/spree/testing_support/dummy_app/rake_tasks.rb
solidus_core-4.3.0 lib/spree/testing_support/dummy_app/rake_tasks.rb