Sha256: ffc03c2eeab9a1f0b473d5bdf5b3e278282edcd0aae4b31a031fa851736de803
Contents?: true
Size: 1.34 KB
Versions: 6
Compression:
Stored size: 1.34 KB
Contents
require File.expand_path '../../test_helper', __dir__ # Storage Blob Class class TestCopyBlobFromUri < Minitest::Test # This class posesses the test cases for the requests of copying blobs from uri. def setup Fog.mock! @mock_service = Fog::AzureRM::Storage.new(storage_account_credentials) Fog.unmock! @mocked_response = mocked_storage_http_error @service = Fog::AzureRM::Storage.new(storage_account_credentials) @blob_client = @service.instance_variable_get(:@blob_client) @blob_copy_result = ApiStub::Requests::Storage::File.blob_copy_result end def test_copy_blob_from_uri_success @blob_client.stub :copy_blob_from_uri, @blob_copy_result do assert_equal @blob_copy_result, @service.copy_blob_from_uri('destination_container', 'destination_blob', 'source_uri') end end def test_copy_blob_from_uri_http_exception http_exception = ->(*) { raise Azure::Core::Http::HTTPError.new(@mocked_response) } @blob_client.stub :copy_blob_from_uri, http_exception do assert_raises(Azure::Core::Http::HTTPError) do @service.copy_blob_from_uri('destination_container', 'destination_blob', 'source_uri') end end end def test_copy_blob_from_uri_mock assert_equal @blob_copy_result, @mock_service.copy_blob_from_uri('destination_container', 'destination_blob', 'source_uri') end end
Version data entries
6 entries across 6 versions & 1 rubygems