Project

General

Profile

Download (1.52 KB) Statistics
| Branch: | Tag: | Revision:
#
# Copyright 2014 Red Hat, Inc.
#
# This software is licensed to you under the GNU General Public
# License as published by the Free Software Foundation; either version
# 2 of the License (GPLv2) or (at your option) any later version.
# There is NO WARRANTY for this software, express or implied,
# including the implied warranties of MERCHANTABILITY,
# NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
# have received a copy of GPLv2 along with this software; if not, see
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.

require 'katello_test_helper'
require 'helpers/product_test_data'

module Katello
describe Pool do

describe "Find pool by organization and id" do
let(:pool_id) { ProductTestData::POOLS[:id] }
before do
Resources::Candlepin::Pool.expects(:find).with(pool_id).returns(ProductTestData::POOLS)
end
it "should return pool that is in the organization" do
create_org_from_cp_owner(ProductTestData::POOLS[:owner])
Pool.find_by_organization_and_id(@organization, pool_id).cp_id.must_equal(ProductTestData::POOLS[:id])
end

it "should return nil if the pool doesn't belong to the organization" do
create_org_from_cp_owner(:displayName => "Another Org", :key => "another_org")
Pool.find_by_organization_and_id(@organization, pool_id).must_be_nil
end
end

def create_org_from_cp_owner(cp_owner)
disable_org_orchestration
@organization = Organization.create!(:name=>cp_owner[:displayName], :label=> "pool_org", :label => cp_owner[:key])
end

end
end
(13-13/21)