Project

General

Profile

Download (5.8 KB) Statistics
| Branch: | Tag: | Revision:
# Copyright 2012 Red Hat, Inc.
#
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

require 'rubygems'
require 'minitest/autorun'
require './lib/runcible/resources/consumer_group'
require './lib/runcible/resources/consumer'
require './lib/runcible/extensions/consumer'
require './test/support/repository_support'
require './test/support/consumer_support'

module TestConsumerGroupBase
include RepositorySupport

def setup
@resource = Runcible::Resources::ConsumerGroup
@consumer_group_id = "integration_test_consumer_group"
VCR.insert_cassette('consumer_group')
end

def teardown
VCR.eject_cassette
end

def create_consumer_group
@resource.create(@consumer_group_id, :display_name => "foo", :description => 'Test description.', :consumer_ids => [])
rescue Exception => e
end

def destroy_consumer_group
@resource.delete(@consumer_group_id)
rescue Exception => e
end

end


class TestConsumerGroupCreate < MiniTest::Unit::TestCase
include TestConsumerGroupBase

def teardown
destroy_consumer_group
super
end

def test_create
response = create_consumer_group

assert_equal @consumer_group_id, response['id']
end
end


class TestConsumerGroupDestroy < MiniTest::Unit::TestCase
include TestConsumerGroupBase

def setup
super
create_consumer_group
end

def test_destroy
response = @resource.delete(@consumer_group_id)

assert_equal 200, response.code
end

end

class ConsumerGroupTests < MiniTest::Unit::TestCase
include TestConsumerGroupBase

def setup
super
create_consumer_group
end

def teardown
destroy_consumer_group
super
end

end

class TestConsumerGroup < ConsumerGroupTests
def test_path
path = @resource.path

assert_match 'consumer_groups/', path
end

def test_path_with_id
path = @resource.path(@consumer_group_id)

assert_match "consumer_groups/#{@consumer_group_id}/", path
end

def test_retrieve
response = @resource.retrieve(@consumer_group_id)

assert_equal 200, response.code
refute_empty response
assert_equal @consumer_group_id, response['id']
assert_empty response['consumer_ids']
end

end

class ConsumerGroupWithConsumerTests < ConsumerGroupTests

def setup
super
ConsumerSupport.create_consumer
@criteria = {:criteria =>
{:filters =>
{:id =>
{"$in" => [ConsumerSupport.consumer_id]}
}
}
}
end

def teardown
ConsumerSupport.destroy_consumer
super
end

end

class TestConsumerGroupAssociate < ConsumerGroupWithConsumerTests

def test_associate
response = @resource.associate(@consumer_group_id, @criteria)

assert_equal 200, response.code
assert_includes response, ConsumerSupport.consumer_id
end

end

class TestConsumerGroupUnassociate < ConsumerGroupWithConsumerTests

def setup
super
@resource.associate(@consumer_group_id, @criteria)
end

def test_unassociate
response = @resource.unassociate(@consumer_group_id, @criteria)

assert_equal 200, response.code
assert_includes response, ConsumerSupport.consumer_id
end
end


class TestConsumerGroupRequiresRepo < ConsumerGroupTests

def self.before_suite
RepositorySupport.create_and_sync_repo(:importer_and_distributor => true)

end

def self.after_suite
RepositorySupport.destroy_repo
end

def setup
super
ConsumerSupport.create_consumer
criteria = {:criteria =>
{:filters =>
{:id => {"$in" => [ConsumerSupport.consumer_id]}}}}

distro_id = RepositorySupport.distributor()['id']
Runcible::Resources::Consumer.bind(ConsumerSupport.consumer_id, RepositorySupport.repo_id, distro_id)

@resource.associate(@consumer_group_id, criteria)
end

def teardown
ConsumerSupport.destroy_consumer
super
end

def test_install_units
response = @resource.install_units(@consumer_group_id,{"units"=>["unit_key"=>{:name => "zsh"}]})
RepositorySupport.wait_on_task(response)

assert_equal 202, response.code
assert response["task_id"]
assert_includes response["tags"], "pulp:action:unit_install"
end

def test_update_units
response = @resource.update_units(@consumer_group_id,{"units"=>["unit_key"=>{:name => "zsh"}]})
RepositorySupport.wait_on_task(response)

assert_equal 202, response.code
assert response["task_id"]
assert_includes response["tags"], "pulp:action:unit_update"
end

def test_uninstall_units
response = @resource.uninstall_units(@consumer_group_id,{"units"=>["unit_key"=>{:name => "zsh"}]})
RepositorySupport.wait_on_task(response)

assert_equal 202, response.code
assert response["task_id"]
assert_includes response["tags"], "pulp:action:unit_uninstall"
end

end
(1-1/9)