Sha256: dcbeb403184de0b36b80fcb72df449622866831fda9e787800eb7357c4677d05

Contents?: true

Size: 1.32 KB

Versions: 5

Compression:

Stored size: 1.32 KB

Contents

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

# Test class for Create Deployment Request
class TestCreateDeployment < Minitest::Test
  def setup
    @service = Fog::Resources::AzureRM.new(credentials)
    @client = @service.instance_variable_get(:@rmc)
    @deployments = @client.deployments
    @resource_group = 'fog-test-rg'
    @deployment_name = 'fog-test-deployment'
    @template_link = 'https://test.com/template.json'
    @parameters_link = 'https://test.com/parameters.json'
  end

  def test_create_deployment_success
    mocked_response = ApiStub::Requests::Resources::Deployment.create_deployment_response(@client)
    @deployments.stub :validate, true do
      @deployments.stub :create_or_update, mocked_response do
        assert_equal @service.create_deployment(@resource_group, @deployment_name, @template_link, @parameters_link), mocked_response
      end
    end
  end

  def test_create_deployment_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) }
    @deployments.stub :validate, true do
      @deployments.stub :create_or_update, response do
        assert_raises(RuntimeError) { @service.create_deployment(@resource_group, @deployment_name, @template_link, @parameters_link) }
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fog-azure-rm-0.1.1 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.1.0 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.0.9 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.0.8 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.0.6 test/requests/resources/test_create_deployment.rb