1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
require File.expand_path '../../test_helper', __dir__
# Storage Container Class
class TestAcquireContainerLease < Minitest::Test
# This class posesses the test cases for the requests of acquire container 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)
@container_lease_id = ApiStub::Requests::Storage::Directory.container_lease_id
end
def test_acquire_container_lease_success
@blob_client.stub :acquire_container_lease, @container_lease_id do
assert_equal @container_lease_id, @service.acquire_container_lease('test_container')
end
end
def test_acquire_container_lease_http_exception
http_exception = ->(*) { raise Azure::Core::Http::HTTPError.new(@mocked_response) }
@blob_client.stub :acquire_container_lease, http_exception do
assert_raises(Azure::Core::Http::HTTPError) do
@service.acquire_container_lease('test_container')
end
end
end
def test_acquire_container_lease_mock
assert_equal @container_lease_id, @mock_service.acquire_container_lease('test_container')
end
end
|