Sha256: 2be9139f2c081aa04f5682cc3020c0686686ff8b1ddbc8f2a74429debf30561b

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

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

# Storage Container Class
class TestCreateContainer < Minitest::Test
  # This class posesses the test cases for the requests of creating storage containers.
  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)

    @container = ApiStub::Requests::Storage::Directory.container
  end

  def test_create_container_success
    @blob_client.stub :create_container, @container do
      assert_equal @container, @service.create_container('test_container')
    end
  end

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

  def test_create_container_mock
    assert_equal @container, @mock_service.create_container('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_create_container.rb