Sha256: a0fc25279779a681fed72f0921a9a634f06d55e7da59714ee71741065147cdba

Contents?: true

Size: 1.29 KB

Versions: 33

Compression:

Stored size: 1.29 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

33 entries across 33 versions & 4 rubygems

Version Path
fog-azure-rm-0.4.5 test/requests/resources/test_create_deployment.rb
fog-azure-rm-temp-0.0.5 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.4.4 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.4.3 test/requests/resources/test_create_deployment.rb
far-gem-0.5.1 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.4.2 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.4.1 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.4.0 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.3.9 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.3.8 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.3.7 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.3.6 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.3.5 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.3.4 test/requests/resources/test_create_deployment.rb
fog-azure-rm-temp-0.0.4 test/requests/resources/test_create_deployment.rb
fog-azure-rm-temp-0.0.3 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.3.3 test/requests/resources/test_create_deployment.rb
fog-azure-rm-temp-0.0.2 test/requests/resources/test_create_deployment.rb
fog-azure-rm-temp-0.0.1 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.3.2 test/requests/resources/test_create_deployment.rb