Sha256: 62fda62aff13221c05237dee7c5d4de3a6cdc9c4b5d0f65f50325435ddf06537

Contents?: true

Size: 1.31 KB

Versions: 14

Compression:

Stored size: 1.31 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(MsRestAzure::AzureOperationError) { @service.create_deployment(@resource_group, @deployment_name, @template_link, @parameters_link) }
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
fog-azure-rm-0.6.0 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.5.3 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.5.2 test/requests/resources/test_create_deployment.rb
far-gem-0.5.6 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.5.1 test/requests/resources/test_create_deployment.rb
far-gem-0.5.5 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.5.0 test/requests/resources/test_create_deployment.rb
far-gem-0.5.4 test/requests/resources/test_create_deployment.rb
far-gem-0.5.3 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.4.9 test/requests/resources/test_create_deployment.rb
far-gem-0.5.2 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.4.8 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.4.7 test/requests/resources/test_create_deployment.rb
fog-azure-rm-0.4.6 test/requests/resources/test_create_deployment.rb