Sha256: b1640537e213811aded4ccb76a2782709c15b9759c1f094e543f4b58d7b49842

Contents?: true

Size: 1.15 KB

Versions: 1

Compression:

Stored size: 1.15 KB

Contents

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

# Storage Blob Class
class TestCommitBlobBlocks < Minitest::Test
  # This class posesses the test cases for the requests of committing blob blocks.
  def setup
    Fog.mock!
    @mock_service = Fog::Storage::AzureRM.new(storage_account_credentials)
    Fog.unmock!
    @mocked_response = mocked_storage_http_error

    @service = Fog::Storage::AzureRM.new(storage_account_credentials)
    @blob_client = @service.instance_variable_get(:@blob_client)
  end

  def test_commit_blob_blocks_success
    @blob_client.stub :commit_blob_blocks, true do
      assert @service.commit_blob_blocks('test_container', 'test_blob', [])
    end
  end

  def test_commit_blob_blocks_http_exception
    http_exception = ->(*) { raise Azure::Core::Http::HTTPError.new(@mocked_response) }
    @blob_client.stub :commit_blob_blocks, http_exception do
      assert_raises(RuntimeError) do
        @service.commit_blob_blocks('test_container', 'test_blob', [])
      end
    end
  end

  def test_commit_blob_blocks_mock
    assert @mock_service.commit_blob_blocks('test_container', 'test_blob', [])
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fog-azure-rm-0.1.1 test/requests/storage/test_commit_blob_blocks.rb