fog/fog-azure-rm

View on GitHub
lib/fog/azurerm/requests/storage/copy_blob_from_uri.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
46%
module Fog
  module Storage
    class AzureRM
      # This class provides the actual implementation for service calls.
      class Real
        def copy_blob_from_uri(destination_container, destination_blob, source_blob_uri, options = {})
          options[:request_id] = SecureRandom.uuid
          msg = "Copying blob: #{source_blob_uri} to container #{destination_container} options: #{options}"
          Fog::Logger.debug msg

          begin
            copy_id, copy_status = @blob_client.copy_blob_from_uri(destination_container, destination_blob, source_blob_uri, options)
          rescue Azure::Core::Http::HTTPError => ex
            raise_azure_exception(ex, msg)
          end

          Fog::Logger.debug "Copying blob: x-ms-copy-id: #{copy_id}, x-ms-copy-status: #{copy_status}"
          [copy_id, copy_status]
        end
      end

      # This class provides the mock implementation for unit tests.
      class Mock
        def copy_blob_from_uri(*)
          %w(abc123 pending)
        end
      end
    end
  end
end