rails--rails/test/test_helper.rb

92 lines
3.2 KiB
Ruby
Raw Normal View History

2017-07-21 21:12:29 +00: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 21:12:29 +00:00
2017-07-01 10:06:08 +00:00
require "bundler/setup"
require "active_support"
2017-07-04 16:10:53 +00:00
require "active_support/test_case"
2017-07-01 10:06:08 +00:00
require "active_support/testing/autorun"
require "byebug"
2017-07-22 15:00:16 +00:00
require "active_job"
ActiveJob::Base.queue_adapter = :test
ActiveJob::Base.logger = nil
require "active_storage"
2017-07-09 16:03:13 +00: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
2017-07-24 19:35:36 +00:00
require "active_storage/blob"
require "active_storage/service/disk_service"
require "tmpdir"
ActiveStorage::Blob.service = ActiveStorage::Service::DiskService.new(root: Dir.mktmpdir("active_storage_tests"))
2017-07-09 15:04:28 +00:00
ActiveStorage::Service.logger = ActiveSupport::Logger.new(STDOUT)
2017-07-03 19:06:09 +00:00
ActiveStorage.verifier = ActiveSupport::MessageVerifier.new("Testing")
2017-07-11 16:53:17 +00:00
2017-07-04 16:10:53 +00:00
class ActiveSupport::TestCase
self.file_fixture_path = File.expand_path("../fixtures/files", __FILE__)
2017-07-04 16:10:53 +00:00
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 16:10:53 +00:00
end
def create_image_blob(filename: "racecar.jpg", content_type: "image/jpeg")
ActiveStorage::Blob.create_after_upload! \
io: file_fixture(filename).open,
filename: filename, content_type: content_type
end
def create_blob_before_direct_upload(filename: "hello.txt", byte_size:, checksum:, content_type: "text/plain")
ActiveStorage::Blob.create_before_direct_upload! filename: filename, byte_size: byte_size, checksum: checksum, content_type: content_type
end
def assert_equal_image_dimensions(fixture_filename, variant)
expected_image, actual_image = read_image_fixture(fixture_filename), read_image_variant(variant)
assert_equal expected_image.width, actual_image.width
assert_equal expected_image.height, actual_image.height
end
def assert_equal_image_colorspace(fixture_filename, variant)
expected_image, actual_image = read_image_fixture(fixture_filename), read_image_variant(variant)
assert_equal expected_image.colorspace, actual_image.colorspace
end
def read_image_fixture(fixture_filename)
MiniMagick::Image.open file_fixture(fixture_filename)
end
def read_image_variant(variant)
MiniMagick::Image.open variant.service.send(:path_for, variant.key)
end
2017-07-05 13:18:50 +00: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
require "global_id"
GlobalID.app = "ActiveStorageExampleApp"
ActiveRecord::Base.send :include, GlobalID::Identification