Sha256: bb829e269b6231dffc41f4d4c17e8b59b148d8587d5e6cf3bd4a70862c65e0e2
Contents?: true
Size: 1.24 KB
Versions: 6
Compression:
Stored size: 1.24 KB
Contents
require File.expand_path '../../test_helper', __dir__ # Storage Blob Class class TestAcquireBlobLease < Minitest::Test # This class posesses the test cases for the requests of acquire blob lease. 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_lease_id = ApiStub::Requests::Storage::File.blob_lease_id end def test_acquire_blob_lease_success @blob_client.stub :acquire_blob_lease, @blob_lease_id do assert_equal @blob_lease_id, @service.acquire_blob_lease('test_container', 'test_blob') end end def test_acquire_blob_lease_http_exception http_exception = ->(*) { raise Azure::Core::Http::HTTPError.new(@mocked_response) } @blob_client.stub :acquire_blob_lease, http_exception do assert_raises(Azure::Core::Http::HTTPError) do @service.acquire_blob_lease('test_container', 'test_blob') end end end def test_acquire_blob_lease_mock assert_equal @blob_lease_id, @mock_service.acquire_blob_lease('test_container', 'test_blob') end end
Version data entries
6 entries across 6 versions & 1 rubygems