Sha256: d9e58e7717209266e141f231c4e02372c7d5ee3f7392fc4c9fbdd32e2b40989a

Contents?: true

Size: 1.31 KB

Versions: 1

Compression:

Stored size: 1.31 KB

Contents

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

# Storage Container Class
class TestGetContainerAcl < Minitest::Test
  # This class posesses the test cases for the requests of getting storage container acl.
  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)

    @raw_container_acl = ApiStub::Requests::Storage::Directory.raw_container_acl
    @container_acl = ApiStub::Requests::Storage::Directory.container_acl
  end

  def test_get_container_acl_success
    @blob_client.stub :get_container_acl, @raw_container_acl do
      assert_equal @container_acl, @service.get_container_acl('test_container')
    end
  end

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

  def test_get_container_acl_mock
    assert_equal @container_acl, @mock_service.get_container_acl('test_container')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

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