Sha256: de89d5d2363a968ef9fbad53d93b27f2117a83563b85131ca0abf8fcad4b409d

Contents?: true

Size: 1.57 KB

Versions: 24

Compression:

Stored size: 1.57 KB

Contents

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

# Test class for Create Azure Resources Request
class TestTagResource < Minitest::Test
  def setup
    @service = Fog::Resources::AzureRM.new(credentials)
    @client = @service.instance_variable_get(:@rmc)
    @resources = @client.resources
    @resource_response = ApiStub::Requests::Resources::AzureResource.azure_resource_response(@client)
  end

  def test_tag_resource_success
    @resources.stub :get, @resource_response do
      @resources.stub :create_or_update, @resource_response do
        resource_id = '/subscriptions/########-####-####-####-############/resourceGroups/{RESOURCE-GROUP}/providers/Microsoft.Network/{PROVIDER-NAME}/{RESOURCE-NAME}'
        assert_equal @service.tag_resource(resource_id, 'tag_name', 'tag_value'), true
      end
    end
  end

  def test_tag_resource_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) }
    @resources.stub :get, @resource_response do
      @resources.stub :create_or_update, response do
        resource_id = '/subscriptions/########-####-####-####-############/resourceGroups/{RESOURCE-GROUP}/providers/Microsoft.Network/{PROVIDER-NAME}/{RESOURCE-NAME}'
        assert_raises(RuntimeError) { @service.tag_resource(resource_id, 'tag_name', 'tag_value') }
      end
    end
  end

  def test_invalid_resource_id_exeception
    resource_id = 'Invalid-Resource-ID'
    assert_raises(RuntimeError) { @service.tag_resource(resource_id, 'tag_name', 'tag_value') }
  end
end

Version data entries

24 entries across 24 versions & 3 rubygems

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