aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/test/test_helper.rb
diff options
context:
space:
mode:
authorAndrew White <andrew.white@unboxed.co>2018-03-26 14:36:39 +0100
committerAndrew White <andrew.white@unboxed.co>2018-04-06 20:07:52 +0100
commit9436c22e2aa9419f275186967a1b863bc3d01ecb (patch)
tree3a833e8e5f773d0f6668b44d15bceb644db932a3 /activestorage/test/test_helper.rb
parent03bd370c02a8fa83ab6dd01bdd99fe342c523b81 (diff)
downloadrails-9436c22e2aa9419f275186967a1b863bc3d01ecb.tar.gz
rails-9436c22e2aa9419f275186967a1b863bc3d01ecb.tar.bz2
rails-9436c22e2aa9419f275186967a1b863bc3d01ecb.zip
Use a current model to provide the host for service urls
Trying to pass the current request down to the service so that it can create full urls instead of paths makes the API messy so use a model based on ActiveSupport::CurrentAttributes to provide the current host to services that need it (primarily the disk service).
Diffstat (limited to 'activestorage/test/test_helper.rb')
-rw-r--r--activestorage/test/test_helper.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activestorage/test/test_helper.rb b/activestorage/test/test_helper.rb
index 043890832d..028874f374 100644
--- a/activestorage/test/test_helper.rb
+++ b/activestorage/test/test_helper.rb
@@ -41,6 +41,14 @@ ActiveStorage.verifier = ActiveSupport::MessageVerifier.new("Testing")
class ActiveSupport::TestCase
self.file_fixture_path = File.expand_path("fixtures/files", __dir__)
+ setup do
+ ActiveStorage::Current.host = "https://example.com"
+ end
+
+ teardown do
+ ActiveStorage::Current.reset
+ end
+
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