Sha256: bec0f9f5dd816524c4a1114020f137e861ce04ebe346e31e3bec7d63d8c2e83f

Contents?: true

Size: 1.69 KB

Versions: 6

Compression:

Stored size: 1.69 KB

Contents

require File.expand_path '../../test_helper', __dir__

# Storage Blob Class
class TestCopyBlob < Minitest::Test
  # This class posesses the test cases for the requests of copying blobs.
  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_success
    @blob_client.stub :copy_blob, @blob_copy_result do
      assert_equal @blob_copy_result, @service.copy_blob('destination_container', 'destination_blob', 'source_container', 'source_blob')
      assert_equal @blob_copy_result, @service.copy_object('destination_container', 'destination_blob', 'source_container', 'source_blob')
    end
  end

  def test_copy_blob_http_exception
    http_exception = ->(*) { raise Azure::Core::Http::HTTPError.new(@mocked_response) }
    @blob_client.stub :copy_blob, http_exception do
      assert_raises(Azure::Core::Http::HTTPError) do
        @service.copy_blob('destination_container', 'destination_blob', 'source_container', 'source_blob')
        @service.copy_object('destination_container', 'destination_blob', 'source_container', 'source_blob')
      end
    end
  end

  def test_copy_blob_mock
    assert_equal @blob_copy_result, @mock_service.copy_blob('destination_container', 'destination_blob', 'source_container', 'source_blob')
    assert_equal @blob_copy_result, @mock_service.copy_object('destination_container', 'destination_blob', 'source_container', 'source_blob')
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gitlab-fog-azure-rm-2.2.0 test/requests/storage/test_copy_blob.rb
gitlab-fog-azure-rm-2.1.0 test/requests/storage/test_copy_blob.rb
gitlab-fog-azure-rm-2.0.1 test/requests/storage/test_copy_blob.rb
gitlab-fog-azure-rm-2.0.0 test/requests/storage/test_copy_blob.rb
gitlab-fog-azure-rm-1.9.1 test/requests/storage/test_copy_blob.rb
gitlab-fog-azure-rm-1.9.0 test/requests/storage/test_copy_blob.rb