Sha256: 3228cc00fb626fac649f03f42362e34b2c71c7013bfeea11a6716951832bb44c
Contents?: true
Size: 1.17 KB
Versions: 1
Compression:
Stored size: 1.17 KB
Contents
require File.expand_path '../../test_helper', __dir__ # Storage Blob Class class TestReleaseBlobLease < Minitest::Test # This class posesses the test cases for the requests of releasing blob lease. 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_release_blob_lease_success @blob_client.stub :release_blob_lease, true do assert @service.release_blob_lease('test_container', 'test_blob', 'lease_id') end end def test_release_blob_lease_http_exception http_exception = ->(*) { raise Azure::Core::Http::HTTPError.new(@mocked_response) } @blob_client.stub :release_blob_lease, http_exception do assert_raises(RuntimeError) do @service.release_blob_lease('test_container', 'test_blob', 'lease_id') end end end def test_release_blob_lease_mock assert @mock_service.release_blob_lease('test_container', 'test_blob', 'lease_id') end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-azure-rm-0.1.1 | test/requests/storage/test_release_blob_lease.rb |