1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/test/test_helper.rb

65 lines
2.3 KiB
Ruby
Raw Normal View History

2017-07-21 17:12:29 -04:00
$LOAD_PATH << File.expand_path("../../app/controllers", __FILE__)
$LOAD_PATH << File.expand_path("../../app/models", __FILE__)
$LOAD_PATH << File.expand_path("../../app/jobs", __FILE__)
2017-07-21 17:12:29 -04:00
2017-07-01 06:06:08 -04:00
require "bundler/setup"
require "active_support"
2017-07-04 12:10:53 -04:00
require "active_support/test_case"
2017-07-01 06:06:08 -04:00
require "active_support/testing/autorun"
require "byebug"
2017-07-22 11:00:16 -04:00
require "active_job"
ActiveJob::Base.queue_adapter = :test
ActiveJob::Base.logger = nil
require "active_storage"
2017-07-09 12:03:13 -04:00
require "active_storage/service"
require "yaml"
SERVICE_CONFIGURATIONS = begin
YAML.load_file(File.expand_path("../service/configurations.yml", __FILE__)).deep_symbolize_keys
rescue Errno::ENOENT
puts "Missing service configuration file in test/service/configurations.yml"
{}
end
require "active_storage/service/disk_service"
require "tmpdir"
ActiveStorage::Blob.service = ActiveStorage::Service::DiskService.new(root: Dir.mktmpdir("active_storage_tests"))
2017-07-09 11:04:28 -04:00
ActiveStorage::Service.logger = ActiveSupport::Logger.new(STDOUT)
2017-07-03 15:06:09 -04:00
ActiveStorage.verifier = ActiveSupport::MessageVerifier.new("Testing")
2017-07-11 12:53:17 -04:00
2017-07-04 12:10:53 -04:00
class ActiveSupport::TestCase
private
def create_blob(data: "Hello world!", filename: "hello.txt", content_type: "text/plain")
ActiveStorage::Blob.create_after_upload! io: StringIO.new(data), filename: filename, content_type: content_type
2017-07-04 12:10:53 -04:00
end
def create_image_blob(filename: "racecar.jpg", content_type: "image/jpeg")
ActiveStorage::Blob.create_after_upload! \
io: File.open(File.expand_path("../fixtures/files/#{filename}", __FILE__)),
filename: filename, content_type: content_type
end
def assert_same_image(fixture_filename, variant)
assert_equal \
File.binread(File.expand_path("../fixtures/files/#{fixture_filename}", __FILE__)),
File.binread(variant.service.send(:path_for, variant.key))
end
2017-07-05 09:18:50 -04:00
end
require "action_controller"
require "action_controller/test_case"
class ActionController::TestCase
Routes = ActionDispatch::Routing::RouteSet.new.tap do |routes|
routes.draw do
# FIXME: Hacky way to avoid having to instantiate the real engine
eval(File.readlines(File.expand_path("../../config/routes.rb", __FILE__)).slice(1..-2).join("\n"))
end
end
end
require "active_storage/attached"
ActiveRecord::Base.send :extend, ActiveStorage::Attached::Macros