diff --git a/app/lib/util/thread_session.rb b/app/lib/util/thread_session.rb index 00daf75b83e..e84962b2cbd 100644 --- a/app/lib/util/thread_session.rb +++ b/app/lib/util/thread_session.rb @@ -24,6 +24,20 @@ # http://rails-bestpractices.com/posts/47-fetch-current-user-in-models # +module Katello + def self.pulp_server=(server) + Thread.current[:pulp_server] = server + end + + def self.update_runcible_user(username) + self.pulp_server.update_config('user', username) + end + + def self.pulp_server + Thread.current[:pulp_server] + end +end + module Util module ThreadSession @@ -45,27 +59,7 @@ def self.current=(o) Rails.logger.debug "Setting current user thread-local variable to " + username Thread.current[:user] = o - set_pulp_config(remote_id) if Katello.config.katello? - - end - - def self.set_pulp_config(user_id) - if user_id - uri = URI.parse(Katello.config.pulp.url) - - ::Runcible::Base.config = { - :url => "#{uri.scheme}://#{uri.host.downcase}", - :api_path => uri.path, - :user => user_id, - :timeout => Katello.config.rest_client_timeout, - :open_timeout => Katello.config.rest_client_timeout, - :oauth => {:oauth_secret => Katello.config.pulp.oauth_secret, - :oauth_key => Katello.config.pulp.oauth_key }, - :logging => {:logger => ::Logging.logger['pulp_rest'], - :exception => true, - :debug => true } - } - end + Katello.update_runcible_user(remote_id) if Katello.config.use_pulp end # Executes given block on behalf of a different user. Mostly for debuggin purposes since diff --git a/app/models/glue/pulp/consumer.rb b/app/models/glue/pulp/consumer.rb index adfe137e1c1..5e511c7c517 100644 --- a/app/models/glue/pulp/consumer.rb +++ b/app/models/glue/pulp/consumer.rb @@ -23,15 +23,15 @@ def self.included(base) add_system_group_hook lambda { |system_group| system_group.add_consumer(self) } remove_system_group_hook lambda { |system_group| system_group.remove_consumer(self) } - lazy_accessor :pulp_facts, :initializer => lambda {|s| Runcible::Extensions::Consumer.retrieve(uuid) } + lazy_accessor :pulp_facts, :initializer => lambda {|s| Katello.pulp_server.extensions.consumer.retrieve(uuid) } lazy_accessor :package_profile, :initializer => lambda{|s| fetch_package_profile} lazy_accessor :simple_packages, :initializer => lambda {|s| fetch_package_profile["profile"]. collect{|package| Glue::Pulp::SimplePackage.new(package)} } - lazy_accessor :errata, :initializer => lambda {|s| Runcible::Extensions::Consumer.applicable_errata(uuid). + lazy_accessor :errata, :initializer => lambda {|s| Katello.pulp_server.extensions.consumer.applicable_errata(uuid). map{|k,v| v.values}.flatten. map{|e| Errata.new(e[:details])} } - lazy_accessor :repoids, :initializer => lambda {|s| Runcible::Extensions::Consumer.retrieve_bindings(uuid). + lazy_accessor :repoids, :initializer => lambda {|s| Katello.pulp_server.extensions.consumer.retrieve_bindings(uuid). collect{ |repo| repo["repo_id"]} } end end @@ -56,7 +56,7 @@ def enable_repos update_ids unbind_ids.each do |repoid| begin - events.concat(Runcible::Extensions::Consumer.unbind_all(uuid, repoid)) + events.concat(Katello.pulp_server.extensions.consumer.unbind_all(uuid, repoid)) processed_ids << repoid rescue => e Rails.logger.error "Failed to unbind repo #{repoid}: #{e}, #{e.backtrace.join("\n")}" @@ -66,7 +66,7 @@ def enable_repos update_ids bind_ids.each do |repoid| begin - events.concat(Runcible::Extensions::Consumer.bind_all(uuid, repoid, false)) + events.concat(Katello.pulp_server.extensions.consumer.bind_all(uuid, repoid, false)) processed_ids << repoid rescue => e Rails.logger.error "Failed to bind repo #{repoid}: #{e}, #{e.backtrace.join("\n")}" @@ -95,7 +95,7 @@ def enable_repos update_ids def del_pulp_consumer Rails.logger.debug "Deleting consumer in pulp: #{self.name}" - Runcible::Extensions::Consumer.delete(self.uuid) + Katello.pulp_server.extensions.consumer.delete(self.uuid) rescue => e Rails.logger.error "Failed to delete pulp consumer #{self.name}: #{e}, #{e.backtrace.join("\n")}" raise e @@ -113,7 +113,7 @@ def rollback_on_pulp_create def set_pulp_consumer Rails.logger.debug "Creating a consumer in pulp: #{self.name}" - return Runcible::Extensions::Consumer.create(self.uuid, {:display_name => self.name}) + return Katello.pulp_server.extensions.consumer.create(self.uuid, {:display_name => self.name}) rescue => e Rails.logger.error "Failed to create pulp consumer #{self.name}: #{e}, #{e.backtrace.join("\n")}" raise e @@ -123,7 +123,7 @@ def update_pulp_consumer return true if @changed_attributes.empty? Rails.logger.debug "Updating consumer in pulp: #{self.name}" - Runcible::Extensions::Consumer.update(self.uuid, :display_name => self.name) + Katello.pulp_server.extensions.consumer.update(self.uuid, :display_name => self.name) rescue => e Rails.logger.error "Failed to update pulp consumer #{self.name}: #{e}, #{e.backtrace.join("\n")}" raise e @@ -131,7 +131,7 @@ def update_pulp_consumer def upload_package_profile profile Rails.logger.debug "Uploading package profile for consumer #{self.name}" - Runcible::Extensions::Consumer.upload_profile(self.uuid, 'rpm', profile) + Katello.pulp_server.extensions.consumer.upload_profile(self.uuid, 'rpm', profile) rescue => e Rails.logger.error "Failed to upload package profile to pulp consumer #{self.name}: #{e}, #{e.backtrace.join("\n")}" raise e @@ -139,7 +139,7 @@ def upload_package_profile profile def install_package packages Rails.logger.debug "Scheduling package install for consumer #{self.name}" - pulp_task = Runcible::Extensions::Consumer.install_content(self.uuid, 'rpm', packages, {"importkeys" => true}) + pulp_task = Katello.pulp_server.extensions.consumer.install_content(self.uuid, 'rpm', packages, {"importkeys" => true}) rescue => e Rails.logger.error "Failed to schedule package install for pulp consumer #{self.name}: #{e}, #{e.backtrace.join("\n")}" raise e @@ -147,7 +147,7 @@ def install_package packages def uninstall_package packages Rails.logger.debug "Scheduling package uninstall for consumer #{self.name}" - pulp_task = Runcible::Extensions::Consumer.uninstall_content(self.uuid, 'rpm', packages) + pulp_task = Katello.pulp_server.extensions.consumer.uninstall_content(self.uuid, 'rpm', packages) rescue => e Rails.logger.error "Failed to schedule package uninstall for pulp consumer #{self.name}: #{e}, #{e.backtrace.join("\n")}" raise e @@ -157,7 +157,7 @@ def update_package packages Rails.logger.debug "Scheduling package update for consumer #{self.name}" options = {"importkeys" => true} options[:all] = true if packages.blank? - pulp_task = Runcible::Extensions::Consumer.update_content(self.uuid, 'rpm', packages, options) + pulp_task = Katello.pulp_server.extensions.consumer.update_content(self.uuid, 'rpm', packages, options) rescue => e Rails.logger.error "Failed to schedule package update for pulp consumer #{self.name}: #{e}, #{e.backtrace.join("\n")}" raise e @@ -165,7 +165,7 @@ def update_package packages def install_package_group groups Rails.logger.debug "Scheduling package group install for consumer #{self.name}" - pulp_task = Runcible::Extensions::Consumer.install_content(self.uuid, 'package_group', groups, {"importkeys" => true}) + pulp_task = Katello.pulp_server.extensions.consumer.install_content(self.uuid, 'package_group', groups, {"importkeys" => true}) rescue => e Rails.logger.error "Failed to schedule package group install for pulp consumer #{self.name}: #{e}, #{e.backtrace.join("\n")}" raise e @@ -173,7 +173,7 @@ def install_package_group groups def uninstall_package_group groups Rails.logger.debug "Scheduling package group uninstall for consumer #{self.name}" - pulp_task = Runcible::Extensions::Consumer.uninstall_content(self.uuid, 'package_group', groups) + pulp_task = Katello.pulp_server.extensions.consumer.uninstall_content(self.uuid, 'package_group', groups) rescue => e Rails.logger.error "Failed to schedule package group uninstall for pulp consumer #{self.name}: #{e}, #{e.backtrace.join("\n")}" raise e @@ -181,7 +181,7 @@ def uninstall_package_group groups def install_consumer_errata errata_ids Rails.logger.debug "Scheduling errata install for consumer #{self.name}" - pulp_task = Runcible::Extensions::Consumer.install_content(self.uuid, 'erratum', errata_ids, {"importkeys" => true}) + pulp_task = Katello.pulp_server.extensions.consumer.install_content(self.uuid, 'erratum', errata_ids, {"importkeys" => true}) rescue => e Rails.logger.error "Failed to schedule errata install for pulp consumer #{self.name}: #{e}, #{e.backtrace.join("\n")}" raise e @@ -200,7 +200,7 @@ def save_pulp_orchestration private def fetch_package_profile - Runcible::Extensions::Consumer.retrieve_profile(uuid, 'rpm') + Katello.pulp_server.extensions.consumer.retrieve_profile(uuid, 'rpm') rescue RestClient::ResourceNotFound =>e {:profile=>[]}.with_indifferent_access end diff --git a/app/models/glue/pulp/consumer_group.rb b/app/models/glue/pulp/consumer_group.rb index 9e0fa4bd056..4af4e4ccb3b 100644 --- a/app/models/glue/pulp/consumer_group.rb +++ b/app/models/glue/pulp/consumer_group.rb @@ -18,7 +18,7 @@ def self.included(base) base.send :include, LazyAccessor base.class_eval do - lazy_accessor :consumer_ids, :initializer => lambda { |s| Runcible::Extensions::ConsumerGroup.retrieve(pulp_id) } + lazy_accessor :consumer_ids, :initializer => lambda { |s| Katello.pulp_server.extensions.consumer_group.retrieve(pulp_id) } before_save :save_consumer_group_orch before_destroy :destroy_consumer_group_orch @@ -33,7 +33,7 @@ module InstanceMethods def set_pulp_consumer_group consumer_ids = self.systems.collect { |system| system.uuid } Rails.logger.debug "creating pulp consumer group '#{self.pulp_id}'" - Runcible::Extensions::ConsumerGroup.create(self.pulp_id, :description=>self.description, :consumer_ids=>(consumer_ids || [])) + Katello.pulp_server.extensions.consumer_group.create(self.pulp_id, :description=>self.description, :consumer_ids=>(consumer_ids || [])) rescue => e Rails.logger.error "Failed to create pulp consumer group #{self.pulp_id}: #{e}, #{e.backtrace.join("\n")}" raise e @@ -41,7 +41,7 @@ def set_pulp_consumer_group def del_pulp_consumer_group Rails.logger.debug "deleting pulp consumer group '#{self.pulp_id}'" - Runcible::Extensions::ConsumerGroup.delete(self.pulp_id) + Katello.pulp_server.extensions.consumer_group.delete(self.pulp_id) rescue => e Rails.logger.error "Failed to delete pulp consumer group #{self.pulp_id}: #{e}, #{e.backtrace.join("\n")}" raise e @@ -53,7 +53,7 @@ def add_consumer(system) def add_consumers(id_list) Rails.logger.debug "adding consumers to pulp consumer group '#{self.pulp_id}'" - Runcible::Extensions::ConsumerGroup.add_consumers_by_id(pulp_id, id_list) + Katello.pulp_server.extensions.consumer_group.add_consumers_by_id(pulp_id, id_list) rescue => e Rails.logger.error "Failed to add consumers to pulp consumer group #{self.pulp_id}: #{e}, #{e.backtrace.join("\n")}" raise e @@ -65,7 +65,7 @@ def remove_consumer(system) def remove_consumers(id_list) Rails.logger.debug "removing consumers from pulp consumer group '#{self.pulp_id}'" - Runcible::Extensions::ConsumerGroup.remove_consumers_by_id(pulp_id, id_list) + Katello.pulp_server.extensions.consumer_group.remove_consumers_by_id(pulp_id, id_list) rescue => e Rails.logger.error "Failed to remove consumers from consumer group #{self.pulp_id}: #{e}, #{e.backtrace.join("\n")}" raise e @@ -74,7 +74,7 @@ def remove_consumers(id_list) def install_package(packages) Rails.logger.debug "Scheduling package install for consumer group #{self.pulp_id}" - pulp_task = Runcible::Extensions::ConsumerGroup.install_content(self.pulp_id, + pulp_task = Katello.pulp_server.extensions.consumer_group.install_content(self.pulp_id, 'rpm', packages, {'importkeys' => true}) @@ -86,7 +86,7 @@ def install_package(packages) def uninstall_package(packages) Rails.logger.debug "Scheduling package uninstall for consumer group #{self.pulp_id}" - pulp_task = Runcible::Extensions::ConsumerGroup.uninstall_content(self.pulp_id, + pulp_task = Katello.pulp_server.extensions.consumer_group.uninstall_content(self.pulp_id, 'rpm', packages) rescue => e @@ -99,7 +99,7 @@ def update_package(packages) options = {"importkeys" => true} options[:all] = true if packages.blank? - pulp_task = Runcible::Extensions::ConsumerGroup.update_content(self.pulp_id, + pulp_task = Katello.pulp_server.extensions.consumer_group.update_content(self.pulp_id, 'rpm', packages, options) @@ -111,7 +111,7 @@ def update_package(packages) def install_package_group(groups) Rails.logger.debug "Scheduling package group install for consumer group #{self.pulp_id}" - pulp_task = Runcible::Extensions::ConsumerGroup.install_content(self.pulp_id, + pulp_task = Katello.pulp_server.extensions.consumer_group.install_content(self.pulp_id, 'package_group', groups, {'importkeys' => true}) @@ -123,7 +123,7 @@ def install_package_group(groups) def uninstall_package_group(groups) Rails.logger.debug "Scheduling package group uninstall for consumer group #{self.pulp_id}" - pulp_task = Runcible::Extensions::ConsumerGroup.uninstall_content(self.pulp_id, + pulp_task = Katello.pulp_server.extensions.consumer_group.uninstall_content(self.pulp_id, 'package_group', groups) rescue => e @@ -134,7 +134,7 @@ def uninstall_package_group(groups) def install_consumer_errata(errata_ids) Rails.logger.debug "Scheduling errata install for consumer group #{self.pulp_id}" - pulp_task = Runcible::Extensions::ConsumerGroup.install_content(self.pulp_id, + pulp_task = Katello.pulp_server.extensions.consumer_group.install_content(self.pulp_id, 'erratum', errata_ids, {'importkeys' => true}) diff --git a/app/models/glue/pulp/distribution.rb b/app/models/glue/pulp/distribution.rb index aee7e117eef..3d7d9c64471 100644 --- a/app/models/glue/pulp/distribution.rb +++ b/app/models/glue/pulp/distribution.rb @@ -19,7 +19,7 @@ def self.included(base) attr_accessor :_id, :id, :description, :files, :family, :variant, :version, :url, :arch def self.find(id) - ::Distribution.new(Runcible::Extensions::Distribution.find(id)) + ::Distribution.new(Katello.pulp_server.extensions.distribution.find(id)) end end end diff --git a/app/models/glue/pulp/errata.rb b/app/models/glue/pulp/errata.rb index 9f17eb605ff..a3535819d66 100644 --- a/app/models/glue/pulp/errata.rb +++ b/app/models/glue/pulp/errata.rb @@ -26,22 +26,22 @@ def self.included(base) :reboot_suggested, :references, :pkglist, :severity, :repoids def self.errata_by_consumer(repos) - errata = Runcible::Extensions::Consumer.applicable_errata([], repos.map(&:pulp_id), false) + errata = Katello.pulp_server.extensions.consumer.applicable_errata([], repos.map(&:pulp_id), false) errata[:erratum] || [] end def self.find(id) - erratum_attrs = Runcible::Extensions::Errata.find_by_unit_id(id) + erratum_attrs = Katello.pulp_server.extensions.errata.find_by_unit_id(id) ::Errata.new(erratum_attrs) if not erratum_attrs.nil? end def self.find_by_errata_id(id) - erratum_attrs = Runcible::Extensions::Errata.find(id) + erratum_attrs = Katello.pulp_server.extensions.errata.find(id) ::Errata.new(erratum_attrs) if not erratum_attrs.nil? end def self.list_by_filter_clauses(clauses) - errata = Runcible::Extensions::Errata.search(::Errata::CONTENT_TYPE, + errata = Katello.pulp_server.extensions.errata.search(::Errata::CONTENT_TYPE, :filters => clauses) if errata errata.collect do |attrs| diff --git a/app/models/glue/pulp/package.rb b/app/models/glue/pulp/package.rb index f2dab0c0629..534abbf8d4c 100644 --- a/app/models/glue/pulp/package.rb +++ b/app/models/glue/pulp/package.rb @@ -28,7 +28,7 @@ def self.included(base) alias_method 'id', '_id' def self.find(id) - package_attrs = Runcible::Extensions::Rpm.find_by_unit_id(id) + package_attrs = Katello.pulp_server.extensions.rpm.find_by_unit_id(id) return if package_attrs.nil? Package.new(package_attrs) if package_attrs rescue RestClient::ResourceNotFound => exception diff --git a/app/models/glue/pulp/repo.rb b/app/models/glue/pulp/repo.rb index ca5ce5d291f..26a006be0de 100644 --- a/app/models/glue/pulp/repo.rb +++ b/app/models/glue/pulp/repo.rb @@ -28,7 +28,7 @@ def self.included(base) lazy_accessor :pulp_repo_facts, :initializer => lambda { |s| if pulp_id - Runcible::Extensions::Repository.retrieve_with_details(pulp_id) + Katello.pulp_server.extensions.repository.retrieve_with_details(pulp_id) end } @@ -45,9 +45,9 @@ def self.included(base) attr_accessor :feed_cert, :feed_key, :feed_ca def self.ensure_sync_notification - resource = Runcible::Resources::EventNotifier + resource = Katello.pulp_server.resources.event_notifier url = Katello.config.post_sync_url - type = resource::EventTypes::REPO_SYNC_COMPLETE + type = Runcible::Resources::EventNotifier::EventTypes::REPO_SYNC_COMPLETE notifs = resource.list() #delete any similar tasks with the wrong url (in case it changed) @@ -57,7 +57,7 @@ def self.ensure_sync_notification #only create a notifier if one doesn't exist with the correct url exists = notifs.select{|n| n['event_types'] == [type] && n['notifier_config']['url'] == url} - resource.create(resource::NotifierTypes::REST_API, {:url=>url}, [type]) if exists.empty? + resource.create(Runcible::Resources::EventNotifier::NotifierTypes::REST_API, {:url=>url}, [type]) if exists.empty? end end @@ -107,12 +107,12 @@ def create_pulp_repo importer = generate_importer else #if not in library, no need for sync info, but we need a distributor - importer = Runcible::Extensions::YumImporter.new + importer = Runcible::Models::YumImporter.new end distributors = [generate_distributor] - Runcible::Extensions::Repository.create_with_importer_and_distributors(self.pulp_id, + Katello.pulp_server.extensions.repository.create_with_importer_and_distributors(self.pulp_id, importer, distributors, {:display_name=>self.name}) @@ -125,12 +125,12 @@ def create_pulp_repo def generate_importer case self.content_type when Repository::YUM_TYPE - Runcible::Extensions::YumImporter.new(:ssl_ca_cert=>self.feed_ca, + Runcible::Models::YumImporter.new(:ssl_ca_cert=>self.feed_ca, :ssl_client_cert=>self.feed_cert, :ssl_client_key=>self.feed_key, :feed=>self.feed) when Repository::FILE_TYPE - Runcible::Extensions::IsoImporter.new(:ssl_ca_cert=>self.feed_ca, + Runcible::Models::IsoImporter.new(:ssl_ca_cert=>self.feed_ca, :ssl_client_cert=>self.feed_cert, :ssl_client_key=>self.feed_key, :feed=>self.feed) @@ -142,10 +142,10 @@ def generate_importer def generate_distributor case self.content_type when Repository::YUM_TYPE - Runcible::Extensions::YumDistributor.new(self.relative_path, (self.unprotected || false), true, + Runcible::Models::YumDistributor.new(self.relative_path, (self.unprotected || false), true, {:protected=>true, :id=>self.pulp_id, :auto_publish=>true}) when Repository::FILE_TYPE - dist = Runcible::Extensions::IsoDistributor.new(true, true) + dist = Runcible::Models::IsoDistributor.new(true, true) dist.auto_publish = true dist else @@ -157,8 +157,8 @@ def refresh_pulp_repo(feed_ca, feed_cert, feed_key) self.feed_ca = feed_ca self.feed_cert = feed_cert self.feed_key = feed_key - Runcible::Extensions::Repository.update_importer(self.pulp_id, self.importers.first['id'], generate_importer.config) - Runcible::Extensions::Repository.update_distributor(self.pulp_id, self.distributors.first['id'], generate_distributor.config) + Katello.pulp_server.extensions.repository.update_importer(self.pulp_id, self.importers.first['id'], generate_importer.config) + Katello.pulp_server.extensions.repository.update_distributor(self.pulp_id, self.distributors.first['id'], generate_distributor.config) end def promote from_env, to_env @@ -181,7 +181,7 @@ def populate_from repos_map end def destroy_repo - Runcible::Extensions::Repository.delete(self.pulp_id) + Katello.pulp_server.extensions.repository.delete(self.pulp_id) true end @@ -198,7 +198,7 @@ def destroy_repo_orchestration end def package_ids - Runcible::Extensions::Repository.rpm_ids(self.pulp_id) + Katello.pulp_server.extensions.repository.rpm_ids(self.pulp_id) end # remove errata and groups from this repo @@ -239,7 +239,7 @@ def packages 'size', 'buildhost', '_id', '_content_type_id', '_href', '_storage_path', '_type'] self.package_ids.each_slice(Katello.config.pulp.bulk_load_size) do |sub_list| - tmp_packages.concat(Runcible::Extensions::Rpm.find_all_by_unit_ids(sub_list, package_fields)) + tmp_packages.concat(Katello.pulp_server.extensions.rpm.find_all_by_unit_ids(sub_list, package_fields)) end self.packages = tmp_packages end @@ -257,10 +257,10 @@ def errata if @repo_errata.nil? #we fetch ids and then fetch errata by id, because repo errata # do not contain all the info we need (bz 854260) - e_ids = Runcible::Extensions::Repository.errata_ids(self.pulp_id) + e_ids = Katello.pulp_server.extensions.repository.errata_ids(self.pulp_id) tmp_errata = [] e_ids.each_slice(Katello.config.pulp.bulk_load_size) do |sub_list| - tmp_errata.concat(Runcible::Extensions::Errata.find_all_by_unit_ids(sub_list)) + tmp_errata.concat(Katello.pulp_server.extensions.errata.find_all_by_unit_ids(sub_list)) end self.errata = tmp_errata end @@ -276,7 +276,7 @@ def errata=attrs def distributions if @repo_distributions.nil? - self.distributions = Runcible::Extensions::Repository.distributions(self.pulp_id) + self.distributions = Katello.pulp_server.extensions.repository.distributions(self.pulp_id) end @repo_distributions end @@ -290,7 +290,7 @@ def distributions=attrs def package_groups if @repo_package_groups.nil? - groups = Runcible::Extensions::Repository.package_groups(self.pulp_id) + groups = Katello.pulp_server.extensions.repository.package_groups(self.pulp_id) self.package_groups = groups end @repo_package_groups @@ -315,7 +315,7 @@ def package_groups_search(search_args = {}) end def package_group_categories(search_args = {}) - categories = Runcible::Extensions::Repository.package_categories(self.pulp_id) + categories = Katello.pulp_server.extensions.repository.package_categories(self.pulp_id) unless search_args.empty? categories.delete_if do |category_attrs| search_args.any?{ |attr,value| category_attrs[attr] != value } @@ -332,11 +332,11 @@ def has_distribution? id end def set_sync_schedule(date_and_time) - type = Runcible::Extensions::YumImporter::ID + type = Runcible::Models::YumImporter::ID if date_and_time - Runcible::Extensions::Repository.create_or_update_schedule(self.pulp_id, type, date_and_time) + Katello.pulp_server.extensions.repository.create_or_update_schedule(self.pulp_id, type, date_and_time) else - Runcible::Extensions::Repository.remove_schedules(self.pulp_id, type) + Katello.pulp_server.extensions.repository.remove_schedules(self.pulp_id, type) end end @@ -345,15 +345,15 @@ def has_package? id end def find_packages_by_name name - Runcible::Extensions::Repository.rpms_by_nvre self.pulp_id, name + Katello.pulp_server.extensions.repository.rpms_by_nvre self.pulp_id, name end def find_packages_by_nvre name, version, release, epoch - Runcible::Extensions::Repository.rpms_by_nvre self.pulp_id, name, version, release, epoch + Katello.pulp_server.extensions.repository.rpms_by_nvre self.pulp_id, name, version, release, epoch end def find_latest_packages_by_name name - packages = Runcible::Extensions::Repository.rpms_by_nvre(self.pulp_id, name) + packages = Katello.pulp_server.extensions.repository.rpms_by_nvre(self.pulp_id, name) Util::Package.find_latest_packages(packages) end @@ -368,7 +368,7 @@ def sync(options = { }) sync_options= {} sync_options[:max_speed] ||= Katello.config.pulp.sync_KBlimit if Katello.config.pulp.sync_KBlimit # set bandwidth limit sync_options[:num_threads] ||= Katello.config.pulp.sync_threads if Katello.config.pulp.sync_threads # set threads per sync - pulp_tasks = Runcible::Extensions::Repository.sync(self.pulp_id, {:override_config=>sync_options}) + pulp_tasks = Katello.pulp_server.extensions.repository.sync(self.pulp_id, {:override_config=>sync_options}) pulp_task = pulp_tasks.select{|i| i['tags'].include?("pulp:action:sync")}.first.with_indifferent_access task = PulpSyncStatus.using_pulp_task(pulp_task) do |t| @@ -381,7 +381,7 @@ def sync(options = { }) end def handle_sync_complete_task(task_id) - #pulp_task = Runcible::Resources::Task.poll(pulp_task_id) + #pulp_task = Katello.pulp_server.resources.task.poll(pulp_task_id) #if pulp_task.nil? # Rails.logger.error("Sync_complete called for #{pulp_task_id}, but no task found.") @@ -421,15 +421,15 @@ def clone_contents to_repo # include the fields that will uniquely identify the rpm. If no fields # are listed, pulp will retrieve every field it knows about for the rpm # (e.g. changelog, filelist...etc). - events << Runcible::Extensions::Rpm.copy(self.pulp_id, to_repo.pulp_id, + events << Katello.pulp_server.extensions.rpm.copy(self.pulp_id, to_repo.pulp_id, { :fields => Package::PULP_SELECT_FIELDS }) - events << Runcible::Extensions::Distribution.copy(self.pulp_id, to_repo.pulp_id) + events << Katello.pulp_server.extensions.distribution.copy(self.pulp_id, to_repo.pulp_id) # Since the rpms will be copied above, during the copy of errata and package groups, # include the copy_children flag to request that pulp skip copying them again. - events << Runcible::Extensions::Errata.copy(self.pulp_id, to_repo.pulp_id, { :copy_children => false }) - events << Runcible::Extensions::PackageGroup.copy(self.pulp_id, to_repo.pulp_id, { :copy_children => false }) - events << Runcible::Extensions::YumRepoMetadataFile.copy(self.pulp_id, to_repo.pulp_id) + events << Katello.pulp_server.extensions.errata.copy(self.pulp_id, to_repo.pulp_id, { :copy_children => false }) + events << Katello.pulp_server.extensions.package_group.copy(self.pulp_id, to_repo.pulp_id, { :copy_children => false }) + events << Katello.pulp_server.extensions.yum_repo_metadata_file.copy(self.pulp_id, to_repo.pulp_id) events end @@ -437,20 +437,20 @@ def clone_contents to_repo def unassociate_by_filter(content_type, filter_clauses) criteria = {:type_ids=>[content_type], :filters=>{:unit=>filter_clauses}} - if content_type == Runcible::Extensions::Rpm.content_type() + if content_type == Katello.pulp_server.extensions.rpm.content_type() criteria[:fields] = { :unit => Package::PULP_SELECT_FIELDS} end - Runcible::Extensions::Repository.unassociate_units(self.pulp_id, criteria) + Katello.pulp_server.extensions.repository.unassociate_units(self.pulp_id, criteria) end def clear_contents self.clear_content_indices if Katello.config.use_elasticsearch - tasks = [Runcible::Extensions::Errata, Runcible::Extensions::PackageGroup, - Runcible::Extensions::Distribution].collect do |type| + tasks = [Katello.pulp_server.extensions.errata, Katello.pulp_server.extensions.package_group, + Katello.pulp_server.extensions.distribution].collect do |type| type.unassociate_from_repo(self.pulp_id, {}) end.flatten(1) - tasks << Runcible::Extensions::Repository.unassociate_units(self.pulp_id, + tasks << Katello.pulp_server.extensions.repository.unassociate_units(self.pulp_id, {:type_ids=>['rpm'], :filters=>{}, :fields => { :unit => Package::PULP_SELECT_FIELDS}}) tasks end @@ -469,36 +469,36 @@ def sync_start def add_packages pkg_id_list previous = self.environmental_instances(self.content_view).in_environment(self.environment.prior).first - Runcible::Extensions::Rpm.copy(previous.pulp_id, self.pulp_id, {:ids=>pkg_id_list}) + Katello.pulp_server.extensions.rpm.copy(previous.pulp_id, self.pulp_id, {:ids=>pkg_id_list}) end def add_errata errata_unit_id_list previous = self.environmental_instances(self.content_view).in_environment(self.environment.prior).first - Runcible::Extensions::Errata.copy(previous.pulp_id, self.pulp_id, {:ids=>errata_unit_id_list}) + Katello.pulp_server.extensions.errata.copy(previous.pulp_id, self.pulp_id, {:ids=>errata_unit_id_list}) end def add_distribution distribution_id previous = self.environmental_instances(self.content_view).in_environment(self.environment.prior).first - Runcible::Extensions::Distribution.copy(previous.pulp_id, self.pulp_id, {:ids=>[distribution_id]}) + Katello.pulp_server.extensions.distribution.copy(previous.pulp_id, self.pulp_id, {:ids=>[distribution_id]}) end def delete_packages package_id_list - Runcible::Extensions::Rpm.unassociate_unit_ids_from_repo(self.pulp_id, package_id_list) + Katello.pulp_server.extensions.rpm.unassociate_unit_ids_from_repo(self.pulp_id, package_id_list) end def delete_errata errata_id_list - Runcible::Extensions::Errata.unassociate_unit_ids_from_repo(self.pulp_id, errata_id_list) + Katello.pulp_server.extensions.errata.unassociate_unit_ids_from_repo(self.pulp_id, errata_id_list) end def delete_distribution distribution_id - Runcible::Extensions::Distribution.unassociate_unit_ids_from_repo(self.pulp_id, [distribution_id]) + Katello.pulp_server.extensions.distribution.unassociate_unit_ids_from_repo(self.pulp_id, [distribution_id]) end def cancel_sync Rails.logger.info "Cancelling synchronization of repository #{self.pulp_id}" history = self.sync_status return if history.nil? || history.state == ::PulpSyncStatus::Status::NOT_SYNCED - Runcible::Resources::Task.cancel(history.uuid) + Katello.pulp_server.resources.task.cancel(history.uuid) end def sync_finish @@ -532,7 +532,7 @@ def successful_sync?(sync_history_item) end def generate_metadata - Runcible::Extensions::Repository.publish_all(self.pulp_id) + Katello.pulp_server.extensions.repository.publish_all(self.pulp_id) end def sort_sync_status statuses @@ -568,13 +568,13 @@ def sort_sync_status statuses def _get_most_recent_sync_status() begin - history = Runcible::Extensions::Repository.sync_status(pulp_id) + history = Katello.pulp_server.extensions.repository.sync_status(pulp_id) if history.nil? or history.empty? - history = PulpSyncStatus.convert_history(Runcible::Extensions::Repository.sync_history(pulp_id)) + history = PulpSyncStatus.convert_history(Katello.pulp_server.extensions.repository.sync_history(pulp_id)) end rescue => e - history = PulpSyncStatus.convert_history(Runcible::Extensions::Repository.sync_history(pulp_id)) + history = PulpSyncStatus.convert_history(Katello.pulp_server.extensions.repository.sync_history(pulp_id)) end if history.nil? or history.empty? @@ -593,7 +593,7 @@ def package_lists_for_publish names = [] filenames = [] - rpms = Runcible::Extensions::Repository.unit_search(self.pulp_id, + rpms = Katello.pulp_server.extensions.repository.unit_search(self.pulp_id, :type_ids=>['rpm'], :fields =>{:unit=>["filename", "name"]}) diff --git a/app/models/glue/pulp/repos.rb b/app/models/glue/pulp/repos.rb index e149d487ed4..b1f66dec9bd 100644 --- a/app/models/glue/pulp/repos.rb +++ b/app/models/glue/pulp/repos.rb @@ -56,7 +56,7 @@ def self.prepopulate!(products, environment, repos = [], content_view = nil) end end - items = Runcible::Extensions::Repository.search_by_repository_ids(Repository.in_environment(environment).pluck(:pulp_id)) + items = Katello.pulp_server.extensions.repository.search_by_repository_ids(Repository.in_environment(environment).pluck(:pulp_id)) full_repos = {} items.each { |item| full_repos[item["id"]] = item } diff --git a/app/models/glue/pulp/user.rb b/app/models/glue/pulp/user.rb index 39119733a21..5a57cc94507 100644 --- a/app/models/glue/pulp/user.rb +++ b/app/models/glue/pulp/user.rb @@ -16,7 +16,7 @@ def self.included(base) base.send :include, InstanceMethods base.send :include, LazyAccessor base.class_eval do - lazy_accessor :login, :name, :initializer => lambda {|s| Runcible::Resources::User.retrieve(self.remote_id) } + lazy_accessor :login, :name, :initializer => lambda {|s| Katello.pulp_server.resources.user.retrieve(self.remote_id) } before_save :save_pulp_orchestration before_destroy :destroy_pulp_orchestration end @@ -40,7 +40,7 @@ def prune_pulp_only_attributes(attrs) end def set_pulp_user - Runcible::Resources::User.create(self.remote_id, {:name => self.remote_id, :password => Password.generate_random_string(16)}) + Katello.pulp_server.resources.user.create(self.remote_id, {:name => self.remote_id, :password => Password.generate_random_string(16)}) rescue RestClient::ExceptionWithResponse => e if e.http_code == 409 Rails.logger.info "pulp user #{self.remote_id}: already exists. continuing" @@ -55,19 +55,19 @@ def set_pulp_user end def set_super_user_role - Runcible::Resources::Role.add "super-users", self.remote_id + Katello.pulp_server.resources.role.add "super-users", self.remote_id true #assume everything is ok unless there was an exception thrown end def del_pulp_user - Runcible::Resources::User.delete(self.remote_id) + Katello.pulp_server.resources.user.delete(self.remote_id) rescue => e Rails.logger.error "Failed to delete pulp user #{self.remote_id}: #{e}, #{e.backtrace.join("\n")}" raise e end def del_super_admin_role - Runcible::Resources::Role.remove("super-users", self.remote_id) + Katello.pulp_server.resources.role.remove("super-users", self.remote_id) true #assume everything is ok unless there was an exception thrown end diff --git a/app/models/job.rb b/app/models/job.rb index 3c85babec42..441ffce4d00 100644 --- a/app/models/job.rb +++ b/app/models/job.rb @@ -25,7 +25,7 @@ def refresh_tasks(ids) unless ids.nil? || ids.empty? uuids = TaskStatus.where(:id => ids).pluck(:uuid) uuids.each do |uuid| - pulp_task = Runcible::Resources::Task.poll(uuid) + pulp_task = Katello.pulp_server.resources.task.poll(uuid) PulpTaskStatus.dump_state(pulp_task, TaskStatus.find_by_uuid(pulp_task[:task_id])) end end diff --git a/app/models/ping.rb b/app/models/ping.rb index 71edaa502e5..6962247b015 100644 --- a/app/models/ping.rb +++ b/app/models/ping.rb @@ -85,7 +85,7 @@ def ping # pulp - ping with oauth if Katello.config.katello? exception_watch(result[:status][:pulp_auth]) do - Runcible::Resources::User.retrieve_all + Katello.pulp_server.resources.user.retrieve_all end end diff --git a/app/models/pulp_task_status.rb b/app/models/pulp_task_status.rb index 9db72f6ee0f..b8c9410063a 100644 --- a/app/models/pulp_task_status.rb +++ b/app/models/pulp_task_status.rb @@ -77,7 +77,7 @@ def self.dump_state(pulp_status, task_status) end def self.refresh task_status - pulp_task = Runcible::Resources::Task.poll(task_status.uuid) + pulp_task = Katello.pulp_server.resources.task.poll(task_status.uuid) self.dump_state(pulp_task, task_status) task_status.after_refresh diff --git a/app/models/task_status.rb b/app/models/task_status.rb index 3056c3569f8..235dac22a7d 100644 --- a/app/models/task_status.rb +++ b/app/models/task_status.rb @@ -307,7 +307,7 @@ def self.refresh_for_distributor(distributor_id) def self.refresh(ids) unless ids.nil? || ids.empty? uuids = TaskStatus.where(:id=>ids).pluck(:uuid) - ret = Runcible::Resources::Task.poll_all(uuids) + ret = Katello.pulp_server.resources.task.poll_all(uuids) ret.each do |pulp_task| PulpTaskStatus.dump_state(pulp_task, TaskStatus.find_by_uuid(pulp_task[:task_id])) end diff --git a/bundler.d/pulp.rb b/bundler.d/pulp.rb index ec4b11f03ac..3cc953996d4 100644 --- a/bundler.d/pulp.rb +++ b/bundler.d/pulp.rb @@ -3,7 +3,7 @@ if Katello.early_config.katello? group :pulp do # Pulp API bindings - gem 'runcible', '~> 0.4.12' + gem 'runcible', '~> 1.0.0' gem 'anemone' end end diff --git a/config/initializers/runcible.rb b/config/initializers/runcible.rb index b2e57814f58..9aaf1eec6d8 100644 --- a/config/initializers/runcible.rb +++ b/config/initializers/runcible.rb @@ -1,3 +1,5 @@ +require 'util/thread_session' + if Katello.config.use_pulp # override Runcible's default configuration error message @@ -9,4 +11,19 @@ def self.message end end + uri = URI.parse(Katello.config.pulp.url) + + Katello.pulp_server = Runcible::Instance.new({ + :url => "#{uri.scheme}://#{uri.host.downcase}", + :api_path => uri.path, + :timeout => Katello.config.rest_client_timeout, + :open_timeout => Katello.config.rest_client_timeout, + :oauth => {:oauth_secret => Katello.config.pulp.oauth_secret, + :oauth_key => Katello.config.pulp.oauth_key }, + :logging => {:logger => ::Logging.logger['pulp_rest'], + :exception => true, + :debug => true } + }) + + end \ No newline at end of file diff --git a/katello.spec b/katello.spec index 8a7b7e4ce67..733c940d702 100644 --- a/katello.spec +++ b/katello.spec @@ -256,7 +256,7 @@ Requires: pulp-server Requires: pulp-rpm-plugins Requires: pulp-selinux Requires: createrepo >= 0.9.9-18%{?dist} -Requires: %{?scl_prefix}rubygem(runcible) >= 0.4.12 +Requires: %{?scl_prefix}rubygem(runcible) >= 1.0.0 %description glue-pulp Katello connection classes for the Pulp backend diff --git a/spec/controllers/api/v1/custom_info_controller_spec.rb b/spec/controllers/api/v1/custom_info_controller_spec.rb index 856bd2ba6f6..0e5ff55581e 100644 --- a/spec/controllers/api/v1/custom_info_controller_spec.rb +++ b/spec/controllers/api/v1/custom_info_controller_spec.rb @@ -31,7 +31,7 @@ Resources::Candlepin::Consumer.stub!(:create).and_return({ :uuid => uuid, :owner => { :key => uuid } }) - Runcible::Extensions::Consumer.stub!(:create).and_return({ :id => uuid }) if Katello.config.katello? + Katello.pulp_server.extensions.consumer.stub!(:create).and_return({ :id => uuid }) if Katello.config.katello? @org = Organization.create!(:name => "test_org", :label => "test_org") @env1 = create_environment(:name => "test_env", :label => "test_env", :prior => @org.library.id, :organization => @org) diff --git a/spec/controllers/api/v1/organization_default_info_controller_spec.rb b/spec/controllers/api/v1/organization_default_info_controller_spec.rb index 3df92b31775..d11488dd59a 100644 --- a/spec/controllers/api/v1/organization_default_info_controller_spec.rb +++ b/spec/controllers/api/v1/organization_default_info_controller_spec.rb @@ -31,7 +31,7 @@ Resources::Candlepin::Consumer.stub!(:create).and_return({ :uuid => uuid, :owner => { :key => uuid } }) - Runcible::Extensions::Consumer.stub!(:create).and_return({ :id => uuid }) if Katello.config.app_mode == "katello" + Katello.pulp_server.extensions.consumer.stub!(:create).and_return({ :id => uuid }) if Katello.config.app_mode == "katello" @org = Organization.create!(:name => "test_org", :label => "test_org") @env1 = create_environment(:name => "test_env", :label => "test_env", :prior => @org.library.id, :organization => @org) diff --git a/spec/controllers/api/v1/packages_controller_spec.rb b/spec/controllers/api/v1/packages_controller_spec.rb index 9fe463fa44a..faf6731c272 100644 --- a/spec/controllers/api/v1/packages_controller_spec.rb +++ b/spec/controllers/api/v1/packages_controller_spec.rb @@ -39,7 +39,7 @@ @repo.stub(:packages).and_return([]) package = { 'repository_memberships' => [repo_id] }.with_indifferent_access - Runcible::Extensions::Rpm.stub(:find_by_unit_id).and_return(package) + Katello.pulp_server.extensions.rpm.stub(:find_by_unit_id).and_return(package) @request.env["HTTP_ACCEPT"] = "application/json" login_user_api @@ -94,7 +94,7 @@ describe "show a package" do it "should call pulp find package api" do - Runcible::Extensions::Rpm.should_receive(:find_by_unit_id).once.with('1') + Katello.pulp_server.extensions.rpm.should_receive(:find_by_unit_id).once.with('1') get 'show', :id => '1', :repository_id => repo_id end end diff --git a/spec/controllers/api/v1/products_controller_spec.rb b/spec/controllers/api/v1/products_controller_spec.rb index dd9ecec4f88..68e3641396f 100644 --- a/spec/controllers/api/v1/products_controller_spec.rb +++ b/spec/controllers/api/v1/products_controller_spec.rb @@ -62,7 +62,7 @@ describe "show product" do before do - Runcible::Extensions::Repository.stub(:retrieve).and_return(RepoTestData::REPO_PROPERTIES) + Katello.pulp_server.extensions.repository.stub(:retrieve).and_return(RepoTestData::REPO_PROPERTIES) end let(:action) { :show } @@ -80,7 +80,7 @@ let(:gpg_key) { GpgKey.create!(:name => "Gpg key", :content => "100", :organization => @organization) } before do - Runcible::Extensions::Repository.stub(:retrieve).and_return(RepoTestData::REPO_PROPERTIES) + Katello.pulp_server.extensions.repository.stub(:retrieve).and_return(RepoTestData::REPO_PROPERTIES) Product.stub(:find_by_cp_id).with(@product.cp_id).and_return(@product) @product.stub(:update_attributes! => true) end diff --git a/spec/controllers/api/v1/repositories_controller_spec.rb b/spec/controllers/api/v1/repositories_controller_spec.rb index 4799e6a5b29..0c313b56dd5 100644 --- a/spec/controllers/api/v1/repositories_controller_spec.rb +++ b/spec/controllers/api/v1/repositories_controller_spec.rb @@ -49,8 +49,8 @@ @repo = new_test_repo(@organization.library, @product, "repo_1", "#{@organization.name}/Library/prod/repo") Repository.stub(:find).and_return(@repo) PulpSyncStatus.stub(:using_pulp_task).and_return(task_stub) - Runcible::Extensions::PackageGroup.stub(:all => {}) - Runcible::Extensions::PackageCategory.stub(:all => {}) + Katello.pulp_server.extensions.package_group.stub(:all => {}) + Katello.pulp_server.extensions.package_category.stub(:all => {}) end describe "for create" do @@ -377,10 +377,10 @@ before do @repo = Repository.new(:pulp_id => "123", :id => "123") Repository.stub(:find).and_return(@repo) - Runcible::Extensions::Repository.stub(:package_groups).and_return([]) + Katello.pulp_server.extensions.repository.stub(:package_groups).and_return([]) end it "should call Pulp layer" do - Runcible::Extensions::Repository.should_receive(:package_groups).with("123") + Katello.pulp_server.extensions.repository.should_receive(:package_groups).with("123") subject end it { should be_success } @@ -392,10 +392,10 @@ before do @repo = Repository.new(:pulp_id => "123", :id => "123") Repository.stub(:find).and_return(@repo) - Runcible::Extensions::Repository.stub(:package_categories).and_return([]) + Katello.pulp_server.extensions.repository.stub(:package_categories).and_return([]) end it "should call Pulp layer" do - Runcible::Extensions::Repository.should_receive(:package_categories).with("123") + Katello.pulp_server.extensions.repository.should_receive(:package_categories).with("123") subject end it { should be_success } diff --git a/spec/controllers/api/v1/subscriptions_controller_spec.rb b/spec/controllers/api/v1/subscriptions_controller_spec.rb index dc984e01795..59e69b08596 100644 --- a/spec/controllers/api/v1/subscriptions_controller_spec.rb +++ b/spec/controllers/api/v1/subscriptions_controller_spec.rb @@ -35,8 +35,8 @@ Resources::Candlepin::Consumer.stub!(:create).and_return({ :uuid => uuid, :owner => { :key => uuid } }) Resources::Candlepin::Consumer.stub!(:update).and_return(true) - Runcible::Extensions::Consumer.stub!(:create).and_return({ :id => uuid }) - Runcible::Extensions::Consumer.stub!(:update).and_return(true) + Katello.pulp_server.extensions.consumer.stub!(:create).and_return({ :id => uuid }) + Katello.pulp_server.extensions.consumer.stub!(:update).and_return(true) @organization = Organization.create!(:name => 'test_org', :label => 'test_org') @environment_1 = create_environment(:name => 'test_1', :label => 'test_1', :prior => @organization.library.id, :organization => @organization) diff --git a/spec/controllers/api/v1/sync_controller_spec.rb b/spec/controllers/api/v1/sync_controller_spec.rb index 2f4cae40258..5cc93086529 100644 --- a/spec/controllers/api/v1/sync_controller_spec.rb +++ b/spec/controllers/api/v1/sync_controller_spec.rb @@ -177,8 +177,8 @@ before(:each) do stub_product_with_repo - Runcible::Extensions::Repository.stub(:sync).with(@repository.pulp_id, anything()).and_return([async_task_1]) - Runcible::Extensions::Repository.stub(:sync).with(@repository2.pulp_id, anything()).and_return([async_task_2]) + Katello.pulp_server.extensions.repository.stub(:sync).with(@repository.pulp_id, anything()).and_return([async_task_1]) + Katello.pulp_server.extensions.repository.stub(:sync).with(@repository2.pulp_id, anything()).and_return([async_task_2]) end it "should find provider" do diff --git a/spec/controllers/api/v1/system_groups_controller_spec.rb b/spec/controllers/api/v1/system_groups_controller_spec.rb index 229109455d2..a5eb86a7b38 100644 --- a/spec/controllers/api/v1/system_groups_controller_spec.rb +++ b/spec/controllers/api/v1/system_groups_controller_spec.rb @@ -35,7 +35,7 @@ Resources::Candlepin::Consumer.stub!(:create).and_return({ :uuid => uuid, :owner => { :key => uuid } }) Resources::Candlepin::Consumer.stub!(:update).and_return(true) Resources::Candlepin::Consumer.stub!(:destroy).and_return(true) - Runcible::Extensions::Consumer.stub!(:delete).and_return(true) + Katello.pulp_server.extensions.consumer.stub!(:delete).and_return(true) @system = create_system(:name => "bar1", :environment => @environment, :cp_type => "system", :facts => { "Test" => "" }) diff --git a/spec/controllers/api/v1/systems_controller_spec.rb b/spec/controllers/api/v1/systems_controller_spec.rb index 5055ac45f12..c1a46c3e36a 100644 --- a/spec/controllers/api/v1/systems_controller_spec.rb +++ b/spec/controllers/api/v1/systems_controller_spec.rb @@ -57,8 +57,8 @@ Resources::Candlepin::Consumer.stub!(:available_pools).and_return([]) if Katello.config.katello? - Runcible::Extensions::Consumer.stub!(:create).and_return({ :id => uuid }) - Runcible::Extensions::Consumer.stub!(:update).and_return(true) + Katello.pulp_server.extensions.consumer.stub!(:create).and_return({ :id => uuid }) + Katello.pulp_server.extensions.consumer.stub!(:update).and_return(true) end @organization = Organization.create!(:name => 'test_org', :label => 'test_org') @@ -378,7 +378,7 @@ it_should_behave_like "protected action" it "successfully with update permissions" do - Runcible::Extensions::Consumer.should_receive(:upload_profile).once.with(uuid, 'rpm', package_profile[:profile]).and_return(true) + Katello.pulp_server.extensions.consumer.should_receive(:upload_profile).once.with(uuid, 'rpm', package_profile[:profile]).and_return(true) put :upload_package_profile, :id => uuid, :_json => package_profile[:profile], :format => :json response.body.should == @sys.to_json end @@ -390,7 +390,7 @@ it_should_behave_like "protected action" it "successfully with register permissions" do - Runcible::Extensions::Consumer.should_receive(:upload_profile).once.with(uuid, 'rpm', package_profile[:profile]).and_return(true) + Katello.pulp_server.extensions.consumer.should_receive(:upload_profile).once.with(uuid, 'rpm', package_profile[:profile]).and_return(true) put :upload_package_profile, :id => uuid, :_json => package_profile[:profile], :format => :json response.body.should == @sys.to_json end @@ -433,21 +433,21 @@ it_should_behave_like "protected action" it "should change the name" do - Runcible::Extensions::Consumer.should_receive(:update).once.with(uuid, { :display_name => "foo_name" }).and_return(true) if Katello.config.katello? + Katello.pulp_server.extensions.consumer.should_receive(:update).once.with(uuid, { :display_name => "foo_name" }).and_return(true) if Katello.config.katello? put :update, :id => uuid, :name => "foo_name" response.body.should == @sys.to_json response.should be_success end it "should change the description" do - Runcible::Extensions::Consumer.should_receive(:update).once.with(uuid, { :display_name => "test" }).and_return(true) if Katello.config.katello? + Katello.pulp_server.extensions.consumer.should_receive(:update).once.with(uuid, { :display_name => "test" }).and_return(true) if Katello.config.katello? put :update, :id => uuid, :description => "redkin is awesome." response.body.should == @sys.to_json response.should be_success end it "should change the location" do - Runcible::Extensions::Consumer.should_receive(:update).once.with(uuid, { :display_name => "test" }).and_return(true) if Katello.config.katello? + Katello.pulp_server.extensions.consumer.should_receive(:update).once.with(uuid, { :display_name => "test" }).and_return(true) if Katello.config.katello? put :update, :id => uuid, :location => "never-neverland" response.body.should == @sys.to_json response.should be_success @@ -599,7 +599,7 @@ end it "should retrieve Consumer's errata from pulp" do - Runcible::Extensions::Consumer.should_receive(:applicable_errata).with(@system.uuid) + Katello.pulp_server.extensions.consumer.should_receive(:applicable_errata).with(@system.uuid) get :errata, :id => @system.uuid end end @@ -682,45 +682,45 @@ let(:enabled_repos_empty) { { "repos" => [] } } it "should not bind any" do - Runcible::Extensions::Consumer.should_receive(:retrieve_bindings).with(@system.uuid).once.and_return([{ 'repo_id' => 'a' }, { 'repo_id' => 'b' }]) + Katello.pulp_server.extensions.consumer.should_receive(:retrieve_bindings).with(@system.uuid).once.and_return([{ 'repo_id' => 'a' }, { 'repo_id' => 'b' }]) put :enabled_repos, :id => @system.uuid, :enabled_repos => enabled_repos response.status.should == 200 end it "should bind one" do - Runcible::Extensions::Consumer.should_receive(:retrieve_bindings).with(@system.uuid).once.and_return([{ 'repo_id' => 'a' }]) - Runcible::Extensions::Consumer.should_receive(:bind_all).with(@system.uuid, 'b', false).once.and_return([]) + Katello.pulp_server.extensions.consumer.should_receive(:retrieve_bindings).with(@system.uuid).once.and_return([{ 'repo_id' => 'a' }]) + Katello.pulp_server.extensions.consumer.should_receive(:bind_all).with(@system.uuid, 'b', false).once.and_return([]) put :enabled_repos, :id => @system.uuid, :enabled_repos => enabled_repos response.status.should == 200 end it "should bind two" do - Runcible::Extensions::Consumer.should_receive(:retrieve_bindings).with(@system.uuid).once.and_return({}) - Runcible::Extensions::Consumer.should_receive(:bind_all).with(@system.uuid, 'a', false).once.once.and_return([]) - Runcible::Extensions::Consumer.should_receive(:bind_all).with(@system.uuid, 'b', false).once.once.and_return([]) + Katello.pulp_server.extensions.consumer.should_receive(:retrieve_bindings).with(@system.uuid).once.and_return({}) + Katello.pulp_server.extensions.consumer.should_receive(:bind_all).with(@system.uuid, 'a', false).once.once.and_return([]) + Katello.pulp_server.extensions.consumer.should_receive(:bind_all).with(@system.uuid, 'b', false).once.once.and_return([]) put :enabled_repos, :id => @system.uuid, :enabled_repos => enabled_repos response.status.should == 200 end it "should bind one and unbind one" do - Runcible::Extensions::Consumer.should_receive(:retrieve_bindings).with(@system.uuid).once.and_return([{ 'repo_id' => 'b' }, { 'repo_id' => 'c' }]) - Runcible::Extensions::Consumer.should_receive(:bind_all).with(@system.uuid, 'a', false).once.once.and_return([]) - Runcible::Extensions::Consumer.should_receive(:unbind_all).with(@system.uuid, 'c').once.and_return([]) + Katello.pulp_server.extensions.consumer.should_receive(:retrieve_bindings).with(@system.uuid).once.and_return([{ 'repo_id' => 'b' }, { 'repo_id' => 'c' }]) + Katello.pulp_server.extensions.consumer.should_receive(:bind_all).with(@system.uuid, 'a', false).once.once.and_return([]) + Katello.pulp_server.extensions.consumer.should_receive(:unbind_all).with(@system.uuid, 'c').once.and_return([]) put :enabled_repos, :id => @system.uuid, :enabled_repos => enabled_repos response.status.should == 200 end it "should unbind two" do - Runcible::Extensions::Consumer.should_receive(:retrieve_bindings).with(@system.uuid).once.and_return([{ 'repo_id' => 'a' }, { 'repo_id' => 'b' }]) - Runcible::Extensions::Consumer.should_receive(:unbind_all).with(@system.uuid, 'a').once.once.and_return([]) - Runcible::Extensions::Consumer.should_receive(:unbind_all).with(@system.uuid, 'b').once.once.and_return([]) + Katello.pulp_server.extensions.consumer.should_receive(:retrieve_bindings).with(@system.uuid).once.and_return([{ 'repo_id' => 'a' }, { 'repo_id' => 'b' }]) + Katello.pulp_server.extensions.consumer.should_receive(:unbind_all).with(@system.uuid, 'a').once.once.and_return([]) + Katello.pulp_server.extensions.consumer.should_receive(:unbind_all).with(@system.uuid, 'b').once.once.and_return([]) put :enabled_repos, :id => @system.uuid, :enabled_repos => enabled_repos_empty response.status.should == 200 end it "should do nothing" do - Runcible::Extensions::Consumer.should_receive(:retrieve_bindings).with(@system.uuid).once.and_return({}) + Katello.pulp_server.extensions.consumer.should_receive(:retrieve_bindings).with(@system.uuid).once.and_return({}) put :enabled_repos, :id => @system.uuid, :enabled_repos => enabled_repos_empty response.status.should == 200 end diff --git a/spec/controllers/api/v1/systems_packages_controller_spec.rb b/spec/controllers/api/v1/systems_packages_controller_spec.rb index d827fe397e3..09a1f8fc319 100644 --- a/spec/controllers/api/v1/systems_packages_controller_spec.rb +++ b/spec/controllers/api/v1/systems_packages_controller_spec.rb @@ -36,8 +36,8 @@ Resources::Candlepin::Consumer.stub!(:update).and_return(true) if Katello.config.katello? - Runcible::Extensions::Consumer.stub!(:create).and_return({ :id => uuid }) - Runcible::Extensions::Consumer.stub!(:update).and_return(true) + Katello.pulp_server.extensions.consumer.stub!(:create).and_return({ :id => uuid }) + Katello.pulp_server.extensions.consumer.stub!(:update).and_return(true) end @organization = Organization.create!(:name => 'test_org', :label => 'test_org') diff --git a/spec/controllers/repositories_controller_spec.rb b/spec/controllers/repositories_controller_spec.rb index 1db92cbdf60..4aa7b23bd44 100644 --- a/spec/controllers/repositories_controller_spec.rb +++ b/spec/controllers/repositories_controller_spec.rb @@ -54,7 +54,7 @@ describe "GET Edit" do before do Product.stub!(:find).and_return(@product) - Runcible::Extensions::Repository.stub(:find).and_return(@repository) + Katello.pulp_server.extensions.repository.stub(:find).and_return(@repository) end let(:action) {:edit} let(:req) { get :edit, :provider_id => @provider.id, :product_id => @product.id, :id => @repository.id} @@ -154,7 +154,7 @@ Resources::Candlepin::Content.stub!(:get).and_return(content) Resources::Candlepin::Content.stub!(:create).and_return(content) - Runcible::Extensions::Repository.stub(:publish_all).and_return([]) + Katello.pulp_server.extensions.repository.stub(:publish_all).and_return([]) @repo_name = "repo-#{rand 10 ** 8}" post :create, { :product_id => @product.id, :provider_id => @product.provider.id, diff --git a/spec/controllers/sync_management_controller_spec.rb b/spec/controllers/sync_management_controller_spec.rb index d10425fa6e6..5503c44430d 100644 --- a/spec/controllers/sync_management_controller_spec.rb +++ b/spec/controllers/sync_management_controller_spec.rb @@ -26,7 +26,7 @@ context "Environment is set" do before (:each) do - Runcible::Extensions::Repository.stub(:search_by_repository_ids).and_return([]) + Katello.pulp_server.extensions.repository.stub(:search_by_repository_ids).and_return([]) setup_current_organization @library = KTEnvironment.new @library.stub!(:library?).and_return(true) diff --git a/spec/controllers/system_events_controller_spec.rb b/spec/controllers/system_events_controller_spec.rb index 679cd739320..f022ebe0753 100644 --- a/spec/controllers/system_events_controller_spec.rb +++ b/spec/controllers/system_events_controller_spec.rb @@ -30,8 +30,8 @@ Resources::Candlepin::Consumer.stub!(:update).and_return(true) Resources::Candlepin::Consumer.stub!(:events).and_return([]) - Runcible::Extensions::Consumer.stub!(:create).and_return({:id => uuid}) - Runcible::Extensions::Consumer.stub!(:update).and_return(true) + Katello.pulp_server.extensions.consumer.stub!(:create).and_return({:id => uuid}) + Katello.pulp_server.extensions.consumer.stub!(:update).and_return(true) end describe "system tasks", :katello => true do diff --git a/spec/controllers/system_group_errata_controller_spec.rb b/spec/controllers/system_group_errata_controller_spec.rb index 6ec4d48848f..d5635db398d 100644 --- a/spec/controllers/system_group_errata_controller_spec.rb +++ b/spec/controllers/system_group_errata_controller_spec.rb @@ -33,8 +33,8 @@ Resources::Candlepin::Consumer.stub!(:create).and_return({:uuid => uuid, :owner => {:key => uuid}}) Resources::Candlepin::Consumer.stub!(:update).and_return(true) - Runcible::Extensions::Consumer.stub!(:create).and_return({:id => uuid}) - Runcible::Extensions::Consumer.stub!(:update).and_return(true) + Katello.pulp_server.extensions.consumer.stub!(:create).and_return({:id => uuid}) + Katello.pulp_server.extensions.consumer.stub!(:update).and_return(true) @group = SystemGroup.new(:name=>"test_group", :organization=>@org) @system = create_system(:name=>"verbose", :environment => @environment, :cp_type=>"system", :facts=>{"Test1"=>1, "verbose_facts" => "Test facts"}) diff --git a/spec/controllers/system_group_events_controller_spec.rb b/spec/controllers/system_group_events_controller_spec.rb index eb8a785fd1a..f1b73a09584 100644 --- a/spec/controllers/system_group_events_controller_spec.rb +++ b/spec/controllers/system_group_events_controller_spec.rb @@ -33,8 +33,8 @@ Resources::Candlepin::Consumer.stub!(:create).and_return({:uuid => uuid, :owner => {:key => uuid}}) Resources::Candlepin::Consumer.stub!(:update).and_return(true) - Runcible::Extensions::Consumer.stub!(:create).and_return({:id => uuid}) - Runcible::Extensions::Consumer.stub!(:update).and_return(true) + Katello.pulp_server.extensions.consumer.stub!(:create).and_return({:id => uuid}) + Katello.pulp_server.extensions.consumer.stub!(:update).and_return(true) @group = SystemGroup.new(:name=>"test_group", :organization=>@org) @system = create_system(:name=>"verbose", :environment => @environment, :cp_type=>"system", :facts=>{"Test1"=>1, "verbose_facts" => "Test facts"}) diff --git a/spec/controllers/system_group_packages_controller_spec.rb b/spec/controllers/system_group_packages_controller_spec.rb index ca19e92b1dc..491f8937ac2 100644 --- a/spec/controllers/system_group_packages_controller_spec.rb +++ b/spec/controllers/system_group_packages_controller_spec.rb @@ -33,8 +33,8 @@ Resources::Candlepin::Consumer.stub!(:create).and_return({:uuid => uuid, :owner => {:key => uuid}}) Resources::Candlepin::Consumer.stub!(:update).and_return(true) - Runcible::Extensions::Consumer.stub!(:create).and_return({:id => uuid}) - Runcible::Extensions::Consumer.stub!(:update).and_return(true) + Katello.pulp_server.extensions.consumer.stub!(:create).and_return({:id => uuid}) + Katello.pulp_server.extensions.consumer.stub!(:update).and_return(true) @group = SystemGroup.new(:name=>"test_group", :organization=>@org) @system = create_system(:name=>"verbose", :environment => @environment, :cp_type=>"system", :facts=>{"Test1"=>1, "verbose_facts" => "Test facts"}) diff --git a/spec/controllers/system_groups_controller_spec.rb b/spec/controllers/system_groups_controller_spec.rb index fc2865a2882..3efd7f420c5 100644 --- a/spec/controllers/system_groups_controller_spec.rb +++ b/spec/controllers/system_groups_controller_spec.rb @@ -36,7 +36,7 @@ Resources::Candlepin::Consumer.stub!(:create).and_return({:uuid => uuid, :owner => {:key => uuid}}) Resources::Candlepin::Consumer.stub!(:update).and_return(true) Resources::Candlepin::Consumer.stub!(:destroy).and_return(true) - Runcible::Extensions::Consumer.stub!(:delete).and_return(true) + Katello.pulp_server.extensions.consumer.stub!(:delete).and_return(true) @system = create_system(:name=>"bar1", :environment => @environment, :cp_type=>"system", :facts=>{"Test" => ""}) end diff --git a/spec/controllers/system_packages_controller_spec.rb b/spec/controllers/system_packages_controller_spec.rb index 5ddc5d8cddf..ada202d59cd 100644 --- a/spec/controllers/system_packages_controller_spec.rb +++ b/spec/controllers/system_packages_controller_spec.rb @@ -32,8 +32,8 @@ Resources::Candlepin::Consumer.stub!(:create).and_return({:uuid => uuid, :owner => {:key => uuid}}) Resources::Candlepin::Consumer.stub!(:update).and_return(true) - Runcible::Extensions::Consumer.stub!(:create).and_return({:id => uuid}) - Runcible::Extensions::Consumer.stub!(:update).and_return(true) + Katello.pulp_server.extensions.consumer.stub!(:create).and_return({:id => uuid}) + Katello.pulp_server.extensions.consumer.stub!(:update).and_return(true) end describe "viewing packages" do @@ -46,7 +46,7 @@ before (:each) do @system = create_system(:name=>"verbose", :environment => @environment, :cp_type=>"system", :facts=>{"Test1"=>1, "verbose_facts" => "Test facts"}) - Runcible::Extensions::Consumer.stub!(:retrieve_profile).and_return({"profile" => []}) + Katello.pulp_server.extensions.consumer.stub!(:retrieve_profile).and_return({"profile" => []}) Resources::Candlepin::Consumer.stub!(:events).and_return([]) end diff --git a/spec/helpers/organization_helper_methods.rb b/spec/helpers/organization_helper_methods.rb index 02bdc28c9e2..e9bed25637e 100644 --- a/spec/helpers/organization_helper_methods.rb +++ b/spec/helpers/organization_helper_methods.rb @@ -69,7 +69,7 @@ def find_or_create_content_view(env) end def promote_content_view(cv, from_env, to_env) - Runcible::Extensions::Repository.stub(:create).and_return({}) + Katello.pulp_server.extensions.repository.stub(:create).and_return({}) Repository.any_instance.stub(:clone_contents).and_return([]) Repository.any_instance.stub(:sync).and_return([]) Repository.any_instance.stub(:pulp_repo_facts).and_return({:clone_ids => []}) diff --git a/spec/helpers/sync_management_helper_spec.rb b/spec/helpers/sync_management_helper_spec.rb index 1d30ddc56fb..b9256e4f622 100644 --- a/spec/helpers/sync_management_helper_spec.rb +++ b/spec/helpers/sync_management_helper_spec.rb @@ -35,7 +35,7 @@ class DummyObject before do disable_product_orchestration disable_org_orchestration - Runcible::Extensions::Repository.stub(:search_by_repository_ids).and_return([]) if Katello.config.katello? + Katello.pulp_server.extensions.repository.stub(:search_by_repository_ids).and_return([]) if Katello.config.katello? ProductTestData::PRODUCT_WITH_ATTRS.merge!({ :provider => provider }) end diff --git a/spec/helpers/system_helper_methods.rb b/spec/helpers/system_helper_methods.rb index 3b61046b588..f41f5aa4a60 100644 --- a/spec/helpers/system_helper_methods.rb +++ b/spec/helpers/system_helper_methods.rb @@ -23,8 +23,8 @@ def setup_system_creation Resources::Candlepin::Consumer.stub!(:update).and_return(true) if Katello.config.katello? - Runcible::Extensions::Consumer.stub!(:create).and_return({ :id => uuid }) - Runcible::Extensions::Consumer.stub!(:update).and_return(true) + Katello.pulp_server.extensions.consumer.stub!(:create).and_return({ :id => uuid }) + Katello.pulp_server.extensions.consumer.stub!(:update).and_return(true) end new_test_org end @@ -83,8 +83,8 @@ def pulp_task_with_error def stub_consumer_packages_install(expected_response, refresh_response = nil) if Katello.config.katello? refresh_response ||= expected_response - Runcible::Extensions::Consumer.stub!(:install_content).and_return(expected_response) - Runcible::Resources::Task.stub!(:poll).and_return(refresh_response) + Katello.pulp_server.extensions.consumer.stub!(:install_content).and_return(expected_response) + Katello.pulp_server.resources.task.stub!(:poll).and_return(refresh_response) end end diff --git a/spec/models/activation_key_spec.rb b/spec/models/activation_key_spec.rb index 83554ccdecd..14b5184ef46 100644 --- a/spec/models/activation_key_spec.rb +++ b/spec/models/activation_key_spec.rb @@ -158,7 +158,7 @@ describe "#apply_to_system" do before(:each) do - Runcible::Extensions::Consumer.stub!(:create).and_return({:id => "1234"}) if Katello.config.katello? + Katello.pulp_server.extensions.consumer.stub!(:create).and_return({:id => "1234"}) if Katello.config.katello? Resources::Candlepin::Consumer.stub!(:create).and_return({:uuid => "1234", :owner => {:key => "1234"}}) @system = System.new(:name => "test", :cp_type => "system", :facts => {"distribution.name"=>"Fedora"}) @system2 = System.new(:name => "test2", :cp_type => "system", :facts => {"distribution.name"=>"Fedora"}) diff --git a/spec/models/custom_info_spec.rb b/spec/models/custom_info_spec.rb index 793f5fad171..62e95773419 100644 --- a/spec/models/custom_info_spec.rb +++ b/spec/models/custom_info_spec.rb @@ -29,7 +29,7 @@ Resources::Candlepin::Consumer.stub!(:create).and_return({:uuid => uuid, :owner => {:key => uuid}}) Resources::Candlepin::Consumer.stub!(:update).and_return(true) - Runcible::Extensions::Consumer.stub!(:create).and_return({:id => uuid}) if defined?(Runcible) + Katello.pulp_server.extensions.consumer.stub!(:create).and_return({:id => uuid}) if defined?(Runcible) @system = create_system(:name => "test_system", :environment => @environment, :cp_type => 'system', :facts => {"distribution.name" => "Fedora"}) diff --git a/spec/models/model_spec_helper.rb b/spec/models/model_spec_helper.rb index cc65f4e123f..7e70c157dae 100644 --- a/spec/models/model_spec_helper.rb +++ b/spec/models/model_spec_helper.rb @@ -101,8 +101,8 @@ def disable_product_orchestration Resources::Candlepin::Product.stub!(:key).and_return("") if Katello.config.katello? - Runcible::Extensions::Repository.stub!(:create_or_update_schedule).and_return(true) - Runcible::Extensions::Repository.stub!(:remove_schedules).and_return(true) + Katello.pulp_server.extensions.repository.stub!(:create_or_update_schedule).and_return(true) + Katello.pulp_server.extensions.repository.stub!(:remove_schedules).and_return(true) end end @@ -132,10 +132,10 @@ def disable_system_orchestration def disable_user_orchestration(options = {}) if Katello.config.katello? - Runcible::Resources::User.stub!(:create).and_return({}) - Runcible::Resources::User.stub!(:delete).and_return(200) - Runcible::Resources::Role.stub!(:add).and_return(true) - Runcible::Resources::Role.stub!(:remove).and_return(true) + Katello.pulp_server.resources.user.stub!(:create).and_return({}) + Katello.pulp_server.resources.user.stub!(:delete).and_return(200) + Katello.pulp_server.resources.role.stub!(:add).and_return(true) + Katello.pulp_server.resources.role.stub!(:remove).and_return(true) end end @@ -143,25 +143,25 @@ def disable_user_orchestration(options = {}) def disable_consumer_group_orchestration if Katello.config.katello? - Runcible::Extensions::ConsumerGroup.stub!(:create).and_return({}) - Runcible::Extensions::ConsumerGroup.stub!(:delete).and_return(200) - Runcible::Extensions::ConsumerGroup.stub!(:retrieve).and_return({}) - Runcible::Extensions::ConsumerGroup.stub!(:add_consumers_by_id).and_return(200) - Runcible::Extensions::ConsumerGroup.stub!(:remove_consumers_by_id).and_return(200) + Katello.pulp_server.extensions.consumer_group.stub!(:create).and_return({}) + Katello.pulp_server.extensions.consumer_group.stub!(:delete).and_return(200) + Katello.pulp_server.extensions.consumer_group.stub!(:retrieve).and_return({}) + Katello.pulp_server.extensions.consumer_group.stub!(:add_consumers_by_id).and_return(200) + Katello.pulp_server.extensions.consumer_group.stub!(:remove_consumers_by_id).and_return(200) end end def disable_repo_orchestration if Katello.config.katello? - Runcible::Extensions::Repository.stub(:create).and_return({}) - Runcible::Extensions::Repository.stub(:sync_history).and_return([]) - Runcible::Resources::Task.stub!(:destroy).and_return({}) - - Runcible::Extensions::Repository.stub(:packages).with(RepoTestData::REPO_ID).and_return(RepoTestData::REPO_PACKAGES) - Runcible::Extensions::Repository.stub(:errata).with(RepoTestData::REPO_ID).and_return(RepoTestData::REPO_ERRATA) - Runcible::Extensions::Repository.stub(:distributions).with(RepoTestData::REPO_ID).and_return(RepoTestData::REPO_DISTRIBUTIONS) - Runcible::Extensions::Repository.stub(:find).with(RepoTestData::REPO_ID).and_return(RepoTestData::REPO_PROPERTIES) - Runcible::Extensions::Repository.stub(:find).with(RepoTestData::CLONED_REPO_ID).and_return(RepoTestData::CLONED_PROPERTIES) + Katello.pulp_server.extensions.repository.stub(:create).and_return({}) + Katello.pulp_server.extensions.repository.stub(:sync_history).and_return([]) + Katello.pulp_server.resources.task.stub!(:destroy).and_return({}) + + Katello.pulp_server.extensions.repository.stub(:packages).with(RepoTestData::REPO_ID).and_return(RepoTestData::REPO_PACKAGES) + Katello.pulp_server.extensions.repository.stub(:errata).with(RepoTestData::REPO_ID).and_return(RepoTestData::REPO_ERRATA) + Katello.pulp_server.extensions.repository.stub(:distributions).with(RepoTestData::REPO_ID).and_return(RepoTestData::REPO_DISTRIBUTIONS) + Katello.pulp_server.extensions.repository.stub(:find).with(RepoTestData::REPO_ID).and_return(RepoTestData::REPO_PROPERTIES) + Katello.pulp_server.extensions.repository.stub(:find).with(RepoTestData::CLONED_REPO_ID).and_return(RepoTestData::CLONED_PROPERTIES) end Resources::Candlepin::Content.stub!(:create).and_return({ :id => '123', :type=>'yum'}) diff --git a/spec/models/ping_spec.rb b/spec/models/ping_spec.rb index d759e05e646..0bf64ad5b46 100644 --- a/spec/models/ping_spec.rb +++ b/spec/models/ping_spec.rb @@ -51,12 +51,12 @@ stub_request(:get, "#{Katello.config.pulp.url}/services/status/") # gotta have that trailing slash # pulp - with oauth - Runcible::Resources::User.stub!(:retrieve_all).and_return() + Katello.pulp_server.resources.user.stub!(:retrieve_all).and_return([]) Ping.should_receive(:pulp_without_oauth).and_return(nil) end - subject { Ping.ping[:result] } + subject {Ping.ping[:result]} it(:katello => true) { should eql('ok') } end diff --git a/spec/models/product_spec.rb b/spec/models/product_spec.rb index 7b2bb296700..20ff45de5d3 100644 --- a/spec/models/product_spec.rb +++ b/spec/models/product_spec.rb @@ -157,7 +157,7 @@ context "product repos" do before(:each) do disable_product_orchestration - Runcible::Extensions::Repository.stub(:publish_all).and_return([]) + Katello.pulp_server.extensions.repository.stub(:publish_all).and_return([]) end context "repo id" do diff --git a/spec/models/provider_spec.rb b/spec/models/provider_spec.rb index 783b0053647..c64f8bc95f7 100644 --- a/spec/models/provider_spec.rb +++ b/spec/models/provider_spec.rb @@ -236,7 +236,7 @@ def set_upstream_releases(product, releases) @organization.library.repositories(true).map(&:name).sort.should == ["product-with-change 1.0", "product-without-change 1.0", "product-without-change 1.1"] - Runcible::Extensions::Repository.stub(:create).and_return({}) + Katello.pulp_server.extensions.repository.stub(:create).and_return({}) @provider.refresh_products @organization.library.repositories(true).map(&:name).sort.should == ["product-with-change 1.0", "product-with-change 1.1", diff --git a/spec/models/pulp_task_status_spec.rb b/spec/models/pulp_task_status_spec.rb index 7ecf2065098..93eaa8e2777 100644 --- a/spec/models/pulp_task_status_spec.rb +++ b/spec/models/pulp_task_status_spec.rb @@ -74,11 +74,11 @@ end @t.save! - Runcible::Resources::Task.stub(:poll).and_return(updated_pulp_task) if Katello.config.katello? + Katello.pulp_server.resources.task.stub(:poll).and_return(updated_pulp_task) if Katello.config.katello? end it "should fetch data from pulp" do - Runcible::Resources::Task.should_receive(:poll).once.with(@t.uuid).and_return(updated_pulp_task) + Katello.pulp_server.resources.task.should_receive(:poll).once.with(@t.uuid).and_return(updated_pulp_task) @t.refresh end diff --git a/spec/models/system_group_spec.rb b/spec/models/system_group_spec.rb index 3aab87dcf21..95fc62914d2 100644 --- a/spec/models/system_group_spec.rb +++ b/spec/models/system_group_spec.rb @@ -39,7 +39,7 @@ context "create should" do it "should create succesfully with an org", :katello => true do - Runcible::Extensions::ConsumerGroup.should_receive(:create).and_return({}) + Katello.pulp_server.extensions.consumer_group.should_receive(:create).and_return({}) grp = SystemGroup.create!(:name=>"TestGroup", :organization=>@org) grp.pulp_id.should_not == nil end @@ -62,7 +62,7 @@ context "delete should" do it "should delete a group successfully", :katello => true do - Runcible::Extensions::ConsumerGroup.should_receive(:delete).and_return(200) + Katello.pulp_server.extensions.consumer_group.should_receive(:delete).and_return(200) @group.destroy SystemGroup.where(:name=>@group.name).count.should == 0 end @@ -79,20 +79,20 @@ context "changing consumer ids", :katello => true do it "should contact pulp if new ids are added" do - Runcible::Extensions::ConsumerGroup.should_receive(:add_consumers_by_id).once + Katello.pulp_server.extensions.consumer_group.should_receive(:add_consumers_by_id).once grp = SystemGroup.create!(:name=>"TestGroup", :organization=>@org, :consumer_ids=>[:a, :b]) grp.consumer_ids = [:a, :b, :c, :d] grp.save! end it "should contact pulp if new ids are removed" do - Runcible::Extensions::ConsumerGroup.should_receive(:remove_consumers_by_id).once + Katello.pulp_server.extensions.consumer_group.should_receive(:remove_consumers_by_id).once grp = SystemGroup.create!(:name=>"TestGroup", :organization=>@org, :consumer_ids=>[:a, :b]) grp.consumer_ids = [] grp.save! end it "should contact pulp if new ids are added and removed" do - Runcible::Extensions::ConsumerGroup.should_receive(:add_consumers_by_id).once - Runcible::Extensions::ConsumerGroup.should_receive(:remove_consumers_by_id).once + Katello.pulp_server.extensions.consumer_group.should_receive(:add_consumers_by_id).once + Katello.pulp_server.extensions.consumer_group.should_receive(:remove_consumers_by_id).once grp = SystemGroup.create!(:name=>"TestGroup", :organization=>@org, :consumer_ids=>[:a, :b]) grp.consumer_ids = [:c, :d] grp.save! @@ -101,14 +101,14 @@ context "changing systems", :katello => true do it "should call out to pulp when adding" do - Runcible::Extensions::ConsumerGroup.should_receive(:add_consumers_by_id).once + Katello.pulp_server.extensions.consumer_group.should_receive(:add_consumers_by_id).once grp = SystemGroup.create!(:name=>"TestGroup", :organization=>@org) grp.systems << @system grp.save! end it "should call out to pulp when removing" do - Runcible::Extensions::ConsumerGroup.should_receive(:add_consumers_by_id).once - Runcible::Extensions::ConsumerGroup.should_receive(:remove_consumers_by_id).once + Katello.pulp_server.extensions.consumer_group.should_receive(:add_consumers_by_id).once + Katello.pulp_server.extensions.consumer_group.should_receive(:remove_consumers_by_id).once grp = SystemGroup.create!(:name=>"TestGroup", :organization=>@org) grp.systems << @system grp.systems = grp.systems - [@system] diff --git a/spec/models/system_spec.rb b/spec/models/system_spec.rb index 6304fd6ce21..7a0e8d2cede 100644 --- a/spec/models/system_spec.rb +++ b/spec/models/system_spec.rb @@ -59,7 +59,7 @@ Resources::Candlepin::Consumer.stub!(:create).and_return({:uuid => uuid, :owner => {:key => uuid}}) Resources::Candlepin::Consumer.stub!(:update).and_return(true) - Runcible::Extensions::Consumer.stub!(:create).and_return({:id => uuid}) if Katello.config.katello? + Katello.pulp_server.extensions.consumer.stub!(:create).and_return({:id => uuid}) if Katello.config.katello? end context "system in valid state should be valid" do @@ -79,7 +79,7 @@ system_name, cp_type, facts, installed_products, nil, nil, nil, nil).and_return({:uuid => uuid, :owner => {:key => uuid}}) - Runcible::Extensions::Consumer.should_receive(:create).once.with(uuid, {:display_name => system_name}).and_return({:id => uuid}) if Katello.config.katello? + Katello.pulp_server.extensions.consumer.should_receive(:create).once.with(uuid, {:display_name => system_name}).and_return({:id => uuid}) if Katello.config.katello? @system.save! end @@ -114,7 +114,7 @@ it "should delete consumer in candlepin and pulp" do Resources::Candlepin::Consumer.should_receive(:destroy).once.with(uuid).and_return(true) - Runcible::Extensions::Consumer.should_receive(:delete).once.with(uuid).and_return(true) if Katello.config.katello? + Katello.pulp_server.extensions.consumer.should_receive(:delete).once.with(uuid).and_return(true) if Katello.config.katello? @system.destroy end end @@ -296,7 +296,7 @@ context "pulp attributes", :katello => true do it "should update package-profile" do - Runcible::Extensions::Consumer.should_receive(:upload_profile).once.with(uuid, 'rpm', package_profile).and_return(true) + Katello.pulp_server.extensions.consumer.should_receive(:upload_profile).once.with(uuid, 'rpm', package_profile).and_return(true) @system.upload_package_profile(package_profile) end end diff --git a/test/fixtures/vcr_cassettes/glue_pulp_consumer.yml b/test/fixtures/vcr_cassettes/glue_pulp_consumer.yml index a4ed88de307..50946e6f7cf 100644 --- a/test/fixtures/vcr_cassettes/glue_pulp_consumer.yml +++ b/test/fixtures/vcr_cassettes/glue_pulp_consumer.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/3cb0fbd3-61a2-4262-a6e9-6722abf1961e/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/d6c60491-4e9e-4e84-b865-57cbc9caaa11/ body: encoding: US-ASCII string: "" @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="awoqiuS5Hgq0bXinlmafdlbLqrm7Avo4kBcjPQGEs", oauth_signature="mpC4tR32dHoCBP%2Fw9H%2B6gR9WtJ4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196347", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="4T7hdf933bzTf08zoKlOI0XBvsaTYGwUUxxSf4qYXU", oauth_signature="X%2B21oTv124tH3SE6ycxs0L1p%2B%2BM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362230", oauth_version="1.0" Pulp-User: - hidden User-Agent: @@ -25,7 +25,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 14:59:07 GMT + - Thu, 01 Aug 2013 13:03:50 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -34,9 +34,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": \"d2f7d1e0-3464-4034-a032-a1fa9580b898\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/3cb0fbd3-61a2-4262-a6e9-6722abf1961e/\", \"task_id\": \"3cb0fbd3-61a2-4262-a6e9-6722abf1961e\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"reasons\": [], \"start_time\": \"2013-07-30T14:59:07Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T14:59:07Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"d2f7d1e0-3464-4034-a032-a1fa9580b898\", \"call_request_id\": \"3cb0fbd3-61a2-4262-a6e9-6722abf1961e\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"notify_agent\": false, \"repo_id\": \"1\", \"deleted\": false, \"_ns\": \"consumer_bindings\", \"distributor_id\": \"1\", \"consumer_id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"consumer_actions\": [], \"binding_config\": null, \"_id\": {\"$oid\": \"51f7d4bb5ca0137fe757959b\"}, \"id\": \"51f7d4bb5ca0137fe757959b\"}}" + string: "{\"task_group_id\": \"780fb1eb-c17b-4562-9918-ad8a2fe7c53b\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/d6c60491-4e9e-4e84-b865-57cbc9caaa11/\", \"task_id\": \"d6c60491-4e9e-4e84-b865-57cbc9caaa11\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:03:50Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:03:50Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"780fb1eb-c17b-4562-9918-ad8a2fe7c53b\", \"call_request_id\": \"d6c60491-4e9e-4e84-b865-57cbc9caaa11\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"notify_agent\": false, \"repo_id\": \"1\", \"deleted\": false, \"_ns\": \"consumer_bindings\", \"distributor_id\": \"1\", \"consumer_id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"consumer_actions\": [], \"binding_config\": null, \"_id\": {\"$oid\": \"51fa5cb65ca013687ad58447\"}, \"id\": \"51fa5cb65ca013687ad58447\"}}" http_version: - recorded_at: Tue, 30 Jul 2013 14:59:07 GMT + recorded_at: Thu, 01 Aug 2013 13:03:50 GMT - request: method: get uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/bindings// @@ -51,7 +51,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="Y2sLgdew1kTsCNZ29UtKq17n4kXIMxjN7FYzXzhGCyU", oauth_signature="IinvqojM2ozFtjL6ryXI4ET1xZ0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196447", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="aW5QQRAQfod2abEq7mx9Nm5PrkkyAPdG476NKfLw", oauth_signature="87UTKDhmKw39BsuwO%2B3I%2FjAAMkQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362329", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -62,7 +62,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:47 GMT + - Thu, 01 Aug 2013 13:05:29 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -73,7 +73,7 @@ http_interactions: encoding: US-ASCII string: "[]" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:47 GMT + recorded_at: Thu, 01 Aug 2013 13:05:29 GMT - request: method: get uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/?details=true @@ -88,7 +88,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="gXmOQALDIifgduLT5pTOkmpkuIwzCTcq6UV4CGFfcJA", oauth_signature="0OzF62oGp%2F5RyujlvqoIoQu76z8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196447", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="lh97xbydPqwvuMoJYhBv0h8Dq2E8lbff2aF6ddpk", oauth_signature="VeDLZvitWI2A4iufgTiyf1TVs2g%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362329", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -99,7 +99,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:47 GMT + - Thu, 01 Aug 2013 13:05:29 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -108,9 +108,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_counts\": {\"package_group\": 2, \"distribution\": 1, \"package_category\": 1, \"rpm\": 8, \"erratum\": 2}, \"_id\": {\"$oid\": \"51f7d51c5ca0137fe7579af8\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\", \"importers\": [{\"repo_id\": \"1\", \"_ns\": \"repo_importers\", \"importer_type_id\": \"yum_importer\", \"last_sync\": \"2013-07-30T11:00:45-04:00\", \"scheduled_syncs\": [], \"_id\": {\"$oid\": \"51f7d51c5ca0137fe7579af9\"}, \"config\": {\"feed\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5\"}, \"id\": \"yum_importer\"}], \"distributors\": [{\"repo_id\": \"1\", \"_ns\": \"repo_distributors\", \"last_publish\": \"2013-07-30T11:00:46-04:00\", \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_distributor\", \"_id\": {\"$oid\": \"51f7d51c5ca0137fe7579afa\"}, \"config\": {\"protected\": true, \"http\": false, \"relative_url\": \"/test_path/\", \"https\": true}, \"id\": \"1\"}]}" + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_counts\": {\"package_group\": 2, \"distribution\": 1, \"package_category\": 1, \"rpm\": 8, \"erratum\": 2}, \"_id\": {\"$oid\": \"51fa5d165ca013687ad589a4\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\", \"importers\": [{\"repo_id\": \"1\", \"_ns\": \"repo_importers\", \"importer_type_id\": \"yum_importer\", \"last_sync\": \"2013-08-01T09:05:27-04:00\", \"scheduled_syncs\": [], \"_id\": {\"$oid\": \"51fa5d165ca013687ad589a5\"}, \"config\": {\"feed\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5\"}, \"id\": \"yum_importer\"}], \"distributors\": [{\"repo_id\": \"1\", \"_ns\": \"repo_distributors\", \"last_publish\": \"2013-08-01T09:05:27-04:00\", \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_distributor\", \"_id\": {\"$oid\": \"51fa5d165ca013687ad589a6\"}, \"config\": {\"protected\": true, \"http\": false, \"relative_url\": \"/test_path/\", \"https\": true}, \"id\": \"1\"}]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:47 GMT + recorded_at: Thu, 01 Aug 2013 13:05:29 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/bindings// @@ -125,7 +125,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="OhaZMUYInmZp1IfCNXKtOTWuOjcAXozbn7nD5mc0w", oauth_signature="yV8wBEmWk3ZNSSvvszugpmjyxww%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196447", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="o0w6OIkDV1TWMTDpZdBstNLCZE0RCCdR0ke2jFjAbKc", oauth_signature="McDa1bt%2B3%2BOiKSYVQRsxjIb1G3Y%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362329", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -138,7 +138,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:00:47 GMT + - Thu, 01 Aug 2013 13:05:29 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -149,12 +149,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"9ebcbfc4-9fc2-499c-82ab-a54bb02764a7\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/9ebcbfc4-9fc2-499c-82ab-a54bb02764a7/\", \"task_id\": \"d0facb7c-b8d4-4dad-9517-f41430bca1da\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"9ebcbfc4-9fc2-499c-82ab-a54bb02764a7\", \"call_request_id\": \"d0facb7c-b8d4-4dad-9517-f41430bca1da\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"2af38cd0-8975-4204-abe4-76ee7c0ba569\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/2af38cd0-8975-4204-abe4-76ee7c0ba569/\", \"task_id\": \"35f6a1fd-ebfa-4465-8048-f39d83b9ca4f\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"2af38cd0-8975-4204-abe4-76ee7c0ba569\", \"call_request_id\": \"35f6a1fd-ebfa-4465-8048-f39d83b9ca4f\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:47 GMT + recorded_at: Thu, 01 Aug 2013 13:05:29 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/d0facb7c-b8d4-4dad-9517-f41430bca1da/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/35f6a1fd-ebfa-4465-8048-f39d83b9ca4f/ body: encoding: US-ASCII string: "" @@ -166,7 +166,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="SHf1RNknygOizbCmUUAq3gL3yaGc4SevFEmV329ci8I", oauth_signature="X7s7cd2v1vZWeMCaaEmLUKnUbW4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196447", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="PHSePDq6BFnr9iWBb0Uiqyg0B5nfwi1j9rrJydE", oauth_signature="Jjzk6f82HYXh0GevmK75Kk9ViA4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362329", oauth_version="1.0" Pulp-User: - hidden User-Agent: @@ -177,44 +177,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:47 GMT - Server: - - Apache/2.2.15 (Red Hat) - Content-Length: - - "836" - Content-Type: - - application/json - body: - encoding: US-ASCII - string: "{\"task_group_id\": \"9ebcbfc4-9fc2-499c-82ab-a54bb02764a7\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/d0facb7c-b8d4-4dad-9517-f41430bca1da/\", \"task_id\": \"d0facb7c-b8d4-4dad-9517-f41430bca1da\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"9ebcbfc4-9fc2-499c-82ab-a54bb02764a7\", \"call_request_id\": \"d0facb7c-b8d4-4dad-9517-f41430bca1da\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" - http_version: - recorded_at: Tue, 30 Jul 2013 15:00:47 GMT -- request: - method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/d0facb7c-b8d4-4dad-9517-f41430bca1da/ - body: - encoding: US-ASCII - string: "" - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Content-Type: - - application/json - Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="rRjn0rOd4CLoInTNn5uT9rOliFv7Ug5k8BMRD5k", oauth_signature="ZlRM14GY%2Fmz7sRIQ9LO39oIdns4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196463", oauth_version="1.0" - Pulp-User: - - hidden - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Date: - - Tue, 30 Jul 2013 15:01:03 GMT + - Thu, 01 Aug 2013 13:05:29 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -223,15 +186,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": \"9ebcbfc4-9fc2-499c-82ab-a54bb02764a7\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/d0facb7c-b8d4-4dad-9517-f41430bca1da/\", \"task_id\": \"d0facb7c-b8d4-4dad-9517-f41430bca1da\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:00:47Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:00:47Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"9ebcbfc4-9fc2-499c-82ab-a54bb02764a7\", \"call_request_id\": \"d0facb7c-b8d4-4dad-9517-f41430bca1da\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"notify_agent\": false, \"repo_id\": \"1\", \"deleted\": false, \"_ns\": \"consumer_bindings\", \"distributor_id\": \"1\", \"consumer_id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"consumer_actions\": [], \"binding_config\": null, \"_id\": {\"$oid\": \"51f7d51f5ca0137fe7579b42\"}, \"id\": \"51f7d51f5ca0137fe7579b42\"}}" + string: "{\"task_group_id\": \"2af38cd0-8975-4204-abe4-76ee7c0ba569\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/35f6a1fd-ebfa-4465-8048-f39d83b9ca4f/\", \"task_id\": \"35f6a1fd-ebfa-4465-8048-f39d83b9ca4f\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:29Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:29Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"2af38cd0-8975-4204-abe4-76ee7c0ba569\", \"call_request_id\": \"35f6a1fd-ebfa-4465-8048-f39d83b9ca4f\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"notify_agent\": false, \"repo_id\": \"1\", \"deleted\": false, \"_ns\": \"consumer_bindings\", \"distributor_id\": \"1\", \"consumer_id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"consumer_actions\": [], \"binding_config\": null, \"_id\": {\"$oid\": \"51fa5d195ca013687ad589ed\"}, \"id\": \"51fa5d195ca013687ad589ed\"}}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:03 GMT + recorded_at: Thu, 01 Aug 2013 13:05:29 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/install// body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"cheetah\"}}],\"options\":{\"importkeys\":true}}" + string: "{\"units\":[{\"type_id\":\"package_group\",\"unit_key\":{\"name\":\"mammals\"}}],\"options\":{\"importkeys\":true}}" headers: Accept: - application/json @@ -240,11 +203,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="By6BHOKyBQlgzR3bbb9ybWtVBi5u6oiK71hCATrsxc", oauth_signature="V7dzrDNvTs8zri26RWz1mw6%2FtcE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196464", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="7Iy3nDE1L5TGw4uqrnFJoGHD27V5YF9RPSrHDDbueP8", oauth_signature="UfbADTyocPj2On62M9hcU8DTAyA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362330", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "89" + - "99" User-Agent: - Ruby response: @@ -253,7 +216,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:04 GMT + - Thu, 01 Aug 2013 13:05:30 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -264,15 +227,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/5124bd6b-a94a-443f-97ab-95984f5f2cd3/\", \"task_id\": \"5124bd6b-a94a-443f-97ab-95984f5f2cd3\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"5124bd6b-a94a-443f-97ab-95984f5f2cd3\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/51d3dec1-5e92-4d33-a6b8-469830e26b83/\", \"task_id\": \"51d3dec1-5e92-4d33-a6b8-469830e26b83\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"51d3dec1-5e92-4d33-a6b8-469830e26b83\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:04 GMT + recorded_at: Thu, 01 Aug 2013 13:05:30 GMT - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/update// + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/uninstall// body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"cheetah\"}}],\"options\":{\"importkeys\":true}}" + string: "{\"units\":[{\"type_id\":\"package_group\",\"unit_key\":{\"name\":\"mammals\"}}],\"options\":{}}" headers: Accept: - application/json @@ -281,11 +244,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="g3FHHxPPmiNSqkSSbwwfO7sOZ7Gjb9HFAuzxUxR7C0s", oauth_signature="MQ%2F0vlzsvjnKTr4pxIV93R4u9Y8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196465", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="RPdQQ9dMnzDz0MeBK1xEsvnyD4MTMchuMkhnLyT4oM", oauth_signature="3ABxCpo5lDZCbwfWrZcWWMOhUBc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362331", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "89" + - "82" User-Agent: - Ruby response: @@ -294,26 +257,26 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:05 GMT + - Thu, 01 Aug 2013 13:05:31 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: - utf-8 Content-Length: - - "674" + - "680" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/63bb7d64-cad3-4d20-87a0-ea5644d1f78f/\", \"task_id\": \"63bb7d64-cad3-4d20-87a0-ea5644d1f78f\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"63bb7d64-cad3-4d20-87a0-ea5644d1f78f\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/828853e5-d637-450e-b3e8-7a0396d8ac2b/\", \"task_id\": \"828853e5-d637-450e-b3e8-7a0396d8ac2b\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"828853e5-d637-450e-b3e8-7a0396d8ac2b\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:05 GMT + recorded_at: Thu, 01 Aug 2013 13:05:31 GMT - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/install// + uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"package_group\",\"unit_key\":{\"name\":\"mammals\"}}],\"options\":{\"importkeys\":true}}" + string: "{\"criteria\":{\"type_ids\":[\"erratum\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" headers: Accept: - application/json @@ -322,39 +285,37 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="FiCWLEuVVyynat0M3YJKqwPHJBiAP7OrSmzhx1bL8A", oauth_signature="6q1A0ICW6Eyd36FRfZQdTnuO7og%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196466", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="CLYf53SvGSjPksyaLEnMb0waCGE5gYgpvCnNFnEE1k", oauth_signature="1y82LxXU8GCJxiqkRv8daOHwnuU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362332", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "99" + - "84" User-Agent: - Ruby response: status: - code: 202 - message: Accepted + code: 200 + message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:06 GMT + - Thu, 01 Aug 2013 13:05:32 GMT Server: - Apache/2.2.15 (Red Hat) - Content-Encoding: - - utf-8 Content-Length: - - "676" + - "372" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/d02db1fe-46e9-48c9-8520-62631c54ee58/\", \"task_id\": \"d02db1fe-46e9-48c9-8520-62631c54ee58\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"d02db1fe-46e9-48c9-8520-62631c54ee58\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "[{\"_id\": {\"$oid\": \"51fa5d175ca013687ad589c1\"}, \"unit_id\": \"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\"}}, {\"_id\": {\"$oid\": \"51fa5d175ca013687ad589c2\"}, \"unit_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\"}}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:06 GMT + recorded_at: Thu, 01 Aug 2013 13:05:32 GMT - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/uninstall// + uri: https://abed.usersys.redhat.com/pulp/api/v2/content/units/erratum/search/ body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"package_group\",\"unit_key\":{\"name\":\"mammals\"}}],\"options\":{}}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\",\"8e0a5cb0-f804-4778-b34c-88085f594aae\"]}}},\"include_repos\":true}" headers: Accept: - application/json @@ -363,39 +324,37 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="KuAPYJzHpEyhfcZ0c9mD0uVbZeBp5ZrnEfU9Aa3p3M", oauth_signature="OAPiCltXyEJJxb3DRYC3gpXJ4tk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196467", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="etgUb2ed8PPW6RP9g8XB0WcTwyPbhxOlA5DADXCJu0", oauth_signature="P6bE1jH0jTpjUaQcX5xF6PSMSpc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362332", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "82" + - "141" User-Agent: - Ruby response: status: - code: 202 - message: Accepted + code: 200 + message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:07 GMT + - Thu, 01 Aug 2013 13:05:32 GMT Server: - Apache/2.2.15 (Red Hat) - Content-Encoding: - - utf-8 Content-Length: - - "680" + - "1178" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/d29d6591-e394-4100-a32d-eac26953ac8e/\", \"task_id\": \"d29d6591-e394-4100-a32d-eac26953ac8e\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"d29d6591-e394-4100-a32d-eac26953ac8e\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"Empty errata\", \"title\": \"Empty errata\", \"pkglist\": [], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\", \"type\": \"security\", \"id\": \"RHEA-2010:0001\", \"_href\": \"/pulp/api/v2/content/units/erratum/33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/8e0a5cb0-f804-4778-b34c-88085f594aae/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:07 GMT + recorded_at: Thu, 01 Aug 2013 13:05:32 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/install// body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"cheetah\"}}],\"options\":{\"importkeys\":true}}" + string: "{\"units\":[{\"type_id\":\"erratum\",\"unit_key\":{\"id\":\"8e0a5cb0-f804-4778-b34c-88085f594aae\"}}],\"options\":{\"importkeys\":true}}" headers: Accept: - application/json @@ -404,11 +363,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="aZsJujRY0tyVKsITIYDHJcEhtlsJ7ZBhqDPI9z9HY", oauth_signature="gXgjLcMZbeBJ0%2FxoVaBfidWhrfE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196468", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="0Wn69BtI55ZDcqPHVDPJXnp7cTuSNw3zqrux91N2E", oauth_signature="CwHMItDFFxyRNzWFOcpgqJsja9Y%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362332", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "89" + - "120" User-Agent: - Ruby response: @@ -417,7 +376,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:08 GMT + - Thu, 01 Aug 2013 13:05:32 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -428,15 +387,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/c276ca47-125b-4653-9254-a260904555e3/\", \"task_id\": \"c276ca47-125b-4653-9254-a260904555e3\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"c276ca47-125b-4653-9254-a260904555e3\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/319e3382-abd4-4ac9-89b0-b12a320aa526/\", \"task_id\": \"319e3382-abd4-4ac9-89b0-b12a320aa526\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"319e3382-abd4-4ac9-89b0-b12a320aa526\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:08 GMT + recorded_at: Thu, 01 Aug 2013 13:05:32 GMT - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/uninstall// + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/install// body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"cheetah\"}}],\"options\":{}}" + string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"cheetah\"}}],\"options\":{\"importkeys\":true}}" headers: Accept: - application/json @@ -445,11 +404,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="GCnLY2yRbAT6FNZ19Dg8LRVqn3ILBCqyzHmj6zxuffE", oauth_signature="dBSrmKzM3HbPe3EQAvhuRcclBGQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196469", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="1ymiQPvwfrWeY7BNvFYP0UxRGCfiNS2Aim4zyrbkk", oauth_signature="L8tRAyC2wJ7zI7Ry19BzV9Ddwfk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362333", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "72" + - "89" User-Agent: - Ruby response: @@ -458,23 +417,23 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:09 GMT + - Thu, 01 Aug 2013 13:05:33 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: - utf-8 Content-Length: - - "680" + - "676" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/195a96aa-2622-4f64-a6dd-220292d91961/\", \"task_id\": \"195a96aa-2622-4f64-a6dd-220292d91961\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"195a96aa-2622-4f64-a6dd-220292d91961\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/5ca9c91e-56f0-4209-965e-88a744072218/\", \"task_id\": \"5ca9c91e-56f0-4209-965e-88a744072218\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"5ca9c91e-56f0-4209-965e-88a744072218\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:09 GMT + recorded_at: Thu, 01 Aug 2013 13:05:33 GMT - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/install// + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/update// body: encoding: US-ASCII string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"cheetah\"}}],\"options\":{\"importkeys\":true}}" @@ -486,7 +445,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="PCF7xIvxy2YNSNcTyvlR7Co4rOp3cuAhqAqGy63sSQ", oauth_signature="%2BB%2FsCwvQ39Qmzgh1sq3FG%2BCfsRQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196470", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="XubXsjhiDMdeopXAOM1Pdjw0zGlwvWysbheJBa9Jh9A", oauth_signature="NWTgexT4ZO0fBgHxcWS91KT5Ca4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362334", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -499,26 +458,26 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:10 GMT + - Thu, 01 Aug 2013 13:05:34 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: - utf-8 Content-Length: - - "676" + - "674" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/83007949-93f8-4954-8a25-a44b6f3cede7/\", \"task_id\": \"83007949-93f8-4954-8a25-a44b6f3cede7\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"83007949-93f8-4954-8a25-a44b6f3cede7\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/d307ff75-9cb6-43a1-adcd-54d856973252/\", \"task_id\": \"d307ff75-9cb6-43a1-adcd-54d856973252\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"d307ff75-9cb6-43a1-adcd-54d856973252\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:10 GMT + recorded_at: Thu, 01 Aug 2013 13:05:34 GMT - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/update// + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/install// body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{}}],\"options\":{\"importkeys\":true,\"all\":true}}" + string: "{\"units\":[{\"type_id\":\"package_group\",\"unit_key\":{\"name\":\"mammls\"}}],\"options\":{\"importkeys\":true}}" headers: Accept: - application/json @@ -527,11 +486,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="YEg2ovmi7KDorK5TAOz3hQYsGjrCNJg3ktkJ78z9jI", oauth_signature="3ay%2BnCvFndCDkGdCMXNKLHbXmEc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196471", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="RNbZlykufLck3DOvlXP7PzxBacqStyz1YkM0kcbY", oauth_signature="3d3IFNF9iJamryGUZMpeDllYLIM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362335", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "84" + - "98" User-Agent: - Ruby response: @@ -540,26 +499,26 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:11 GMT + - Thu, 01 Aug 2013 13:05:35 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: - utf-8 Content-Length: - - "674" + - "676" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/2fc991cd-3564-40e5-9e33-d9488d335929/\", \"task_id\": \"2fc991cd-3564-40e5-9e33-d9488d335929\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"2fc991cd-3564-40e5-9e33-d9488d335929\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/49985e8d-ab74-4560-9d67-793471388449/\", \"task_id\": \"49985e8d-ab74-4560-9d67-793471388449\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"49985e8d-ab74-4560-9d67-793471388449\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:11 GMT + recorded_at: Thu, 01 Aug 2013 13:05:35 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/install// body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"package_group\",\"unit_key\":{\"name\":\"mammls\"}}],\"options\":{\"importkeys\":true}}" + string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"elephant\"}}],\"options\":{\"importkeys\":true}}" headers: Accept: - application/json @@ -568,11 +527,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="M1XNHTQzX1aUveRDJxoWvlWnOaNqI0Ogrc13E0Vtto", oauth_signature="8tisJBAZHNJXbRVWbEePvxxWk70%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196472", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="u8zzRFMrCCjGBi8di0qYhAXRCQocyC4vkAHre2ASmA", oauth_signature="9vyolWnbYspDhAfO3ai%2B%2BLlmJqw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362336", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "98" + - "90" User-Agent: - Ruby response: @@ -581,7 +540,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:12 GMT + - Thu, 01 Aug 2013 13:05:36 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -592,15 +551,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/c551228e-0efe-40d3-ae1c-46de70a3af75/\", \"task_id\": \"c551228e-0efe-40d3-ae1c-46de70a3af75\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"c551228e-0efe-40d3-ae1c-46de70a3af75\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/7c9718ac-ad1d-4b3c-a7e5-fd2430ca4e30/\", \"task_id\": \"7c9718ac-ad1d-4b3c-a7e5-fd2430ca4e30\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"7c9718ac-ad1d-4b3c-a7e5-fd2430ca4e30\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:12 GMT + recorded_at: Thu, 01 Aug 2013 13:05:37 GMT - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/search/units/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/install// body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"erratum\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" + string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"cheetah\"}}],\"options\":{\"importkeys\":true}}" headers: Accept: - application/json @@ -609,37 +568,39 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="B5IxMkk0iZdKpqlxTrDfvcO9PyHGykyAYpTSOMd4kh8", oauth_signature="Ts6qktCmP83Uc4JSefqFaKzUXmE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196473", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="rroG7BImwjDdX7jimjlOvPU9g0Ucvm6GSWdqO08k8", oauth_signature="j7nFbFDTVNtCmdNbQJPrlPS%2F%2FjM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362338", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "84" + - "89" User-Agent: - Ruby response: status: - code: 200 - message: OK + code: 202 + message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:13 GMT + - Thu, 01 Aug 2013 13:05:38 GMT Server: - Apache/2.2.15 (Red Hat) + Content-Encoding: + - utf-8 Content-Length: - - "372" + - "676" Content-Type: - application/json body: encoding: US-ASCII - string: "[{\"_id\": {\"$oid\": \"51f7d51d5ca0137fe7579b15\"}, \"unit_id\": \"1d6343f9-643e-49fc-94ab-f1b865b59708\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"1d6343f9-643e-49fc-94ab-f1b865b59708\"}}, {\"_id\": {\"$oid\": \"51f7d51d5ca0137fe7579b16\"}, \"unit_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\"}}]" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/d1888b1a-fdc5-49f9-aa4f-d0cc824795ed/\", \"task_id\": \"d1888b1a-fdc5-49f9-aa4f-d0cc824795ed\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"d1888b1a-fdc5-49f9-aa4f-d0cc824795ed\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:13 GMT + recorded_at: Thu, 01 Aug 2013 13:05:38 GMT - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/content/units/erratum/search/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/uninstall// body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"1d6343f9-643e-49fc-94ab-f1b865b59708\",\"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\"]}}},\"include_repos\":true}" + string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"cheetah\"}}],\"options\":{}}" headers: Accept: - application/json @@ -648,37 +609,39 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="a7sxTjKuneGiy35ZPBFmWROZOFCH5cfNXsRuqMhwK2w", oauth_signature="4SpjFhrdCPP3x2aCA3hbC6TPJ6Y%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196473", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="TDl3uPsGAvD0YPv8fjR6Bwso5q7OMslTabu1Eb0", oauth_signature="WHCUX4Ubo3yMWq2NdA3fB61NB5k%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362339", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "141" + - "72" User-Agent: - Ruby response: status: - code: 200 - message: OK + code: 202 + message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:13 GMT + - Thu, 01 Aug 2013 13:05:39 GMT Server: - Apache/2.2.15 (Red Hat) + Content-Encoding: + - utf-8 Content-Length: - - "1178" + - "680" Content-Type: - application/json body: encoding: US-ASCII - string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"Empty errata\", \"title\": \"Empty errata\", \"pkglist\": [], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"1d6343f9-643e-49fc-94ab-f1b865b59708\", \"type\": \"security\", \"id\": \"RHEA-2010:0001\", \"_href\": \"/pulp/api/v2/content/units/erratum/1d6343f9-643e-49fc-94ab-f1b865b59708/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/93adc47c-c697-4cf3-a937-dbf7e94148c2/\", \"task_id\": \"93adc47c-c697-4cf3-a937-dbf7e94148c2\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"93adc47c-c697-4cf3-a937-dbf7e94148c2\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:13 GMT + recorded_at: Thu, 01 Aug 2013 13:05:39 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/install// body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"erratum\",\"unit_key\":{\"id\":\"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\"}}],\"options\":{\"importkeys\":true}}" + string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"cheetah\"}}],\"options\":{\"importkeys\":true}}" headers: Accept: - application/json @@ -687,11 +650,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ZuSk1hzNJDbIhBijh4fdynkudw8ftfc97B2egDHuRA", oauth_signature="wSkGJf1zwpz97AisSxkpnudkeVY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196473", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="xHzJKPaWiaKZZuBOhtndJVTiYQj5xCCgAaRkFxTj2W8", oauth_signature="6dtUskil9P7Z44uQ2Z207AbIvJg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362340", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "120" + - "89" User-Agent: - Ruby response: @@ -700,7 +663,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:13 GMT + - Thu, 01 Aug 2013 13:05:40 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -711,15 +674,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/5c034b11-1b27-4409-b934-f61df09d1640/\", \"task_id\": \"5c034b11-1b27-4409-b934-f61df09d1640\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"5c034b11-1b27-4409-b934-f61df09d1640\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/1c340c44-3b21-4623-98f7-168fcb12a0e1/\", \"task_id\": \"1c340c44-3b21-4623-98f7-168fcb12a0e1\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"1c340c44-3b21-4623-98f7-168fcb12a0e1\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:13 GMT + recorded_at: Thu, 01 Aug 2013 13:05:40 GMT - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/install// + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/actions/content/update// body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"elephant\"}}],\"options\":{\"importkeys\":true}}" + string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{}}],\"options\":{\"importkeys\":true,\"all\":true}}" headers: Accept: - application/json @@ -728,11 +691,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="7MG0wtjEO944N7d7AZ3nrjN8LBCCITHGhr7epSUOof4", oauth_signature="pkIQPbDLpcqotXgff3Drv9WVCTk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196474", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="gvQrCZoqoJVUkUF2rxVnjSo0g9QEX115hwHyMftUg", oauth_signature="vzs6SEJbhPj4DmWoER6ITVwxumA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362341", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "90" + - "84" User-Agent: - Ruby response: @@ -741,20 +704,20 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:14 GMT + - Thu, 01 Aug 2013 13:05:41 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: - utf-8 Content-Length: - - "676" + - "674" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/333e80dc-9123-43c7-955c-b49a87886a81/\", \"task_id\": \"333e80dc-9123-43c7-955c-b49a87886a81\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"333e80dc-9123-43c7-955c-b49a87886a81\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/985f27fd-c704-42eb-9dd2-4febad25d62c/\", \"task_id\": \"985f27fd-c704-42eb-9dd2-4febad25d62c\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"985f27fd-c704-42eb-9dd2-4febad25d62c\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:14 GMT + recorded_at: Thu, 01 Aug 2013 13:05:41 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/ @@ -769,7 +732,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="aR15InsH6D8Ixwh8ZCcK5w1JelY3NUNnptOkRRvOk", oauth_signature="SC0muPZOQjQZox7fHXis02HySBo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196476", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="7CQ4ZW6CJBJbxfKKMHPjrhPoPI6QrLzj265keqjEmE", oauth_signature="uCsv4qsTItlOgczvkSrFHNHuBNs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362342", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -782,7 +745,7 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:01:16 GMT + - Thu, 01 Aug 2013 13:05:42 GMT Server: - Apache/2.2.15 (Red Hat) Location: @@ -793,15 +756,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"display_name\": \"Simple Server\", \"description\": null, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICWwIBAAKBgQCzhnzhTSU2OqVsabqT65B55nSAvJTm9q/7N6JtC4EYYhZBEPo8\\n32mK/ErRZE/L0VGSijKkjt7Qb8tA54EBxRpgz/kYaUOvKE0j+U7es08ScpaQNjNV\\ncp4jC2Oel1cUN14UKrSihwDkNA7+bT9WyTx5FHQPEqNPD088aL86RyzzEwIDAQAB\\nAoGAKEw9BfniK30YmvBUwFV1VdekOS2bowim0hZX8HBPpyCFbE+aTEW+FEOzq7L/\\nsnmm/OTmn0euvk0J6+TLcZFD7S0HzAy7A+G6ck0qQhY8moYWCF5uMepHeZlPNS58\\nW0bxSDeEyCICPF0zsm1FoH7qeCKM+w8mt2+RgJVkVM/z2SkCQQDgxdts/NPkAUQJ\\nUed5Kp6UMvroeIof1f3ENCeeEc0ajIWNAbpGXpQWJYA9KiVpTiu0YKUZXD4IVXDp\\nnTbfDyrXAkEAzHdiAfLdM+7PAxpnyqvBw+S/+4fM7vmRuxF9c9uifCdzR/Etbckh\\nVTJuUVq3uccYQ6OYif7+rj6MHt3mBvwOJQJAZOmPhNPRkYjb8c86u9Rdk617pkkP\\nwhFBuAeuTbIyQhwajV7cMWGe3H6Dn3I/j5KP3pCRLtyR4Q3y/n8dtnFJywJAJZm+\\nuEUFUMuV3ig49hhn5bJna8YpdbkHh7NLssatNs+6b3x2sj3Ol3BSwTtBljR6zdWD\\n87yk8T4nXnXIG3i20QJABqVdYHRIpfrWEiXVgvwWBQCljeMoTAmBNfEClaqiZaJ/\\nJlgbWevWb54OrRXefVNFi5ATw+FsLJAIAyi853sIBQ==\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICozCCAYsCAgRlMA0GCSqGSIb3DQEBBQUAMIGCMQswCQYDVQQGEwJVUzEXMBUG\\nA1UECBMOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxEDAOBgNVBAoT\\nB1NvbWVPcmcxFDASBgNVBAsTC1NvbWVPcmdVbml0MSAwHgYDVQQDExdhYmVkLnVz\\nZXJzeXMucmVkaGF0LmNvbTAeFw0xMzA3MzAxNTAxMjZaFw0yMzA3MjgxNTAxMjZa\\nMC8xLTArBgNVBAMTJDAxMEU5OUMwLTMyNzYtMTFFMi04MUMxLTA4MDAyMDBDOUE2\\nNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAs4Z84U0lNjqlbGm6k+uQeeZ0\\ngLyU5vav+zeibQuBGGIWQRD6PN9pivxK0WRPy9FRkooypI7e0G/LQOeBAcUaYM/5\\nGGlDryhNI/lO3rNPEnKWkDYzVXKeIwtjnpdXFDdeFCq0oocA5DQO/m0/Vsk8eRR0\\nDxKjTw9PPGi/Okcs8xMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAgk3w+sno/C54\\nyur78toyPW0UO4gq/ILoCzPK3J7NjnjqTCoLAqe8IOckHPyEBPuST54IyTdAZLfC\\nGuA/ButYsTkepiXwxKdDRxQVPA66KFoZPrSm4khcaRkrxs4TtrtHE3Dhkcp7V4+m\\npgyXWnEVpI/cnO8L70V0TgJaJoU0zMKCtY7hFu2Y5QBuqZ1B634DiOCaB1GSdWLV\\nsbP9JLgrHBPensHI6h2StH69BCKkbBHfmQWXjWdn/pYVRfx14eIoMO6eFvS3KC5l\\nbjdUkPRU7ULGvnAn2VkngKMGM9AS2REj2HjKuyBMiQqiSbRVJ1IRy4Nzmt5IOJx/\\n3NEaP9ENyw==\\n-----END CERTIFICATE-----\", \"_ns\": \"consumers\", \"notes\": {}, \"capabilities\": {}, \"_id\": {\"$oid\": \"51f7d5465ca0137fe7579bd3\"}, \"id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\"}}" + string: "{\"display_name\": \"Simple Server\", \"description\": null, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICWwIBAAKBgQClB/Bf8MPyxenEOUCEZ2e/t5XoiZKWRalz1vd723vWRMg2urmu\\n71X6qNi9PzMEqJGs709QYVc0F324czSd+d457FlbFWsULPGYfL7Rcq1dlrpRB9hu\\nHNDmGAm/KhOF1D3gJ6cBwXh0cgprzlcvQBOZSbdywnfLtRnlL62141lYuwIDAQAB\\nAoGAYVLKPjolxLFUyASfeLXmqFhjDqy7BuX0Jb17W863PEh57lS2FmVMxjL3BrwT\\noUasClli49tT6wODf9hpClUF6R5xbgyJM5hE7EaLn/EZobk+N/bwHC9pjMJanjw/\\n5kHI6FkxRYDN8zLot2dLgNO+bIB5wFS3hIKTe3wciUC2g2kCQQDRQSvnYYf+llr7\\nqgOBFVHA3o1zZVG3K4nslKPbVM2hABb/PoKgYVoOgPejf8OyoCNVMEW6GghC+Xxb\\n7+Rtwup9AkEAyeW3Bp4u0sRQtbvdVszuX7mQehSETnORhI6jHwN7zPNBPRA+hWIw\\ng1FtpkgbzSZOW/m9sQiYHpTrlPtMEAp9lwJAMgrs7fvUIx1gCtmA1wj7MS3IFDXB\\n0hVWeb6eZSClwIAd/9K6OJKvj9Jl5rLyYTCM4p2Vv0jkeufhRrdbIKjBnQJAUqEn\\nZRf8Rdp+xcIbdljs/lRt4ujetVTrK3tNG3ZLhrfP7XPmgqSLAlOjMri0WCPjUhVG\\nI1xHFc0RFao7mR0SBQJAY92p1aZkPEyaju8HHrIrFKoJjcuGqTSClMwKZkXBWYNB\\n1DqmKbOv/WJvGy/6vYyIzaZ8OkOK5kKnhYId4FTO0g==\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICozCCAYsCAgSZMA0GCSqGSIb3DQEBBQUAMIGCMQswCQYDVQQGEwJVUzEXMBUG\\nA1UECBMOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxEDAOBgNVBAoT\\nB1NvbWVPcmcxFDASBgNVBAsTC1NvbWVPcmdVbml0MSAwHgYDVQQDExdhYmVkLnVz\\nZXJzeXMucmVkaGF0LmNvbTAeFw0xMzA4MDExMzA1NTNaFw0yMzA3MzAxMzA1NTNa\\nMC8xLTArBgNVBAMTJDAxMEU5OUMwLTMyNzYtMTFFMi04MUMxLTA4MDAyMDBDOUE2\\nNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEApQfwX/DD8sXpxDlAhGdnv7eV\\n6ImSlkWpc9b3e9t71kTINrq5ru9V+qjYvT8zBKiRrO9PUGFXNBd9uHM0nfneOexZ\\nWxVrFCzxmHy+0XKtXZa6UQfYbhzQ5hgJvyoThdQ94CenAcF4dHIKa85XL0ATmUm3\\ncsJ3y7UZ5S+tteNZWLsCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEArrOUInnkwsDR\\no1Wa2ZGdB3mK1wE2rYwTTVvkR8kLU2qdXcgRsdtto4eZcMbp/Yln7+6mCfKLsVeF\\nIUTkPB/G+5hm6OSD5Wzhgf6dHGBK9LpDG4l9IfBzPn86Vg1Lok/vx2OSj4BPDco7\\neTsFXhqzNM+C1Pw1Cx8TnsGCHkoah3rFcT6KejNGnzFMCDqoqqubfJ4qVQ61wMbM\\nVevBcp93qEbZz8HjbPdMNce+etgp9hS92tUms3zx9ypQi6TfnZAvhqELcy98JRhR\\nBTB5ypf8RNfBsVbmxcmm42Dc1yz0McCZvoGMLrkoPkytXKB7JiElgKazJ1stf/AF\\ngJWmy9IaXQ==\\n-----END CERTIFICATE-----\", \"_ns\": \"consumers\", \"notes\": {}, \"capabilities\": {}, \"_id\": {\"$oid\": \"51fa5d315ca013687ad58a7e\"}, \"id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\"}}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:26 GMT + recorded_at: Thu, 01 Aug 2013 13:05:53 GMT - request: - method: put + method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/ body: encoding: US-ASCII - string: "{\"delta\":{\"display_name\":\"Not So Simple Server\"}}" + string: "" headers: Accept: - application/json @@ -810,11 +773,9 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="HOZoDb1Nh0F6enCfBAzz4YL1GtxcffPpMEC4RHe3ok", oauth_signature="Gs8pTO5Z7pI8n8RB58afPJ5Q5Iw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196486", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="k83jshIPxRUzY4rPAtdmyhoU7ZxDECbLJMrNah6ECVo", oauth_signature="a7polVnBg7wYlIFyH1o9osYaxeM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362353", oauth_version="1.0" Pulp-User: - admin - Content-Length: - - "49" User-Agent: - Ruby response: @@ -823,18 +784,18 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:26 GMT + - Thu, 01 Aug 2013 13:05:53 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "1289" + - "4" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"display_name\": \"Not So Simple Server\", \"description\": null, \"certificate\": \"-----BEGIN CERTIFICATE-----\\nMIICozCCAYsCAgRlMA0GCSqGSIb3DQEBBQUAMIGCMQswCQYDVQQGEwJVUzEXMBUG\\nA1UECBMOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxEDAOBgNVBAoT\\nB1NvbWVPcmcxFDASBgNVBAsTC1NvbWVPcmdVbml0MSAwHgYDVQQDExdhYmVkLnVz\\nZXJzeXMucmVkaGF0LmNvbTAeFw0xMzA3MzAxNTAxMjZaFw0yMzA3MjgxNTAxMjZa\\nMC8xLTArBgNVBAMTJDAxMEU5OUMwLTMyNzYtMTFFMi04MUMxLTA4MDAyMDBDOUE2\\nNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAs4Z84U0lNjqlbGm6k+uQeeZ0\\ngLyU5vav+zeibQuBGGIWQRD6PN9pivxK0WRPy9FRkooypI7e0G/LQOeBAcUaYM/5\\nGGlDryhNI/lO3rNPEnKWkDYzVXKeIwtjnpdXFDdeFCq0oocA5DQO/m0/Vsk8eRR0\\nDxKjTw9PPGi/Okcs8xMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAgk3w+sno/C54\\nyur78toyPW0UO4gq/ILoCzPK3J7NjnjqTCoLAqe8IOckHPyEBPuST54IyTdAZLfC\\nGuA/ButYsTkepiXwxKdDRxQVPA66KFoZPrSm4khcaRkrxs4TtrtHE3Dhkcp7V4+m\\npgyXWnEVpI/cnO8L70V0TgJaJoU0zMKCtY7hFu2Y5QBuqZ1B634DiOCaB1GSdWLV\\nsbP9JLgrHBPensHI6h2StH69BCKkbBHfmQWXjWdn/pYVRfx14eIoMO6eFvS3KC5l\\nbjdUkPRU7ULGvnAn2VkngKMGM9AS2REj2HjKuyBMiQqiSbRVJ1IRy4Nzmt5IOJx/\\n3NEaP9ENyw==\\n-----END CERTIFICATE-----\", \"_ns\": \"consumers\", \"notes\": {}, \"capabilities\": {}, \"_id\": {\"$oid\": \"51f7d5465ca0137fe7579bd3\"}, \"id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\"}" + string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:26 GMT + recorded_at: Thu, 01 Aug 2013 13:05:53 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/ @@ -849,7 +810,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="Yg7scWxHS3da6af0t5NBWVem2AwADHJDFXqor9ctEpo", oauth_signature="%2B%2Bkmo4CqWWzkaDecgnTpfPEuhdI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196486", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="9QcILrp5yQI0RlEouUnrNdXdnU2jCOf1B5bO51Myo", oauth_signature="2%2FlKIJE3AR0uHLVvUJdkF2gFC9c%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362353", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -862,20 +823,20 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:01:26 GMT + - Thu, 01 Aug 2013 13:05:53 GMT Server: - Apache/2.2.15 (Red Hat) Location: - "{'_href': u'/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/'}" Content-Length: - - "2195" + - "2199" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"display_name\": \"Simple Server\", \"description\": null, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXQIBAAKBgQDLlMf9nfxkGKqwAtiCn7Zpmb/KVWLAUpwnF5sTkrdfSrO+fajh\\nKRE8SOYSDSpEhTojbfrVikam56kvuV7q/Fc1TMIOVMiwH3OVn1YaRr8aulC5YLj4\\nL0YTbJVlAm07nnKKqTxZ4atpYM6pp9dVWS4RT5LyT06SdaaikJ2W51236QIDAQAB\\nAoGBAIq+zoIZvx6U9RdaCScVJGPaBi0mflPmuUenPehcEJ9gMRo9V/CEZZu5bxuU\\nX18tkU7+MHqCb95mehbtdjQeYGvaOqNMY2L53/dIfmiC5H9nDoLyB5DtrYzakcwI\\nwKATCbim5vXuoFGK9Y3Gd1ZbYlefJJHYn+tFjkXOKprh/fvRAkEA8hweUr/4U25Q\\n3mWrE9XvvltuK4lxTUgqQFVdX8mkotFCKL6ADpbdg6WLykHBqr/M2q4+ruby59Su\\nZ/ASbpY7lQJBANdCyj+Qao0fcB2x23F+Xr+a+dP4Q3GiJUMGCkqmbYo7ea/DEOyi\\nxiKTL7apH1xrazXrbjpPVWESHFiXXV4g1gUCQFdwak8uf8v5+oDnrQqj6EsSkE5u\\n/BmSJ5hGfEuc8rXO55r5ehxKxkPGZR8t8njtflm4NnFKfY3W1Qo6vR1taqUCQQDJ\\nmokW3Sedwjrb5M50TflpFDk0+AgabdTeH9MVtSdUVn2SSmwYZB6TFSyTs3NmuEgx\\nuKyEufZpsm+P3TuZw8ENAkAnZb8ZeKWExeUYPP9n3PZfZ8KkCSdPG8iOM4hn/ld8\\nZodLJsjZjKFMd16KvROoSLuCNnzQ/dAK5Yl8IzjxKVhL\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICozCCAYsCAgRmMA0GCSqGSIb3DQEBBQUAMIGCMQswCQYDVQQGEwJVUzEXMBUG\\nA1UECBMOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxEDAOBgNVBAoT\\nB1NvbWVPcmcxFDASBgNVBAsTC1NvbWVPcmdVbml0MSAwHgYDVQQDExdhYmVkLnVz\\nZXJzeXMucmVkaGF0LmNvbTAeFw0xMzA3MzAxNTAxMjZaFw0yMzA3MjgxNTAxMjZa\\nMC8xLTArBgNVBAMTJDAxMEU5OUMwLTMyNzYtMTFFMi04MUMxLTA4MDAyMDBDOUE2\\nNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAy5TH/Z38ZBiqsALYgp+2aZm/\\nylViwFKcJxebE5K3X0qzvn2o4SkRPEjmEg0qRIU6I2361YpGpuepL7le6vxXNUzC\\nDlTIsB9zlZ9WGka/GrpQuWC4+C9GE2yVZQJtO55yiqk8WeGraWDOqafXVVkuEU+S\\n8k9OknWmopCdluddt+kCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAUrrIms1Hr6Pa\\neuBEJA6BTz2fo5c4iLfIg8z0IurIcDDMwLwPi0WzbCv5TzXSBKreTIo/jz+GHyML\\nYYkTNc/tO8WO5RQUpwYFV0uEyAW1+xmRSixIbuTLZwlD0WqO0FH0ECrQSHLVqbw0\\ni5mVwa/1hpCQsDt0+I41Oh0cMuS9QsJMgHjfpG3sghUq0URUMIyfyZ3Wrd876LCb\\nt6OnpJCc/t69O2moH0G2RfEXmvgXVSo/juRz+kykGLrethFv5QnNUedTDVWYY8oL\\nafGAScgJqATVnl6LNNNmGoYk3OUa0B71e/ba+nT7YFiXgkflqQdl4+IputELULWD\\ntKvLIKRWhg==\\n-----END CERTIFICATE-----\", \"_ns\": \"consumers\", \"notes\": {}, \"capabilities\": {}, \"_id\": {\"$oid\": \"51f7d5465ca0137fe7579bf0\"}, \"id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\"}}" + string: "{\"display_name\": \"Simple Server\", \"description\": null, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXgIBAAKBgQC61YIRl+hpAbvkPjPmjpxk/utJ0SBSlHzV/4S6IYICbE9PBxLH\\nyauqnmHhUhl5pA+X22IksVuzBVgJKn+DNhszL6vto4Erb47McZ774HM/a3UzRg91\\njez/Q7poZo8H8mNm3jhnosoImki7D4k758mv1+oPCZnTtEEu6oPqvRBeUQIDAQAB\\nAoGAKoaQfXqrHsOTRcdWvuK0/FP9sCaWidVceMUZK9iWpACNKLq+bpUbqtE0DDpI\\nrCRInFMGCr4H1j6gJC31KiN1mxRs1Qnv0EbGSx9z6Hnooizbi5DIz17mhD/xEGPE\\nvlrF2KyBsAJTSRbHrtecjkyEUTTaFkFAWbDXBzMEBSwl8UECQQDdWNKdhzGO9v5A\\nuUTVtzYyTk4A0Gav/K3ZMzpigZ6GHnnpo9yDjVLv2Eq+uoDth/I05lpB/Nsa/Mdr\\noUwZQ97JAkEA2BV4XpE8KZ+DRIeaE4T2gja6f4Dr9xUcJ93tFEAsfYNi4lBnJqm/\\nXGjBvhYBEHzZpEMiOxVX/zZL97drrx+fSQJBALKo2Qcxcjz0++/+GqNuCB6+uZNK\\nozf1edVQ1hVgjjWvL7P4AStlzMWvDVW5cAtJqaQtMjkFAU1dLxGe1a+m6pECQQDC\\nqmz7PPonQVX/ye3rgdCWNHnFXj62JKVt4QexQ7MRC+lsmySidzA3LwTDm40v7log\\nGn7fHXZeK+s6alqvtNxJAkEAjJiKPSCm/RZDV/lBVdFHOj3R8PpXpJT+d1SNePQZ\\nyLeztg+rxmd2PYa1gOHNlgoS1KkugODT5Y17VwfOjo8kZg==\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICozCCAYsCAgSaMA0GCSqGSIb3DQEBBQUAMIGCMQswCQYDVQQGEwJVUzEXMBUG\\nA1UECBMOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxEDAOBgNVBAoT\\nB1NvbWVPcmcxFDASBgNVBAsTC1NvbWVPcmdVbml0MSAwHgYDVQQDExdhYmVkLnVz\\nZXJzeXMucmVkaGF0LmNvbTAeFw0xMzA4MDExMzA1NTNaFw0yMzA3MzAxMzA1NTNa\\nMC8xLTArBgNVBAMTJDAxMEU5OUMwLTMyNzYtMTFFMi04MUMxLTA4MDAyMDBDOUE2\\nNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAutWCEZfoaQG75D4z5o6cZP7r\\nSdEgUpR81f+EuiGCAmxPTwcSx8mrqp5h4VIZeaQPl9tiJLFbswVYCSp/gzYbMy+r\\n7aOBK2+OzHGe++BzP2t1M0YPdY3s/0O6aGaPB/JjZt44Z6LKCJpIuw+JO+fJr9fq\\nDwmZ07RBLuqD6r0QXlECAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAJf8FKHloLfww\\nI40HJqz/jxQAhTSGDHOdwPkyHqzhC0l44ccZRjdm3Z0dwvDYg9UprqhxJPHqvz28\\nrTaLEgDQ1H/2e6xW9Jio2Ub6uXSENy6Na/J4bOwRZxquPM51sjKt2QtDtxf+n9NY\\n4Kmk/J6Z6lLEvlG2cNW7+P8txJmGUGODFe7kJL9gXCvTeboPdi6ActfnQuzQ0UJh\\nx8SihSwyn+tI8cSaN25GDUvP50av5IiZA1/ELPO0d2h2bEX0BDEll7WxS/njSk2+\\nFQ5UqKJ9W/brtWsguTfAeyDOR8FMoWix/tTPlazd2LA8cVLLaBbksACC2PIOhlFu\\nlzaR35wq3g==\\n-----END CERTIFICATE-----\", \"_ns\": \"consumers\", \"notes\": {}, \"capabilities\": {}, \"_id\": {\"$oid\": \"51fa5d315ca013687ad58a9a\"}, \"id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\"}}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:26 GMT + recorded_at: Thu, 01 Aug 2013 13:05:53 GMT - request: method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/ @@ -890,7 +851,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="X0ycPJFTRfopidedyitsJteVWhVbDAclk89pYjvdXfo", oauth_signature="5Gznh89qtcf7Ag%2FAUllLeVrcQuI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196486", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="tVUXZ5dia3oGNY9WjUJpJ5mhsUVXeSS82O8tbyBDy4", oauth_signature="etDBM9Dz5hS7GGfZQmvF5RWlayk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362353", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -901,7 +862,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:27 GMT + - Thu, 01 Aug 2013 13:05:53 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -912,7 +873,7 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:27 GMT + recorded_at: Thu, 01 Aug 2013 13:05:53 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/ @@ -927,7 +888,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ucA74aIlJoamwv9iI1lDqQu9werJXpygAlzrMCO1e0", oauth_signature="Chc4Gnx26x1AdOESIMTe9Vn0QvA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196487", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="Kh2rKZ1ZWHh1YHHFKc3YjyDssvGyfibFLDz8WRKQ", oauth_signature="7lGlgpICHu0LhIYAnPkDL23k18o%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362354", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -940,7 +901,7 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:01:27 GMT + - Thu, 01 Aug 2013 13:05:54 GMT Server: - Apache/2.2.15 (Red Hat) Location: @@ -951,15 +912,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"display_name\": \"Simple Server\", \"description\": null, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXQIBAAKBgQDGLypDLE3pMMjEKyeNoy5Dt4+wrc7eKP3/51GhcbGKj+CAGNSa\\nryhRSJhWR2SwHgNnJdaHd2XvNy7MjqqOVobs4hwSJgzNzuD8MHdn0YCXvn0Krsec\\nYNuisqAuuqaGYVkmCcsCmmiaLzlIzsL0jHqsr4WXnLKWF89Los6yn+Lg/wIDAQAB\\nAoGAYte3LlV0bi9EkoIrcfrG4kM0yRuGp0quk+kcz3ZS5BaqE3lO3+8oHpIkWDO3\\nRhdR/ynh+yJTlqFhF+i3q9H/7Feinh2W/BhXojr5EGvrXh8uO94QU2j8y1iGj61d\\nrbtli8+qKJaZ0sJGGpHLi+QUhbDQ9/3loVYaK/RTFHk4DfECQQD2zAmZpYDTdziy\\n1ZQkKY4viEmiYr7m8yM2oHBKkXwnquAel7TRXUuI80Oh2YEIuQ6oiFI2Ces0/Y0l\\nA53zhKWzAkEAzZMP/METH7GMVRVC1pXhvFkfQCWiBTFRd+FKhfhZpmlfXRRRbdwR\\nqwNUxBoTStxXmzLmI+aoIZbwtPhcFYSJhQJBALxfBDzYDDpb11T4m/f2F+bD2aAu\\nSpOwpQH+93aTEPaeAC6ZkJP058CCHO8eOtTTmxKb6lQAwhxSIzdLSXYjmu0CQQCI\\nC3n6ECBCyjIPoIliD0Cbb/NxdTY67391sV+rN0bFDVjx9V9KL+h1Xzf6qzL3SMil\\nSdLqEVxVFlnnubDfAJ4tAkBF5dpjiCcWnLlPric5FpbdSVa5RtQ4+0y7P+X14xvN\\nNTbVMjT3Pyq8Aa6MfwZYDHIj6v1sYG4R9cq6AlK4CpXn\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICozCCAYsCAgRnMA0GCSqGSIb3DQEBBQUAMIGCMQswCQYDVQQGEwJVUzEXMBUG\\nA1UECBMOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxEDAOBgNVBAoT\\nB1NvbWVPcmcxFDASBgNVBAsTC1NvbWVPcmdVbml0MSAwHgYDVQQDExdhYmVkLnVz\\nZXJzeXMucmVkaGF0LmNvbTAeFw0xMzA3MzAxNTAxMjdaFw0yMzA3MjgxNTAxMjda\\nMC8xLTArBgNVBAMTJDAxMEU5OUMwLTMyNzYtMTFFMi04MUMxLTA4MDAyMDBDOUE2\\nNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAxi8qQyxN6TDIxCsnjaMuQ7eP\\nsK3O3ij9/+dRoXGxio/ggBjUmq8oUUiYVkdksB4DZyXWh3dl7zcuzI6qjlaG7OIc\\nEiYMzc7g/DB3Z9GAl759Cq7HnGDborKgLrqmhmFZJgnLAppomi85SM7C9Ix6rK+F\\nl5yylhfPS6LOsp/i4P8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAoqy5Qe6t5YDV\\n4tfoCBSzI8WpjUYoefyQuRWwDnj8KgJfg5klO398MRMnbxFCy7zowAWwvE785CXx\\ndeYVaUwwcWhJ8D2717E5ZjUImvbj5bMDENtBdmqU8kaXYJnCD6bSH5gnLtiDuTqd\\nS7PC5m0bRwJ2CIExznlBdz2a5e8g4O7IRphov4gaIGIOfPVMbdHmHivjD+666wWs\\nbp26wgZhQRFDtaSijY+JEr3UpVmFwlkZDyr5RofOLvKbMb2fWvBpaDiootpaa1UA\\nvExLPS58ur5FALAH3fIM3uemUorIISOyjQvk0uSRJnPdJwKZpY1N7sr+SdqvOyUV\\nGSD32QbxJg==\\n-----END CERTIFICATE-----\", \"_ns\": \"consumers\", \"notes\": {}, \"capabilities\": {}, \"_id\": {\"$oid\": \"51f7d5475ca0137fe7579c0c\"}, \"id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\"}}" + string: "{\"display_name\": \"Simple Server\", \"description\": null, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICWwIBAAKBgQC9aAjeIXxcgLBSalpDMaQ55nKZOog5wA+VQldwb/VENESFsGrh\\nQNou8NLO2BDyK2mnt00xyM/39QtacsvuYrJXzQIdUBgZa+qElzEHQrvY4Hb6Hh88\\nPvkq5EC2ze+NhbTrPhwylg14CpUxWMUIHl2clduNKEFbtR+Mt8mA4m2jZQIDAQAB\\nAoGAWQCmChuaIK2oLVIkkCankT2k5DQJB3ok2HKQPBmgGyikel3oG2kqHZy0stX9\\nQI792v3bnGVMtKvFZf9DrQVb3+6Hi+HPVXmv8FfxWEngwb450AJUMJaRUvJ+4qMQ\\nAFaHb9Bfly+kKeZ/0B7Osg04V/JJhjv4LQ7W7BDbpX9b9ZECQQDwk9Hy24c0G+BA\\n5jyb78TP1GdYk53AwdUgnvSiNas2ot2EALDJMPy0Q4RTj/ZK+1MuuxJ/BBK/lQZz\\n9djlXGDvAkEAyYxu3XWRxvl8Vkcy1WgP80cuSSbHEdXDhwh+sC0ro8NLrODjmRhB\\nICwMEDknAeHchFejahvb7+N67Zvw6pnY6wJAAmDzynrxM0qzRPEB2GjegU+QVgff\\nn3BLMy9fK9tr/fZOSmfXV6XsWbvxKwJZZRRnFiczX54isVI/5hWgN2RacQJAMtzw\\n4YyZFGjDuxZOutJ/K/rrsGRL2rFincJEDnvnxnUztNYwOeOIE/FpvfJeaLgyKWfg\\ngpezQm/bBvnSq7HVrwJAVRhHfjPC/GXWkqeIEhKXHgbFK82KwuwM5uVFjYqof2Ny\\nYAEJLBn5MDENUaU3IFiD45UHCE6CQ44md9tbJe4/Bg==\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICozCCAYsCAgSbMA0GCSqGSIb3DQEBBQUAMIGCMQswCQYDVQQGEwJVUzEXMBUG\\nA1UECBMOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxEDAOBgNVBAoT\\nB1NvbWVPcmcxFDASBgNVBAsTC1NvbWVPcmdVbml0MSAwHgYDVQQDExdhYmVkLnVz\\nZXJzeXMucmVkaGF0LmNvbTAeFw0xMzA4MDExMzA1NTRaFw0yMzA3MzAxMzA1NTRa\\nMC8xLTArBgNVBAMTJDAxMEU5OUMwLTMyNzYtMTFFMi04MUMxLTA4MDAyMDBDOUE2\\nNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAvWgI3iF8XICwUmpaQzGkOeZy\\nmTqIOcAPlUJXcG/1RDREhbBq4UDaLvDSztgQ8itpp7dNMcjP9/ULWnLL7mKyV80C\\nHVAYGWvqhJcxB0K72OB2+h4fPD75KuRAts3vjYW06z4cMpYNeAqVMVjFCB5dnJXb\\njShBW7UfjLfJgOJto2UCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAJ7CuzV1aD4hj\\nzykm7MYB7UePOuICFZ1QMmlsF3/CDpPt8aRRVtI4TN0Y3cGMTBWZg+6/dZchfILM\\nxEDQ1V0e1QbZlDTHBMqMqeW7AX9wiK+V9MiEhECq9yhgB4RlJYFy66lxBMSmTuDs\\nNoCGXZNfGQqmycqpCSAQ5UXlHOJKvBRMAZXwB5kuCrLAGAVZInpMDIHrzMqw61qU\\nAa5E4URtdJXwNlViaGk91c+HaW50oqlE1Yf0nNT9KHLo1+d/92LHsCKJtOdhuzKf\\nDylodniYxp1AuYWaoPn3OPH57qWbFze8vxCAyYN2wgTs41PcQesnKb00nXa7CKyK\\nifVBQZMzzA==\\n-----END CERTIFICATE-----\", \"_ns\": \"consumers\", \"notes\": {}, \"capabilities\": {}, \"_id\": {\"$oid\": \"51fa5d325ca013687ad58ab6\"}, \"id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\"}}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:27 GMT + recorded_at: Thu, 01 Aug 2013 13:05:54 GMT - request: - method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/profiles// + method: put + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/ body: encoding: US-ASCII - string: "{\"content_type\":\"rpm\",\"profile\":[{\"vendor\":\"FedoraHosted\",\"name\":\"elephant\",\"version\":\"0.3\",\"release\":\"0.8\",\"arch\":\"noarch\"}]}" + string: "{\"delta\":{\"display_name\":\"Not So Simple Server\"}}" headers: Accept: - application/json @@ -968,33 +929,31 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="6GoGcmNptGiqzZEoFoE4y3nKIuKQilIRjQgR7wQqJ8", oauth_signature="k5n2sOcH6uYksSoZ5GM0Wt62CJk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196487", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="g9bEaI3jzWdrqHMUNK0mBq4hdHqS0PXFFnUYlxkJWY", oauth_signature="vkMLanl3543HP2r7VxfTtt%2Fn%2FcY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362354", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "126" + - "49" User-Agent: - Ruby response: status: - code: 201 - message: Created + code: 200 + message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:27 GMT + - Thu, 01 Aug 2013 13:05:54 GMT Server: - Apache/2.2.15 (Red Hat) - Location: - - /pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/profiles/010E99C0-3276-11E2-81C1-0800200C9A66/rpm/ Content-Length: - - "428" + - "1289" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"profile\": [{\"release\": \"0.8\", \"vendor\": \"FedoraHosted\", \"version\": \"0.3\", \"arch\": \"noarch\", \"name\": \"elephant\"}], \"_ns\": \"consumer_unit_profiles\", \"consumer_id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"content_type\": \"rpm\", \"_id\": {\"$oid\": \"51f7d1905ca0137fe7579294\"}, \"id\": \"51f7d1905ca0137fe7579294\", \"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/profiles/010E99C0-3276-11E2-81C1-0800200C9A66/rpm/\"}" + string: "{\"display_name\": \"Not So Simple Server\", \"description\": null, \"certificate\": \"-----BEGIN CERTIFICATE-----\\nMIICozCCAYsCAgSbMA0GCSqGSIb3DQEBBQUAMIGCMQswCQYDVQQGEwJVUzEXMBUG\\nA1UECBMOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxEDAOBgNVBAoT\\nB1NvbWVPcmcxFDASBgNVBAsTC1NvbWVPcmdVbml0MSAwHgYDVQQDExdhYmVkLnVz\\nZXJzeXMucmVkaGF0LmNvbTAeFw0xMzA4MDExMzA1NTRaFw0yMzA3MzAxMzA1NTRa\\nMC8xLTArBgNVBAMTJDAxMEU5OUMwLTMyNzYtMTFFMi04MUMxLTA4MDAyMDBDOUE2\\nNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAvWgI3iF8XICwUmpaQzGkOeZy\\nmTqIOcAPlUJXcG/1RDREhbBq4UDaLvDSztgQ8itpp7dNMcjP9/ULWnLL7mKyV80C\\nHVAYGWvqhJcxB0K72OB2+h4fPD75KuRAts3vjYW06z4cMpYNeAqVMVjFCB5dnJXb\\njShBW7UfjLfJgOJto2UCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAJ7CuzV1aD4hj\\nzykm7MYB7UePOuICFZ1QMmlsF3/CDpPt8aRRVtI4TN0Y3cGMTBWZg+6/dZchfILM\\nxEDQ1V0e1QbZlDTHBMqMqeW7AX9wiK+V9MiEhECq9yhgB4RlJYFy66lxBMSmTuDs\\nNoCGXZNfGQqmycqpCSAQ5UXlHOJKvBRMAZXwB5kuCrLAGAVZInpMDIHrzMqw61qU\\nAa5E4URtdJXwNlViaGk91c+HaW50oqlE1Yf0nNT9KHLo1+d/92LHsCKJtOdhuzKf\\nDylodniYxp1AuYWaoPn3OPH57qWbFze8vxCAyYN2wgTs41PcQesnKb00nXa7CKyK\\nifVBQZMzzA==\\n-----END CERTIFICATE-----\", \"_ns\": \"consumers\", \"notes\": {}, \"capabilities\": {}, \"_id\": {\"$oid\": \"51fa5d325ca013687ad58ab6\"}, \"id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:27 GMT + recorded_at: Thu, 01 Aug 2013 13:05:54 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/ @@ -1009,7 +968,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="6DdL0iltNKhk5j06efAHuapdMJUWVFukRtSiv6OAM", oauth_signature="tIZeBz0%2BMJht2fYi%2FI3ijMDkIzc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196488", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="2DGJKYtK6K1ZScePHj0idR38rUHfsYOoPcrwumzJg", oauth_signature="QZG85Cq5jkEMqo9Y%2FASVAnipOwc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362354", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -1022,20 +981,20 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:01:28 GMT + - Thu, 01 Aug 2013 13:05:55 GMT Server: - Apache/2.2.15 (Red Hat) Location: - "{'_href': u'/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/'}" Content-Length: - - "2199" + - "2195" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"display_name\": \"Simple Server\", \"description\": null, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXgIBAAKBgQDfAopuwEFFDL8FqVGXlaKHNY/HuiumjW/s8xjqxqnpa+4G/Djl\\nQLEDx/BE+y3nLZweLKLEeEamhgwt8TK/Sa/TFqtKsC33kN34M79LzwFEOTuATLoa\\n1iuzJ/dPLllKij2hBoNl9t5S1PM+aeYM3D1HUzJW7IHdzDKZORG7ANLpswIDAQAB\\nAoGBAIGB7TiR55Wc6FX2VU7NdBxHK59Wa0EGxCf7qM223zeSGSHvWW8xGVtTwiGd\\nKLQnFZGkZEXqf0T3dZ08hDb4KOU8N+9TM517IBhrIlnv3W6VoORjniHM+RM487dG\\n/F0oyEys6vjnQ7C9R3fGZcd/DicU8T8Qni2YtPEdQz1yZAsRAkEA/VWraS0pK8NI\\nIP5m56FtbEGYKzDgjce1yVb5XJSzu+PKZOCoc0j3UcTq3hoCYOR5CO0Rr3NLfXH6\\niSFnkjSTywJBAOFbMdg7tGfnwHh9580qdJFltDMkapPeS2VK5tX5bkIi1WRrzpc6\\nLKShREV2SyTQa6ImFjqGsmL35gvW0/1Q1LkCQQDjJ0oHiOL9xqCKVRLYZzrCcx6K\\nu8zd1FEAM+hsRznSI7J7OaZRmP+KZlNiy1eOoc6VXl0ZQPxTgzvucfF4e4R5AkEA\\nrBschxqZ3dzVVnA5jqvE2KIGrCQ8rO9RP2ujvXjAJww5UncvELmiDJ0I6c+89cGi\\n4fQad9oU9JaEfzgzMDwCKQJAMoPvc7K4HBMSxmhEq3zg0B9lp4SJhRg8kHtciL4S\\nv9Nuv8rDVk44G0dD/X3gz7RBZLm5Brld0OcqitvQIqqz/A==\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICozCCAYsCAgRoMA0GCSqGSIb3DQEBBQUAMIGCMQswCQYDVQQGEwJVUzEXMBUG\\nA1UECBMOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxEDAOBgNVBAoT\\nB1NvbWVPcmcxFDASBgNVBAsTC1NvbWVPcmdVbml0MSAwHgYDVQQDExdhYmVkLnVz\\nZXJzeXMucmVkaGF0LmNvbTAeFw0xMzA3MzAxNTAxMjhaFw0yMzA3MjgxNTAxMjha\\nMC8xLTArBgNVBAMTJDAxMEU5OUMwLTMyNzYtMTFFMi04MUMxLTA4MDAyMDBDOUE2\\nNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA3wKKbsBBRQy/BalRl5WihzWP\\nx7orpo1v7PMY6sap6WvuBvw45UCxA8fwRPst5y2cHiyixHhGpoYMLfEyv0mv0xar\\nSrAt95Dd+DO/S88BRDk7gEy6GtYrsyf3Ty5ZSoo9oQaDZfbeUtTzPmnmDNw9R1My\\nVuyB3cwymTkRuwDS6bMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAs0WpHa6qdTW6\\nUrZQNz7ahdJe/qw2NwqBiij1wHGanQrGfVFDXldT0EAv+Ik7rFZDS8KqVSr6rzMG\\nTheO9EF9AfwbO/Iha4/Cf/TL0LdWaK99WRESxhxKIvtpi3TqgvSKWzQQI2Da/UzI\\nMMyeTJY4qXMTCqX3GCgr4l1E8Oi4SuAuaHiN4hX7J4Mwm0LvtpSm6jOaMJbj5gqE\\nkAdSu550MDy9UxQMj8TgBsR3cZvNhfAxFlX2QRwndO8bQCkLc16G8l7rZ6gSPIQM\\nzl/Re9dpiTUhyNad+XM4+aBDdSxalOQJ/rpJTbGycVIGvgWzxemNhsYIpK2rh7CF\\nXoNv7fHYAw==\\n-----END CERTIFICATE-----\", \"_ns\": \"consumers\", \"notes\": {}, \"capabilities\": {}, \"_id\": {\"$oid\": \"51f7d5485ca0137fe7579c29\"}, \"id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\"}}" + string: "{\"display_name\": \"Simple Server\", \"description\": null, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXQIBAAKBgQCpWsLIMey3cdrexkXsifO3Ge+cr/UC4Z/Mh1ZXaiMpiybbCedl\\nZWQiFnmMwZPyVQOMGSt/ZK2ZqFmY6zrDDWaaod6CEg7N0Q+mocGFsvOKr+7lj+Q2\\nEJ1k7y24YKXN0h/nGU9d8w7WokhzX5PZovyTrYXKowHPi8LO1h3quucFOwIDAQAB\\nAoGAffj6PIoOZ+I0CVP4/VscQ43yU137ZXpJMI1XJ0zW/Pb6HyJ90kmaM1T+czom\\n/7JHIjYyyd8s1siIZRxMqHxWXeea9irLLIuvqQ2hLkUIMF2dS42CzuJcUc/WILYm\\nCHPMuSrMDLZgfvLX1ae8K+pN0eNRpNd2FiaA7XYh7utSjOkCQQDYjGRnBqBAVsX8\\n/CZBej6mu812glZewBSA7SvXDa4R5vg8iAsYuI5lCGT1+Ob/hmArC/6FPMDMzwlo\\nbJaU+N5HAkEAyDVKzhlTxnFcNmrEEGOTPu2ndTYjXlnADas9E8aASxV/MbKcB1yC\\nNSNRbYIJfB1MpxCNqoyk2pGiJ5L1q0gXbQJBAJfg16Z+ujSF57UI8Jfp8jkk7PUa\\ncxNfasIGFkJtwNGjiiWCUS4UeyKXYaA242UCTT7D2c5/DsZWy0VnK7HuXo8CQBFt\\nmjJwv/sxWQ6foquuj13WAFLSwKdw9qf59RoomHhwyZ7A5pY5dlg719XJkRvNzSNp\\n7HshPSSNsujxARPE9c0CQQCrYg8OYbQzJ4IfsLV2NC4PbrGAZhhEjgxz9kxMnioj\\nVEuMJCYZ6qnLU7ZwlqqMhJqvOfvRCUta2PUShNJ5VVdI\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICozCCAYsCAgScMA0GCSqGSIb3DQEBBQUAMIGCMQswCQYDVQQGEwJVUzEXMBUG\\nA1UECBMOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxEDAOBgNVBAoT\\nB1NvbWVPcmcxFDASBgNVBAsTC1NvbWVPcmdVbml0MSAwHgYDVQQDExdhYmVkLnVz\\nZXJzeXMucmVkaGF0LmNvbTAeFw0xMzA4MDExMzA1NTVaFw0yMzA3MzAxMzA1NTVa\\nMC8xLTArBgNVBAMTJDAxMEU5OUMwLTMyNzYtMTFFMi04MUMxLTA4MDAyMDBDOUE2\\nNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAqVrCyDHst3Ha3sZF7Inztxnv\\nnK/1AuGfzIdWV2ojKYsm2wnnZWVkIhZ5jMGT8lUDjBkrf2StmahZmOs6ww1mmqHe\\nghIOzdEPpqHBhbLziq/u5Y/kNhCdZO8tuGClzdIf5xlPXfMO1qJIc1+T2aL8k62F\\nyqMBz4vCztYd6rrnBTsCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAT6e+jVW77C7d\\nWEttggSldeng5kaAWzCvpujDrQVY49VqN7sONhIL4it51XQhHNaZlkVjuruTUv6w\\nw8E13q/5y9RWpyv7zgAelQq+OcGgX4C3q892rZN2q3tXzuyMln+2ehyrILuaACoQ\\nPUxdMSe1MJy1nRHOwAaDwjIP8lC0dyEJcL+/+Mjyq+UO3olPMm53StYxBdwC5J2v\\nT6ylAjLEOlyGqh19M9iXNxFG4UQvEtkR7Z9FjtsEwy8LkGnaW53cub2QTy4yF3ZT\\nl4GVkyAfMfv6X2ksQh5CkTCZRfBcZ9p6pyu/KD/tm/400IwyQh2ghln7n/fzNXji\\nEJ0Y8kCu6w==\\n-----END CERTIFICATE-----\", \"_ns\": \"consumers\", \"notes\": {}, \"capabilities\": {}, \"_id\": {\"$oid\": \"51fa5d335ca013687ad58ad3\"}, \"id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\"}}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:28 GMT + recorded_at: Thu, 01 Aug 2013 13:05:55 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/ @@ -1050,7 +1009,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="G9St4jZbMrm2GLtzc7pgrpOI1IxQyqwaYKSq9NQOG0g", oauth_signature="lD%2BfmmF1uMGh3JXbxwleIM10CZM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196488", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="aZEJbu0Epp7AiVjS18iz08rhGCPgjtMrFheakrzY7I", oauth_signature="RkzemfYbswxFPl1ajWqzlJlssC4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362355", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -1063,26 +1022,26 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:01:28 GMT + - Thu, 01 Aug 2013 13:05:55 GMT Server: - Apache/2.2.15 (Red Hat) Location: - "{'_href': u'/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/'}" Content-Length: - - "2199" + - "2195" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"display_name\": \"Simple Server\", \"description\": null, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXwIBAAKBgQDTGuB91Mk/mQEObuXx5XhPsMN/uGeRY0XmWXabvmu7GH19Kp7M\\n5PhutHliT4TZCcGmaTiYtDPEsF7FJ2WXeeVTAHao8u03IhLtm7y0DTzZC4vs7wZG\\ndcx+OODNYHFlHehWM/HXlaGUrffUhYbXsHNQLPJ3C+O8rZTC3Hzji5unhwIDAQAB\\nAoGBALTbuuay7XO6DsihxAi4spl7dBIxFzHc3h7aGJ6Xxk41ThV09TXPGPQnVDMg\\ns00Kaci7LszM3ektvROljAj5WrhxfkoBWqppvkiX9PxFd7IdkE88GOPx3fxAxtCj\\n9nZJCP3q8mWRHfOJ3f1j6CVMqgdNx6kDHyl2237GQdGnF+fJAkEA90pxZYkdEXid\\nWFqyqUbZAZtsgAVItswu8Rntsfy6JpvNj42wopoKjP6WL7ADaHhOYHz1vt64d/HZ\\n8goFX2BPTQJBANqKL2kmPXjFBBGoxr11bzTWZSg1ZJOi8fCw29kU54SXPsr40MhF\\n5XSjJWLsIUzpjuDbsnwYYLdgQJA93ChsECMCQQCPrvpqU5vHLfzGfJR4lMi8DVGi\\npO9V/xd7UWRx2XVTv41Vzq8GG1jsCXS8KpogVl67439qMsCeOLE42Ce8/hm1AkEA\\nibjt+fD8amCWmN5pKLqaM40tQLKtSJE2sX1zfxG6eYerLdSyFpRd7yxlgjrXHZZO\\n0YwCpkvin43MAlrJpLu9SwJBAKjQxvj2pIYLiwq4SsOyp2Hx/hSItsHGyrIsoynX\\nKdv8RYj6ACO7U8wWPRQnSXUDrMdFc80/gCUBg3neFjNpt4I=\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICozCCAYsCAgRpMA0GCSqGSIb3DQEBBQUAMIGCMQswCQYDVQQGEwJVUzEXMBUG\\nA1UECBMOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxEDAOBgNVBAoT\\nB1NvbWVPcmcxFDASBgNVBAsTC1NvbWVPcmdVbml0MSAwHgYDVQQDExdhYmVkLnVz\\nZXJzeXMucmVkaGF0LmNvbTAeFw0xMzA3MzAxNTAxMjhaFw0yMzA3MjgxNTAxMjha\\nMC8xLTArBgNVBAMTJDAxMEU5OUMwLTMyNzYtMTFFMi04MUMxLTA4MDAyMDBDOUE2\\nNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA0xrgfdTJP5kBDm7l8eV4T7DD\\nf7hnkWNF5ll2m75ruxh9fSqezOT4brR5Yk+E2QnBpmk4mLQzxLBexSdll3nlUwB2\\nqPLtNyIS7Zu8tA082QuL7O8GRnXMfjjgzWBxZR3oVjPx15WhlK331IWG17BzUCzy\\ndwvjvK2Uwtx844ubp4cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAB5oF433LeFv6\\nvPEn8JtbLO1CmQDhPN38OIhvBz6Per2jFA/CHk+21i9lqj809yksJm/TqMQroxIP\\n7QAc8GSTg4aHT8mAVbvUiI31UkqoWEVgFp+tShsbNBncq5qlABPoQSZCTrZNVmom\\nDs1oub53XFdze9KX5DSxrwh9CNMJ17OiTuEy2gY06zjrYVKkPe2YqKD1/8bcve5o\\nB7DALOfj4RmEzrgLh0/hioiHDnpVn3VQf3ULe19gX8Gf70hwXjspE0wQ2F3K6Dv1\\n2MLNvesHKOcDlgej0VmcDWF7F2cPR94IPszV5beTI5XBpR0PK888uKpyNakAbMVR\\n6RMZ3eAjqw==\\n-----END CERTIFICATE-----\", \"_ns\": \"consumers\", \"notes\": {}, \"capabilities\": {}, \"_id\": {\"$oid\": \"51f7d5485ca0137fe7579c3e\"}, \"id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\"}}" + string: "{\"display_name\": \"Simple Server\", \"description\": null, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXQIBAAKBgQCnwhoAMKQNzniDzQ9/fOU1qaQ/8iXnm7f6x/2lGHOw4Jahe0Xo\\nSBjiCGaDDhCPCh0xWLnCNVvDkZHqIEzPK6oIo+5Kkq0JvgXviVeItN9ElipTRPCj\\nvUtb4niYQth6zdmYPziyNGofuJ9N78JYvTGwbBd9qRGu/w7jCRwsgc6fLwIDAQAB\\nAoGAFK7JpdxZXZpnIVjW4FD1sXgI2Blysutv82tUylYJbXVDHQWlyM2aw8NlYCML\\nx5bnon3d6SPK/IGmC8ePsLsha1wpAZy5VUmy9y7/lXZyICd4Umvz27ivkINe7AhF\\nK3NqI6BhEpDNVsBvXX29ptyWSmik8I2i2GC3UjtXGoqKAQECQQDWn3pbYhwqBFM4\\nnbefr6U7/Rkd0JL+cgCs4Tl8PRs+nMjRHRuzPS67f1ls0BoDJfEU7WRQbz1iJETn\\nEtI0F0QZAkEAyBmn/KYcoGsGM53LUMNv51d+9cEGt2T6SuZ4ZsJJ/xeUzMFCzTfa\\nwRz6r7XGQoAerV0B8iB6n/e0WoRZvp4mhwJAdPX2FUTzOkafH7R7tC9hab61aFUZ\\nNkbkbVJUJIuchFOm8KbfSJ+oDxAIqM8DzgFoT1JLn7XvisNfNVpBaZfgSQJBAL41\\n9UPrO6caVWjXhJ+fSE6nE57VAGdw66QrdSRpaCG+7sm8pJ2jjKSpwXsp1e79DyxJ\\nD0J0sVxDAQRSb2UNvR0CQQDS809NO0J8zRGE2FtCn34wbFK61Gu5ZIHjwN0GTOnv\\nU6ERTVoMR7gemKDP2M8VuFy/T+k67+jE8ijaXmShrb2S\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICozCCAYsCAgSdMA0GCSqGSIb3DQEBBQUAMIGCMQswCQYDVQQGEwJVUzEXMBUG\\nA1UECBMOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxEDAOBgNVBAoT\\nB1NvbWVPcmcxFDASBgNVBAsTC1NvbWVPcmdVbml0MSAwHgYDVQQDExdhYmVkLnVz\\nZXJzeXMucmVkaGF0LmNvbTAeFw0xMzA4MDExMzA1NTVaFw0yMzA3MzAxMzA1NTVa\\nMC8xLTArBgNVBAMTJDAxMEU5OUMwLTMyNzYtMTFFMi04MUMxLTA4MDAyMDBDOUE2\\nNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAp8IaADCkDc54g80Pf3zlNamk\\nP/Il55u3+sf9pRhzsOCWoXtF6EgY4ghmgw4QjwodMVi5wjVbw5GR6iBMzyuqCKPu\\nSpKtCb4F74lXiLTfRJYqU0Two71LW+J4mELYes3ZmD84sjRqH7ifTe/CWL0xsGwX\\nfakRrv8O4wkcLIHOny8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAxQvZzK0XZKKW\\nK6oTRu3PZk33Wm42haTy7kEOBDP0WeYmPFV8Hbe6k5JB67yF/bqkfTX3QDETP2lI\\nDpqk8Uc/Q24i/XA8uzzJXHzq1qBz5iPBamhYy+VSLNVV/V7F+pdqNSDRAdiVumug\\nM9/APIWoxLUFxBC6wIjJX9GsokslG6OwH69mhLWjjKOyPimJBz9NsVMfKFTdFRg7\\n3PCvz6ZR/WcBxkHP7Q0HkC78Zw2bB1/rl+qhN5LhUA+dfp9bcuQEz9MB4t8iCwxD\\nF2C2RyZlvscboqA8e8tlPMtuC2Y2K51WW/fAUIxRf2vgOZQoWZHtKaPDcYkk9Ts8\\njX6UrSy9GA==\\n-----END CERTIFICATE-----\", \"_ns\": \"consumers\", \"notes\": {}, \"capabilities\": {}, \"_id\": {\"$oid\": \"51fa5d335ca013687ad58ae8\"}, \"id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\"}}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:28 GMT + recorded_at: Thu, 01 Aug 2013 13:05:55 GMT - request: - method: delete - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/ + method: post + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/profiles// body: encoding: US-ASCII - string: "" + string: "{\"content_type\":\"rpm\",\"profile\":[{\"vendor\":\"FedoraHosted\",\"name\":\"elephant\",\"version\":\"0.3\",\"release\":\"0.8\",\"arch\":\"noarch\"}]}" headers: Accept: - application/json @@ -1091,27 +1050,31 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="2ZheLnyfahPJkUhsKAyi1gFaW0irBZDSwM9c0FY5QI", oauth_signature="ehA3RaftWtP4XpeAOqOIyLZHhCc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196488", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="HNCnfyBPQZlr7hDG2ufQAhhjbtSIAkyxhs2TUgzGelk", oauth_signature="VXm614yN%2BY0jC1yS6jn6gKZMwFI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362355", oauth_version="1.0" Pulp-User: - admin + Content-Length: + - "126" User-Agent: - Ruby response: status: - code: 200 - message: OK + code: 201 + message: Created headers: Date: - - Tue, 30 Jul 2013 15:01:29 GMT + - Thu, 01 Aug 2013 13:05:55 GMT Server: - Apache/2.2.15 (Red Hat) + Location: + - /pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/profiles/010E99C0-3276-11E2-81C1-0800200C9A66/rpm/ Content-Length: - - "4" + - "428" Content-Type: - application/json body: encoding: US-ASCII - string: "null" + string: "{\"profile\": [{\"release\": \"0.8\", \"vendor\": \"FedoraHosted\", \"version\": \"0.3\", \"arch\": \"noarch\", \"name\": \"elephant\"}], \"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/profiles/010E99C0-3276-11E2-81C1-0800200C9A66/rpm/\", \"_ns\": \"consumer_unit_profiles\", \"consumer_id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"content_type\": \"rpm\", \"_id\": {\"$oid\": \"51fa5d335ca013687ad58af3\"}, \"id\": \"51fa5d335ca013687ad58af3\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:29 GMT + recorded_at: Thu, 01 Aug 2013 13:05:55 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/glue_pulp_consumer_group.yml b/test/fixtures/vcr_cassettes/glue_pulp_consumer_group.yml index 2b570b26bd5..4454fc1d203 100644 --- a/test/fixtures/vcr_cassettes/glue_pulp_consumer_group.yml +++ b/test/fixtures/vcr_cassettes/glue_pulp_consumer_group.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/content/install/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"elephant\"}}],\"options\":{\"importkeys\":true}}" + string: "{\"criteria\":{\"type_ids\":[\"erratum\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" headers: Accept: - application/json @@ -14,39 +14,37 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="bpfu7il1kGUVQxVhixrbhwtP12HmmzerevMvdbZAY2I", oauth_signature="XHB5Qekm6wyT1lesY%2FOy0cOTCgk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196352", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="FOl0l4xo8HzC5LF5KGIdFgH64j2s5tJRE6VowqMRsw", oauth_signature="IRF2tvxNy8lJ11dROWK4AUdkaw0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362235", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "90" + - "84" User-Agent: - Ruby response: status: - code: 202 - message: Accepted + code: 200 + message: OK headers: Date: - - Tue, 30 Jul 2013 14:59:12 GMT + - Thu, 01 Aug 2013 13:03:55 GMT Server: - Apache/2.2.15 (Red Hat) - Content-Encoding: - - utf-8 Content-Length: - - "752" + - "372" Content-Type: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"4ba2df39-eb2d-4fd6-8b73-e5da8c0a88f0\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/4ba2df39-eb2d-4fd6-8b73-e5da8c0a88f0/\", \"task_id\": \"38aa4fa1-2840-4f34-a590-022676564761\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"4ba2df39-eb2d-4fd6-8b73-e5da8c0a88f0\", \"call_request_id\": \"38aa4fa1-2840-4f34-a590-022676564761\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"_id\": {\"$oid\": \"51fa5cb85ca013687ad584b2\"}, \"unit_id\": \"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\"}}, {\"_id\": {\"$oid\": \"51fa5cb85ca013687ad584b3\"}, \"unit_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\"}}]" http_version: - recorded_at: Tue, 30 Jul 2013 14:59:12 GMT + recorded_at: Thu, 01 Aug 2013 13:03:55 GMT - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/search/units/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/content/units/erratum/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"erratum\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\",\"8e0a5cb0-f804-4778-b34c-88085f594aae\"]}}},\"include_repos\":true}" headers: Accept: - application/json @@ -55,11 +53,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="hHG0La90dM8tcVVtaLZMPe6gXeZSFwVhklcgQ6Jc4", oauth_signature="MrTLP8F3fcy8TMZ%2FqUDK%2FsoiFco%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196364", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="gSTX95mNdy1vdLr4gs9oNvOOhLMlkD0BW35yI3McXx4", oauth_signature="l%2BbgWGu%2F5UN8ZHeoj5Fqhn2PUVY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362235", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "84" + - "141" User-Agent: - Ruby response: @@ -68,24 +66,24 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 14:59:25 GMT + - Thu, 01 Aug 2013 13:03:55 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "372" + - "1178" Content-Type: - application/json body: encoding: US-ASCII - string: "[{\"_id\": {\"$oid\": \"51f7d4c35ca0137fe7579693\"}, \"unit_id\": \"1d6343f9-643e-49fc-94ab-f1b865b59708\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"1d6343f9-643e-49fc-94ab-f1b865b59708\"}}, {\"_id\": {\"$oid\": \"51f7d4c35ca0137fe7579694\"}, \"unit_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\"}}]" + string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"Empty errata\", \"title\": \"Empty errata\", \"pkglist\": [], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\", \"type\": \"security\", \"id\": \"RHEA-2010:0001\", \"_href\": \"/pulp/api/v2/content/units/erratum/33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/8e0a5cb0-f804-4778-b34c-88085f594aae/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" http_version: - recorded_at: Tue, 30 Jul 2013 14:59:25 GMT + recorded_at: Thu, 01 Aug 2013 13:03:55 GMT - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/content/units/erratum/search/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/content/install/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"1d6343f9-643e-49fc-94ab-f1b865b59708\",\"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\"]}}},\"include_repos\":true}" + string: "{\"units\":[{\"type_id\":\"erratum\",\"unit_key\":{\"id\":\"8e0a5cb0-f804-4778-b34c-88085f594aae\"}}],\"options\":{\"importkeys\":true}}" headers: Accept: - application/json @@ -94,37 +92,39 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="cVyMcQhYsjph2vp0tlqLvwxlO1XoGu4F3aGfBiEdaU", oauth_signature="%2FUw0vVEvZ0GybhFESTy58PRVLQk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196365", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="9KL2h2ueAPn0NEJxzwImyfdHIRttqgleH6LC67WyKk", oauth_signature="NWeZ5qhz39aSpUxtm4Li1vYEedI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362235", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "141" + - "120" User-Agent: - Ruby response: status: - code: 200 - message: OK + code: 202 + message: Accepted headers: Date: - - Tue, 30 Jul 2013 14:59:25 GMT + - Thu, 01 Aug 2013 13:03:55 GMT Server: - Apache/2.2.15 (Red Hat) + Content-Encoding: + - utf-8 Content-Length: - - "1178" + - "752" Content-Type: - application/json body: encoding: US-ASCII - string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"Empty errata\", \"title\": \"Empty errata\", \"pkglist\": [], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"1d6343f9-643e-49fc-94ab-f1b865b59708\", \"type\": \"security\", \"id\": \"RHEA-2010:0001\", \"_href\": \"/pulp/api/v2/content/units/erratum/1d6343f9-643e-49fc-94ab-f1b865b59708/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" + string: "[{\"task_group_id\": \"22648372-099c-4c65-b2c8-a0be390c9fff\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/22648372-099c-4c65-b2c8-a0be390c9fff/\", \"task_id\": \"4f4bf303-f51d-482e-8a02-a4a03258ab26\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"22648372-099c-4c65-b2c8-a0be390c9fff\", \"call_request_id\": \"4f4bf303-f51d-482e-8a02-a4a03258ab26\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 14:59:25 GMT + recorded_at: Thu, 01 Aug 2013 13:03:55 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/content/install/ body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"erratum\",\"unit_key\":{\"id\":\"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\"}}],\"options\":{\"importkeys\":true}}" + string: "{\"units\":[{\"type_id\":\"package_group\",\"unit_key\":{\"name\":\"mammals\"}}],\"options\":{\"importkeys\":true}}" headers: Accept: - application/json @@ -133,11 +133,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="rNOFndyp3hvAdDfFfdHv6YXZdierJOnEVBg7PjkoHk", oauth_signature="rkPCGoW1Hb2RXTguCkYdV0%2BdxU4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196365", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ilpeZbsElGnBVQz8v14MiuuwpzBjpZYHwu3lOCykuTM", oauth_signature="uAd5oZQMzPjNgWQtTZZ5iMiZNnM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362246", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "120" + - "99" User-Agent: - Ruby response: @@ -146,7 +146,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 14:59:25 GMT + - Thu, 01 Aug 2013 13:04:06 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -157,15 +157,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"47a94558-4249-490e-8105-a3edbdc5f30b\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/47a94558-4249-490e-8105-a3edbdc5f30b/\", \"task_id\": \"56fa88dc-bd70-4c81-9207-bc608a8fbb06\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"47a94558-4249-490e-8105-a3edbdc5f30b\", \"call_request_id\": \"56fa88dc-bd70-4c81-9207-bc608a8fbb06\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"7c485dce-fbb3-43eb-bc6f-bc52793e26b9\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/7c485dce-fbb3-43eb-bc6f-bc52793e26b9/\", \"task_id\": \"b30a211f-4d3e-4017-bf68-d2f46dc41ef6\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"7c485dce-fbb3-43eb-bc6f-bc52793e26b9\", \"call_request_id\": \"b30a211f-4d3e-4017-bf68-d2f46dc41ef6\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 14:59:25 GMT + recorded_at: Thu, 01 Aug 2013 13:04:07 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/content/install/ body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"package_group\",\"unit_key\":{\"name\":\"mammals\"}}],\"options\":{\"importkeys\":true}}" + string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"elephant\"}}],\"options\":{\"importkeys\":true}}" headers: Accept: - application/json @@ -174,11 +174,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="AcwMsbd8t9zipzBpMEY7XfSkrVuyA62SCJKoaObE08", oauth_signature="%2FvlC5B4jXnzlNAJlnDkB7aNvJt0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196376", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ZGaahk2DNhcf9mDhDMouNVaNzGQHYxu7udr61Avhh5k", oauth_signature="3kc04eRe2SfDTsUI90RgfzB0O6g%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362259", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "99" + - "90" User-Agent: - Ruby response: @@ -187,7 +187,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 14:59:36 GMT + - Thu, 01 Aug 2013 13:04:19 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -198,15 +198,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"57c688b9-84da-43c7-bced-5123b60fb8eb\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/57c688b9-84da-43c7-bced-5123b60fb8eb/\", \"task_id\": \"2b889417-6e6c-46eb-9477-f3d3d522dd9b\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"57c688b9-84da-43c7-bced-5123b60fb8eb\", \"call_request_id\": \"2b889417-6e6c-46eb-9477-f3d3d522dd9b\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"eafc035e-eac4-4288-8d09-43025dcc593b\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/eafc035e-eac4-4288-8d09-43025dcc593b/\", \"task_id\": \"76ab0176-aedf-4ef8-9952-0113a9836774\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"eafc035e-eac4-4288-8d09-43025dcc593b\", \"call_request_id\": \"76ab0176-aedf-4ef8-9952-0113a9836774\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 14:59:36 GMT + recorded_at: Thu, 01 Aug 2013 13:04:19 GMT - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/content/update/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/content/uninstall/ body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{}}],\"options\":{\"importkeys\":true,\"all\":true}}" + string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"cheetah\"}}],\"options\":{}}" headers: Accept: - application/json @@ -215,11 +215,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="AJH5CtLcLigEwKIpOpLjJ9tKLIh230Z8nbkJkDKE", oauth_signature="ADG97FQGpZRhpbg2unSyJ5csejQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196388", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="LcO04b4etLBOOb8sq67Jn8OfKjs4lJPmaPzzS4Vvr8", oauth_signature="NLskpUigu5S7YcKl%2By5uYptXqks%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362271", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "84" + - "72" User-Agent: - Ruby response: @@ -228,20 +228,20 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 14:59:48 GMT + - Thu, 01 Aug 2013 13:04:31 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: - utf-8 Content-Length: - - "750" + - "756" Content-Type: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"fd221e00-60ae-4dbc-8fb7-c1faef500db0\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/fd221e00-60ae-4dbc-8fb7-c1faef500db0/\", \"task_id\": \"db7b42e3-2de6-4735-84d9-e90ca246c772\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"fd221e00-60ae-4dbc-8fb7-c1faef500db0\", \"call_request_id\": \"db7b42e3-2de6-4735-84d9-e90ca246c772\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"0b90e111-ca00-40e1-8795-1a066f9cb5af\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/0b90e111-ca00-40e1-8795-1a066f9cb5af/\", \"task_id\": \"1abf9d1e-b1c6-44fc-9221-339f907bb3c9\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"0b90e111-ca00-40e1-8795-1a066f9cb5af\", \"call_request_id\": \"1abf9d1e-b1c6-44fc-9221-339f907bb3c9\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 14:59:48 GMT + recorded_at: Thu, 01 Aug 2013 13:04:31 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/content/uninstall/ @@ -256,7 +256,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="rUFTf7oYPJfrDo4PGSbqofNDI4fJCQRlGegcaHn0A", oauth_signature="4SMM4pIETlrcQU8d2y%2BNYKxa23g%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196400", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="11ehdjExRuIDhhHgL7EEHzvE3grxSaOCOhrmAKWq9U4", oauth_signature="W%2FEj6FjL0wHVHYS%2Fm4ZdRLdzIfI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362283", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -269,7 +269,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:00:00 GMT + - Thu, 01 Aug 2013 13:04:43 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -280,15 +280,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"0b268f1e-1303-40d4-854a-da55975c28ed\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/0b268f1e-1303-40d4-854a-da55975c28ed/\", \"task_id\": \"03f1190c-f835-4b49-b3eb-b6f38cc52913\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"0b268f1e-1303-40d4-854a-da55975c28ed\", \"call_request_id\": \"03f1190c-f835-4b49-b3eb-b6f38cc52913\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"3a05987b-a532-4a50-8d2a-026a436ccc35\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/3a05987b-a532-4a50-8d2a-026a436ccc35/\", \"task_id\": \"1232b6b5-d21f-4e34-95d9-4ed0277e4995\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"3a05987b-a532-4a50-8d2a-026a436ccc35\", \"call_request_id\": \"1232b6b5-d21f-4e34-95d9-4ed0277e4995\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:01 GMT + recorded_at: Thu, 01 Aug 2013 13:04:43 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/content/update/ body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"cheetah\"}}],\"options\":{\"importkeys\":true}}" + string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{}}],\"options\":{\"importkeys\":true,\"all\":true}}" headers: Accept: - application/json @@ -297,11 +297,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="1K3LsDTfrqlBxWbyf50Cl5TR6q1esdSwg9wtd1KgVr4", oauth_signature="2ICDjNzscxd4cZm5rCJpS4TpaXM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196412", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="2Po2dEtgNmhl76h08gr6PEjKjZmklQ14ZuSIRogPDwM", oauth_signature="kL4mXWc0yRAcDtrzXYJDYrbgtZk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362295", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "89" + - "84" User-Agent: - Ruby response: @@ -310,7 +310,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:00:12 GMT + - Thu, 01 Aug 2013 13:04:55 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -321,9 +321,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"9a239953-a443-47ae-999b-a4ac43e76b3c\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/9a239953-a443-47ae-999b-a4ac43e76b3c/\", \"task_id\": \"1a4f11e8-d391-40c5-a49f-34fc8a9fae79\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"9a239953-a443-47ae-999b-a4ac43e76b3c\", \"call_request_id\": \"1a4f11e8-d391-40c5-a49f-34fc8a9fae79\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"3b2ddf48-3272-4aff-b114-62329d29fe7a\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/3b2ddf48-3272-4aff-b114-62329d29fe7a/\", \"task_id\": \"fd9787cd-9545-4122-be90-cccd809a2064\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"3b2ddf48-3272-4aff-b114-62329d29fe7a\", \"call_request_id\": \"fd9787cd-9545-4122-be90-cccd809a2064\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:13 GMT + recorded_at: Thu, 01 Aug 2013 13:04:55 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/ @@ -338,7 +338,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="69HsIYugxGOtwg5dTCsQcgyaEYhZbktbuTeHeo1Iq4", oauth_signature="Ekf7mzY%2F3tFqVSq98phBLzqBK4I%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196424", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="7SFZQV43svxHwLTlYkE2EKMWTwfGVRRPqbYd27bWMcc", oauth_signature="6HyDTLcsGEwE%2BJZTHxbrsePxlEc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362307", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -351,7 +351,7 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:00:24 GMT + - Thu, 01 Aug 2013 13:05:07 GMT Server: - Apache/2.2.15 (Red Hat) Location: @@ -362,15 +362,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51f7d5085ca0137fe7579991\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" + string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51fa5d035ca013687ad5883d\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:24 GMT + recorded_at: Thu, 01 Aug 2013 13:05:07 GMT - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/content/uninstall/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/content/update/ body: encoding: US-ASCII - string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"cheetah\"}}],\"options\":{}}" + string: "{\"units\":[{\"type_id\":\"rpm\",\"unit_key\":{\"name\":\"cheetah\"}}],\"options\":{\"importkeys\":true}}" headers: Accept: - application/json @@ -379,11 +379,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="fQH4FLFak30fovfzTKhHMIBETU78aWHswcDoKQ19ur0", oauth_signature="4oH9xCeQOdhU%2F%2FTR7I4WYqD2tpo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196424", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="00fXNplqiEpw4VlYHhMTlustNYaz6IxkMAsMgNsiI4", oauth_signature="wxYwLQ8aZEtnkOXY53lVx5xOjCA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362307", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "72" + - "89" User-Agent: - Ruby response: @@ -392,20 +392,20 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:00:24 GMT + - Thu, 01 Aug 2013 13:05:07 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: - utf-8 Content-Length: - - "756" + - "750" Content-Type: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"a4d54253-93f8-4871-b214-1dbc7c3c7a96\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/a4d54253-93f8-4871-b214-1dbc7c3c7a96/\", \"task_id\": \"d8202ce8-860b-4b2f-9111-6c16a285a70f\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"a4d54253-93f8-4871-b214-1dbc7c3c7a96\", \"call_request_id\": \"d8202ce8-860b-4b2f-9111-6c16a285a70f\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"c055b9f1-d54f-4892-b990-1b89190c685d\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/c055b9f1-d54f-4892-b990-1b89190c685d/\", \"task_id\": \"467fc580-5b38-4231-972d-4c281d9d8582\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"c055b9f1-d54f-4892-b990-1b89190c685d\", \"call_request_id\": \"467fc580-5b38-4231-972d-4c281d9d8582\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:24 GMT + recorded_at: Thu, 01 Aug 2013 13:05:07 GMT - request: method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ @@ -420,7 +420,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="xUk28Mi4shWcpN9a7vX5oFWRWj2BURIYemlOMAsWNMU", oauth_signature="O2%2Fhr9lMmt9Nqh%2BW5uI9t1CR7Qo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196425", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="iCCBWAGv8sJgwcZxknknTh9gFUfkh5UjgX7JdHQQ", oauth_signature="6reaQfLBZKQzxkU9H6JXzDdXyb8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362308", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -431,7 +431,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:25 GMT + - Thu, 01 Aug 2013 13:05:08 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -442,7 +442,7 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:26 GMT + recorded_at: Thu, 01 Aug 2013 13:05:08 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/ @@ -457,7 +457,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ZrbINeftgZ9ImcN605kNNx7gAo4xklRiuejTf1T6HLs", oauth_signature="OJiRK5KwQJIMflKcz2y%2FFK32sL0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196436", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="En6S5qTy9JO1L3YqOgrc97bMnAQpdfBbj2LNlzNxE", oauth_signature="Fp8cuZSJwu9d7MteF3i2UkIkQfk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362319", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -470,7 +470,7 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:00:36 GMT + - Thu, 01 Aug 2013 13:05:19 GMT Server: - Apache/2.2.15 (Red Hat) Location: @@ -481,15 +481,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51f7d5145ca0137fe75799cf\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" + string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51fa5d0f5ca013687ad5887b\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:36 GMT + recorded_at: Thu, 01 Aug 2013 13:05:19 GMT - request: - method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/associate/ + method: delete + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"id\":{\"$in\":[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]}}}}" + string: "" headers: Accept: - application/json @@ -498,11 +498,9 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="pAbFb4TDnturOn4ughUk3i1GBShK1QT7zZxUtTIL0", oauth_signature="bu4TK2tw1F4s%2F9qterC891DmB3U%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196436", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="IaAHWW6p5S08KsSrGaesoVJWxOCYbHzANFAWOohbPE", oauth_signature="t2vNp%2F4JuOao5k3PFNGDo9NzCTc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362319", oauth_version="1.0" Pulp-User: - admin - Content-Length: - - "80" User-Agent: - Ruby response: @@ -511,24 +509,24 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:36 GMT + - Thu, 01 Aug 2013 13:05:19 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "40" + - "4" Content-Type: - application/json body: encoding: US-ASCII - string: "[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]" + string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:37 GMT + recorded_at: Thu, 01 Aug 2013 13:05:19 GMT - request: - method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/unassociate/ + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"id\":{\"$in\":[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]}}}}" + string: "" headers: Accept: - application/json @@ -537,37 +535,37 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="2qcGoNbvgvzdnkw5xTIUdEMMilmZgsyX5FKZvMSMtA", oauth_signature="wwV6s6l%2F5nOiVPLJ%2Fiw4EWlLj9Y%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196437", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="mSrQfK2NI2PgmzBpMhXYFeHGVcXFvE2Xh1VGOsU075s", oauth_signature="VONKT9ibq2E1St0pqiBUJt2VOIo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362319", oauth_version="1.0" Pulp-User: - admin - Content-Length: - - "80" User-Agent: - Ruby response: status: - code: 200 - message: OK + code: 404 + message: Not Found headers: Date: - - Tue, 30 Jul 2013 15:00:37 GMT + - Thu, 01 Aug 2013 13:05:19 GMT Server: - Apache/2.2.15 (Red Hat) + Content-Encoding: + - utf-8 Content-Length: - - "2" + - "261" Content-Type: - application/json body: encoding: US-ASCII - string: "[]" + string: "{\"http_request_method\": \"GET\", \"exception\": null, \"error_message\": \"Missing resource(s): consumer_group=simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\", \"http_status\": 404, \"traceback\": null, \"resources\": {\"consumer_group\": \"simple_group\"}}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:37 GMT + recorded_at: Thu, 01 Aug 2013 13:05:19 GMT - request: - method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ + method: post + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/ body: encoding: US-ASCII - string: "" + string: "{\"id\":\"simple_group\",\"description\":\"Super administrator with all access.\",\"consumer_ids\":[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]}" headers: Accept: - application/json @@ -576,35 +574,39 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="rJQyU9dAKkeUCNT8kbElDTKWPqNTndQeMCYTDG3alM", oauth_signature="%2FmG2CEAevF0qSvFQTu5NS%2BBtdwA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196437", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="DaacTughyOgEXJPrLBYcAOEcpS85HMFPO7p78WGw", oauth_signature="jx4MImUQxbZ4ynnTk5TUHya39Vs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362320", oauth_version="1.0" Pulp-User: - admin + Content-Length: + - "130" User-Agent: - Ruby response: status: - code: 200 - message: OK + code: 201 + message: Created headers: Date: - - Tue, 30 Jul 2013 15:00:37 GMT + - Thu, 01 Aug 2013 13:05:20 GMT Server: - Apache/2.2.15 (Red Hat) + Location: + - /pulp/api/v2/consumer_groups/simple_group/ Content-Length: - - "278" + - "316" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [], \"_id\": {\"$oid\": \"51f7d5145ca0137fe75799cf\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" + string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51fa5d105ca013687ad588a1\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:37 GMT + recorded_at: Thu, 01 Aug 2013 13:05:20 GMT - request: - method: delete - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ + method: post + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/associate/ body: encoding: US-ASCII - string: "" + string: "{\"criteria\":{\"filters\":{\"id\":{\"$in\":[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]}}}}" headers: Accept: - application/json @@ -613,9 +615,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="12BIjoBprCY9Uj1CQMDbGD0lE1WsExmViOgXz8RFY", oauth_signature="J43v1ATB12WNGB8HICZpH9piXlA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196437", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ZaglfGuNOQxopbUwfvoKfW9NIVfPHo8YiE6K1yrAPs", oauth_signature="wsagOPpK4leX4Q2Ap04Y5ryGx2M%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362320", oauth_version="1.0" Pulp-User: - admin + Content-Length: + - "80" User-Agent: - Ruby response: @@ -624,24 +628,24 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:37 GMT + - Thu, 01 Aug 2013 13:05:20 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "4" + - "40" Content-Type: - application/json body: encoding: US-ASCII - string: "null" + string: "[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:37 GMT + recorded_at: Thu, 01 Aug 2013 13:05:20 GMT - request: - method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/ + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ body: encoding: US-ASCII - string: "{\"id\":\"simple_group\",\"description\":\"Super administrator with all access.\",\"consumer_ids\":[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]}" + string: "" headers: Accept: - application/json @@ -650,39 +654,35 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="PwrxpgylwhC8tCJTIzUcITrTOVwfe9DWL4AhwI4ToM", oauth_signature="27h2EE72cW0ucbxCflR%2FK6ta8Tc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196438", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="Sm4kEYVDDVLRO8d14GtKHpeDpvNo0Ar5SLuh2WI", oauth_signature="RAywhoPcjZyj8QiF9i01iG%2FVyT0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362320", oauth_version="1.0" Pulp-User: - admin - Content-Length: - - "130" User-Agent: - Ruby response: status: - code: 201 - message: Created + code: 200 + message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:38 GMT + - Thu, 01 Aug 2013 13:05:20 GMT Server: - Apache/2.2.15 (Red Hat) - Location: - - /pulp/api/v2/consumer_groups/simple_group/ Content-Length: - - "316" + - "278" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51f7d5165ca0137fe7579a08\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" + string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [], \"_id\": {\"$oid\": \"51fa5d105ca013687ad588a1\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:38 GMT + recorded_at: Thu, 01 Aug 2013 13:05:20 GMT - request: - method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/associate/ + method: delete + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"id\":{\"$in\":[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]}}}}" + string: "" headers: Accept: - application/json @@ -691,11 +691,9 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="rFN96rkzoWEcU2uJXgn3VeLdKuNLavcgL8HUpCKYc", oauth_signature="xR2Sb%2BLv9TWNelIqqZVYjufot%2BA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196438", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="kqBKECDio424UxsNopJbNPnA4rW9BrM8sUTgGaUByc", oauth_signature="ZhzSgTH209e4gfUwiOqTmZp7qI0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362320", oauth_version="1.0" Pulp-User: - admin - Content-Length: - - "80" User-Agent: - Ruby response: @@ -704,24 +702,24 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:38 GMT + - Thu, 01 Aug 2013 13:05:20 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "40" + - "4" Content-Type: - application/json body: encoding: US-ASCII - string: "[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]" + string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:38 GMT + recorded_at: Thu, 01 Aug 2013 13:05:20 GMT - request: - method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ + method: post + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/ body: encoding: US-ASCII - string: "" + string: "{\"id\":\"simple_group\",\"description\":\"Super administrator with all access.\",\"consumer_ids\":[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]}" headers: Accept: - application/json @@ -730,35 +728,39 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="MDVlLSeyAltFNytP8g7cvFAv1UlIvH04uYHP8Robz5Y", oauth_signature="baChs%2FAfcIR3%2Bs0q7JYGDsQSwx8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196438", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="jTUxqpREFWcAnOPUVl0rvxofE34q6ySkFKtzElQSw", oauth_signature="2g%2FIetseD41jFsHEA57BIMBV4lg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362321", oauth_version="1.0" Pulp-User: - admin + Content-Length: + - "130" User-Agent: - Ruby response: status: - code: 200 - message: OK + code: 201 + message: Created headers: Date: - - Tue, 30 Jul 2013 15:00:38 GMT + - Thu, 01 Aug 2013 13:05:21 GMT Server: - Apache/2.2.15 (Red Hat) + Location: + - /pulp/api/v2/consumer_groups/simple_group/ Content-Length: - - "278" + - "316" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [], \"_id\": {\"$oid\": \"51f7d5165ca0137fe7579a08\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" + string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51fa5d115ca013687ad588d1\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:38 GMT + recorded_at: Thu, 01 Aug 2013 13:05:21 GMT - request: - method: delete - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ + method: post + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/associate/ body: encoding: US-ASCII - string: "" + string: "{\"criteria\":{\"filters\":{\"id\":{\"$in\":[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]}}}}" headers: Accept: - application/json @@ -767,9 +769,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="bW4B8xAul3CNhbykwCKlKVV7kkTwZz4RDv1DQdWYhIw", oauth_signature="Gg1GpqcVN3CFIEJ5ha%2FLMiBx43E%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196438", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="H3VnsDNUv0LKIqOIfTcH8XSGX586hq5w5dxgRkW61fI", oauth_signature="MVAXTR9vFcF%2BE47BfMUa9%2Bx9UoU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362321", oauth_version="1.0" Pulp-User: - admin + Content-Length: + - "80" User-Agent: - Ruby response: @@ -778,24 +782,24 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:38 GMT + - Thu, 01 Aug 2013 13:05:21 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "4" + - "40" Content-Type: - application/json body: encoding: US-ASCII - string: "null" + string: "[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:39 GMT + recorded_at: Thu, 01 Aug 2013 13:05:21 GMT - request: method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/unassociate/ body: encoding: US-ASCII - string: "{\"id\":\"simple_group\",\"description\":\"Super administrator with all access.\",\"consumer_ids\":[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]}" + string: "{\"criteria\":{\"filters\":{\"id\":{\"$in\":[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]}}}}" headers: Accept: - application/json @@ -804,35 +808,33 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="8PlYuWl7pIwd0DIhqj0xp8teCtKGyveqYNxBDzTo", oauth_signature="PmwaubpgYhE9srNzGsEklYBtYY0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196439", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="1us8MQMpjbJKI4OmU1DhP89wkf407OFx2fV9p5LVQHk", oauth_signature="YdbtCMB0dKNMnyjCQbhD6Rx1BIw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362321", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "130" + - "80" User-Agent: - Ruby response: status: - code: 201 - message: Created + code: 200 + message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:39 GMT + - Thu, 01 Aug 2013 13:05:21 GMT Server: - Apache/2.2.15 (Red Hat) - Location: - - /pulp/api/v2/consumer_groups/simple_group/ Content-Length: - - "316" + - "2" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51f7d5175ca0137fe7579a38\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" + string: "[]" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:39 GMT + recorded_at: Thu, 01 Aug 2013 13:05:21 GMT - request: - method: delete + method: get uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ body: encoding: US-ASCII @@ -845,7 +847,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="LYyjTF42jzreCaRaBDmnNjWHuro5WmSbJ0S1q9J2jrw", oauth_signature="W0Z5bZe40jQMh2DzaHnIgcOQbKo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196439", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="4xad1PDCOT3T1hTBXzFcfCwuVhmw43mBgYGxQ1RuQ", oauth_signature="doGaKwgNkwsDPmK%2FqOfIvMYyPzk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362321", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -856,20 +858,20 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:39 GMT + - Thu, 01 Aug 2013 13:05:22 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "4" + - "278" Content-Type: - application/json body: encoding: US-ASCII - string: "null" + string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [], \"_id\": {\"$oid\": \"51fa5d115ca013687ad588d1\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:39 GMT + recorded_at: Thu, 01 Aug 2013 13:05:22 GMT - request: - method: get + method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ body: encoding: US-ASCII @@ -882,31 +884,29 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="gruhFlgR2oEkz1X8r9EPTiBqkPAiM6IfRN21Y2PcoQ", oauth_signature="rig%2FSP9G%2BNcC2tbRwwQ74fsDLM4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196440", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="tlQ4gYJlPsEWE2t3Sv1Q9VZGMxsOtp5OZzGGKtyxII", oauth_signature="B21uxu1sBpX2WyfAxOp8YHjBtr0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362322", oauth_version="1.0" Pulp-User: - admin User-Agent: - Ruby response: status: - code: 404 - message: Not Found + code: 200 + message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:40 GMT + - Thu, 01 Aug 2013 13:05:22 GMT Server: - Apache/2.2.15 (Red Hat) - Content-Encoding: - - utf-8 Content-Length: - - "261" + - "4" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"http_request_method\": \"GET\", \"exception\": null, \"error_message\": \"Missing resource(s): consumer_group=simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\", \"http_status\": 404, \"traceback\": null, \"resources\": {\"consumer_group\": \"simple_group\"}}" + string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:40 GMT + recorded_at: Thu, 01 Aug 2013 13:05:22 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/ @@ -921,7 +921,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="9exYl08wdzyKtbQqzZNE5OUmFpA58VJpe4tpJsjZ8", oauth_signature="hs9xZdhmnGq%2Fa2%2BbvXEs8QyB%2Bxw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196440", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="Qex4MB9cpYL8n6GZFPKcHtVMN0afnRYHJqu3F93k", oauth_signature="m%2FZQQI2jh3k5o%2BEI1Le12CP4eb8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362322", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -934,7 +934,7 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:00:40 GMT + - Thu, 01 Aug 2013 13:05:22 GMT Server: - Apache/2.2.15 (Red Hat) Location: @@ -945,9 +945,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51f7d5185ca0137fe7579a5e\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" + string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51fa5d125ca013687ad5890a\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:40 GMT + recorded_at: Thu, 01 Aug 2013 13:05:22 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/associate/ @@ -962,7 +962,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="RDxDt1XlExEn4YWkSMSRFcrB5yX8wLdcBQ9Ff9Rfpc4", oauth_signature="kJszMWEtOOWK1niTcfYY4BtQpgg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196440", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="uTrg2qWm6eF25yEZpk7WFT4UKbPHlMWORln1PLpug", oauth_signature="LbsfzcUvMfrakuYJiIdsekmF4OM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362322", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -975,7 +975,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:40 GMT + - Thu, 01 Aug 2013 13:05:22 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -986,7 +986,7 @@ http_interactions: encoding: US-ASCII string: "[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:41 GMT + recorded_at: Thu, 01 Aug 2013 13:05:23 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/unassociate/ @@ -1001,7 +1001,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="tiBsoBVmRgAbZez4tHNCnVPf0iEPQFAXv0fGaRtBWI", oauth_signature="B%2BmN%2F%2BNmq2cWxmt68e5oJLjxSLg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196441", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ym8YGcSBYWISObVGlLDjtkvSditfn1gw7Vim0rKk", oauth_signature="kPVLX6PI3zRQuHnt548vijKeuuU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362323", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -1014,7 +1014,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:41 GMT + - Thu, 01 Aug 2013 13:05:23 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -1025,7 +1025,7 @@ http_interactions: encoding: US-ASCII string: "[]" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:41 GMT + recorded_at: Thu, 01 Aug 2013 13:05:23 GMT - request: method: get uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ @@ -1040,7 +1040,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="aeQQcoIYQcj3oelqi4SK0x209T9ZL173wysJUydjA", oauth_signature="fbQxkyLOYc7v3OviMoPM2YoB1KM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196441", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="heTcoePwQQb4ZoQ08VJUQbGLrWVcGadTaIPZRlrMFo", oauth_signature="DKqfJxeq8FxUkGPIZMW%2FBcp5I9w%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362323", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -1051,7 +1051,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:41 GMT + - Thu, 01 Aug 2013 13:05:23 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -1060,9 +1060,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [], \"_id\": {\"$oid\": \"51f7d5185ca0137fe7579a5e\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" + string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [], \"_id\": {\"$oid\": \"51fa5d125ca013687ad5890a\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:41 GMT + recorded_at: Thu, 01 Aug 2013 13:05:23 GMT - request: method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ @@ -1077,7 +1077,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="YH8duCxGZ3uU9jJeB8xZnwWvBgoN12Mx8PApzk", oauth_signature="N1kCAtoRqDnRoiCZTmE97kSgYbU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196441", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="HE3ZmLffEGfaMNHrq8Du3aEA0W0lHV5UTOgihGHls", oauth_signature="2%2FcCglHsq1miGUR9e7GoMdyROVU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362323", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -1088,7 +1088,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:41 GMT + - Thu, 01 Aug 2013 13:05:23 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -1099,7 +1099,7 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:41 GMT + recorded_at: Thu, 01 Aug 2013 13:05:23 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/ @@ -1114,7 +1114,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="fHLGyi3LNwkFKrzXFVobvbolVtVzvwEMNky27nj0", oauth_signature="unmGICJstv%2FEvZI8%2FB1s9TxkM9s%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196442", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="GYQxe5RDzGgcWHI31H9G5MeYwxXh4MUrlJTG4GGJ3w", oauth_signature="WnN%2BsTGLXjYpIlNqS3sjulTUHgU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362323", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -1127,7 +1127,7 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:00:42 GMT + - Thu, 01 Aug 2013 13:05:23 GMT Server: - Apache/2.2.15 (Red Hat) Location: @@ -1138,9 +1138,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51f7d51a5ca0137fe7579a97\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" + string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51fa5d145ca013687ad58943\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:42 GMT + recorded_at: Thu, 01 Aug 2013 13:05:24 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/actions/associate/ @@ -1155,7 +1155,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="bL2JfVD7oNEkbNLmnh0MuXXJQqQ0pN4PAUYib3G18", oauth_signature="ukgMka2DC3GWKYtorM0%2FK8QeNqI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196442", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="7lOlyVkgd83PdEVRNIeddohZUU6hVenye8obJUPYB4", oauth_signature="85B6lrG9pjIkVw%2BY2tgnoJgmCfc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362324", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -1168,7 +1168,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:42 GMT + - Thu, 01 Aug 2013 13:05:24 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -1179,7 +1179,7 @@ http_interactions: encoding: US-ASCII string: "[\"010E99C0-3276-11E2-81C1-0800200C9A66\"]" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:42 GMT + recorded_at: Thu, 01 Aug 2013 13:05:24 GMT - request: method: get uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ @@ -1194,7 +1194,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="70SWUjcphzVMb5fK7f04Fa2SwsbdudsHMQJ1IshVA", oauth_signature="UlIFI1g4dMiyL%2BhePRIpZktJlXw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196442", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="Xu1Ga2TyuZWYl0fx9noUMxrQb9Ps8aa00O1TYhC1AU", oauth_signature="zxCyW2POGPpUvsFVpsb%2BoT9xKpU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362324", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -1205,7 +1205,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:42 GMT + - Thu, 01 Aug 2013 13:05:24 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -1214,9 +1214,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [], \"_id\": {\"$oid\": \"51f7d51a5ca0137fe7579a97\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" + string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [], \"_id\": {\"$oid\": \"51fa5d145ca013687ad58943\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:42 GMT + recorded_at: Thu, 01 Aug 2013 13:05:24 GMT - request: method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ @@ -1231,7 +1231,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="PWRjuC93te7bWwtig9ugR3IiBiXUXWtwBzMuBN9t9E", oauth_signature="rhpPl0s7UuWmfTXpL8NkSylaC8s%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196442", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="U5uAwYAfrQCFlE5rDKbGSykwyx7dFSoLiMckAgHEw", oauth_signature="6W1TYW%2Bd6jNcmdCp1SY1n%2F1PRE4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362324", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -1242,7 +1242,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:42 GMT + - Thu, 01 Aug 2013 13:05:24 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -1253,7 +1253,7 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:42 GMT + recorded_at: Thu, 01 Aug 2013 13:05:24 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/ @@ -1268,7 +1268,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ADA2T8h6t5jM20sckAKNAxDaR2PYc3Y8RH59d1n888", oauth_signature="qC1hW%2BVchOCkU2fXSbdTBL9EU4s%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196443", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="BXpeVDqDo5deGfiaVo55khB30bFnKOFGObcb91IQ", oauth_signature="1LUFr9iuFD4EWeVdghlR6Wv4Lsc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362325", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -1281,7 +1281,7 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:00:43 GMT + - Thu, 01 Aug 2013 13:05:25 GMT Server: - Apache/2.2.15 (Red Hat) Location: @@ -1292,9 +1292,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51f7d51b5ca0137fe7579ac7\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" + string: "{\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51fa5d155ca013687ad58973\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:43 GMT + recorded_at: Thu, 01 Aug 2013 13:05:25 GMT - request: method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/consumer_groups/simple_group/ @@ -1309,7 +1309,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="0svneZoHmIBCrN9B1TKkBWLamfHeUTL8jEWLuXDK0M", oauth_signature="HhfTtVKpUOAaADqfvhVEjmsiing%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196443", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="5mW7F8gJj9v7FHgACJpLd5uGYMuZAgrEg3TY1dXc", oauth_signature="Z46UgGZhfb1ClF45%2BIG34hHvZiU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362325", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -1320,7 +1320,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:43 GMT + - Thu, 01 Aug 2013 13:05:25 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -1331,5 +1331,5 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:44 GMT + recorded_at: Thu, 01 Aug 2013 13:05:25 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/glue_pulp_distribution.yml b/test/fixtures/vcr_cassettes/glue_pulp_distribution.yml index 6be3d7a7094..9366e6baff6 100644 --- a/test/fixtures/vcr_cassettes/glue_pulp_distribution.yml +++ b/test/fixtures/vcr_cassettes/glue_pulp_distribution.yml @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="xIzwi7xCRYTqrIC8Vy2TP51KTuqQkTnLB7nD29RZo", oauth_signature="xXADkmPmWaFUsX9XnIZfgi9ECp0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196492", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="hyuShAwNNFmEBrdlTGQd2PNE8AymDlj0CgbK06Wo", oauth_signature="%2Br7aO2OTGuYHuUvX9fdtRW7VvqM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362358", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,7 +27,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:32 GMT + - Thu, 01 Aug 2013 13:05:58 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -36,7 +36,7 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"files\": [{\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test2.img\", \"downloadurl\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5/images/test2.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmp7JGzOF/tmpAntAaP/images/test2.img\", \"relativepath\": \"images/test2.img\", \"filename\": \"test2.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": 0.0}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"empty.iso\", \"downloadurl\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5/empty.iso\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmp7JGzOF/tmpAntAaP/empty.iso\", \"relativepath\": \"empty.iso\", \"filename\": \"empty.iso\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/\", \"size\": 0.0}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test1.img\", \"downloadurl\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5/images/test1.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmp7JGzOF/tmpAntAaP/images/test1.img\", \"relativepath\": \"images/test1.img\", \"filename\": \"test1.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": 0.0}], \"_storage_path\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\", \"variant\": \"TestVariant\", \"version\": \"16\", \"version_sort_index\": \"02-16\", \"_content_type_id\": \"distribution\", \"_id\": \"bea8cfd9-7fca-4d1e-a2d8-10834ad7e5d2\", \"arch\": \"x86_64\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"_href\": \"/pulp/api/v2/content/units/distribution/bea8cfd9-7fca-4d1e-a2d8-10834ad7e5d2/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" + string: "[{\"files\": [{\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test2.img\", \"downloadurl\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5/images/test2.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpAqUhWE/tmpGlVIa6/images/test2.img\", \"relativepath\": \"images/test2.img\", \"filename\": \"test2.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": 0.0}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"empty.iso\", \"downloadurl\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5/empty.iso\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpAqUhWE/tmpGlVIa6/empty.iso\", \"relativepath\": \"empty.iso\", \"filename\": \"empty.iso\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/\", \"size\": 0.0}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test1.img\", \"downloadurl\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5/images/test1.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpAqUhWE/tmpGlVIa6/images/test1.img\", \"relativepath\": \"images/test1.img\", \"filename\": \"test1.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": 0.0}], \"_storage_path\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\", \"variant\": \"TestVariant\", \"version\": \"16\", \"version_sort_index\": \"02-16\", \"_content_type_id\": \"distribution\", \"_id\": \"a6b22d58-4846-44a9-8200-d6b34fc2f067\", \"arch\": \"x86_64\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"_href\": \"/pulp/api/v2/content/units/distribution/a6b22d58-4846-44a9-8200-d6b34fc2f067/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:32 GMT + recorded_at: Thu, 01 Aug 2013 13:05:58 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/glue_pulp_errata.yml b/test/fixtures/vcr_cassettes/glue_pulp_errata.yml index 9d165a14975..29e52d846b7 100644 --- a/test/fixtures/vcr_cassettes/glue_pulp_errata.yml +++ b/test/fixtures/vcr_cassettes/glue_pulp_errata.yml @@ -5,7 +5,7 @@ http_interactions: uri: https://abed.usersys.redhat.com/pulp/api/v2/content/units/erratum/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\"]}}},\"include_repos\":true}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"8e0a5cb0-f804-4778-b34c-88085f594aae\"]}}},\"include_repos\":true}" headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="Gpr47IPNo3oXXw4to6GCkGxgl46JpQakAd3ZukU", oauth_signature="T0b%2BaS%2F0YENiAF18PI49KynGAOo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196498", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="V3DknPjESnkB1OU10JyuCVSGDoVza74wNVa0GkYVdE", oauth_signature="2BcW39%2BA26Wv%2Fg%2Ff57dI87TO84w%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362364", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,7 +27,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:38 GMT + - Thu, 01 Aug 2013 13:06:04 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -36,15 +36,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" + string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/8e0a5cb0-f804-4778-b34c-88085f594aae/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:38 GMT + recorded_at: Thu, 01 Aug 2013 13:06:04 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/content/units/erratum/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\"]}}}}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"8e0a5cb0-f804-4778-b34c-88085f594aae\"]}}},\"include_repos\":true}" headers: Accept: - application/json @@ -53,11 +53,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="tBK0algSiSUPp1d2mWSO82UIab6Buy6i6inazPSXPs", oauth_signature="p6gqUb4DeZZDlTFLGX3PTZiKuKQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196498", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="qxKdMUfDgYKZWoVMdlki0vu9xojsfgQY8Gn6nCyPlmM", oauth_signature="B29w92zMI1f3VlbeY%2BYPHhYUPpI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362364", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "81" + - "102" User-Agent: - Ruby response: @@ -66,24 +66,24 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:38 GMT + - Thu, 01 Aug 2013 13:06:04 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "675" + - "708" Content-Type: - application/json body: encoding: US-ASCII - string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a/\", \"children\": {}}]" + string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/8e0a5cb0-f804-4778-b34c-88085f594aae/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:38 GMT + recorded_at: Thu, 01 Aug 2013 13:06:04 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/content/units/erratum/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\"]}}},\"include_repos\":true}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"8e0a5cb0-f804-4778-b34c-88085f594aae\"]}}}}" headers: Accept: - application/json @@ -92,11 +92,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="r04iODf8FJcpPSQP2YSr9wPiuU4ru4cfMdlzD0G98s", oauth_signature="IDN5E8D07hxSiewTQLESdyOUJhk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196498", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="zie91K8CaINbgZyvymR8T8sJnnANhF3AJBZ8jksr28", oauth_signature="PppCOhLlNBlxGUpmdC9F4pEJjgk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362364", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "102" + - "81" User-Agent: - Ruby response: @@ -105,24 +105,24 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:38 GMT + - Thu, 01 Aug 2013 13:06:04 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "708" + - "675" Content-Type: - application/json body: encoding: US-ASCII - string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" + string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/8e0a5cb0-f804-4778-b34c-88085f594aae/\", \"children\": {}}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:38 GMT + recorded_at: Thu, 01 Aug 2013 13:06:04 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/content/units/erratum/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\"]}}},\"include_repos\":true}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"8e0a5cb0-f804-4778-b34c-88085f594aae\"]}}},\"include_repos\":true}" headers: Accept: - application/json @@ -131,7 +131,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="nKBHjTrJ0E54UOWE2zoSOS55zzVqkKuGzz5KjBcRUWo", oauth_signature="N73%2Fo5%2B5HAcWZPT568907r3rzck%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196498", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="LuxxiwE5swjtPAdcVzBgpfEqaEz70G0wOUxngRlh5nk", oauth_signature="wnCS6pygL2XvrJ9DZ6i8X3uuPv0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362364", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -144,7 +144,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:38 GMT + - Thu, 01 Aug 2013 13:06:04 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -153,9 +153,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" + string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/8e0a5cb0-f804-4778-b34c-88085f594aae/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:38 GMT + recorded_at: Thu, 01 Aug 2013 13:06:04 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/search/units/ @@ -170,7 +170,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="x9x1x6kJ4fWrpdQV85TqoaqGGF75hOkdOXE7qXTIUPw", oauth_signature="vYrmSFIVhkkOsOP50p9EJFUHOfU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196501", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="cjTg7uscEiCfO4OSkjmywuc9fQdjAh9UYoe13i8Us", oauth_signature="nQo%2BqFWv%2Fr005DsIerFWdX5dVCU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362367", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -183,7 +183,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:41 GMT + - Thu, 01 Aug 2013 13:06:07 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -192,15 +192,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"_id\": {\"$oid\": \"51f7d5535ca0137fe7579d5b\"}, \"unit_id\": \"1d6343f9-643e-49fc-94ab-f1b865b59708\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"1d6343f9-643e-49fc-94ab-f1b865b59708\"}}, {\"_id\": {\"$oid\": \"51f7d5535ca0137fe7579d5c\"}, \"unit_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\"}}]" + string: "[{\"_id\": {\"$oid\": \"51fa5d3d5ca013687ad58c07\"}, \"unit_id\": \"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\"}}, {\"_id\": {\"$oid\": \"51fa5d3d5ca013687ad58c08\"}, \"unit_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\"}}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:41 GMT + recorded_at: Thu, 01 Aug 2013 13:06:07 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/content/units/erratum/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"1d6343f9-643e-49fc-94ab-f1b865b59708\",\"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\"]}}},\"include_repos\":true}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\",\"8e0a5cb0-f804-4778-b34c-88085f594aae\"]}}},\"include_repos\":true}" headers: Accept: - application/json @@ -209,7 +209,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="S5ziw61EMpx9jfTwVHMJAr3FCh97sNkfPz4MeRgWhc", oauth_signature="OZsEgohG32D3CfyUnFk%2Bfzhpzj8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196501", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="GEwgKpGF6KDckqkobhOlfZ5eHBBqEUKdmji9PA", oauth_signature="BnJo6r%2FB9MfJ4lRoUX2TWlsWFDk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362367", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -222,7 +222,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:41 GMT + - Thu, 01 Aug 2013 13:06:07 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -231,7 +231,7 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"Empty errata\", \"title\": \"Empty errata\", \"pkglist\": [], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"1d6343f9-643e-49fc-94ab-f1b865b59708\", \"type\": \"security\", \"id\": \"RHEA-2010:0001\", \"_href\": \"/pulp/api/v2/content/units/erratum/1d6343f9-643e-49fc-94ab-f1b865b59708/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" + string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"Empty errata\", \"title\": \"Empty errata\", \"pkglist\": [], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\", \"type\": \"security\", \"id\": \"RHEA-2010:0001\", \"_href\": \"/pulp/api/v2/content/units/erratum/33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/8e0a5cb0-f804-4778-b34c-88085f594aae/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:41 GMT + recorded_at: Thu, 01 Aug 2013 13:06:07 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/glue_pulp_hidden_user.yml b/test/fixtures/vcr_cassettes/glue_pulp_hidden_user.yml index dcc3549ed51..44a4bf71307 100644 --- a/test/fixtures/vcr_cassettes/glue_pulp_hidden_user.yml +++ b/test/fixtures/vcr_cassettes/glue_pulp_hidden_user.yml @@ -5,7 +5,7 @@ http_interactions: uri: https://abed.usersys.redhat.com/pulp/api/v2/users/ body: encoding: US-ASCII - string: "{\"login\":\"hidden\",\"name\":\"hidden\",\"password\":\"s81SIPHKHQDOYUAB\"}" + string: "{\"login\":\"hidden\",\"name\":\"hidden\",\"password\":\"a7oiWnGUNo8TAPZN\"}" headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="f6YqWRJheb6A8IicosJoBru3AnZwYoCnIaOcvJjic", oauth_signature="zgh6J7lpgVhSGELlQzlUuBf%2FPKI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196444", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="FDbhCE6tvR3RWXAAfDOeCBwyxcUaxEWvvqBG4go6Tp0", oauth_signature="DSCw9KZyy4GWxhhU%2FrEDvuHiy2M%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362325", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,7 +27,7 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:00:44 GMT + - Thu, 01 Aug 2013 13:05:25 GMT Server: - Apache/2.2.15 (Red Hat) Location: @@ -38,9 +38,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"_id\": {\"$oid\": \"51f7d51c5ca0137fe7579ae2\"}, \"name\": \"hidden\", \"roles\": [], \"_ns\": \"users\", \"login\": \"hidden\", \"id\": \"51f7d51c5ca0137fe7579ae2\", \"_href\": \"/pulp/api/v2/users/hidden/\"}" + string: "{\"_id\": {\"$oid\": \"51fa5d165ca013687ad5898e\"}, \"name\": \"hidden\", \"roles\": [], \"_ns\": \"users\", \"login\": \"hidden\", \"id\": \"51fa5d165ca013687ad5898e\", \"_href\": \"/pulp/api/v2/users/hidden/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:44 GMT + recorded_at: Thu, 01 Aug 2013 13:05:26 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/roles/super-users/users/ @@ -55,7 +55,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="Euz2cmZyajvFXPn4M5949u5tIP3ew1ZTX4BH3I1458", oauth_signature="88Pi0FqgA%2Fx31LDNoA2H76v0T9A%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196444", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="p4CBQKHA7uL257XoVDu4pakmSTSVmrkStxCZaOEvkc", oauth_signature="P0j594jt%2Bq2D62UnK1VNqcrlT8s%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362326", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -68,7 +68,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:00:44 GMT + - Thu, 01 Aug 2013 13:05:26 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -79,7 +79,7 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:44 GMT + recorded_at: Thu, 01 Aug 2013 13:05:26 GMT - request: method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/users/hidden/ @@ -94,7 +94,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="skx8OCYli5ZIooyY5IsfKZYlsdttIikIsmyiZi9q0xA", oauth_signature="656jflt2vcFvPe8sSvPGFNaY%2BYk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196475", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="j9hPBEd4cUoRdMEAoOOvinLbfuEgncxpshSQ57v72g", oauth_signature="Ae5RtOkTnT5JMAEg6p521shE01E%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362342", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -105,7 +105,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:15 GMT + - Thu, 01 Aug 2013 13:05:42 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -116,5 +116,5 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:15 GMT + recorded_at: Thu, 01 Aug 2013 13:05:42 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/glue_pulp_package.yml b/test/fixtures/vcr_cassettes/glue_pulp_package.yml index 9975343b66a..cfd0e7118af 100644 --- a/test/fixtures/vcr_cassettes/glue_pulp_package.yml +++ b/test/fixtures/vcr_cassettes/glue_pulp_package.yml @@ -5,7 +5,7 @@ http_interactions: uri: https://abed.usersys.redhat.com/pulp/api/v2/content/units/rpm/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"05c9d540-36dc-49a1-8502-0dbebe955aca\"]}}},\"include_repos\":true}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"042651f7-73fc-4e9f-b077-ad0736885b06\"]}}},\"include_repos\":true}" headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="dR5DmOEKY03LrL3nU1KwAIq246Ql4Th0Cuu26wFkyX0", oauth_signature="%2BFG3VeMmjWKmn1uzEb%2FrTAYowms%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196504", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="SfSe1PSgvxpDRC0gpLBQ74HDhGsw0mS6u5ubAU", oauth_signature="4X6aQLvK3ViHTzg8yA2MZ3mDPxA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362370", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,24 +27,24 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:44 GMT + - Thu, 01 Aug 2013 13:06:10 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "2968" + - "2987" Content-Type: - application/json body: encoding: US-ASCII - string: "[{\"build_time\": 1308257449, \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"vendor\": null, \"size\": 2236, \"group\": \"Internet/Applications\", \"relative_url_path\": null, \"filename\": \"walrus-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"version_sort_index\": \"01-0.01-3\", \"provides\": [{\"release\": \"0.8\", \"epoch\": \"0\", \"version\": \"0.3\", \"flags\": \"EQ\", \"name\": \"walrus\"}], \"files\": {\"file\": [\"//walrus.txt\"], \"dir\": []}, \"repodata\": {\"filelists\": \"\\n \\n\\n //walrus.txt\\n\\n\\n\", \"other\": \"\\n \\n\\n\\n\\n\", \"primary\": \"\\n walrus\\n noarch\\n \\n 6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\\n A dummy package of walrus\\n A dummy package of walrus\\n \\n http://tstrachota.fedorapeople.org\\n \\n\"}, \"description\": \"A dummy package of walrus\", \"time\": 1321891030, \"header_range\": {\"start\": 280, \"end\": 2016}, \"release_sort_index\": \"01-0.01-8\", \"arch\": \"noarch\", \"name\": \"walrus\", \"_storage_path\": \"/var/lib/pulp/content/rpm/walrus/0.3/0.8/noarch/6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd/walrus-0.3-0.8.noarch.rpm\", \"sourcerpm\": \"walrus-0.3-0.8.src.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"changelog\": [], \"url\": \"http://tstrachota.fedorapeople.org\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"summary\": \"A dummy package of walrus\", \"relativepath\": \"walrus-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"05c9d540-36dc-49a1-8502-0dbebe955aca\", \"requires\": [{\"release\": null, \"epoch\": null, \"version\": null, \"flags\": null, \"name\": \"/bin/sh\"}], \"_href\": \"/pulp/api/v2/content/units/rpm/05c9d540-36dc-49a1-8502-0dbebe955aca/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" + string: "[{\"build_time\": 1308257460, \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"vendor\": null, \"size\": 2232, \"group\": \"Internet/Applications\", \"relative_url_path\": null, \"filename\": \"penguin-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"version_sort_index\": \"01-0.01-3\", \"provides\": [{\"release\": \"0.8\", \"epoch\": \"0\", \"version\": \"0.3\", \"flags\": \"EQ\", \"name\": \"penguin\"}], \"files\": {\"file\": [\"//penguin.txt\"], \"dir\": []}, \"repodata\": {\"filelists\": \"\\n \\n\\n //penguin.txt\\n\\n\\n\", \"other\": \"\\n \\n\\n\\n\\n\", \"primary\": \"\\n penguin\\n noarch\\n \\n 3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\\n A dummy package of penguin\\n A dummy package of penguin\\n \\n http://tstrachota.fedorapeople.org\\n \\n\"}, \"description\": \"A dummy package of penguin\", \"time\": 1321891029, \"header_range\": {\"start\": 280, \"end\": 2016}, \"release_sort_index\": \"01-0.01-8\", \"arch\": \"noarch\", \"name\": \"penguin\", \"_storage_path\": \"/var/lib/pulp/content/rpm/penguin/0.3/0.8/noarch/3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694/penguin-0.3-0.8.noarch.rpm\", \"sourcerpm\": \"penguin-0.3-0.8.src.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"changelog\": [], \"url\": \"http://tstrachota.fedorapeople.org\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"summary\": \"A dummy package of penguin\", \"relativepath\": \"penguin-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"042651f7-73fc-4e9f-b077-ad0736885b06\", \"requires\": [{\"release\": null, \"epoch\": null, \"version\": null, \"flags\": null, \"name\": \"/bin/sh\"}], \"_href\": \"/pulp/api/v2/content/units/rpm/042651f7-73fc-4e9f-b077-ad0736885b06/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:44 GMT + recorded_at: Thu, 01 Aug 2013 13:06:10 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/content/units/rpm/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"05c9d540-36dc-49a1-8502-0dbebe955aca\"]}}},\"include_repos\":true}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"042651f7-73fc-4e9f-b077-ad0736885b06\"]}}},\"include_repos\":true}" headers: Accept: - application/json @@ -53,7 +53,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="2pJ47Qp4LtxXWSsp3vxWYKXr3zxkLiyw3p1UQasZBE", oauth_signature="HNvhCXCPpGExq182iZtJtOxvc%2B8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196504", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="gVxuw941EbBZENzYR3ypKFoltbsgxQ2KVJCWC44", oauth_signature="tOFcUYoGjIcRt8JQKZZf0U2pn5Q%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362370", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -66,24 +66,24 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:44 GMT + - Thu, 01 Aug 2013 13:06:10 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "2968" + - "2987" Content-Type: - application/json body: encoding: US-ASCII - string: "[{\"build_time\": 1308257449, \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"vendor\": null, \"size\": 2236, \"group\": \"Internet/Applications\", \"relative_url_path\": null, \"filename\": \"walrus-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"version_sort_index\": \"01-0.01-3\", \"provides\": [{\"release\": \"0.8\", \"epoch\": \"0\", \"version\": \"0.3\", \"flags\": \"EQ\", \"name\": \"walrus\"}], \"files\": {\"file\": [\"//walrus.txt\"], \"dir\": []}, \"repodata\": {\"filelists\": \"\\n \\n\\n //walrus.txt\\n\\n\\n\", \"other\": \"\\n \\n\\n\\n\\n\", \"primary\": \"\\n walrus\\n noarch\\n \\n 6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\\n A dummy package of walrus\\n A dummy package of walrus\\n \\n http://tstrachota.fedorapeople.org\\n \\n\"}, \"description\": \"A dummy package of walrus\", \"time\": 1321891030, \"header_range\": {\"start\": 280, \"end\": 2016}, \"release_sort_index\": \"01-0.01-8\", \"arch\": \"noarch\", \"name\": \"walrus\", \"_storage_path\": \"/var/lib/pulp/content/rpm/walrus/0.3/0.8/noarch/6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd/walrus-0.3-0.8.noarch.rpm\", \"sourcerpm\": \"walrus-0.3-0.8.src.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"changelog\": [], \"url\": \"http://tstrachota.fedorapeople.org\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"summary\": \"A dummy package of walrus\", \"relativepath\": \"walrus-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"05c9d540-36dc-49a1-8502-0dbebe955aca\", \"requires\": [{\"release\": null, \"epoch\": null, \"version\": null, \"flags\": null, \"name\": \"/bin/sh\"}], \"_href\": \"/pulp/api/v2/content/units/rpm/05c9d540-36dc-49a1-8502-0dbebe955aca/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" + string: "[{\"build_time\": 1308257460, \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"vendor\": null, \"size\": 2232, \"group\": \"Internet/Applications\", \"relative_url_path\": null, \"filename\": \"penguin-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"version_sort_index\": \"01-0.01-3\", \"provides\": [{\"release\": \"0.8\", \"epoch\": \"0\", \"version\": \"0.3\", \"flags\": \"EQ\", \"name\": \"penguin\"}], \"files\": {\"file\": [\"//penguin.txt\"], \"dir\": []}, \"repodata\": {\"filelists\": \"\\n \\n\\n //penguin.txt\\n\\n\\n\", \"other\": \"\\n \\n\\n\\n\\n\", \"primary\": \"\\n penguin\\n noarch\\n \\n 3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\\n A dummy package of penguin\\n A dummy package of penguin\\n \\n http://tstrachota.fedorapeople.org\\n \\n\"}, \"description\": \"A dummy package of penguin\", \"time\": 1321891029, \"header_range\": {\"start\": 280, \"end\": 2016}, \"release_sort_index\": \"01-0.01-8\", \"arch\": \"noarch\", \"name\": \"penguin\", \"_storage_path\": \"/var/lib/pulp/content/rpm/penguin/0.3/0.8/noarch/3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694/penguin-0.3-0.8.noarch.rpm\", \"sourcerpm\": \"penguin-0.3-0.8.src.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"changelog\": [], \"url\": \"http://tstrachota.fedorapeople.org\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"summary\": \"A dummy package of penguin\", \"relativepath\": \"penguin-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"042651f7-73fc-4e9f-b077-ad0736885b06\", \"requires\": [{\"release\": null, \"epoch\": null, \"version\": null, \"flags\": null, \"name\": \"/bin/sh\"}], \"_href\": \"/pulp/api/v2/content/units/rpm/042651f7-73fc-4e9f-b077-ad0736885b06/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:44 GMT + recorded_at: Thu, 01 Aug 2013 13:06:10 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]},\"limit\":500,\"skip\":0}}" + string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" headers: Accept: - application/json @@ -92,11 +92,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="yHxXF8eH6aoZEEmfbFo2pemTc6qCo9zo9F3jEZPe8XM", oauth_signature="m5EqPiEWf0O3GkxZzyISjtyB5sE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196507", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="LlAke6XEDsnU8H9xlYnmd0wu4jvbyOerokGDJtFk", oauth_signature="mv3ip8mmnxurkP6vxqrIiOtpkT8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362373", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "101" + - "80" User-Agent: - Ruby response: @@ -105,7 +105,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:47 GMT + - Thu, 01 Aug 2013 13:06:13 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -114,15 +114,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"_id\": {\"$oid\": \"51f7d5595ca0137fe7579deb\"}, \"unit_id\": \"2f90c716-86a4-4305-997c-7b8a67f571fe\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"2f90c716-86a4-4305-997c-7b8a67f571fe\"}}, {\"_id\": {\"$oid\": \"51f7d5595ca0137fe7579dec\"}, \"unit_id\": \"07ef48cc-68dc-4cfc-81e7-20b00ce1f811\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"07ef48cc-68dc-4cfc-81e7-20b00ce1f811\"}}, {\"_id\": {\"$oid\": \"51f7d5595ca0137fe7579dee\"}, \"unit_id\": \"7bb51ae4-3cfc-4b81-86d4-a1d71c726657\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"7bb51ae4-3cfc-4b81-86d4-a1d71c726657\"}}, {\"_id\": {\"$oid\": \"51f7d5595ca0137fe7579ded\"}, \"unit_id\": \"8be62994-20a3-4be4-9783-db3dde5c0b5e\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"8be62994-20a3-4be4-9783-db3dde5c0b5e\"}}, {\"_id\": {\"$oid\": \"51f7d5595ca0137fe7579de7\"}, \"unit_id\": \"fe5e4883-6601-4671-9b6c-54023a8f1af2\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"fe5e4883-6601-4671-9b6c-54023a8f1af2\"}}, {\"_id\": {\"$oid\": \"51f7d5595ca0137fe7579de9\"}, \"unit_id\": \"5d4f5955-af8a-488a-9bbf-e710c9138f6b\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"5d4f5955-af8a-488a-9bbf-e710c9138f6b\"}}, {\"_id\": {\"$oid\": \"51f7d5595ca0137fe7579dea\"}, \"unit_id\": \"c1b20e4f-3626-439e-bdb2-a3fd135df290\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"c1b20e4f-3626-439e-bdb2-a3fd135df290\"}}, {\"_id\": {\"$oid\": \"51f7d5595ca0137fe7579de8\"}, \"unit_id\": \"05c9d540-36dc-49a1-8502-0dbebe955aca\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"05c9d540-36dc-49a1-8502-0dbebe955aca\"}}]" + string: "[{\"_id\": {\"$oid\": \"51fa5d435ca013687ad58c97\"}, \"unit_id\": \"e80a9b95-626f-4d8d-83e8-53d49bc88c0d\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"e80a9b95-626f-4d8d-83e8-53d49bc88c0d\"}}, {\"_id\": {\"$oid\": \"51fa5d435ca013687ad58c98\"}, \"unit_id\": \"aae86f30-023a-4d4c-a0b0-ed7cf840b843\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"aae86f30-023a-4d4c-a0b0-ed7cf840b843\"}}, {\"_id\": {\"$oid\": \"51fa5d435ca013687ad58c9a\"}, \"unit_id\": \"c4227539-5f5c-4f71-bfbf-3f88eea83238\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"c4227539-5f5c-4f71-bfbf-3f88eea83238\"}}, {\"_id\": {\"$oid\": \"51fa5d435ca013687ad58c99\"}, \"unit_id\": \"b962fd4c-be85-4853-be0c-e41243ce5886\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"b962fd4c-be85-4853-be0c-e41243ce5886\"}}, {\"_id\": {\"$oid\": \"51fa5d435ca013687ad58c93\"}, \"unit_id\": \"e720c703-3e26-4a2f-af8d-169cb5a1efd8\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"e720c703-3e26-4a2f-af8d-169cb5a1efd8\"}}, {\"_id\": {\"$oid\": \"51fa5d435ca013687ad58c95\"}, \"unit_id\": \"042651f7-73fc-4e9f-b077-ad0736885b06\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"042651f7-73fc-4e9f-b077-ad0736885b06\"}}, {\"_id\": {\"$oid\": \"51fa5d435ca013687ad58c96\"}, \"unit_id\": \"cb1a3f9d-0f6e-4f89-a39e-9b5d13d83398\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"cb1a3f9d-0f6e-4f89-a39e-9b5d13d83398\"}}, {\"_id\": {\"$oid\": \"51fa5d435ca013687ad58c94\"}, \"unit_id\": \"d8b39557-43f6-49ec-835e-d1dd33f66ea1\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"d8b39557-43f6-49ec-835e-d1dd33f66ea1\"}}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:47 GMT + recorded_at: Thu, 01 Aug 2013 13:06:13 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/content/units/rpm/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"2f90c716-86a4-4305-997c-7b8a67f571fe\",\"07ef48cc-68dc-4cfc-81e7-20b00ce1f811\",\"7bb51ae4-3cfc-4b81-86d4-a1d71c726657\",\"8be62994-20a3-4be4-9783-db3dde5c0b5e\",\"fe5e4883-6601-4671-9b6c-54023a8f1af2\",\"5d4f5955-af8a-488a-9bbf-e710c9138f6b\",\"c1b20e4f-3626-439e-bdb2-a3fd135df290\",\"05c9d540-36dc-49a1-8502-0dbebe955aca\"]}},\"fields\":[\"name\",\"version\",\"release\",\"arch\",\"suffix\",\"epoch\",\"download_url\",\"checksum\",\"checksumtype\",\"license\",\"group\",\"children\",\"vendor\",\"filename\",\"relativepath\",\"description\",\"size\",\"buildhost\",\"_id\",\"_content_type_id\",\"_href\",\"_storage_path\",\"_type\"]},\"include_repos\":true}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"e80a9b95-626f-4d8d-83e8-53d49bc88c0d\",\"aae86f30-023a-4d4c-a0b0-ed7cf840b843\",\"c4227539-5f5c-4f71-bfbf-3f88eea83238\",\"b962fd4c-be85-4853-be0c-e41243ce5886\",\"e720c703-3e26-4a2f-af8d-169cb5a1efd8\",\"042651f7-73fc-4e9f-b077-ad0736885b06\",\"cb1a3f9d-0f6e-4f89-a39e-9b5d13d83398\",\"d8b39557-43f6-49ec-835e-d1dd33f66ea1\"]}},\"fields\":[\"name\",\"version\",\"release\",\"arch\",\"suffix\",\"epoch\",\"download_url\",\"checksum\",\"checksumtype\",\"license\",\"group\",\"children\",\"vendor\",\"filename\",\"relativepath\",\"description\",\"size\",\"buildhost\",\"_id\",\"_content_type_id\",\"_href\",\"_storage_path\",\"_type\"]},\"include_repos\":true}" headers: Accept: - application/json @@ -131,7 +131,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="1aXAT2gGaUpDwVtqro35usvvAlQcD2CSUUZzZ7cd8k", oauth_signature="mVfaYlajMtA%2Bn9hN%2F%2FyJcN%2Bct58%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196507", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="NlQbJqa4Wsk5WGacLt4OT5Z5Xt4TwdDkDH9mDXc9A0k", oauth_signature="L2ODqWN981X%2FXzNNQm5KnGay5xc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362373", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -144,7 +144,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:47 GMT + - Thu, 01 Aug 2013 13:06:13 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -153,7 +153,7 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"size\": 2236, \"_storage_path\": \"/var/lib/pulp/content/rpm/walrus/0.3/0.8/noarch/6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd/walrus-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"filename\": \"walrus-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"walrus-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"05c9d540-36dc-49a1-8502-0dbebe955aca\", \"arch\": \"noarch\", \"name\": \"walrus\", \"description\": \"A dummy package of walrus\", \"_href\": \"/pulp/api/v2/content/units/rpm/05c9d540-36dc-49a1-8502-0dbebe955aca/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2244, \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"07ef48cc-68dc-4cfc-81e7-20b00ce1f811\", \"arch\": \"noarch\", \"name\": \"elephant\", \"description\": \"A dummy package of elephant\", \"_href\": \"/pulp/api/v2/content/units/rpm/07ef48cc-68dc-4cfc-81e7-20b00ce1f811/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2232, \"_storage_path\": \"/var/lib/pulp/content/rpm/cheetah/0.3/0.8/noarch/422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae/cheetah-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"filename\": \"cheetah-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"cheetah-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"2f90c716-86a4-4305-997c-7b8a67f571fe\", \"arch\": \"noarch\", \"name\": \"cheetah\", \"description\": \"A dummy package of cheetah\", \"_href\": \"/pulp/api/v2/content/units/rpm/2f90c716-86a4-4305-997c-7b8a67f571fe/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2232, \"_storage_path\": \"/var/lib/pulp/content/rpm/penguin/0.3/0.8/noarch/3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694/penguin-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"filename\": \"penguin-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"penguin-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"5d4f5955-af8a-488a-9bbf-e710c9138f6b\", \"arch\": \"noarch\", \"name\": \"penguin\", \"description\": \"A dummy package of penguin\", \"_href\": \"/pulp/api/v2/content/units/rpm/5d4f5955-af8a-488a-9bbf-e710c9138f6b/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2236, \"_storage_path\": \"/var/lib/pulp/content/rpm/giraffe/0.3/0.8/noarch/f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14/giraffe-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"filename\": \"giraffe-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"giraffe-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"7bb51ae4-3cfc-4b81-86d4-a1d71c726657\", \"arch\": \"noarch\", \"name\": \"giraffe\", \"description\": \"A dummy package of giraffe\", \"_href\": \"/pulp/api/v2/content/units/rpm/7bb51ae4-3cfc-4b81-86d4-a1d71c726657/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2212, \"_storage_path\": \"/var/lib/pulp/content/rpm/lion/0.3/0.8/noarch/12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4/lion-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"filename\": \"lion-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"lion-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"8be62994-20a3-4be4-9783-db3dde5c0b5e\", \"arch\": \"noarch\", \"name\": \"lion\", \"description\": \"A dummy package of lion\", \"_href\": \"/pulp/api/v2/content/units/rpm/8be62994-20a3-4be4-9783-db3dde5c0b5e/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2248, \"_storage_path\": \"/var/lib/pulp/content/rpm/squirrel/0.3/0.8/noarch/251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2/squirrel-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"filename\": \"squirrel-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"squirrel-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"c1b20e4f-3626-439e-bdb2-a3fd135df290\", \"arch\": \"noarch\", \"name\": \"squirrel\", \"description\": \"A dummy package of squirrel\", \"_href\": \"/pulp/api/v2/content/units/rpm/c1b20e4f-3626-439e-bdb2-a3fd135df290/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2232, \"_storage_path\": \"/var/lib/pulp/content/rpm/monkey/0.3/0.8/noarch/0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1/monkey-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"filename\": \"monkey-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"monkey-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"fe5e4883-6601-4671-9b6c-54023a8f1af2\", \"arch\": \"noarch\", \"name\": \"monkey\", \"description\": \"A dummy package of monkey\", \"_href\": \"/pulp/api/v2/content/units/rpm/fe5e4883-6601-4671-9b6c-54023a8f1af2/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" + string: "[{\"size\": 2232, \"_storage_path\": \"/var/lib/pulp/content/rpm/penguin/0.3/0.8/noarch/3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694/penguin-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"filename\": \"penguin-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"penguin-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"042651f7-73fc-4e9f-b077-ad0736885b06\", \"arch\": \"noarch\", \"name\": \"penguin\", \"description\": \"A dummy package of penguin\", \"_href\": \"/pulp/api/v2/content/units/rpm/042651f7-73fc-4e9f-b077-ad0736885b06/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2244, \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"aae86f30-023a-4d4c-a0b0-ed7cf840b843\", \"arch\": \"noarch\", \"name\": \"elephant\", \"description\": \"A dummy package of elephant\", \"_href\": \"/pulp/api/v2/content/units/rpm/aae86f30-023a-4d4c-a0b0-ed7cf840b843/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2212, \"_storage_path\": \"/var/lib/pulp/content/rpm/lion/0.3/0.8/noarch/12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4/lion-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"filename\": \"lion-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"lion-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"b962fd4c-be85-4853-be0c-e41243ce5886\", \"arch\": \"noarch\", \"name\": \"lion\", \"description\": \"A dummy package of lion\", \"_href\": \"/pulp/api/v2/content/units/rpm/b962fd4c-be85-4853-be0c-e41243ce5886/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2236, \"_storage_path\": \"/var/lib/pulp/content/rpm/giraffe/0.3/0.8/noarch/f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14/giraffe-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"filename\": \"giraffe-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"giraffe-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"c4227539-5f5c-4f71-bfbf-3f88eea83238\", \"arch\": \"noarch\", \"name\": \"giraffe\", \"description\": \"A dummy package of giraffe\", \"_href\": \"/pulp/api/v2/content/units/rpm/c4227539-5f5c-4f71-bfbf-3f88eea83238/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2248, \"_storage_path\": \"/var/lib/pulp/content/rpm/squirrel/0.3/0.8/noarch/251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2/squirrel-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"filename\": \"squirrel-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"squirrel-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"cb1a3f9d-0f6e-4f89-a39e-9b5d13d83398\", \"arch\": \"noarch\", \"name\": \"squirrel\", \"description\": \"A dummy package of squirrel\", \"_href\": \"/pulp/api/v2/content/units/rpm/cb1a3f9d-0f6e-4f89-a39e-9b5d13d83398/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2236, \"_storage_path\": \"/var/lib/pulp/content/rpm/walrus/0.3/0.8/noarch/6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd/walrus-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"filename\": \"walrus-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"walrus-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"d8b39557-43f6-49ec-835e-d1dd33f66ea1\", \"arch\": \"noarch\", \"name\": \"walrus\", \"description\": \"A dummy package of walrus\", \"_href\": \"/pulp/api/v2/content/units/rpm/d8b39557-43f6-49ec-835e-d1dd33f66ea1/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2232, \"_storage_path\": \"/var/lib/pulp/content/rpm/monkey/0.3/0.8/noarch/0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1/monkey-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"filename\": \"monkey-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"monkey-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"e720c703-3e26-4a2f-af8d-169cb5a1efd8\", \"arch\": \"noarch\", \"name\": \"monkey\", \"description\": \"A dummy package of monkey\", \"_href\": \"/pulp/api/v2/content/units/rpm/e720c703-3e26-4a2f-af8d-169cb5a1efd8/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2232, \"_storage_path\": \"/var/lib/pulp/content/rpm/cheetah/0.3/0.8/noarch/422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae/cheetah-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"filename\": \"cheetah-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"cheetah-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"e80a9b95-626f-4d8d-83e8-53d49bc88c0d\", \"arch\": \"noarch\", \"name\": \"cheetah\", \"description\": \"A dummy package of cheetah\", \"_href\": \"/pulp/api/v2/content/units/rpm/e80a9b95-626f-4d8d-83e8-53d49bc88c0d/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:47 GMT + recorded_at: Thu, 01 Aug 2013 13:06:13 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/glue_pulp_repo.yml b/test/fixtures/vcr_cassettes/glue_pulp_repo.yml index bca246dd993..cdfe78556a3 100644 --- a/test/fixtures/vcr_cassettes/glue_pulp_repo.yml +++ b/test/fixtures/vcr_cassettes/glue_pulp_repo.yml @@ -5,7 +5,7 @@ http_interactions: uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label/actions/unassociate/ body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"erratum\"],\"filters\":{\"association\":{\"unit_id\":{\"$in\":[\"RHEA-2010:0002\"]}}}}}" + string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"filters\":{\"association\":{\"unit_id\":{\"$in\":[null]}}}}}" headers: Accept: - application/json @@ -14,11 +14,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="Vd5ZWIvNX1bf7CXWQTuW3w9VSFvqWk5b5GpefwNcEqo", oauth_signature="jhByLLNIj9Z50REj%2BGIQSbj513s%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196520", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="gAg1CDDg4secyGkXryc9ulmdljqoqqGt3Yzbd0r4tcs", oauth_signature="iKiLMPECmVyPq4IOJvkufsB441U%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362385", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "102" + - "86" User-Agent: - Ruby response: @@ -27,7 +27,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:00 GMT + - Thu, 01 Aug 2013 13:06:25 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -38,9 +38,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/b44811f9-7c6c-49f6-a7f1-21285b7192b1/\", \"task_id\": \"b44811f9-7c6c-49f6-a7f1-21285b7192b1\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:action:unassociate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:action:unassociate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"b44811f9-7c6c-49f6-a7f1-21285b7192b1\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/fd6fc678-6de7-4494-8665-53525c730bb2/\", \"task_id\": \"fd6fc678-6de7-4494-8665-53525c730bb2\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:action:unassociate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:action:unassociate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"fd6fc678-6de7-4494-8665-53525c730bb2\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:00 GMT + recorded_at: Thu, 01 Aug 2013 13:06:25 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/2/actions/associate/ @@ -55,7 +55,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="TWdpi0c4xDqCLwohos8u7S3yQoBGvFo8LoyoqEFtqAM", oauth_signature="dlpJYOoFzSfFYDrCalQE3%2FHext0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196522", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="zzUcCOgRYzY1OGQVxorDJg5rCOEWORGaAiCpKRTvpNc", oauth_signature="u7OXit%2BIP0gajS7yGEKJOUlN%2FWI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362388", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -68,7 +68,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:02 GMT + - Thu, 01 Aug 2013 13:06:28 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -79,9 +79,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/ac4df65a-7373-44b2-bf7a-42167d8eb435/\", \"task_id\": \"ac4df65a-7373-44b2-bf7a-42167d8eb435\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"ac4df65a-7373-44b2-bf7a-42167d8eb435\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/87c419b3-6d9e-4f2b-9527-30be9a918736/\", \"task_id\": \"87c419b3-6d9e-4f2b-9527-30be9a918736\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"87c419b3-6d9e-4f2b-9527-30be9a918736\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:02 GMT + recorded_at: Thu, 01 Aug 2013 13:06:28 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/2/actions/associate/ @@ -96,7 +96,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="v8BGKaoZahEyslHxU30vAIIVMb4ESAjM3DqJCpbtgE", oauth_signature="Se1CIfwP77qY4%2BSN2pBTS1fdxYk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196522", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="uh2bFPzQ9avXcI6I5QnFiCBPpS1IIwKTS6IDbKkp6U", oauth_signature="HdKE8plV7lAor8AveZjzAgKrId4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362388", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -109,20 +109,20 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:03 GMT + - Thu, 01 Aug 2013 13:06:28 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: - utf-8 Content-Length: - - "646" + - "721" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/5314ca92-7631-4ad7-a45f-8fde7cf521e6/\", \"task_id\": \"5314ca92-7631-4ad7-a45f-8fde7cf521e6\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"5314ca92-7631-4ad7-a45f-8fde7cf521e6\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/9a1b1733-5f31-45da-a659-209324e68344/\", \"task_id\": \"9a1b1733-5f31-45da-a659-209324e68344\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [{\"operation\": \"update\", \"resource_type\": \"repository\", \"resource_id\": \"2\"}], \"start_time\": null, \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"9a1b1733-5f31-45da-a659-209324e68344\", \"principal_login\": \"admin\", \"response\": \"postponed\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:03 GMT + recorded_at: Thu, 01 Aug 2013 13:06:28 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/2/actions/associate/ @@ -137,7 +137,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="sOpfv4KPI5oiLPZoITFfrkLiKfrqhgWQ4psu3dfyO30", oauth_signature="ZApIEnhunTCFVJQgMDRIeW9NdLs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196523", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="DBQfz8iSBHRZtzztPwNkY6D3cFxMcbthnhtnVUvCw", oauth_signature="UJGECQFLTck%2BSkn5czVsZ%2B7ukKs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362388", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -150,7 +150,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:03 GMT + - Thu, 01 Aug 2013 13:06:28 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -161,9 +161,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/eb523337-a030-499f-884a-eaf17fac98bd/\", \"task_id\": \"eb523337-a030-499f-884a-eaf17fac98bd\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"eb523337-a030-499f-884a-eaf17fac98bd\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/13c2b3ea-38dc-42b4-8ad7-c69634ad490c/\", \"task_id\": \"13c2b3ea-38dc-42b4-8ad7-c69634ad490c\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"13c2b3ea-38dc-42b4-8ad7-c69634ad490c\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:03 GMT + recorded_at: Thu, 01 Aug 2013 13:06:28 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/2/actions/associate/ @@ -178,7 +178,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="eXlUKjsnhXUMXRhbFhsFZVErUD05F5Bwj2X0HljTp4", oauth_signature="MIbh3qyFRcwBB4r1EUaOdOsW6Rk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196523", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="tWctfO65S5ZI7vPjd0AIl40Z8Qj7GUNE4Iips", oauth_signature="79%2FlUdkjsI%2BOPtkSWbL%2FyhVczq4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362388", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -191,7 +191,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:03 GMT + - Thu, 01 Aug 2013 13:06:28 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -202,9 +202,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/152c629b-261e-4bbc-a59e-f9b8f7c3a755/\", \"task_id\": \"152c629b-261e-4bbc-a59e-f9b8f7c3a755\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"152c629b-261e-4bbc-a59e-f9b8f7c3a755\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/4a95c730-1c78-4014-a066-bb160bd66266/\", \"task_id\": \"4a95c730-1c78-4014-a066-bb160bd66266\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"4a95c730-1c78-4014-a066-bb160bd66266\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:03 GMT + recorded_at: Thu, 01 Aug 2013 13:06:28 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/2/actions/associate/ @@ -219,7 +219,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="OS4hUIMZ1FHrUHAMiOFEhmoTuM3mV4G3b6wkTXDC1lA", oauth_signature="IUTD2HvMjDE7fwS0rD4X6WsgKB0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196523", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="N5tPfO6SbFYlDkEbQP2WIXzqLG4r4TJ7ZLyJDhDKg", oauth_signature="qGAfJrP23s1%2FiokX7Z1KwQQx59g%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362388", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -232,7 +232,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:03 GMT + - Thu, 01 Aug 2013 13:06:28 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -243,9 +243,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/73825c28-32ac-40c1-8bf0-6b5ab17dae7b/\", \"task_id\": \"73825c28-32ac-40c1-8bf0-6b5ab17dae7b\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"73825c28-32ac-40c1-8bf0-6b5ab17dae7b\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/3626e3fb-53f0-442d-8794-4430040c4c54/\", \"task_id\": \"3626e3fb-53f0-442d-8794-4430040c4c54\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"3626e3fb-53f0-442d-8794-4430040c4c54\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:03 GMT + recorded_at: Thu, 01 Aug 2013 13:06:28 GMT - request: method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/2/ @@ -260,7 +260,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="14gWto99SWPtSdQPwu7GZf789hZEwGPMnaCiB49UuQ", oauth_signature="TMnq7gEgiEyL4Nn3ZYzQ2xBEzKY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196526", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="3SCKsbT7ocvBepIt6rDXo63i8PzjbT00l1tkCO0M", oauth_signature="mm%2BDTMz%2FW43Do0TQ5f2AxyD%2FBHk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362391", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -271,7 +271,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:06 GMT + - Thu, 01 Aug 2013 13:06:31 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -282,9 +282,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"904b47e4-4eb3-4d94-8c7c-1ac31290ef6b\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/904b47e4-4eb3-4d94-8c7c-1ac31290ef6b/\", \"task_id\": \"1206d8fb-eb75-4578-ad64-1b0c0fbb3dba\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"904b47e4-4eb3-4d94-8c7c-1ac31290ef6b\", \"call_request_id\": \"1206d8fb-eb75-4578-ad64-1b0c0fbb3dba\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"6bd0dc1a-c36a-4e3d-ba43-a7c57ebd86e6\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/6bd0dc1a-c36a-4e3d-ba43-a7c57ebd86e6/\", \"task_id\": \"bb9f7793-0a14-4303-a3de-603a527819ca\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"6bd0dc1a-c36a-4e3d-ba43-a7c57ebd86e6\", \"call_request_id\": \"bb9f7793-0a14-4303-a3de-603a527819ca\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:06 GMT + recorded_at: Thu, 01 Aug 2013 13:06:31 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/search/units/ @@ -299,7 +299,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="vLfUw4gbGMRTyL75C5BjpJQzToI8eJ1xglFtym9T2IE", oauth_signature="3sFRGwARBWABQff5Qfsclk4WLkI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196527", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="1trjwoXepgdjQKd6yit3EB0O2gphEYLxwPupvQKvAEU", oauth_signature="atKhEzc%2FFkTuzWLqyyfQF3wZvUk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362392", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -312,7 +312,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:07 GMT + - Thu, 01 Aug 2013 13:06:32 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -321,9 +321,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"updated\": \"2013-07-30T19:02:01Z\", \"repo_id\": \"1\", \"created\": \"2013-07-30T19:02:01Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"07ef48cc-68dc-4cfc-81e7-20b00ce1f811\", \"unit_type_id\": \"rpm\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f9f\"}, \"id\": \"51f7d5695ca0137fe7579f9f\", \"owner_id\": \"yum_importer\", \"metadata\": {\"build_time\": 1308257466, \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"vendor\": null, \"size\": 2244, \"group\": \"Internet/Applications\", \"_ns\": \"units_rpm\", \"relative_url_path\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"version_sort_index\": \"01-0.01-3\", \"provides\": [{\"release\": \"0.8\", \"epoch\": \"0\", \"version\": \"0.3\", \"flags\": \"EQ\", \"name\": \"elephant\"}], \"files\": {\"file\": [\"//elephant.txt\"], \"dir\": []}, \"repodata\": {\"filelists\": \"\\n \\n\\n //elephant.txt\\n\\n\\n\", \"other\": \"\\n \\n\\n\\n\\n\", \"primary\": \"\\n elephant\\n noarch\\n \\n 3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\\n A dummy package of elephant\\n A dummy package of elephant\\n \\n http://tstrachota.fedorapeople.org\\n \\n\"}, \"description\": \"A dummy package of elephant\", \"time\": 1321891027, \"header_range\": {\"start\": 280, \"end\": 2028}, \"release_sort_index\": \"01-0.01-8\", \"arch\": \"noarch\", \"name\": \"elephant\", \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"sourcerpm\": \"elephant-0.3-0.8.src.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"changelog\": [], \"url\": \"http://tstrachota.fedorapeople.org\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"summary\": \"A dummy package of elephant\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"07ef48cc-68dc-4cfc-81e7-20b00ce1f811\", \"requires\": [{\"release\": null, \"epoch\": null, \"version\": null, \"flags\": null, \"name\": \"/bin/sh\"}]}}]" + string: "[{\"updated\": \"2013-08-01T17:06:27Z\", \"repo_id\": \"1\", \"created\": \"2013-08-01T17:06:27Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"aae86f30-023a-4d4c-a0b0-ed7cf840b843\", \"unit_type_id\": \"rpm\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"51fa5d535ca013687ad58e4b\"}, \"id\": \"51fa5d535ca013687ad58e4b\", \"owner_id\": \"yum_importer\", \"metadata\": {\"build_time\": 1308257466, \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"vendor\": null, \"size\": 2244, \"group\": \"Internet/Applications\", \"_ns\": \"units_rpm\", \"relative_url_path\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"version_sort_index\": \"01-0.01-3\", \"provides\": [{\"release\": \"0.8\", \"epoch\": \"0\", \"version\": \"0.3\", \"flags\": \"EQ\", \"name\": \"elephant\"}], \"files\": {\"file\": [\"//elephant.txt\"], \"dir\": []}, \"repodata\": {\"filelists\": \"\\n \\n\\n //elephant.txt\\n\\n\\n\", \"other\": \"\\n \\n\\n\\n\\n\", \"primary\": \"\\n elephant\\n noarch\\n \\n 3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\\n A dummy package of elephant\\n A dummy package of elephant\\n \\n http://tstrachota.fedorapeople.org\\n \\n\"}, \"description\": \"A dummy package of elephant\", \"time\": 1321891027, \"header_range\": {\"start\": 280, \"end\": 2028}, \"release_sort_index\": \"01-0.01-8\", \"arch\": \"noarch\", \"name\": \"elephant\", \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"sourcerpm\": \"elephant-0.3-0.8.src.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"changelog\": [], \"url\": \"http://tstrachota.fedorapeople.org\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"summary\": \"A dummy package of elephant\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"aae86f30-023a-4d4c-a0b0-ed7cf840b843\", \"requires\": [{\"release\": null, \"epoch\": null, \"version\": null, \"flags\": null, \"name\": \"/bin/sh\"}]}}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:07 GMT + recorded_at: Thu, 01 Aug 2013 13:06:33 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/actions/publish/ @@ -338,7 +338,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="5RkOsx9FIHv1HqevYAmKJFdKY7WrkR1uAR5NiuXdMIo", oauth_signature="FhLalCMMedvf2jqAQqjUHiKsOa4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196527", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="8Sx1nEkY107dkADdW9xlRLDLwsBqBLrdgWzvJbPbM", oauth_signature="NeKQuE2Mn99C%2BQjyGt4P0CuN3ko%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362393", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -351,7 +351,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:07 GMT + - Thu, 01 Aug 2013 13:06:33 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -362,9 +362,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/6192320b-36c1-42d1-b919-1b9a1564c960/\", \"task_id\": \"6192320b-36c1-42d1-b919-1b9a1564c960\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"6192320b-36c1-42d1-b919-1b9a1564c960\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/b7eb4046-dcc2-4b17-81ca-559be23bbf05/\", \"task_id\": \"b7eb4046-dcc2-4b17-81ca-559be23bbf05\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"b7eb4046-dcc2-4b17-81ca-559be23bbf05\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:07 GMT + recorded_at: Thu, 01 Aug 2013 13:06:33 GMT - request: method: get uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/?details=true @@ -379,7 +379,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="qBNN4n8WJNXWbp9E6B6Wf0MeKrcpD7ZoKMk4YHacK3Y", oauth_signature="0jZ%2BtZ6%2BpmKSsd7ffPI2%2B2fifnU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196528", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="3wNG2NS96wvBm9JsMj8IwNfDsWKPtnN48PEXTricG8", oauth_signature="ZVGR5yeihiBvBWDOBFdJid73MU4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362393", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -390,7 +390,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:08 GMT + - Thu, 01 Aug 2013 13:06:33 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -399,9 +399,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_counts\": {\"package_group\": 2, \"distribution\": 1, \"package_category\": 1, \"rpm\": 8, \"erratum\": 2}, \"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f87\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\", \"importers\": [{\"repo_id\": \"1\", \"_ns\": \"repo_importers\", \"importer_type_id\": \"yum_importer\", \"last_sync\": \"2013-07-30T11:02:01-04:00\", \"scheduled_syncs\": [], \"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f88\"}, \"config\": {\"feed\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5\"}, \"id\": \"yum_importer\"}], \"distributors\": [{\"repo_id\": \"1\", \"_ns\": \"repo_distributors\", \"last_publish\": \"2013-07-30T11:02:02-04:00\", \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_distributor\", \"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f89\"}, \"config\": {\"protected\": true, \"http\": false, \"https\": true, \"relative_url\": \"/test_path/\"}, \"id\": \"1\"}]}" + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_counts\": {\"package_group\": 2, \"distribution\": 1, \"package_category\": 1, \"rpm\": 8, \"erratum\": 2}, \"_id\": {\"$oid\": \"51fa5d525ca013687ad58e33\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\", \"importers\": [{\"repo_id\": \"1\", \"_ns\": \"repo_importers\", \"importer_type_id\": \"yum_importer\", \"last_sync\": \"2013-08-01T09:06:27-04:00\", \"scheduled_syncs\": [], \"_id\": {\"$oid\": \"51fa5d525ca013687ad58e34\"}, \"config\": {\"feed\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5\"}, \"id\": \"yum_importer\"}], \"distributors\": [{\"repo_id\": \"1\", \"_ns\": \"repo_distributors\", \"last_publish\": \"2013-08-01T09:06:27-04:00\", \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_distributor\", \"_id\": {\"$oid\": \"51fa5d525ca013687ad58e35\"}, \"config\": {\"protected\": true, \"http\": false, \"https\": true, \"relative_url\": \"/test_path/\"}, \"id\": \"1\"}]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:08 GMT + recorded_at: Thu, 01 Aug 2013 13:06:33 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label/actions/associate/ @@ -416,7 +416,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="Do88fcmE4cMX5Y3nbe23FySZez0KZWpBLY69VIVRU", oauth_signature="83EmxsDOIHYQOOXPKRGi4eXdVXw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196529", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="LPkaeNwBUkZwBCH6EPq6Zsfew7Jw5ixETaJNsCpyly8", oauth_signature="SuwTIx7UCkKrsxTp%2FKn7w2O%2FUB0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362394", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -429,7 +429,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:09 GMT + - Thu, 01 Aug 2013 13:06:34 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -440,9 +440,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/f3b392e7-9b5f-418a-bf7a-1459433a053a/\", \"task_id\": \"f3b392e7-9b5f-418a-bf7a-1459433a053a\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"f3b392e7-9b5f-418a-bf7a-1459433a053a\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/e66e569d-0b38-48f4-bd77-0d79f51c25a2/\", \"task_id\": \"e66e569d-0b38-48f4-bd77-0d79f51c25a2\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"e66e569d-0b38-48f4-bd77-0d79f51c25a2\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:09 GMT + recorded_at: Thu, 01 Aug 2013 13:06:34 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label/actions/associate/ @@ -457,7 +457,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="OPUSfTXMUChNToLq1dbN87qdqmrzvafEdf2gkni4xGE", oauth_signature="vF1Iu%2B%2F2BLo%2FTcz%2BRorMrL%2Frd88%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196529", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="IuHGkotonsrn877wijBqBsmnRxewAVxayhhmIOgpY", oauth_signature="6V3Ttx8%2FTULMxUlcOzq%2Bbf4iuaA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362394", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -470,7 +470,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:09 GMT + - Thu, 01 Aug 2013 13:06:34 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -481,9 +481,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/f18581d0-3e42-4463-ab69-0c0e876030f3/\", \"task_id\": \"f18581d0-3e42-4463-ab69-0c0e876030f3\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"f18581d0-3e42-4463-ab69-0c0e876030f3\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/0a62d0b7-b773-4b70-b441-ccd2bc59231a/\", \"task_id\": \"0a62d0b7-b773-4b70-b441-ccd2bc59231a\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"0a62d0b7-b773-4b70-b441-ccd2bc59231a\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:09 GMT + recorded_at: Thu, 01 Aug 2013 13:06:34 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label/actions/associate/ @@ -498,7 +498,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="0yA06XuOoPyhAV42sshrAbSXafsg5kImVw9arJ6i0Rc", oauth_signature="JzVgAOts1KSiWm5T1twJreyUfk4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196529", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="WLuzlGO3z0sJlT2c04jTIsnkPX6vpjZ4d5MopXwrnw", oauth_signature="f3l1siUMmJwZmk%2Ba7G1a76E7oiE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362394", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -511,7 +511,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:09 GMT + - Thu, 01 Aug 2013 13:06:34 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -522,9 +522,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/b31e320c-8b2d-43ec-91d6-baa8a21f154e/\", \"task_id\": \"b31e320c-8b2d-43ec-91d6-baa8a21f154e\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"b31e320c-8b2d-43ec-91d6-baa8a21f154e\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/a0d554c4-caba-417d-bbfd-63e6eb8dbf30/\", \"task_id\": \"a0d554c4-caba-417d-bbfd-63e6eb8dbf30\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"a0d554c4-caba-417d-bbfd-63e6eb8dbf30\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:09 GMT + recorded_at: Thu, 01 Aug 2013 13:06:34 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label/actions/associate/ @@ -539,7 +539,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="X9iC6jmrU9eNkuJxwk3jaaTgMtruB0hpi9DlXxTvsEY", oauth_signature="2PxOf5p9bIl5WzeSKko6nu7yyZw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196529", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="nK9H0GPkusUA7GRkybWcMvLRHAcdIy5i5EhXNRZCU", oauth_signature="t8QmBcR9OXp%2BIhWJ6Bggv2%2BztSM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362394", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -552,7 +552,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:09 GMT + - Thu, 01 Aug 2013 13:06:34 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -563,9 +563,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/7038720e-5eb7-480f-8d49-15d478b8ee06/\", \"task_id\": \"7038720e-5eb7-480f-8d49-15d478b8ee06\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"7038720e-5eb7-480f-8d49-15d478b8ee06\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/5ca1af40-acd2-4b50-802e-8c1d1f41d243/\", \"task_id\": \"5ca1af40-acd2-4b50-802e-8c1d1f41d243\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"5ca1af40-acd2-4b50-802e-8c1d1f41d243\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:09 GMT + recorded_at: Thu, 01 Aug 2013 13:06:34 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label/actions/associate/ @@ -580,7 +580,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="VJl8h5nbDa4bNSHq6xAPV3xuZV9ZOhx82phy6SxYw", oauth_signature="pIHC9dzuu3UUZ0X8%2BkDe1Kt5mzU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196529", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ab7DUMhzH7PLM0lHS5CjWKcRfMkKLsAr2CbGrKdepPQ", oauth_signature="VvSovG6Ou68QSY0DrJ%2FvH8X6CR4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362394", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -593,7 +593,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:09 GMT + - Thu, 01 Aug 2013 13:06:34 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -604,9 +604,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/776058c6-63f4-446e-b7ea-352488e860c5/\", \"task_id\": \"776058c6-63f4-446e-b7ea-352488e860c5\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"776058c6-63f4-446e-b7ea-352488e860c5\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/67d905e2-4e0b-4c08-8a88-a9e9f7732621/\", \"task_id\": \"67d905e2-4e0b-4c08-8a88-a9e9f7732621\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"67d905e2-4e0b-4c08-8a88-a9e9f7732621\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:09 GMT + recorded_at: Thu, 01 Aug 2013 13:06:34 GMT - request: method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label/ @@ -621,7 +621,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="A1InqW60qULyuutUChshvUDAIbrVnYMe7DJiFVtDVU", oauth_signature="uNKOqdrg5rj1U6hne%2FKszkUoVik%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196532", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="qX1CWEsDj8dh18ayjJDZylS54vgCJyyfiVQu9nil4", oauth_signature="Y02v6ezprxXf3UPQ1ku8uCI%2Fm8Q%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362397", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -632,7 +632,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:12 GMT + - Thu, 01 Aug 2013 13:06:37 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -643,9 +643,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"db035071-0627-4b6b-9b3a-4437f9727058\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/db035071-0627-4b6b-9b3a-4437f9727058/\", \"task_id\": \"1c894a68-9cb5-450d-ace5-003584e4adcd\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:action:delete\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"db035071-0627-4b6b-9b3a-4437f9727058\", \"call_request_id\": \"1c894a68-9cb5-450d-ace5-003584e4adcd\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"b784c0ff-944b-43ca-87cc-1a743bc31b97\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/b784c0ff-944b-43ca-87cc-1a743bc31b97/\", \"task_id\": \"f57f9efe-7c18-42b3-a3f1-c4ac3c7bf3ac\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:action:delete\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"b784c0ff-944b-43ca-87cc-1a743bc31b97\", \"call_request_id\": \"f57f9efe-7c18-42b3-a3f1-c4ac3c7bf3ac\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:12 GMT + recorded_at: Thu, 01 Aug 2013 13:06:37 GMT - request: method: get uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/?tag=pulp:action:sync @@ -660,7 +660,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="2iPZhKCG0uGHJdf2HURJQ5JwvjyWkOgrsRyD78huI", oauth_signature="87p6xqtHfZOD%2FeQ2NoQrtcyS3jY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196533", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="SR3eZjn6wbPSlsI5kxLvQvny1AI2BG2SpRGT0wZ4", oauth_signature="EYnNl6%2FBwLsWFH%2BKHywg2yQzRow%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362398", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -671,18 +671,18 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:13 GMT + - Thu, 01 Aug 2013 13:06:38 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "4018" + - "6027" Content-Type: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"93989cd9-275e-4229-a04e-9e1d209d8ad2\", \"exception\": null, \"traceback\": null, \"task_id\": \"4a6d45dd-1e66-4b12-a3c1-d65f7e0192a7\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:54Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:55Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"93989cd9-275e-4229-a04e-9e1d209d8ad2\", \"call_request_id\": \"4a6d45dd-1e66-4b12-a3c1-d65f7e0192a7\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-07-30T11:01:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-07-30T11:01:55-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51f7d5635ca0137fe7579eed\", \"removed_count\": 0}}, {\"task_group_id\": \"1b2d5343-4ccc-4de4-96b5-86f407acdc09\", \"exception\": null, \"traceback\": null, \"task_id\": \"0869d615-b991-4c95-8b92-6436c335510c\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:01Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:02:01Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"1b2d5343-4ccc-4de4-96b5-86f407acdc09\", \"call_request_id\": \"0869d615-b991-4c95-8b92-6436c335510c\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-07-30T11:02:01-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-07-30T11:02:01-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51f7d5695ca0137fe7579fab\", \"removed_count\": 0}}]" + string: "[{\"task_group_id\": \"6316419a-03d1-4533-b0ac-7f1afb569890\", \"exception\": null, \"traceback\": null, \"task_id\": \"e3eb0404-9793-41fc-b014-c300dc8ca46c\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:17Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:18Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"6316419a-03d1-4533-b0ac-7f1afb569890\", \"call_request_id\": \"e3eb0404-9793-41fc-b014-c300dc8ca46c\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:06:17-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:06:18-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d4a5ca013687ad58d2e\", \"removed_count\": 0}}, {\"task_group_id\": \"772a7450-940c-43e7-b641-132af3f28e37\", \"exception\": null, \"traceback\": null, \"task_id\": \"628806e7-72d0-4038-a9f3-e5da0d85ccde\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:20Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:20Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"772a7450-940c-43e7-b641-132af3f28e37\", \"call_request_id\": \"628806e7-72d0-4038-a9f3-e5da0d85ccde\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:06:20-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:06:20-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d4c5ca013687ad58d99\", \"removed_count\": 0}}, {\"task_group_id\": \"aba76d00-b2dc-4e25-850f-1a4b8a4a96b5\", \"exception\": null, \"traceback\": null, \"task_id\": \"9604e52a-ad89-4960-92a7-e2d0bc3b346d\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:26Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:27Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"aba76d00-b2dc-4e25-850f-1a4b8a4a96b5\", \"call_request_id\": \"9604e52a-ad89-4960-92a7-e2d0bc3b346d\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:06:26-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:06:27-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d535ca013687ad58e57\", \"removed_count\": 0}}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:13 GMT + recorded_at: Thu, 01 Aug 2013 13:06:38 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/actions/sync/ @@ -697,7 +697,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="yxbPHtVJ0fApCVXrfALrq3xf4rWH9kCdcbUmboLq63c", oauth_signature="2jJIEKoN6IvdU6CyDS1kk162zEs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196534", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ZZ5GkVP8mIyQEFp2ruy2htllhhQzD1ocnWpscg", oauth_signature="Koy3oBbVJOBzbvoYRaAy9Wsc8AE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362398", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -710,7 +710,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:14 GMT + - Thu, 01 Aug 2013 13:06:38 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -721,9 +721,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"6be34339-8aa8-46db-958f-6d489c73425a\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/6be34339-8aa8-46db-958f-6d489c73425a/\", \"task_id\": \"d677f8ac-1ae1-402e-bb76-f1eac6442dfb\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"6be34339-8aa8-46db-958f-6d489c73425a\", \"call_request_id\": \"d677f8ac-1ae1-402e-bb76-f1eac6442dfb\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": \"6be34339-8aa8-46db-958f-6d489c73425a\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/6be34339-8aa8-46db-958f-6d489c73425a/\", \"task_id\": \"dda83fe3-55c8-4de2-b6c6-d38c298c20c9\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:auto_publish\", \"pulp:action:publish\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:auto_publish\", \"pulp:action:publish\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"6be34339-8aa8-46db-958f-6d489c73425a\", \"call_request_id\": \"dda83fe3-55c8-4de2-b6c6-d38c298c20c9\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"71baf77c-d519-4fbc-8240-29898a0758fe\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/71baf77c-d519-4fbc-8240-29898a0758fe/\", \"task_id\": \"7daada97-c824-41a0-bd14-5b251da43825\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"71baf77c-d519-4fbc-8240-29898a0758fe\", \"call_request_id\": \"7daada97-c824-41a0-bd14-5b251da43825\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": \"71baf77c-d519-4fbc-8240-29898a0758fe\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/71baf77c-d519-4fbc-8240-29898a0758fe/\", \"task_id\": \"cafa27b9-540e-4c20-a389-120d56d82ec3\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:auto_publish\", \"pulp:action:publish\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:auto_publish\", \"pulp:action:publish\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"71baf77c-d519-4fbc-8240-29898a0758fe\", \"call_request_id\": \"cafa27b9-540e-4c20-a389-120d56d82ec3\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:14 GMT + recorded_at: Thu, 01 Aug 2013 13:06:39 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/ @@ -738,7 +738,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="Rf6KqKaO3O6ggU19Nyeh7hJ81T7HVREkfclFZab0M", oauth_signature="r3e5R5oYMHEwVjxWQr%2BZE8vR7Ns%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196537", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="9PSRMyvtK0NfxyylUZzE18VVUAQiL5uw1kXkc5Nc1BY", oauth_signature="keoNw9CcourkDKvT6q2CVND1er8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362401", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -751,7 +751,7 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:02:17 GMT + - Thu, 01 Aug 2013 13:06:41 GMT Server: - Apache/2.2.15 (Red Hat) Location: @@ -762,9 +762,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"51f7d5795ca0137fe757a129\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"51fa5d615ca013687ad58fd5\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:17 GMT + recorded_at: Thu, 01 Aug 2013 13:06:41 GMT - request: method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/ @@ -779,7 +779,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="DRqVcQv7ABKNu4HZjTwKwfWO7Xrphi7pqDlyyMB4", oauth_signature="KekYMBsdjkd2u0Tm42EfA%2BfxhAQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196537", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="m2MPGu7jR19VVDrjftvRfEGvRlY8R4KxNWIx5Xk", oauth_signature="438Tn2W1qX5fmnISr%2B4m%2BXNfqwI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362401", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -790,7 +790,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:17 GMT + - Thu, 01 Aug 2013 13:06:41 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -801,7 +801,7 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"dd1b55cb-7fe7-42e9-a086-f1f8af0e9ef1\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/dd1b55cb-7fe7-42e9-a086-f1f8af0e9ef1/\", \"task_id\": \"0e6a3afd-9145-40cd-adba-9451fd9a40c9\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"dd1b55cb-7fe7-42e9-a086-f1f8af0e9ef1\", \"call_request_id\": \"0e6a3afd-9145-40cd-adba-9451fd9a40c9\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"4b41ebf0-ef79-407d-a37c-b9678a20358d\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/4b41ebf0-ef79-407d-a37c-b9678a20358d/\", \"task_id\": \"aa9bd7d9-e88d-409b-bc16-52482c66995a\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"4b41ebf0-ef79-407d-a37c-b9678a20358d\", \"call_request_id\": \"aa9bd7d9-e88d-409b-bc16-52482c66995a\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:17 GMT + recorded_at: Thu, 01 Aug 2013 13:06:41 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/glue_pulp_repo_helper.yml b/test/fixtures/vcr_cassettes/glue_pulp_repo_helper.yml index 52c36ed2d5f..5a7b32cd3ca 100644 --- a/test/fixtures/vcr_cassettes/glue_pulp_repo_helper.yml +++ b/test/fixtures/vcr_cassettes/glue_pulp_repo_helper.yml @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="SFMyCWU3Qx6UZSKF7CPSfZSEX8d7KM5oIkNNysyc", oauth_signature="VTe%2FtBCFK%2FgqLmCCjZZDIuzFTFw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196516", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="WeEuZPIsrz0KsYRN4jytbTI1eiAGa0wWcTlzKcSAjXs", oauth_signature="B0cyxwoFhJ8wV8aAusw%2FakXoRSM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362381", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,7 +27,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:56 GMT + - Thu, 01 Aug 2013 13:06:21 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -38,9 +38,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/615c1ab8-cce7-47b1-9817-4950c4f50ad6/\", \"task_id\": \"615c1ab8-cce7-47b1-9817-4950c4f50ad6\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"615c1ab8-cce7-47b1-9817-4950c4f50ad6\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/f6e1d238-da54-4ab1-9cdf-f785a6b7fb5d/\", \"task_id\": \"f6e1d238-da54-4ab1-9cdf-f785a6b7fb5d\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"f6e1d238-da54-4ab1-9cdf-f785a6b7fb5d\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:56 GMT + recorded_at: Thu, 01 Aug 2013 13:06:22 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label/actions/associate/ @@ -55,7 +55,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="tLWJFSLtyORMgVn5Dr7CiaBIUZXdWcRFF5bNa5tWY", oauth_signature="riWJGdAgvi1%2FjDJFHBexTwCeORo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196516", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="bUfZ6jV4vfkua2AsrxnzVi4VgWJt4HNKXSxOPupo0u0", oauth_signature="Of8v8bNQfYGP5EvUaSkhR9nixbs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362382", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -68,20 +68,20 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:56 GMT + - Thu, 01 Aug 2013 13:06:22 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: - utf-8 Content-Length: - - "988" + - "824" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/b51213ef-ad64-429e-8275-ea51ae18d389/\", \"task_id\": \"b51213ef-ad64-429e-8275-ea51ae18d389\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [{\"operation\": \"update\", \"resource_type\": \"repository\", \"resource_id\": \"acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\"}], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"b51213ef-ad64-429e-8275-ea51ae18d389\", \"principal_login\": \"admin\", \"response\": \"postponed\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/d7df961d-b091-43b6-a6d3-fd1884452662/\", \"task_id\": \"d7df961d-b091-43b6-a6d3-fd1884452662\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"d7df961d-b091-43b6-a6d3-fd1884452662\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:56 GMT + recorded_at: Thu, 01 Aug 2013 13:06:22 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label/actions/associate/ @@ -96,7 +96,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="aOlLUbtmx9i9VdBYBevSxwmmim1u7EBvxfKBVo1M", oauth_signature="5hehcaeGJ1CBQj5HSjm4Q0yjAIU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196516", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="zyJfBd52tzd5TPMuKTXnjF7djaHIrrnW0ivGkjA9M", oauth_signature="M8VLbXQiDBHGQw25N0g%2BLMkSl58%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362382", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -109,7 +109,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:56 GMT + - Thu, 01 Aug 2013 13:06:22 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -120,9 +120,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/782d9759-697b-4994-b918-04c77fe95dca/\", \"task_id\": \"782d9759-697b-4994-b918-04c77fe95dca\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"782d9759-697b-4994-b918-04c77fe95dca\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/ed637cfe-88f2-4036-96e3-441b035f9335/\", \"task_id\": \"ed637cfe-88f2-4036-96e3-441b035f9335\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"ed637cfe-88f2-4036-96e3-441b035f9335\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:56 GMT + recorded_at: Thu, 01 Aug 2013 13:06:22 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label/actions/associate/ @@ -137,7 +137,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="dyD7zyP4LBvCNOTBRQ82ScAoDdauIAfX4pRrwzkl4ck", oauth_signature="sga9i9sfxqXBwm47bTxAAKO2emc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196516", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="MowU7J31KctwPYyCFmu8E6HH0AxYa78HmDyL17E", oauth_signature="18jhla15Z4xtIeKNozRTWbwoEvU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362382", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -150,7 +150,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:56 GMT + - Thu, 01 Aug 2013 13:06:22 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -161,9 +161,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/71297e6e-c56a-49ef-a1e1-77f7db19f6ef/\", \"task_id\": \"71297e6e-c56a-49ef-a1e1-77f7db19f6ef\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"71297e6e-c56a-49ef-a1e1-77f7db19f6ef\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/c0bb2d32-3559-4965-b483-d329ccfa8b52/\", \"task_id\": \"c0bb2d32-3559-4965-b483-d329ccfa8b52\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"c0bb2d32-3559-4965-b483-d329ccfa8b52\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:56 GMT + recorded_at: Thu, 01 Aug 2013 13:06:22 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label/actions/associate/ @@ -178,7 +178,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="U5zMcsUe6a0MzpUCWospitcZEdTMkloFMyRyprTSo", oauth_signature="9hpvMfCIQQBLfgtd0yAPLVG%2FNCk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196516", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="Q42SdSQA6lhybB7wzrHqhAhtIhgxOlLx0NB38fe90I", oauth_signature="Fsfo%2Bx%2F%2FrGwDceKjpCFAsuNw%2FMo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362382", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -191,7 +191,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:56 GMT + - Thu, 01 Aug 2013 13:06:22 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -202,9 +202,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/6f0f6ed4-293d-4c1f-bff5-c4b3f185a02b/\", \"task_id\": \"6f0f6ed4-293d-4c1f-bff5-c4b3f185a02b\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"6f0f6ed4-293d-4c1f-bff5-c4b3f185a02b\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/f9391591-9ce6-4979-801a-7b3f04fb899a/\", \"task_id\": \"f9391591-9ce6-4979-801a-7b3f04fb899a\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"f9391591-9ce6-4979-801a-7b3f04fb899a\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:56 GMT + recorded_at: Thu, 01 Aug 2013 13:06:22 GMT - request: method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label/ @@ -219,7 +219,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="bl2TfyJQ0V8iaQEh31VN7wWh5F5BhennJ8Wxt3WZpI", oauth_signature="0dRsIHikvDlSgKHQHnmWMYoEOhk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196520", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="dlT9N72bcSN13aHllOVwJqpdYnJf1Gar7vQ5iFyhs", oauth_signature="kVVNYmyYN9ry9vDOwRCHOfB8w0Q%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362386", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -230,7 +230,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:00 GMT + - Thu, 01 Aug 2013 13:06:26 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -241,9 +241,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"81597749-4fa7-44ef-87a8-b3785837eca6\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/81597749-4fa7-44ef-87a8-b3785837eca6/\", \"task_id\": \"4aaff15e-b9f2-4c71-94e0-b892eb389ddf\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:action:delete\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"81597749-4fa7-44ef-87a8-b3785837eca6\", \"call_request_id\": \"4aaff15e-b9f2-4c71-94e0-b892eb389ddf\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"55753698-772d-42b0-882f-ec31637e482b\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/55753698-772d-42b0-882f-ec31637e482b/\", \"task_id\": \"91a81d53-1a40-42d2-a97f-2abf9317c032\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:action:delete\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"55753698-772d-42b0-882f-ec31637e482b\", \"call_request_id\": \"91a81d53-1a40-42d2-a97f-2abf9317c032\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:00 GMT + recorded_at: Thu, 01 Aug 2013 13:06:26 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/ @@ -258,7 +258,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="5x3xSiQ6nbRXsQnHqtfy7Ddf6Fd1gBLOpeAXeeOuU", oauth_signature="eyFcdoXo38L10sa5pfPQumnyqyM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196521", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="7dI6XDMh91mOZN3ahRqOEzWgFZLAKyZ2VSstHPg", oauth_signature="B4bLzMU6E4y3CZrbvHJ8C5ic3qU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362386", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -271,7 +271,7 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:02:01 GMT + - Thu, 01 Aug 2013 13:06:26 GMT Server: - Apache/2.2.15 (Red Hat) Location: @@ -282,9 +282,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f87\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"51fa5d525ca013687ad58e33\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:01 GMT + recorded_at: Thu, 01 Aug 2013 13:06:26 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/actions/sync/ @@ -299,7 +299,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="28AZbe2XCe1K7IkBPDLK7n49uWgJPQEAsitjMHKY1M", oauth_signature="oapPhxxouAxFVpMKmP8WlYxGmQc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196521", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="58gXKNBM0shTPn1WQ0jQh8GXf5Pz21r0CONItFp5E", oauth_signature="p1HrEDX5PB%2F0gPL56HiesYhcBBM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362386", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -312,7 +312,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:01 GMT + - Thu, 01 Aug 2013 13:06:26 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -323,9 +323,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"1b2d5343-4ccc-4de4-96b5-86f407acdc09\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/1b2d5343-4ccc-4de4-96b5-86f407acdc09/\", \"task_id\": \"0869d615-b991-4c95-8b92-6436c335510c\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"1b2d5343-4ccc-4de4-96b5-86f407acdc09\", \"call_request_id\": \"0869d615-b991-4c95-8b92-6436c335510c\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": \"1b2d5343-4ccc-4de4-96b5-86f407acdc09\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/1b2d5343-4ccc-4de4-96b5-86f407acdc09/\", \"task_id\": \"af63ff72-de0c-4c3d-bfd5-3f456ce514b0\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:auto_publish\", \"pulp:action:publish\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:auto_publish\", \"pulp:action:publish\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"1b2d5343-4ccc-4de4-96b5-86f407acdc09\", \"call_request_id\": \"af63ff72-de0c-4c3d-bfd5-3f456ce514b0\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"aba76d00-b2dc-4e25-850f-1a4b8a4a96b5\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/aba76d00-b2dc-4e25-850f-1a4b8a4a96b5/\", \"task_id\": \"9604e52a-ad89-4960-92a7-e2d0bc3b346d\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"aba76d00-b2dc-4e25-850f-1a4b8a4a96b5\", \"call_request_id\": \"9604e52a-ad89-4960-92a7-e2d0bc3b346d\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": \"aba76d00-b2dc-4e25-850f-1a4b8a4a96b5\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/aba76d00-b2dc-4e25-850f-1a4b8a4a96b5/\", \"task_id\": \"96a6d097-2287-4522-bf25-b1b359245fbd\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:auto_publish\", \"pulp:action:publish\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:auto_publish\", \"pulp:action:publish\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"aba76d00-b2dc-4e25-850f-1a4b8a4a96b5\", \"call_request_id\": \"96a6d097-2287-4522-bf25-b1b359245fbd\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:01 GMT + recorded_at: Thu, 01 Aug 2013 13:06:26 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/ @@ -340,7 +340,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="wC01VRMNHDmbSbPbJ9YWMpVgp2O7usKKXshc8KkMQ", oauth_signature="HWqg8KMgRaldc%2B52QYFiPPYwQSY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196533", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="1KLLqF8HXmq2pW39OdASMWKN1DPFJzvhyvbenPb8IY", oauth_signature="wFFDmnDJS511WNcVs9sdcMhskMY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362398", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -353,7 +353,7 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:02:13 GMT + - Thu, 01 Aug 2013 13:06:38 GMT Server: - Apache/2.2.15 (Red Hat) Location: @@ -364,9 +364,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"51f7d5755ca0137fe757a0c6\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"51fa5d5e5ca013687ad58f72\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:14 GMT + recorded_at: Thu, 01 Aug 2013 13:06:38 GMT - request: method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/ @@ -381,7 +381,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="b6DYaEw4UcTCxghXdJJXMAuBcD367kG8Y2kKYhZ86A", oauth_signature="vqCFj2Cgk8lVqu9mPbMoLv%2BPi%2Fk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196535", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="XsIz2nv546bF4cneReaX9MHrQcVoNft0VfJGBBkQg", oauth_signature="ykQPq%2B6v2ZfbL%2F8n77%2B9rtLwuBk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362400", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -392,7 +392,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:02:15 GMT + - Thu, 01 Aug 2013 13:06:40 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -403,7 +403,7 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"facb7f77-3a96-4fa8-811b-dd11eaa1897b\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/facb7f77-3a96-4fa8-811b-dd11eaa1897b/\", \"task_id\": \"127c3979-4936-4f1e-a913-3fe0e88ac350\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"facb7f77-3a96-4fa8-811b-dd11eaa1897b\", \"call_request_id\": \"127c3979-4936-4f1e-a913-3fe0e88ac350\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"c39250b2-57d2-4086-b354-930232b9c84c\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/c39250b2-57d2-4086-b354-930232b9c84c/\", \"task_id\": \"3f91d7e9-f2d9-4e54-a833-df1977e0583e\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"c39250b2-57d2-4086-b354-930232b9c84c\", \"call_request_id\": \"3f91d7e9-f2d9-4e54-a833-df1977e0583e\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:16 GMT + recorded_at: Thu, 01 Aug 2013 13:06:40 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/glue_pulp_repo_sync_schedule.yml b/test/fixtures/vcr_cassettes/glue_pulp_repo_sync_schedule.yml index a7ae722cd2f..c7681ed4462 100644 --- a/test/fixtures/vcr_cassettes/glue_pulp_repo_sync_schedule.yml +++ b/test/fixtures/vcr_cassettes/glue_pulp_repo_sync_schedule.yml @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="vXJbX5SwhrFyBrWIClbv8lpj9pEc6uQEz8HlLDskNS0", oauth_signature="LSQarSO61TvMRefVrFPMauaGgBA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196534", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="7J0f7MAX8cx8xXCpCJi4oZMThb4O0MQFjVzoqZMN8s", oauth_signature="h8MY31GCnAq8X6FNSADh4mZvjOo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362400", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -25,7 +25,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:14 GMT + - Thu, 01 Aug 2013 13:06:40 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -36,13 +36,13 @@ http_interactions: encoding: US-ASCII string: "[]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:14 GMT + recorded_at: Thu, 01 Aug 2013 13:06:40 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/importers/yum_importer/schedules/sync/ body: encoding: US-ASCII - string: "{\"schedule\":\"2014-07-30T11:02:14-04:00/P1D\"}" + string: "{\"schedule\":\"2014-08-01T09:06:40-04:00/P1D\"}" headers: Accept: - application/json @@ -51,7 +51,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="xTlsNwRXWoJAtkZHHPCraFjF4czHcy6nvvbU4V8gkQ", oauth_signature="GntDpjMaL1eKHEDg7Xl5lMdsA4Y%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196534", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="dslGLMoY120lF3Ie353mlLTqs8I2psY7EkAzcI", oauth_signature="a1MnF7mC%2FOxtbisfJDn%2Fur0Ixhc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362400", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -64,18 +64,18 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:02:14 GMT + - Thu, 01 Aug 2013 13:06:40 GMT Server: - Apache/2.2.15 (Red Hat) Location: - - /pulp/api/v2/repositories/1/importers/yum_importer/schedules/sync/51f7d5765ca0137fe757a0d4/ + - /pulp/api/v2/repositories/1/importers/yum_importer/schedules/sync/51fa5d605ca013687ad58fb0/ Content-Length: - "393" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"next_run\": \"2014-07-30T15:02:14Z\", \"_href\": \"/pulp/api/v2/repositories/1/importers/yum_importer/schedules/sync/51f7d5765ca0137fe757a0d4/\", \"schedule\": \"2014-07-30T11:02:14-04:00/P1D\", \"override_config\": {}, \"remaining_runs\": null, \"first_run\": \"2014-07-30T15:02:14Z\", \"enabled\": true, \"last_run\": null, \"failure_threshold\": null, \"_id\": \"51f7d5765ca0137fe757a0d4\", \"consecutive_failures\": 0}" + string: "{\"next_run\": \"2014-08-01T13:06:40Z\", \"_href\": \"/pulp/api/v2/repositories/1/importers/yum_importer/schedules/sync/51fa5d605ca013687ad58fb0/\", \"schedule\": \"2014-08-01T09:06:40-04:00/P1D\", \"override_config\": {}, \"remaining_runs\": null, \"first_run\": \"2014-08-01T13:06:40Z\", \"enabled\": true, \"last_run\": null, \"failure_threshold\": null, \"_id\": \"51fa5d605ca013687ad58fb0\", \"consecutive_failures\": 0}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:14 GMT + recorded_at: Thu, 01 Aug 2013 13:06:40 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/glue_pulp_repo_sync_status.yml b/test/fixtures/vcr_cassettes/glue_pulp_repo_sync_status.yml index b90e3b0829a..223ce658306 100644 --- a/test/fixtures/vcr_cassettes/glue_pulp_repo_sync_status.yml +++ b/test/fixtures/vcr_cassettes/glue_pulp_repo_sync_status.yml @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="S5dmhJgrXLjhTiHuiUzj8ZFio9CkS9qKbVlyf9wck", oauth_signature="ndB0HnrL5RkNbAr7ajuaWvl6IDM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196532", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="yezepzYiaUGujEuMLIdDBMbHER7fRjV8TdwzJBRHs", oauth_signature="caomffltw2ea3w8knb71xCU6cEU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362397", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -25,7 +25,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:12 GMT + - Thu, 01 Aug 2013 13:06:37 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -34,7 +34,7 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"992d80b5-4d8d-42e5-b069-b079dbe9bdfa\", \"exception\": null, \"traceback\": null, \"task_id\": \"241d8ed4-3380-4cf2-8628-ccdd1802a365\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:52Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:52Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"992d80b5-4d8d-42e5-b069-b079dbe9bdfa\", \"call_request_id\": \"241d8ed4-3380-4cf2-8628-ccdd1802a365\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-07-30T11:01:52-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-07-30T11:01:52-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51f7d5605ca0137fe7579e82\", \"removed_count\": 0}}, {\"task_group_id\": \"93989cd9-275e-4229-a04e-9e1d209d8ad2\", \"exception\": null, \"traceback\": null, \"task_id\": \"4a6d45dd-1e66-4b12-a3c1-d65f7e0192a7\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:54Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:55Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"93989cd9-275e-4229-a04e-9e1d209d8ad2\", \"call_request_id\": \"4a6d45dd-1e66-4b12-a3c1-d65f7e0192a7\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-07-30T11:01:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-07-30T11:01:55-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51f7d5635ca0137fe7579eed\", \"removed_count\": 0}}, {\"task_group_id\": \"1b2d5343-4ccc-4de4-96b5-86f407acdc09\", \"exception\": null, \"traceback\": null, \"task_id\": \"0869d615-b991-4c95-8b92-6436c335510c\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:01Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:02:01Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"1b2d5343-4ccc-4de4-96b5-86f407acdc09\", \"call_request_id\": \"0869d615-b991-4c95-8b92-6436c335510c\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-07-30T11:02:01-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-07-30T11:02:01-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51f7d5695ca0137fe7579fab\", \"removed_count\": 0}}]" + string: "[{\"task_group_id\": \"6316419a-03d1-4533-b0ac-7f1afb569890\", \"exception\": null, \"traceback\": null, \"task_id\": \"e3eb0404-9793-41fc-b014-c300dc8ca46c\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:17Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:18Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"6316419a-03d1-4533-b0ac-7f1afb569890\", \"call_request_id\": \"e3eb0404-9793-41fc-b014-c300dc8ca46c\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:06:17-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:06:18-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d4a5ca013687ad58d2e\", \"removed_count\": 0}}, {\"task_group_id\": \"772a7450-940c-43e7-b641-132af3f28e37\", \"exception\": null, \"traceback\": null, \"task_id\": \"628806e7-72d0-4038-a9f3-e5da0d85ccde\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:20Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:20Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"772a7450-940c-43e7-b641-132af3f28e37\", \"call_request_id\": \"628806e7-72d0-4038-a9f3-e5da0d85ccde\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:06:20-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:06:20-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d4c5ca013687ad58d99\", \"removed_count\": 0}}, {\"task_group_id\": \"aba76d00-b2dc-4e25-850f-1a4b8a4a96b5\", \"exception\": null, \"traceback\": null, \"task_id\": \"9604e52a-ad89-4960-92a7-e2d0bc3b346d\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:26Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:27Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"aba76d00-b2dc-4e25-850f-1a4b8a4a96b5\", \"call_request_id\": \"9604e52a-ad89-4960-92a7-e2d0bc3b346d\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:06:26-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:06:27-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d535ca013687ad58e57\", \"removed_count\": 0}}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:12 GMT + recorded_at: Thu, 01 Aug 2013 13:06:37 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/glue_pulp_repo_tasks.yml b/test/fixtures/vcr_cassettes/glue_pulp_repo_tasks.yml index 19a6156b1d1..35710dc9a81 100644 --- a/test/fixtures/vcr_cassettes/glue_pulp_repo_tasks.yml +++ b/test/fixtures/vcr_cassettes/glue_pulp_repo_tasks.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/3bbecc61-8e54-4e17-a839-082585af1ab3/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/d9c7accf-8790-4f3d-bc97-a18d986d93a2/ body: encoding: US-ASCII string: "" @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="QOSRjsirWOR0QTFy4rFJZwRkdW9cVhlT88gwSY8Zz4", oauth_signature="o7wYGsZKB%2FvQSe7HaI0lPW8FC50%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196509", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="njbczXXI8TIl7zooMRg34L0BYy8qI8yzX7bimKfI4", oauth_signature="IMfIBRsLYB8V6zwmsMW9zRfbMec%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362374", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -25,7 +25,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:49 GMT + - Thu, 01 Aug 2013 13:06:14 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -34,12 +34,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/3bbecc61-8e54-4e17-a839-082585af1ab3/\", \"task_id\": \"3bbecc61-8e54-4e17-a839-082585af1ab3\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:48Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:48Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"3bbecc61-8e54-4e17-a839-082585af1ab3\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/d9c7accf-8790-4f3d-bc97-a18d986d93a2/\", \"task_id\": \"d9c7accf-8790-4f3d-bc97-a18d986d93a2\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:14Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:14Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"d9c7accf-8790-4f3d-bc97-a18d986d93a2\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:49 GMT + recorded_at: Thu, 01 Aug 2013 13:06:14 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/faaa3912-a457-4a87-b246-c236bfd4c46f/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/8f32616a-f54b-40d9-b31c-2deeae952ea9/ body: encoding: US-ASCII string: "" @@ -51,7 +51,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="VYlEdWxMMwAeQY7o5HBW3IoN2SWalf81BAcXLOvok", oauth_signature="KfRgkMsbYisAEp3Fx4sjOycbEbU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196509", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="HKrtJC18kC4at4XmlvUe5QwkBDp94BJnmTICMyopg", oauth_signature="5YPQMHKu6k5bb7YrLqET7DbLrp4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362375", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -62,7 +62,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:49 GMT + - Thu, 01 Aug 2013 13:06:15 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -71,12 +71,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/faaa3912-a457-4a87-b246-c236bfd4c46f/\", \"task_id\": \"faaa3912-a457-4a87-b246-c236bfd4c46f\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:48Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:48Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"faaa3912-a457-4a87-b246-c236bfd4c46f\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/8f32616a-f54b-40d9-b31c-2deeae952ea9/\", \"task_id\": \"8f32616a-f54b-40d9-b31c-2deeae952ea9\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:14Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:14Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"8f32616a-f54b-40d9-b31c-2deeae952ea9\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:49 GMT + recorded_at: Thu, 01 Aug 2013 13:06:15 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/6fc6dac1-89ae-43a7-a0bf-3edd66eac721/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/8859c33f-b264-44bb-998b-072175a923fe/ body: encoding: US-ASCII string: "" @@ -88,7 +88,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="M7pcCshoAHvEwiige0zDB9XQThlRT38XojWagA", oauth_signature="9qsmf2%2BFlEbLZeLvcHk9813QrDs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196510", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="oWuHoK4mgcECaMqL1lbHPjFO76Cv7JsvBCo0VjM77hc", oauth_signature="bSm8UwmpFpQ84slWbZ0yFtEDmwA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362376", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -99,7 +99,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:50 GMT + - Thu, 01 Aug 2013 13:06:16 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -108,12 +108,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/6fc6dac1-89ae-43a7-a0bf-3edd66eac721/\", \"task_id\": \"6fc6dac1-89ae-43a7-a0bf-3edd66eac721\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:48Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:48Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"6fc6dac1-89ae-43a7-a0bf-3edd66eac721\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/8859c33f-b264-44bb-998b-072175a923fe/\", \"task_id\": \"8859c33f-b264-44bb-998b-072175a923fe\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:14Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:14Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"8859c33f-b264-44bb-998b-072175a923fe\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:50 GMT + recorded_at: Thu, 01 Aug 2013 13:06:16 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/a0568853-83f0-47b3-b7c3-b06b2735bc0f/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/091b0c7a-deed-4528-b52a-f5908bbec30a/ body: encoding: US-ASCII string: "" @@ -125,7 +125,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="CEAd4xwOUXOf7Mkg605svjHCkz3uZRl2MUY8gv3yI", oauth_signature="xIlbKp3bAMnYv7Ch%2BKi2Z2jtKLU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196510", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="m2NuNfFO9oOmbUgQUu0nzEoO4XeYgRr6N7PGkaW0iw", oauth_signature="0oNrcTP4EauAYoCO3xHnx0gZGBk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362376", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -136,7 +136,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:50 GMT + - Thu, 01 Aug 2013 13:06:16 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -145,12 +145,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/a0568853-83f0-47b3-b7c3-b06b2735bc0f/\", \"task_id\": \"a0568853-83f0-47b3-b7c3-b06b2735bc0f\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:48Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:49Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"a0568853-83f0-47b3-b7c3-b06b2735bc0f\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/091b0c7a-deed-4528-b52a-f5908bbec30a/\", \"task_id\": \"091b0c7a-deed-4528-b52a-f5908bbec30a\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:14Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:14Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"091b0c7a-deed-4528-b52a-f5908bbec30a\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:50 GMT + recorded_at: Thu, 01 Aug 2013 13:06:16 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/831a5357-78b1-411a-9d8d-c27e893da0ce/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/b14a63cc-bfbc-4b3f-879f-670f66c7e9fc/ body: encoding: US-ASCII string: "" @@ -162,7 +162,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="b0kJoUh4EeLX1BrafAfduqlRzOdb1ARaWoDtrMujc", oauth_signature="lYxRIAsxISYD8ykF2kbZV7fx0ZU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196511", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="iVinmmugrpRuSvXQkChtNIW8gfws4cpfFZwoDFUw4", oauth_signature="Iq6lioL8Kon4Hb%2BMa7s4yEXYm94%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362377", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -173,7 +173,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:51 GMT + - Thu, 01 Aug 2013 13:06:17 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -182,12 +182,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/831a5357-78b1-411a-9d8d-c27e893da0ce/\", \"task_id\": \"831a5357-78b1-411a-9d8d-c27e893da0ce\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:49Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:49Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"831a5357-78b1-411a-9d8d-c27e893da0ce\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/b14a63cc-bfbc-4b3f-879f-670f66c7e9fc/\", \"task_id\": \"b14a63cc-bfbc-4b3f-879f-670f66c7e9fc\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:14Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:14Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"b14a63cc-bfbc-4b3f-879f-670f66c7e9fc\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:51 GMT + recorded_at: Thu, 01 Aug 2013 13:06:17 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/241d8ed4-3380-4cf2-8628-ccdd1802a365/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/e3eb0404-9793-41fc-b014-c300dc8ca46c/ body: encoding: US-ASCII string: "" @@ -199,7 +199,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="VdTwgIYdZuPsM2v1TC10b0uCaRJHz5RBGkM0BCfX2kA", oauth_signature="LF8Q%2BzmVI%2B9u%2FhVc29fsVD9Fhvc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196512", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="9xDmXtP9x31A1NBJfCLWbZjXbzMEYNxXaaVVllg4", oauth_signature="6W9X0b7hZEqONBuY86LZ1sg7kSU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362377", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -210,21 +210,21 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:52 GMT + - Thu, 01 Aug 2013 13:06:17 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "1103" + - "1111" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": \"992d80b5-4d8d-42e5-b069-b079dbe9bdfa\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/241d8ed4-3380-4cf2-8628-ccdd1802a365/\", \"task_id\": \"241d8ed4-3380-4cf2-8628-ccdd1802a365\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:52Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"992d80b5-4d8d-42e5-b069-b079dbe9bdfa\", \"call_request_id\": \"241d8ed4-3380-4cf2-8628-ccdd1802a365\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": \"6316419a-03d1-4533-b0ac-7f1afb569890\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/e3eb0404-9793-41fc-b014-c300dc8ca46c/\", \"task_id\": \"e3eb0404-9793-41fc-b014-c300dc8ca46c\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:17Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 5, \"items_total\": 8, \"state\": \"IN_PROGRESS\", \"size_left\": 11172, \"details\": {\"rpm_total\": 8, \"rpm_done\": 3, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"6316419a-03d1-4533-b0ac-7f1afb569890\", \"call_request_id\": \"e3eb0404-9793-41fc-b014-c300dc8ca46c\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:52 GMT + recorded_at: Thu, 01 Aug 2013 13:06:17 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/241d8ed4-3380-4cf2-8628-ccdd1802a365/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/e3eb0404-9793-41fc-b014-c300dc8ca46c/ body: encoding: US-ASCII string: "" @@ -236,7 +236,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="leg4SrodBPxJlWJVlFUyZLcEffZBzoowPWx2jmmdXA", oauth_signature="yGVctx781fWiHhI2cBii99UIDy4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196512", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="M3kJsWakldUESBup3HyQ5LVvNKHQn7Xyc5IuOIxicY", oauth_signature="kEIu1m8Mfw4qHRw8U3FZoEmaHyg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362378", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -247,7 +247,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:52 GMT + - Thu, 01 Aug 2013 13:06:18 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -256,12 +256,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": \"992d80b5-4d8d-42e5-b069-b079dbe9bdfa\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/241d8ed4-3380-4cf2-8628-ccdd1802a365/\", \"task_id\": \"241d8ed4-3380-4cf2-8628-ccdd1802a365\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:52Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:52Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"992d80b5-4d8d-42e5-b069-b079dbe9bdfa\", \"call_request_id\": \"241d8ed4-3380-4cf2-8628-ccdd1802a365\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-07-30T11:01:52-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-07-30T11:01:52-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51f7d5605ca0137fe7579e82\", \"removed_count\": 0}}" + string: "{\"task_group_id\": \"6316419a-03d1-4533-b0ac-7f1afb569890\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/e3eb0404-9793-41fc-b014-c300dc8ca46c/\", \"task_id\": \"e3eb0404-9793-41fc-b014-c300dc8ca46c\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:17Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:18Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"6316419a-03d1-4533-b0ac-7f1afb569890\", \"call_request_id\": \"e3eb0404-9793-41fc-b014-c300dc8ca46c\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:06:17-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:06:18-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d4a5ca013687ad58d2e\", \"removed_count\": 0}}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:52 GMT + recorded_at: Thu, 01 Aug 2013 13:06:18 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/4a6d45dd-1e66-4b12-a3c1-d65f7e0192a7/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/628806e7-72d0-4038-a9f3-e5da0d85ccde/ body: encoding: US-ASCII string: "" @@ -273,7 +273,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="lBgqELOuQX0xpipm3pNSwf7wP6JIPnyLnZZch1OA", oauth_signature="XZ30gVq1rphm2GDBtgf%2FJ2ddCrg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196514", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="gsoIiFjs8ej2tFoBqrbb78Oj35khTzr5yu51kPdu1Ww", oauth_signature="Yx4WUWGompxuv9EMhgjuB1sv%2FMk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362380", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -284,21 +284,21 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:54 GMT + - Thu, 01 Aug 2013 13:06:20 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "1111" + - "1103" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": \"93989cd9-275e-4229-a04e-9e1d209d8ad2\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/4a6d45dd-1e66-4b12-a3c1-d65f7e0192a7/\", \"task_id\": \"4a6d45dd-1e66-4b12-a3c1-d65f7e0192a7\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:54Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 8, \"items_total\": 8, \"state\": \"IN_PROGRESS\", \"size_left\": 17872, \"details\": {\"rpm_total\": 8, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"93989cd9-275e-4229-a04e-9e1d209d8ad2\", \"call_request_id\": \"4a6d45dd-1e66-4b12-a3c1-d65f7e0192a7\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": \"772a7450-940c-43e7-b641-132af3f28e37\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/628806e7-72d0-4038-a9f3-e5da0d85ccde/\", \"task_id\": \"628806e7-72d0-4038-a9f3-e5da0d85ccde\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:20Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"772a7450-940c-43e7-b641-132af3f28e37\", \"call_request_id\": \"628806e7-72d0-4038-a9f3-e5da0d85ccde\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:54 GMT + recorded_at: Thu, 01 Aug 2013 13:06:20 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/4a6d45dd-1e66-4b12-a3c1-d65f7e0192a7/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/628806e7-72d0-4038-a9f3-e5da0d85ccde/ body: encoding: US-ASCII string: "" @@ -310,7 +310,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="NA7HPU5oVjiUj5YaUwrkp27RR1EldRK1UdU0fDQM", oauth_signature="BBilcAKpkHXJWM%2FH9%2BOYGJ5Livw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196515", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="FicLettrCWODL6KHfSgl7UjgAWz5DVYkJUmI448VY", oauth_signature="1v1YwaJZomwzGgAulMJn%2Fua4Aes%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362381", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -321,7 +321,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:55 GMT + - Thu, 01 Aug 2013 13:06:21 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -330,12 +330,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": \"93989cd9-275e-4229-a04e-9e1d209d8ad2\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/4a6d45dd-1e66-4b12-a3c1-d65f7e0192a7/\", \"task_id\": \"4a6d45dd-1e66-4b12-a3c1-d65f7e0192a7\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:54Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:55Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"93989cd9-275e-4229-a04e-9e1d209d8ad2\", \"call_request_id\": \"4a6d45dd-1e66-4b12-a3c1-d65f7e0192a7\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-07-30T11:01:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-07-30T11:01:55-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51f7d5635ca0137fe7579eed\", \"removed_count\": 0}}" + string: "{\"task_group_id\": \"772a7450-940c-43e7-b641-132af3f28e37\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/628806e7-72d0-4038-a9f3-e5da0d85ccde/\", \"task_id\": \"628806e7-72d0-4038-a9f3-e5da0d85ccde\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:20Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:20Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"772a7450-940c-43e7-b641-132af3f28e37\", \"call_request_id\": \"628806e7-72d0-4038-a9f3-e5da0d85ccde\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:06:20-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:06:20-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d4c5ca013687ad58d99\", \"removed_count\": 0}}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:55 GMT + recorded_at: Thu, 01 Aug 2013 13:06:21 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/615c1ab8-cce7-47b1-9817-4950c4f50ad6/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/f6e1d238-da54-4ab1-9cdf-f785a6b7fb5d/ body: encoding: US-ASCII string: "" @@ -347,7 +347,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="7dovRcrcvc6ukHiGXhCKOm4ZKvG64zdoaOygXkoHMc", oauth_signature="cebtsw2z8sxo7xuUMBNMvCVFK2o%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196516", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="vUCEMzFTHqN62oyzPsdgXlS6kqeiHQLc0WGemWFB6EA", oauth_signature="Ml8uyJ9OwHZrvkt9HQj4lJN5BCk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362382", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -358,7 +358,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:56 GMT + - Thu, 01 Aug 2013 13:06:22 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -367,12 +367,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/615c1ab8-cce7-47b1-9817-4950c4f50ad6/\", \"task_id\": \"615c1ab8-cce7-47b1-9817-4950c4f50ad6\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:56Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:56Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"615c1ab8-cce7-47b1-9817-4950c4f50ad6\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"name\": \"cheetah\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"giraffe\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"lion\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"monkey\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"penguin\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"squirrel\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"walrus\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}]}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/f6e1d238-da54-4ab1-9cdf-f785a6b7fb5d/\", \"task_id\": \"f6e1d238-da54-4ab1-9cdf-f785a6b7fb5d\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:22Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:22Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"f6e1d238-da54-4ab1-9cdf-f785a6b7fb5d\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"name\": \"cheetah\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"giraffe\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"lion\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"monkey\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"penguin\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"squirrel\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"walrus\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:56 GMT + recorded_at: Thu, 01 Aug 2013 13:06:22 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/b51213ef-ad64-429e-8275-ea51ae18d389/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/d7df961d-b091-43b6-a6d3-fd1884452662/ body: encoding: US-ASCII string: "" @@ -384,7 +384,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="Lfm7bPF7WrgBiq2aZvQrX9QV3MCCD5R6YDD05MFU", oauth_signature="XaOuWUtO%2BFzp%2BOw1NhGZvs5chYQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196517", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="sGrSE3hE5izHJOFjkwyqTSi5nSb5oSHvKANowDbA", oauth_signature="yLTNpzgtW35M3tIgD0osrjpW1uM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362383", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -395,21 +395,21 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:57 GMT + - Thu, 01 Aug 2013 13:06:23 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "1196" + - "1032" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/b51213ef-ad64-429e-8275-ea51ae18d389/\", \"task_id\": \"b51213ef-ad64-429e-8275-ea51ae18d389\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [{\"operation\": \"update\", \"resource_type\": \"repository\", \"resource_id\": \"acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\"}], \"start_time\": \"2013-07-30T15:01:56Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:56Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"b51213ef-ad64-429e-8275-ea51ae18d389\", \"principal_login\": \"admin\", \"response\": \"postponed\", \"result\": [{\"unit_key\": {\"arch\": \"x86_64\", \"version\": \"16\", \"variant\": \"TestVariant\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\"}, \"type_id\": \"distribution\"}]}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/d7df961d-b091-43b6-a6d3-fd1884452662/\", \"task_id\": \"d7df961d-b091-43b6-a6d3-fd1884452662\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:22Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:22Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"d7df961d-b091-43b6-a6d3-fd1884452662\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"arch\": \"x86_64\", \"version\": \"16\", \"variant\": \"TestVariant\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\"}, \"type_id\": \"distribution\"}]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:57 GMT + recorded_at: Thu, 01 Aug 2013 13:06:23 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/782d9759-697b-4994-b918-04c77fe95dca/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/ed637cfe-88f2-4036-96e3-441b035f9335/ body: encoding: US-ASCII string: "" @@ -421,7 +421,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="LOQGE0KVywfh08ckYGLtazkIjcNRq5vdUbloOAx2do", oauth_signature="9bE%2BFaqhb0ZtG%2BaFfZkN8rKp0n8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196518", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="YEROLlvkwM79Gjd2JfVTO4QUecV52i4zNnmQmNIzMA", oauth_signature="jd12d%2F6qVAmhBsFJ4yoOTuMaTUg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362383", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -432,7 +432,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:58 GMT + - Thu, 01 Aug 2013 13:06:23 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -441,12 +441,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/782d9759-697b-4994-b918-04c77fe95dca/\", \"task_id\": \"782d9759-697b-4994-b918-04c77fe95dca\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:56Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:56Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"782d9759-697b-4994-b918-04c77fe95dca\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"id\": \"RHEA-2010:0001\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHEA-2010:0002\"}, \"type_id\": \"erratum\"}]}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/ed637cfe-88f2-4036-96e3-441b035f9335/\", \"task_id\": \"ed637cfe-88f2-4036-96e3-441b035f9335\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:22Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:22Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"ed637cfe-88f2-4036-96e3-441b035f9335\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"id\": \"RHEA-2010:0001\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHEA-2010:0002\"}, \"type_id\": \"erratum\"}]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:58 GMT + recorded_at: Thu, 01 Aug 2013 13:06:23 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/71297e6e-c56a-49ef-a1e1-77f7db19f6ef/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/c0bb2d32-3559-4965-b483-d329ccfa8b52/ body: encoding: US-ASCII string: "" @@ -458,7 +458,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="Lnmn8I3o5JLn02MYjXxUk8nUL2s7qky7wHZ2MY6HTn0", oauth_signature="ocBgYvS6Iy9H%2BigK2VRl1MZU16A%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196518", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="0cCfLbzD4FvTO1bjdGqrpFdgtiYmyzqKLvo5VpQ", oauth_signature="lxM7t3h1vZX1Y%2Bcv178Kj%2B%2Bb%2B2c%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362384", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -469,7 +469,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:58 GMT + - Thu, 01 Aug 2013 13:06:24 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -478,12 +478,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/71297e6e-c56a-49ef-a1e1-77f7db19f6ef/\", \"task_id\": \"71297e6e-c56a-49ef-a1e1-77f7db19f6ef\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:56Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:56Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"71297e6e-c56a-49ef-a1e1-77f7db19f6ef\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"repo_id\": \"acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"id\": \"bird\"}, \"type_id\": \"package_group\"}, {\"unit_key\": {\"repo_id\": \"acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"id\": \"mammal\"}, \"type_id\": \"package_group\"}]}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/c0bb2d32-3559-4965-b483-d329ccfa8b52/\", \"task_id\": \"c0bb2d32-3559-4965-b483-d329ccfa8b52\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:22Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:22Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"c0bb2d32-3559-4965-b483-d329ccfa8b52\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"repo_id\": \"acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"id\": \"bird\"}, \"type_id\": \"package_group\"}, {\"unit_key\": {\"repo_id\": \"acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"id\": \"mammal\"}, \"type_id\": \"package_group\"}]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:58 GMT + recorded_at: Thu, 01 Aug 2013 13:06:24 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/6f0f6ed4-293d-4c1f-bff5-c4b3f185a02b/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/f9391591-9ce6-4979-801a-7b3f04fb899a/ body: encoding: US-ASCII string: "" @@ -495,7 +495,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="WYIrE8ZqCDXxOxn1ANvUfuLfx1sy9KP9pLVq6StL0", oauth_signature="3b56nElAlRtlnjvzOvf3LNQQGpg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196519", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="Mf9l7Gow2tfaFAeneAu9lOObhcbuvoiP006lXy3w4", oauth_signature="fFxZyme2DIljA4IXo%2F%2BeY9DgTyM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362384", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -506,7 +506,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:59 GMT + - Thu, 01 Aug 2013 13:06:24 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -515,12 +515,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/6f0f6ed4-293d-4c1f-bff5-c4b3f185a02b/\", \"task_id\": \"6f0f6ed4-293d-4c1f-bff5-c4b3f185a02b\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:56Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:56Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"6f0f6ed4-293d-4c1f-bff5-c4b3f185a02b\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/f9391591-9ce6-4979-801a-7b3f04fb899a/\", \"task_id\": \"f9391591-9ce6-4979-801a-7b3f04fb899a\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:22Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:22Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"f9391591-9ce6-4979-801a-7b3f04fb899a\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:59 GMT + recorded_at: Thu, 01 Aug 2013 13:06:24 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/0869d615-b991-4c95-8b92-6436c335510c/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/9604e52a-ad89-4960-92a7-e2d0bc3b346d/ body: encoding: US-ASCII string: "" @@ -532,7 +532,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="ScD6ozaRM0Pvwj0dD8h0oBY7qFkryz3ILLKMHPCs0k", oauth_signature="vxMKSfgBfdux6AVej%2BmgaEH7VlE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196521", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="AM8uT0hoYB7CQnE9OWTeolp20oXpxq8irq7ChmpZvxA", oauth_signature="LgYPDqTrHmTYZ87EZkqdn2plxQw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362386", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -543,7 +543,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:01 GMT + - Thu, 01 Aug 2013 13:06:26 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -552,12 +552,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": \"1b2d5343-4ccc-4de4-96b5-86f407acdc09\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/0869d615-b991-4c95-8b92-6436c335510c/\", \"task_id\": \"0869d615-b991-4c95-8b92-6436c335510c\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:01Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"1b2d5343-4ccc-4de4-96b5-86f407acdc09\", \"call_request_id\": \"0869d615-b991-4c95-8b92-6436c335510c\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": \"aba76d00-b2dc-4e25-850f-1a4b8a4a96b5\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/9604e52a-ad89-4960-92a7-e2d0bc3b346d/\", \"task_id\": \"9604e52a-ad89-4960-92a7-e2d0bc3b346d\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:26Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"aba76d00-b2dc-4e25-850f-1a4b8a4a96b5\", \"call_request_id\": \"9604e52a-ad89-4960-92a7-e2d0bc3b346d\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:01 GMT + recorded_at: Thu, 01 Aug 2013 13:06:26 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/0869d615-b991-4c95-8b92-6436c335510c/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/9604e52a-ad89-4960-92a7-e2d0bc3b346d/ body: encoding: US-ASCII string: "" @@ -569,7 +569,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="LVxmVXbQEWlDt2kjR4OlhcSich8iV9Rpgl78XpTcAs", oauth_signature="B%2BqpulF31ZeleOywe0oDSvWyK7s%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196522", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="G22WhaIhFS7sgoTkXpyX2AMmuqg8F9CQRQXBKgy1EE", oauth_signature="jKcx6ptraS3aF2ROfBg9QfvbMsA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362387", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -580,7 +580,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:02 GMT + - Thu, 01 Aug 2013 13:06:27 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -589,12 +589,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": \"1b2d5343-4ccc-4de4-96b5-86f407acdc09\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/0869d615-b991-4c95-8b92-6436c335510c/\", \"task_id\": \"0869d615-b991-4c95-8b92-6436c335510c\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:01Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:02:01Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"1b2d5343-4ccc-4de4-96b5-86f407acdc09\", \"call_request_id\": \"0869d615-b991-4c95-8b92-6436c335510c\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-07-30T11:02:01-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-07-30T11:02:01-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51f7d5695ca0137fe7579fab\", \"removed_count\": 0}}" + string: "{\"task_group_id\": \"aba76d00-b2dc-4e25-850f-1a4b8a4a96b5\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/9604e52a-ad89-4960-92a7-e2d0bc3b346d/\", \"task_id\": \"9604e52a-ad89-4960-92a7-e2d0bc3b346d\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:26Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:27Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"aba76d00-b2dc-4e25-850f-1a4b8a4a96b5\", \"call_request_id\": \"9604e52a-ad89-4960-92a7-e2d0bc3b346d\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:06:26-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:06:27-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d535ca013687ad58e57\", \"removed_count\": 0}}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:02 GMT + recorded_at: Thu, 01 Aug 2013 13:06:27 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/ac4df65a-7373-44b2-bf7a-42167d8eb435/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/87c419b3-6d9e-4f2b-9527-30be9a918736/ body: encoding: US-ASCII string: "" @@ -606,7 +606,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="gJV5yYsCpbh5k32VXKkZMVsi4tmHIGPimL2RIaeGk", oauth_signature="NDuB53dTZ0j77dJSf3ujFPEWKeo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196523", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="q3UBZ8KpnHNQmurKenMEDBPypa45PvWTk7eFBYvhL4", oauth_signature="RhDLxY0Ruy1KBldGjwUV8SsWkgg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362388", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -617,7 +617,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:03 GMT + - Thu, 01 Aug 2013 13:06:28 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -626,12 +626,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/ac4df65a-7373-44b2-bf7a-42167d8eb435/\", \"task_id\": \"ac4df65a-7373-44b2-bf7a-42167d8eb435\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:02Z\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:02:03Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"ac4df65a-7373-44b2-bf7a-42167d8eb435\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"name\": \"cheetah\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"giraffe\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"lion\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"monkey\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"penguin\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"squirrel\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"walrus\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}]}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/87c419b3-6d9e-4f2b-9527-30be9a918736/\", \"task_id\": \"87c419b3-6d9e-4f2b-9527-30be9a918736\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:28Z\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:28Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"87c419b3-6d9e-4f2b-9527-30be9a918736\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"name\": \"cheetah\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"giraffe\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"lion\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"monkey\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"penguin\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"squirrel\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"walrus\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:03 GMT + recorded_at: Thu, 01 Aug 2013 13:06:28 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/5314ca92-7631-4ad7-a45f-8fde7cf521e6/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/9a1b1733-5f31-45da-a659-209324e68344/ body: encoding: US-ASCII string: "" @@ -643,7 +643,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="eI0PEEdltRefdVIwT13Whowy6omxJ7eRKFIpEJm0k", oauth_signature="%2FZP4RgRgiwDp8nJVTyheKZmoXdM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196523", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="v4aAb7Wrfds5QgYzxc3mPr9PNhhR2Wh6n9FGajEo", oauth_signature="FpZPtk1%2BEmp5Tedrahu6tbnNkgI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362389", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -654,21 +654,21 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:04 GMT + - Thu, 01 Aug 2013 13:06:29 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: - - "854" + - "929" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/5314ca92-7631-4ad7-a45f-8fde7cf521e6/\", \"task_id\": \"5314ca92-7631-4ad7-a45f-8fde7cf521e6\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:03Z\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:02:03Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"5314ca92-7631-4ad7-a45f-8fde7cf521e6\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"arch\": \"x86_64\", \"version\": \"16\", \"variant\": \"TestVariant\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\"}, \"type_id\": \"distribution\"}]}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/9a1b1733-5f31-45da-a659-209324e68344/\", \"task_id\": \"9a1b1733-5f31-45da-a659-209324e68344\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [{\"operation\": \"update\", \"resource_type\": \"repository\", \"resource_id\": \"2\"}], \"start_time\": \"2013-08-01T13:06:28Z\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:28Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"9a1b1733-5f31-45da-a659-209324e68344\", \"principal_login\": \"admin\", \"response\": \"postponed\", \"result\": [{\"unit_key\": {\"arch\": \"x86_64\", \"version\": \"16\", \"variant\": \"TestVariant\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\"}, \"type_id\": \"distribution\"}]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:04 GMT + recorded_at: Thu, 01 Aug 2013 13:06:29 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/eb523337-a030-499f-884a-eaf17fac98bd/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/13c2b3ea-38dc-42b4-8ad7-c69634ad490c/ body: encoding: US-ASCII string: "" @@ -680,7 +680,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="jgTl7lIZdmWWSGGCWYsnzdX8ZuoRuRMH6gAJ9Vo", oauth_signature="QwAaF%2F0Q%2FDD%2FNKlkSReFPgJm32E%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196524", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="v0pIxLkRr76VDcItTnAE0MOHZt7EOf4QazgBO0iJA", oauth_signature="FMIh%2Fymr7LJju7yrOn0HJBMzTUU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362389", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -691,7 +691,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:04 GMT + - Thu, 01 Aug 2013 13:06:29 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -700,12 +700,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/eb523337-a030-499f-884a-eaf17fac98bd/\", \"task_id\": \"eb523337-a030-499f-884a-eaf17fac98bd\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:03Z\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:02:03Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"eb523337-a030-499f-884a-eaf17fac98bd\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"id\": \"RHEA-2010:0001\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHEA-2010:0002\"}, \"type_id\": \"erratum\"}]}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/13c2b3ea-38dc-42b4-8ad7-c69634ad490c/\", \"task_id\": \"13c2b3ea-38dc-42b4-8ad7-c69634ad490c\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:28Z\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:28Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"13c2b3ea-38dc-42b4-8ad7-c69634ad490c\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"id\": \"RHEA-2010:0001\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHEA-2010:0002\"}, \"type_id\": \"erratum\"}]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:04 GMT + recorded_at: Thu, 01 Aug 2013 13:06:30 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/152c629b-261e-4bbc-a59e-f9b8f7c3a755/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/4a95c730-1c78-4014-a066-bb160bd66266/ body: encoding: US-ASCII string: "" @@ -717,7 +717,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="oy8OUEwbtMUERAn3Ok7D2eSqRh0OH5KpvmUJnWxE", oauth_signature="L6jOLNglJVawx6kOlrusa1h64%2F8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196525", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="ioR7m5IdHwEc72qCTiRfYcvsc7csC0lYhqdd5WPvw4", oauth_signature="rmpStbr36xw9a2sx7DfTG%2BK7t7I%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362390", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -728,7 +728,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:05 GMT + - Thu, 01 Aug 2013 13:06:30 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -737,12 +737,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/152c629b-261e-4bbc-a59e-f9b8f7c3a755/\", \"task_id\": \"152c629b-261e-4bbc-a59e-f9b8f7c3a755\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:03Z\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:02:03Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"152c629b-261e-4bbc-a59e-f9b8f7c3a755\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"repo_id\": \"2\", \"id\": \"bird\"}, \"type_id\": \"package_group\"}, {\"unit_key\": {\"repo_id\": \"2\", \"id\": \"mammal\"}, \"type_id\": \"package_group\"}]}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/4a95c730-1c78-4014-a066-bb160bd66266/\", \"task_id\": \"4a95c730-1c78-4014-a066-bb160bd66266\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:28Z\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:28Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"4a95c730-1c78-4014-a066-bb160bd66266\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"repo_id\": \"2\", \"id\": \"bird\"}, \"type_id\": \"package_group\"}, {\"unit_key\": {\"repo_id\": \"2\", \"id\": \"mammal\"}, \"type_id\": \"package_group\"}]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:05 GMT + recorded_at: Thu, 01 Aug 2013 13:06:30 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/73825c28-32ac-40c1-8bf0-6b5ab17dae7b/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/3626e3fb-53f0-442d-8794-4430040c4c54/ body: encoding: US-ASCII string: "" @@ -754,7 +754,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="K3i6R3lXjvPRp4Gfwh7e1l7tBBJiIeUCDBqj5Baig", oauth_signature="5G%2FUtWBo8uiKm3BrVfOcnmLssqM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196525", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="IJa7BPXLozVjoH6wt72tK1LgRuYEhQ2qzdC4ENFc", oauth_signature="HPSMfS5u0JUf25%2BsTV3hqMpfDxs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362391", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -765,7 +765,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:05 GMT + - Thu, 01 Aug 2013 13:06:31 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -774,12 +774,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/73825c28-32ac-40c1-8bf0-6b5ab17dae7b/\", \"task_id\": \"73825c28-32ac-40c1-8bf0-6b5ab17dae7b\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:03Z\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:02:03Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"73825c28-32ac-40c1-8bf0-6b5ab17dae7b\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/3626e3fb-53f0-442d-8794-4430040c4c54/\", \"task_id\": \"3626e3fb-53f0-442d-8794-4430040c4c54\", \"call_request_tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:28Z\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:28Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"3626e3fb-53f0-442d-8794-4430040c4c54\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:05 GMT + recorded_at: Thu, 01 Aug 2013 13:06:31 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/f3b392e7-9b5f-418a-bf7a-1459433a053a/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/e66e569d-0b38-48f4-bd77-0d79f51c25a2/ body: encoding: US-ASCII string: "" @@ -791,7 +791,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="iZclxCQfmIrA38ljsE5neUzQEoBxfJX99rzieT5fQY", oauth_signature="%2FxrTtQdqekF5cSNDAmoUwXlM20I%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196529", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="IlJLO3qZBXTuewbje2PSYrMn9OikXBVQDTgtQ9D1qnk", oauth_signature="4zBURHtt3uK69bLzHLSdbE9VdRc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362394", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -802,7 +802,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:09 GMT + - Thu, 01 Aug 2013 13:06:34 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -811,12 +811,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/f3b392e7-9b5f-418a-bf7a-1459433a053a/\", \"task_id\": \"f3b392e7-9b5f-418a-bf7a-1459433a053a\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:09Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:02:09Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"f3b392e7-9b5f-418a-bf7a-1459433a053a\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"name\": \"cheetah\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"giraffe\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"lion\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"monkey\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"penguin\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"squirrel\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"walrus\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}]}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/e66e569d-0b38-48f4-bd77-0d79f51c25a2/\", \"task_id\": \"e66e569d-0b38-48f4-bd77-0d79f51c25a2\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:34Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:34Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"e66e569d-0b38-48f4-bd77-0d79f51c25a2\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"name\": \"cheetah\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"giraffe\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"lion\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"monkey\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"penguin\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"squirrel\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"walrus\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:09 GMT + recorded_at: Thu, 01 Aug 2013 13:06:34 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/f18581d0-3e42-4463-ab69-0c0e876030f3/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/0a62d0b7-b773-4b70-b441-ccd2bc59231a/ body: encoding: US-ASCII string: "" @@ -828,7 +828,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="WuuCNXP22PR2Eopx1f0sFYKqqtUH8iMOW80Rdw", oauth_signature="lnkfEVeW8IL9vXb59BZgPXG52TQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196530", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="kEHcjWNmOzMENBBWfroYS6pZeEENxtylOVlrgXEpco", oauth_signature="4IVgKImfSD5YR7mMjR8osn7gCNg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362395", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -839,7 +839,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:10 GMT + - Thu, 01 Aug 2013 13:06:35 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -848,12 +848,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/f18581d0-3e42-4463-ab69-0c0e876030f3/\", \"task_id\": \"f18581d0-3e42-4463-ab69-0c0e876030f3\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:09Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:02:09Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"f18581d0-3e42-4463-ab69-0c0e876030f3\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"arch\": \"x86_64\", \"version\": \"16\", \"variant\": \"TestVariant\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\"}, \"type_id\": \"distribution\"}]}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/0a62d0b7-b773-4b70-b441-ccd2bc59231a/\", \"task_id\": \"0a62d0b7-b773-4b70-b441-ccd2bc59231a\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:34Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:34Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"0a62d0b7-b773-4b70-b441-ccd2bc59231a\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"arch\": \"x86_64\", \"version\": \"16\", \"variant\": \"TestVariant\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\"}, \"type_id\": \"distribution\"}]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:10 GMT + recorded_at: Thu, 01 Aug 2013 13:06:35 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/b31e320c-8b2d-43ec-91d6-baa8a21f154e/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/a0d554c4-caba-417d-bbfd-63e6eb8dbf30/ body: encoding: US-ASCII string: "" @@ -865,7 +865,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="3jXB3gbyHXc2ZLW16KNWSAOsq25gBdGigTT00Pr8TXw", oauth_signature="Q7CsTeIxRHgGgJUwgvujkxy76FQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196530", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="8KimKN8849yterm5gjcT8yQCLfq8skw2PhfyfjuZ7I", oauth_signature="E2%2Fl7Iy1MAgtRGQClLeftNGgBBw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362395", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -876,7 +876,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:10 GMT + - Thu, 01 Aug 2013 13:06:35 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -885,12 +885,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/b31e320c-8b2d-43ec-91d6-baa8a21f154e/\", \"task_id\": \"b31e320c-8b2d-43ec-91d6-baa8a21f154e\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:09Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:02:09Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"b31e320c-8b2d-43ec-91d6-baa8a21f154e\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"id\": \"RHEA-2010:0001\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHEA-2010:0002\"}, \"type_id\": \"erratum\"}]}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/a0d554c4-caba-417d-bbfd-63e6eb8dbf30/\", \"task_id\": \"a0d554c4-caba-417d-bbfd-63e6eb8dbf30\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:34Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:34Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"a0d554c4-caba-417d-bbfd-63e6eb8dbf30\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"id\": \"RHEA-2010:0001\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHEA-2010:0002\"}, \"type_id\": \"erratum\"}]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:10 GMT + recorded_at: Thu, 01 Aug 2013 13:06:35 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/7038720e-5eb7-480f-8d49-15d478b8ee06/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/5ca1af40-acd2-4b50-802e-8c1d1f41d243/ body: encoding: US-ASCII string: "" @@ -902,7 +902,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="9oidtHfhIFJYB7YdlwnzM8vtJikWzAzdLusyRVN89E", oauth_signature="KiEn1T%2FOhEuwSK7q03KYwi%2F4ChU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196531", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="SojIs6VAjvb22oupGkeKNxYPmOKNll0GH3tTPAXbZGw", oauth_signature="y11pwGuMPtxUBdGizPam2QicsQw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362396", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -913,7 +913,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:11 GMT + - Thu, 01 Aug 2013 13:06:36 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -922,12 +922,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/7038720e-5eb7-480f-8d49-15d478b8ee06/\", \"task_id\": \"7038720e-5eb7-480f-8d49-15d478b8ee06\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:09Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:02:09Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"7038720e-5eb7-480f-8d49-15d478b8ee06\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"repo_id\": \"acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"id\": \"bird\"}, \"type_id\": \"package_group\"}, {\"unit_key\": {\"repo_id\": \"acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"id\": \"mammal\"}, \"type_id\": \"package_group\"}]}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/5ca1af40-acd2-4b50-802e-8c1d1f41d243/\", \"task_id\": \"5ca1af40-acd2-4b50-802e-8c1d1f41d243\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:34Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:34Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"5ca1af40-acd2-4b50-802e-8c1d1f41d243\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": [{\"unit_key\": {\"repo_id\": \"acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"id\": \"bird\"}, \"type_id\": \"package_group\"}, {\"unit_key\": {\"repo_id\": \"acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"id\": \"mammal\"}, \"type_id\": \"package_group\"}]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:11 GMT + recorded_at: Thu, 01 Aug 2013 13:06:36 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/776058c6-63f4-446e-b7ea-352488e860c5/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/67d905e2-4e0b-4c08-8a88-a9e9f7732621/ body: encoding: US-ASCII string: "" @@ -939,7 +939,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="mLW2LXp9re7R3jM6wDSJs6azmS8c6rexGhJCrHkmlc", oauth_signature="aOZ1BwO%2BrboQAHuxSFfAqs37kH0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196531", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="kllKQNu3kyjdNRXf2caCShoUM9AyjPA4eqVnTqqwAU", oauth_signature="NJHogs16xvFf%2BClx5%2FpJ8v4yaWI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362396", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -950,7 +950,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:11 GMT + - Thu, 01 Aug 2013 13:06:36 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -959,12 +959,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/776058c6-63f4-446e-b7ea-352488e860c5/\", \"task_id\": \"776058c6-63f4-446e-b7ea-352488e860c5\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:09Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:02:09Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"776058c6-63f4-446e-b7ea-352488e860c5\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" + string: "{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/67d905e2-4e0b-4c08-8a88-a9e9f7732621/\", \"task_id\": \"67d905e2-4e0b-4c08-8a88-a9e9f7732621\", \"call_request_tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:34Z\", \"tags\": [\"pulp:repository:acme_corporation_label-staging_label-org_default_label-fedora_label-fedora_17_x86_64_label\", \"pulp:repository:1\", \"pulp:action:associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:34Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"67d905e2-4e0b-4c08-8a88-a9e9f7732621\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": []}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:11 GMT + recorded_at: Thu, 01 Aug 2013 13:06:36 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/d677f8ac-1ae1-402e-bb76-f1eac6442dfb/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/7daada97-c824-41a0-bd14-5b251da43825/ body: encoding: US-ASCII string: "" @@ -976,7 +976,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="2dluvsDk68RwQfsXilAjNo0X5TNLmS6KoDBJHs7s3I", oauth_signature="U3QF2BuzbpDgD%2FT%2FzoV3%2BsGexn8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196534", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="IJsnCooOQs0rlE1P5yMbnTaHiycdPMsGw0HdFPI6z4", oauth_signature="jIo7DJh%2BVwAdfLBpxSf08UsqGb4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362399", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -987,7 +987,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:14 GMT + - Thu, 01 Aug 2013 13:06:39 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -996,12 +996,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": \"6be34339-8aa8-46db-958f-6d489c73425a\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/d677f8ac-1ae1-402e-bb76-f1eac6442dfb/\", \"task_id\": \"d677f8ac-1ae1-402e-bb76-f1eac6442dfb\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:14Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"6be34339-8aa8-46db-958f-6d489c73425a\", \"call_request_id\": \"d677f8ac-1ae1-402e-bb76-f1eac6442dfb\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + string: "{\"task_group_id\": \"71baf77c-d519-4fbc-8240-29898a0758fe\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/7daada97-c824-41a0-bd14-5b251da43825/\", \"task_id\": \"7daada97-c824-41a0-bd14-5b251da43825\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:39Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"71baf77c-d519-4fbc-8240-29898a0758fe\", \"call_request_id\": \"7daada97-c824-41a0-bd14-5b251da43825\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:14 GMT + recorded_at: Thu, 01 Aug 2013 13:06:39 GMT - request: method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/d677f8ac-1ae1-402e-bb76-f1eac6442dfb/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/7daada97-c824-41a0-bd14-5b251da43825/ body: encoding: US-ASCII string: "" @@ -1013,7 +1013,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="ZfK5wTwXOuiMqWAdpJ8N0AZDMWmmWL1tC0HaEucTA", oauth_signature="9Bv0uhKf2tE4%2BRbZe%2FVIX%2Fp%2BTo0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196535", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="ooUJNyWzX5BFKoALAiAq9s8XBnNJ62a6NVTTMtqyYg", oauth_signature="P4HbO4iJ8kY0Sqlw0pWnyawk40w%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362399", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -1024,7 +1024,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:15 GMT + - Thu, 01 Aug 2013 13:06:39 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -1033,7 +1033,7 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"task_group_id\": \"6be34339-8aa8-46db-958f-6d489c73425a\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/d677f8ac-1ae1-402e-bb76-f1eac6442dfb/\", \"task_id\": \"d677f8ac-1ae1-402e-bb76-f1eac6442dfb\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:02:14Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:02:15Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"6be34339-8aa8-46db-958f-6d489c73425a\", \"call_request_id\": \"d677f8ac-1ae1-402e-bb76-f1eac6442dfb\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-07-30T11:02:14-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-07-30T11:02:14-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51f7d5765ca0137fe757a0f7\", \"removed_count\": 0}}" + string: "{\"task_group_id\": \"71baf77c-d519-4fbc-8240-29898a0758fe\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/7daada97-c824-41a0-bd14-5b251da43825/\", \"task_id\": \"7daada97-c824-41a0-bd14-5b251da43825\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:39Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:39Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"71baf77c-d519-4fbc-8240-29898a0758fe\", \"call_request_id\": \"7daada97-c824-41a0-bd14-5b251da43825\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:06:39-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:06:39-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d5f5ca013687ad58f96\", \"removed_count\": 0}}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:15 GMT + recorded_at: Thu, 01 Aug 2013 13:06:39 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/glue_pulp_repo_units.yml b/test/fixtures/vcr_cassettes/glue_pulp_repo_units.yml index 2c94e93e663..c2e5d16c002 100644 --- a/test/fixtures/vcr_cassettes/glue_pulp_repo_units.yml +++ b/test/fixtures/vcr_cassettes/glue_pulp_repo_units.yml @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="bDnE4m6eiGm1LyvMTPdgILOwiRNM8QYYkdLm8lcddc", oauth_signature="N3Jh1h5g94HkeeMhcNdf40dF7dE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196527", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="Ai5imGYoyO20G1OWrYnrP0HdTBHl5FDUgso4B6oTc", oauth_signature="j881eA6gu8KJRfCQ1L582iZ49uU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362392", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,7 +27,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:07 GMT + - Thu, 01 Aug 2013 13:06:32 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -36,9 +36,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"updated\": \"2013-07-30T19:02:01Z\", \"repo_id\": \"1\", \"created\": \"2013-07-30T19:02:01Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"bea8cfd9-7fca-4d1e-a2d8-10834ad7e5d2\", \"unit_type_id\": \"distribution\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"51f7d5695ca0137fe7579fa2\"}, \"id\": \"51f7d5695ca0137fe7579fa2\", \"owner_id\": \"yum_importer\", \"metadata\": {\"files\": [{\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test2.img\", \"downloadurl\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5/images/test2.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmp8YYpw9/tmp4yzuZR/images/test2.img\", \"relativepath\": \"images/test2.img\", \"filename\": \"test2.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": 0.0}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"empty.iso\", \"downloadurl\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5/empty.iso\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmp8YYpw9/tmp4yzuZR/empty.iso\", \"relativepath\": \"empty.iso\", \"filename\": \"empty.iso\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/\", \"size\": 0.0}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test1.img\", \"downloadurl\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5/images/test1.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmp8YYpw9/tmp4yzuZR/images/test1.img\", \"relativepath\": \"images/test1.img\", \"filename\": \"test1.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": 0.0}], \"_storage_path\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\", \"_ns\": \"units_distribution\", \"variant\": \"TestVariant\", \"version\": \"16\", \"version_sort_index\": \"02-16\", \"_content_type_id\": \"distribution\", \"_id\": \"bea8cfd9-7fca-4d1e-a2d8-10834ad7e5d2\", \"arch\": \"x86_64\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\"}}]" + string: "[{\"updated\": \"2013-08-01T17:06:27Z\", \"repo_id\": \"1\", \"created\": \"2013-08-01T17:06:27Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"a6b22d58-4846-44a9-8200-d6b34fc2f067\", \"unit_type_id\": \"distribution\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"51fa5d535ca013687ad58e4e\"}, \"id\": \"51fa5d535ca013687ad58e4e\", \"owner_id\": \"yum_importer\", \"metadata\": {\"files\": [{\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test2.img\", \"downloadurl\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5/images/test2.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmp8eTaOL/tmptYFGoy/images/test2.img\", \"relativepath\": \"images/test2.img\", \"filename\": \"test2.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": 0.0}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"empty.iso\", \"downloadurl\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5/empty.iso\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmp8eTaOL/tmptYFGoy/empty.iso\", \"relativepath\": \"empty.iso\", \"filename\": \"empty.iso\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/\", \"size\": 0.0}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test1.img\", \"downloadurl\": \"file:///home/jlsherri/git/katello/test/fixtures/zoo5/images/test1.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmp8eTaOL/tmptYFGoy/images/test1.img\", \"relativepath\": \"images/test1.img\", \"filename\": \"test1.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": 0.0}], \"_storage_path\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\", \"_ns\": \"units_distribution\", \"variant\": \"TestVariant\", \"version\": \"16\", \"version_sort_index\": \"02-16\", \"_content_type_id\": \"distribution\", \"_id\": \"a6b22d58-4846-44a9-8200-d6b34fc2f067\", \"arch\": \"x86_64\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\"}}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:07 GMT + recorded_at: Thu, 01 Aug 2013 13:06:32 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/search/units/ @@ -53,7 +53,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="9vijex6W2ZsCsgAyihV37k9VbWv2Sjqt6rQFPe1JEQU", oauth_signature="Djsr7pIgqw4frSRjGLVwckUQpY8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196527", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="95JSxe91Xg3wM7hR3IMgzFCxNskRB3aYaQgJQ0rSs0", oauth_signature="fWqf0N8LJwasiFCRuK4AlKf1zQM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362392", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -66,7 +66,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:07 GMT + - Thu, 01 Aug 2013 13:06:32 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -75,15 +75,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579fa4\"}, \"unit_id\": \"1d6343f9-643e-49fc-94ab-f1b865b59708\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"1d6343f9-643e-49fc-94ab-f1b865b59708\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579fa5\"}, \"unit_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\"}}]" + string: "[{\"_id\": {\"$oid\": \"51fa5d535ca013687ad58e50\"}, \"unit_id\": \"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\"}}, {\"_id\": {\"$oid\": \"51fa5d535ca013687ad58e51\"}, \"unit_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\", \"unit_type_id\": \"erratum\", \"metadata\": {\"_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\"}}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:07 GMT + recorded_at: Thu, 01 Aug 2013 13:06:32 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/content/units/erratum/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"1d6343f9-643e-49fc-94ab-f1b865b59708\",\"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\"]}}},\"include_repos\":true}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\",\"8e0a5cb0-f804-4778-b34c-88085f594aae\"]}}},\"include_repos\":true}" headers: Accept: - application/json @@ -92,7 +92,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="Bc6HMqsGvY8WCcC58hBMurjf8tRLKLRzRO4A6bjag4", oauth_signature="5vmqXG8HZ8F6qXLt%2FtymZ7Ik%2BFU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196527", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="oVJ7Z53uYR6iSUofH5CAExRsczMSmKwBQGc9mIuT5Nc", oauth_signature="41ylh1hL9HuFnowrvL%2BqWvnGqgc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362392", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -105,7 +105,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:07 GMT + - Thu, 01 Aug 2013 13:06:32 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -114,15 +114,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"Empty errata\", \"title\": \"Empty errata\", \"pkglist\": [], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"1d6343f9-643e-49fc-94ab-f1b865b59708\", \"type\": \"security\", \"id\": \"RHEA-2010:0001\", \"_href\": \"/pulp/api/v2/content/units/erratum/1d6343f9-643e-49fc-94ab-f1b865b59708/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/4a8c6b9d-a0ff-4928-a00e-e09d8c6bf35a/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" + string: "[{\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"Empty errata\", \"title\": \"Empty errata\", \"pkglist\": [], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c\", \"type\": \"security\", \"id\": \"RHEA-2010:0001\", \"_href\": \"/pulp/api/v2/content/units/erratum/33cf1d32-bbf4-4dc7-8394-b7ead9d6c36c/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"status\": \"stable\", \"_storage_path\": null, \"from\": \"lzap+pub@redhat.com\", \"description\": \"One package errata\", \"title\": \"One package errata\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"version\": \"1\", \"issued\": \"2010-01-01 01:01:01\", \"_content_type_id\": \"erratum\", \"references\": [], \"_id\": \"8e0a5cb0-f804-4778-b34c-88085f594aae\", \"type\": \"security\", \"id\": \"RHEA-2010:0002\", \"_href\": \"/pulp/api/v2/content/units/erratum/8e0a5cb0-f804-4778-b34c-88085f594aae/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:07 GMT + recorded_at: Thu, 01 Aug 2013 13:06:32 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]},\"limit\":500,\"skip\":0}}" + string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" headers: Accept: - application/json @@ -131,11 +131,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="hNDmuipT7StHyQ0EdWqEu8YtXSoM1ta1nl3W7YoiuE", oauth_signature="0b3dRm7m99tfHnDwqxnF%2FTddcQ0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196528", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="KBTj3Jc8Pqn2FZ2zDFQqZD1phiwDH0oBQ77J3Rgul0", oauth_signature="yiSaHgNXG4ry71gVTLRKQ4o0T%2BI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362393", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "101" + - "80" User-Agent: - Ruby response: @@ -144,7 +144,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:08 GMT + - Thu, 01 Aug 2013 13:06:33 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -153,15 +153,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f9e\"}, \"unit_id\": \"2f90c716-86a4-4305-997c-7b8a67f571fe\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"2f90c716-86a4-4305-997c-7b8a67f571fe\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f9f\"}, \"unit_id\": \"07ef48cc-68dc-4cfc-81e7-20b00ce1f811\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"07ef48cc-68dc-4cfc-81e7-20b00ce1f811\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579fa1\"}, \"unit_id\": \"7bb51ae4-3cfc-4b81-86d4-a1d71c726657\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"7bb51ae4-3cfc-4b81-86d4-a1d71c726657\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579fa0\"}, \"unit_id\": \"8be62994-20a3-4be4-9783-db3dde5c0b5e\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"8be62994-20a3-4be4-9783-db3dde5c0b5e\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f9a\"}, \"unit_id\": \"fe5e4883-6601-4671-9b6c-54023a8f1af2\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"fe5e4883-6601-4671-9b6c-54023a8f1af2\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f9c\"}, \"unit_id\": \"5d4f5955-af8a-488a-9bbf-e710c9138f6b\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"5d4f5955-af8a-488a-9bbf-e710c9138f6b\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f9d\"}, \"unit_id\": \"c1b20e4f-3626-439e-bdb2-a3fd135df290\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"c1b20e4f-3626-439e-bdb2-a3fd135df290\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f9b\"}, \"unit_id\": \"05c9d540-36dc-49a1-8502-0dbebe955aca\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"05c9d540-36dc-49a1-8502-0dbebe955aca\"}}]" + string: "[{\"_id\": {\"$oid\": \"51fa5d535ca013687ad58e4a\"}, \"unit_id\": \"e80a9b95-626f-4d8d-83e8-53d49bc88c0d\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"e80a9b95-626f-4d8d-83e8-53d49bc88c0d\"}}, {\"_id\": {\"$oid\": \"51fa5d535ca013687ad58e4b\"}, \"unit_id\": \"aae86f30-023a-4d4c-a0b0-ed7cf840b843\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"aae86f30-023a-4d4c-a0b0-ed7cf840b843\"}}, {\"_id\": {\"$oid\": \"51fa5d535ca013687ad58e4d\"}, \"unit_id\": \"c4227539-5f5c-4f71-bfbf-3f88eea83238\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"c4227539-5f5c-4f71-bfbf-3f88eea83238\"}}, {\"_id\": {\"$oid\": \"51fa5d535ca013687ad58e4c\"}, \"unit_id\": \"b962fd4c-be85-4853-be0c-e41243ce5886\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"b962fd4c-be85-4853-be0c-e41243ce5886\"}}, {\"_id\": {\"$oid\": \"51fa5d525ca013687ad58e46\"}, \"unit_id\": \"e720c703-3e26-4a2f-af8d-169cb5a1efd8\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"e720c703-3e26-4a2f-af8d-169cb5a1efd8\"}}, {\"_id\": {\"$oid\": \"51fa5d525ca013687ad58e48\"}, \"unit_id\": \"042651f7-73fc-4e9f-b077-ad0736885b06\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"042651f7-73fc-4e9f-b077-ad0736885b06\"}}, {\"_id\": {\"$oid\": \"51fa5d535ca013687ad58e49\"}, \"unit_id\": \"cb1a3f9d-0f6e-4f89-a39e-9b5d13d83398\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"cb1a3f9d-0f6e-4f89-a39e-9b5d13d83398\"}}, {\"_id\": {\"$oid\": \"51fa5d525ca013687ad58e47\"}, \"unit_id\": \"d8b39557-43f6-49ec-835e-d1dd33f66ea1\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"d8b39557-43f6-49ec-835e-d1dd33f66ea1\"}}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:08 GMT + recorded_at: Thu, 01 Aug 2013 13:06:33 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/content/units/rpm/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"2f90c716-86a4-4305-997c-7b8a67f571fe\",\"07ef48cc-68dc-4cfc-81e7-20b00ce1f811\",\"7bb51ae4-3cfc-4b81-86d4-a1d71c726657\",\"8be62994-20a3-4be4-9783-db3dde5c0b5e\",\"fe5e4883-6601-4671-9b6c-54023a8f1af2\",\"5d4f5955-af8a-488a-9bbf-e710c9138f6b\",\"c1b20e4f-3626-439e-bdb2-a3fd135df290\",\"05c9d540-36dc-49a1-8502-0dbebe955aca\"]}},\"fields\":[\"name\",\"version\",\"release\",\"arch\",\"suffix\",\"epoch\",\"download_url\",\"checksum\",\"checksumtype\",\"license\",\"group\",\"children\",\"vendor\",\"filename\",\"relativepath\",\"description\",\"size\",\"buildhost\",\"_id\",\"_content_type_id\",\"_href\",\"_storage_path\",\"_type\"]},\"include_repos\":true}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"e80a9b95-626f-4d8d-83e8-53d49bc88c0d\",\"aae86f30-023a-4d4c-a0b0-ed7cf840b843\",\"c4227539-5f5c-4f71-bfbf-3f88eea83238\",\"b962fd4c-be85-4853-be0c-e41243ce5886\",\"e720c703-3e26-4a2f-af8d-169cb5a1efd8\",\"042651f7-73fc-4e9f-b077-ad0736885b06\",\"cb1a3f9d-0f6e-4f89-a39e-9b5d13d83398\",\"d8b39557-43f6-49ec-835e-d1dd33f66ea1\"]}},\"fields\":[\"name\",\"version\",\"release\",\"arch\",\"suffix\",\"epoch\",\"download_url\",\"checksum\",\"checksumtype\",\"license\",\"group\",\"children\",\"vendor\",\"filename\",\"relativepath\",\"description\",\"size\",\"buildhost\",\"_id\",\"_content_type_id\",\"_href\",\"_storage_path\",\"_type\"]},\"include_repos\":true}" headers: Accept: - application/json @@ -170,7 +170,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="9rpK1Qj1u6GMqEJCm5w8U5TiDTmAeXGuKz2HL9xD9w", oauth_signature="0XW1JuHX0qgyk3le5Bmw94l6LRA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196528", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="KObH4z5lIINOqXP3nCaiOLf7d3KSqwh2lLwfafRMxw", oauth_signature="uPFUVlmJx9l0H7ybjyW2N3q2R4w%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362393", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -183,7 +183,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:08 GMT + - Thu, 01 Aug 2013 13:06:33 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -192,15 +192,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"size\": 2236, \"_storage_path\": \"/var/lib/pulp/content/rpm/walrus/0.3/0.8/noarch/6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd/walrus-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"filename\": \"walrus-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"walrus-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"05c9d540-36dc-49a1-8502-0dbebe955aca\", \"arch\": \"noarch\", \"name\": \"walrus\", \"description\": \"A dummy package of walrus\", \"_href\": \"/pulp/api/v2/content/units/rpm/05c9d540-36dc-49a1-8502-0dbebe955aca/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2244, \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"07ef48cc-68dc-4cfc-81e7-20b00ce1f811\", \"arch\": \"noarch\", \"name\": \"elephant\", \"description\": \"A dummy package of elephant\", \"_href\": \"/pulp/api/v2/content/units/rpm/07ef48cc-68dc-4cfc-81e7-20b00ce1f811/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2232, \"_storage_path\": \"/var/lib/pulp/content/rpm/cheetah/0.3/0.8/noarch/422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae/cheetah-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"filename\": \"cheetah-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"cheetah-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"2f90c716-86a4-4305-997c-7b8a67f571fe\", \"arch\": \"noarch\", \"name\": \"cheetah\", \"description\": \"A dummy package of cheetah\", \"_href\": \"/pulp/api/v2/content/units/rpm/2f90c716-86a4-4305-997c-7b8a67f571fe/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2232, \"_storage_path\": \"/var/lib/pulp/content/rpm/penguin/0.3/0.8/noarch/3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694/penguin-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"filename\": \"penguin-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"penguin-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"5d4f5955-af8a-488a-9bbf-e710c9138f6b\", \"arch\": \"noarch\", \"name\": \"penguin\", \"description\": \"A dummy package of penguin\", \"_href\": \"/pulp/api/v2/content/units/rpm/5d4f5955-af8a-488a-9bbf-e710c9138f6b/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2236, \"_storage_path\": \"/var/lib/pulp/content/rpm/giraffe/0.3/0.8/noarch/f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14/giraffe-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"filename\": \"giraffe-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"giraffe-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"7bb51ae4-3cfc-4b81-86d4-a1d71c726657\", \"arch\": \"noarch\", \"name\": \"giraffe\", \"description\": \"A dummy package of giraffe\", \"_href\": \"/pulp/api/v2/content/units/rpm/7bb51ae4-3cfc-4b81-86d4-a1d71c726657/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2212, \"_storage_path\": \"/var/lib/pulp/content/rpm/lion/0.3/0.8/noarch/12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4/lion-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"filename\": \"lion-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"lion-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"8be62994-20a3-4be4-9783-db3dde5c0b5e\", \"arch\": \"noarch\", \"name\": \"lion\", \"description\": \"A dummy package of lion\", \"_href\": \"/pulp/api/v2/content/units/rpm/8be62994-20a3-4be4-9783-db3dde5c0b5e/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2248, \"_storage_path\": \"/var/lib/pulp/content/rpm/squirrel/0.3/0.8/noarch/251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2/squirrel-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"filename\": \"squirrel-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"squirrel-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"c1b20e4f-3626-439e-bdb2-a3fd135df290\", \"arch\": \"noarch\", \"name\": \"squirrel\", \"description\": \"A dummy package of squirrel\", \"_href\": \"/pulp/api/v2/content/units/rpm/c1b20e4f-3626-439e-bdb2-a3fd135df290/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2232, \"_storage_path\": \"/var/lib/pulp/content/rpm/monkey/0.3/0.8/noarch/0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1/monkey-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"filename\": \"monkey-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"monkey-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"fe5e4883-6601-4671-9b6c-54023a8f1af2\", \"arch\": \"noarch\", \"name\": \"monkey\", \"description\": \"A dummy package of monkey\", \"_href\": \"/pulp/api/v2/content/units/rpm/fe5e4883-6601-4671-9b6c-54023a8f1af2/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" + string: "[{\"size\": 2232, \"_storage_path\": \"/var/lib/pulp/content/rpm/penguin/0.3/0.8/noarch/3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694/penguin-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"filename\": \"penguin-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"penguin-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"042651f7-73fc-4e9f-b077-ad0736885b06\", \"arch\": \"noarch\", \"name\": \"penguin\", \"description\": \"A dummy package of penguin\", \"_href\": \"/pulp/api/v2/content/units/rpm/042651f7-73fc-4e9f-b077-ad0736885b06/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2244, \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"aae86f30-023a-4d4c-a0b0-ed7cf840b843\", \"arch\": \"noarch\", \"name\": \"elephant\", \"description\": \"A dummy package of elephant\", \"_href\": \"/pulp/api/v2/content/units/rpm/aae86f30-023a-4d4c-a0b0-ed7cf840b843/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2212, \"_storage_path\": \"/var/lib/pulp/content/rpm/lion/0.3/0.8/noarch/12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4/lion-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"filename\": \"lion-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"lion-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"b962fd4c-be85-4853-be0c-e41243ce5886\", \"arch\": \"noarch\", \"name\": \"lion\", \"description\": \"A dummy package of lion\", \"_href\": \"/pulp/api/v2/content/units/rpm/b962fd4c-be85-4853-be0c-e41243ce5886/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2236, \"_storage_path\": \"/var/lib/pulp/content/rpm/giraffe/0.3/0.8/noarch/f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14/giraffe-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"filename\": \"giraffe-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"giraffe-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"c4227539-5f5c-4f71-bfbf-3f88eea83238\", \"arch\": \"noarch\", \"name\": \"giraffe\", \"description\": \"A dummy package of giraffe\", \"_href\": \"/pulp/api/v2/content/units/rpm/c4227539-5f5c-4f71-bfbf-3f88eea83238/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2248, \"_storage_path\": \"/var/lib/pulp/content/rpm/squirrel/0.3/0.8/noarch/251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2/squirrel-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"filename\": \"squirrel-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"squirrel-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"cb1a3f9d-0f6e-4f89-a39e-9b5d13d83398\", \"arch\": \"noarch\", \"name\": \"squirrel\", \"description\": \"A dummy package of squirrel\", \"_href\": \"/pulp/api/v2/content/units/rpm/cb1a3f9d-0f6e-4f89-a39e-9b5d13d83398/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2236, \"_storage_path\": \"/var/lib/pulp/content/rpm/walrus/0.3/0.8/noarch/6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd/walrus-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"filename\": \"walrus-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"walrus-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"d8b39557-43f6-49ec-835e-d1dd33f66ea1\", \"arch\": \"noarch\", \"name\": \"walrus\", \"description\": \"A dummy package of walrus\", \"_href\": \"/pulp/api/v2/content/units/rpm/d8b39557-43f6-49ec-835e-d1dd33f66ea1/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2232, \"_storage_path\": \"/var/lib/pulp/content/rpm/monkey/0.3/0.8/noarch/0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1/monkey-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"filename\": \"monkey-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"monkey-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"e720c703-3e26-4a2f-af8d-169cb5a1efd8\", \"arch\": \"noarch\", \"name\": \"monkey\", \"description\": \"A dummy package of monkey\", \"_href\": \"/pulp/api/v2/content/units/rpm/e720c703-3e26-4a2f-af8d-169cb5a1efd8/\", \"children\": {}, \"repository_memberships\": [\"1\"]}, {\"size\": 2232, \"_storage_path\": \"/var/lib/pulp/content/rpm/cheetah/0.3/0.8/noarch/422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae/cheetah-0.3-0.8.noarch.rpm\", \"group\": \"Internet/Applications\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"filename\": \"cheetah-0.3-0.8.noarch.rpm\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"epoch\": \"0\", \"version\": \"0.3\", \"relativepath\": \"cheetah-0.3-0.8.noarch.rpm\", \"_content_type_id\": \"rpm\", \"release\": \"0.8\", \"vendor\": null, \"_id\": \"e80a9b95-626f-4d8d-83e8-53d49bc88c0d\", \"arch\": \"noarch\", \"name\": \"cheetah\", \"description\": \"A dummy package of cheetah\", \"_href\": \"/pulp/api/v2/content/units/rpm/e80a9b95-626f-4d8d-83e8-53d49bc88c0d/\", \"children\": {}, \"repository_memberships\": [\"1\"]}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:08 GMT + recorded_at: Thu, 01 Aug 2013 13:06:33 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]},\"limit\":500,\"skip\":0}}" + string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" headers: Accept: - application/json @@ -209,11 +209,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="pM2prUljXiFpCoyFM7lLif6CHCG3WuJgWBFo6bXkTZs", oauth_signature="TTC35Uq74V9HfwRD3fMD9mJsLIQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196528", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="pue3w44H5LecjogKBjMuIb47aCRpEUyD15QD7Ot9w", oauth_signature="Hlu5Y6pkKl4ACthQ%2BENEfwRW0Zg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362393", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "101" + - "80" User-Agent: - Ruby response: @@ -222,7 +222,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:08 GMT + - Thu, 01 Aug 2013 13:06:33 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -231,9 +231,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f9e\"}, \"unit_id\": \"2f90c716-86a4-4305-997c-7b8a67f571fe\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"2f90c716-86a4-4305-997c-7b8a67f571fe\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f9f\"}, \"unit_id\": \"07ef48cc-68dc-4cfc-81e7-20b00ce1f811\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"07ef48cc-68dc-4cfc-81e7-20b00ce1f811\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579fa1\"}, \"unit_id\": \"7bb51ae4-3cfc-4b81-86d4-a1d71c726657\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"7bb51ae4-3cfc-4b81-86d4-a1d71c726657\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579fa0\"}, \"unit_id\": \"8be62994-20a3-4be4-9783-db3dde5c0b5e\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"8be62994-20a3-4be4-9783-db3dde5c0b5e\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f9a\"}, \"unit_id\": \"fe5e4883-6601-4671-9b6c-54023a8f1af2\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"fe5e4883-6601-4671-9b6c-54023a8f1af2\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f9c\"}, \"unit_id\": \"5d4f5955-af8a-488a-9bbf-e710c9138f6b\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"5d4f5955-af8a-488a-9bbf-e710c9138f6b\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f9d\"}, \"unit_id\": \"c1b20e4f-3626-439e-bdb2-a3fd135df290\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"c1b20e4f-3626-439e-bdb2-a3fd135df290\"}}, {\"_id\": {\"$oid\": \"51f7d5695ca0137fe7579f9b\"}, \"unit_id\": \"05c9d540-36dc-49a1-8502-0dbebe955aca\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"05c9d540-36dc-49a1-8502-0dbebe955aca\"}}]" + string: "[{\"_id\": {\"$oid\": \"51fa5d535ca013687ad58e4a\"}, \"unit_id\": \"e80a9b95-626f-4d8d-83e8-53d49bc88c0d\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"e80a9b95-626f-4d8d-83e8-53d49bc88c0d\"}}, {\"_id\": {\"$oid\": \"51fa5d535ca013687ad58e4b\"}, \"unit_id\": \"aae86f30-023a-4d4c-a0b0-ed7cf840b843\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"aae86f30-023a-4d4c-a0b0-ed7cf840b843\"}}, {\"_id\": {\"$oid\": \"51fa5d535ca013687ad58e4d\"}, \"unit_id\": \"c4227539-5f5c-4f71-bfbf-3f88eea83238\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"c4227539-5f5c-4f71-bfbf-3f88eea83238\"}}, {\"_id\": {\"$oid\": \"51fa5d535ca013687ad58e4c\"}, \"unit_id\": \"b962fd4c-be85-4853-be0c-e41243ce5886\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"b962fd4c-be85-4853-be0c-e41243ce5886\"}}, {\"_id\": {\"$oid\": \"51fa5d525ca013687ad58e46\"}, \"unit_id\": \"e720c703-3e26-4a2f-af8d-169cb5a1efd8\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"e720c703-3e26-4a2f-af8d-169cb5a1efd8\"}}, {\"_id\": {\"$oid\": \"51fa5d525ca013687ad58e48\"}, \"unit_id\": \"042651f7-73fc-4e9f-b077-ad0736885b06\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"042651f7-73fc-4e9f-b077-ad0736885b06\"}}, {\"_id\": {\"$oid\": \"51fa5d535ca013687ad58e49\"}, \"unit_id\": \"cb1a3f9d-0f6e-4f89-a39e-9b5d13d83398\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"cb1a3f9d-0f6e-4f89-a39e-9b5d13d83398\"}}, {\"_id\": {\"$oid\": \"51fa5d525ca013687ad58e47\"}, \"unit_id\": \"d8b39557-43f6-49ec-835e-d1dd33f66ea1\", \"unit_type_id\": \"rpm\", \"metadata\": {\"_id\": \"d8b39557-43f6-49ec-835e-d1dd33f66ea1\"}}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:08 GMT + recorded_at: Thu, 01 Aug 2013 13:06:33 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/search/units/ @@ -248,7 +248,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="X8ekqhHtXVmlXHgdwN2RVFrCGhQ57h6Z8y7xtdAA", oauth_signature="qwsJrSX9Yw5juCMlPJ4iflXYa2w%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196528", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ON5yfuWVRre6gRRhAgBDmVeHEyClWZZ1FwoBb0s9i2Y", oauth_signature="qVU1XTZCjMoYcO0YC7g49e4h9tY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362393", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -261,7 +261,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:08 GMT + - Thu, 01 Aug 2013 13:06:33 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -270,9 +270,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"updated\": \"2013-07-30T19:02:01Z\", \"repo_id\": \"1\", \"created\": \"2013-07-30T19:02:01Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"5caac9bc-0178-408f-9919-75b97361023c\", \"unit_type_id\": \"package_category\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"51f7d5695ca0137fe7579faa\"}, \"id\": \"51f7d5695ca0137fe7579faa\", \"owner_id\": \"yum_importer\", \"metadata\": {\"_storage_path\": null, \"repo_id\": \"1\", \"description\": null, \"_ns\": \"units_package_category\", \"display_order\": 99, \"translated_name\": {}, \"packagegroupids\": [\"mammal\", \"bird\"], \"translated_description\": {}, \"_content_type_id\": \"package_category\", \"_id\": \"5caac9bc-0178-408f-9919-75b97361023c\", \"id\": \"all\", \"name\": \"all\"}}]" + string: "[{\"updated\": \"2013-08-01T17:06:27Z\", \"repo_id\": \"1\", \"created\": \"2013-08-01T17:06:27Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"15432210-9a6f-4e4c-be40-94c22f08d754\", \"unit_type_id\": \"package_category\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"51fa5d535ca013687ad58e56\"}, \"id\": \"51fa5d535ca013687ad58e56\", \"owner_id\": \"yum_importer\", \"metadata\": {\"_storage_path\": null, \"repo_id\": \"1\", \"description\": null, \"_ns\": \"units_package_category\", \"display_order\": 99, \"translated_name\": {}, \"packagegroupids\": [\"mammal\", \"bird\"], \"translated_description\": {}, \"_content_type_id\": \"package_category\", \"_id\": \"15432210-9a6f-4e4c-be40-94c22f08d754\", \"id\": \"all\", \"name\": \"all\"}}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:08 GMT + recorded_at: Thu, 01 Aug 2013 13:06:33 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/search/units/ @@ -287,7 +287,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="pcShhIHPynSU398SkGKdnA67HvQeEYwqIu2FmebbY", oauth_signature="A1cx%2BfmE%2BMAvRNzR%2FGfrqVHD6pk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196528", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="qncat1R4D8gHyb50PmEd76CKN1ALsuwbTH4KwuaZe4", oauth_signature="ex9YCeA7C8STvjpgpnFA%2BpzHfjs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362393", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -300,7 +300,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:08 GMT + - Thu, 01 Aug 2013 13:06:33 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -309,7 +309,7 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"updated\": \"2013-07-30T19:02:01Z\", \"repo_id\": \"1\", \"created\": \"2013-07-30T19:02:01Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"2dbedb7b-4640-45f9-bd55-d442a599be89\", \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"51f7d5695ca0137fe7579fa7\"}, \"id\": \"51f7d5695ca0137fe7579fa7\", \"owner_id\": \"yum_importer\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"2dbedb7b-4640-45f9-bd55-d442a599be89\", \"id\": \"bird\", \"name\": \"bird\"}}, {\"updated\": \"2013-07-30T19:02:01Z\", \"repo_id\": \"1\", \"created\": \"2013-07-30T19:02:01Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"7b0b8c81-e249-48c6-b26d-5276b7dfbe58\", \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"51f7d5695ca0137fe7579fa8\"}, \"id\": \"51f7d5695ca0137fe7579fa8\", \"owner_id\": \"yum_importer\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"elephant,giraffe,cheetah,lion,monkey,penguin,squirrel,walrus\", \"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"7b0b8c81-e249-48c6-b26d-5276b7dfbe58\", \"id\": \"mammal\", \"name\": \"mammal\"}}]" + string: "[{\"updated\": \"2013-08-01T17:06:27Z\", \"repo_id\": \"1\", \"created\": \"2013-08-01T17:06:27Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"79e85ee8-2230-4757-84c3-2b69face99f6\", \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"51fa5d535ca013687ad58e53\"}, \"id\": \"51fa5d535ca013687ad58e53\", \"owner_id\": \"yum_importer\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"79e85ee8-2230-4757-84c3-2b69face99f6\", \"id\": \"bird\", \"name\": \"bird\"}}, {\"updated\": \"2013-08-01T17:06:27Z\", \"repo_id\": \"1\", \"created\": \"2013-08-01T17:06:27Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"c53a3a5f-1a95-4314-b006-d67b90919a27\", \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"51fa5d535ca013687ad58e54\"}, \"id\": \"51fa5d535ca013687ad58e54\", \"owner_id\": \"yum_importer\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"elephant,giraffe,cheetah,lion,monkey,penguin,squirrel,walrus\", \"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"c53a3a5f-1a95-4314-b006-d67b90919a27\", \"id\": \"mammal\", \"name\": \"mammal\"}}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:08 GMT + recorded_at: Thu, 01 Aug 2013 13:06:33 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/glue_pulp_user.yml b/test/fixtures/vcr_cassettes/glue_pulp_user.yml index 4504ffc4fc7..b9d7bd036eb 100644 --- a/test/fixtures/vcr_cassettes/glue_pulp_user.yml +++ b/test/fixtures/vcr_cassettes/glue_pulp_user.yml @@ -5,7 +5,7 @@ http_interactions: uri: https://abed.usersys.redhat.com/pulp/api/v2/users/ body: encoding: US-ASCII - string: "{\"login\":\"batman\",\"name\":\"batman\",\"password\":\"zKNk3KnzXc2Sm7iX\"}" + string: "{\"login\":\"batman\",\"name\":\"batman\",\"password\":\"4Sh9LEf5HXV5Tolt\"}" headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="nMxXwj00axsGWrJcPhwqyDR8qdVkwoYR6bRcOy68yMg", oauth_signature="A8uJte98X9t%2BFwnFZAe%2F1t1r%2B4k%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196537", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="iMOfkWeU3oIl2p2nGXsZzEpl0EeB8c0hNR3CI7lCtbk", oauth_signature="oqX7J4GwXoPiBxGb4SMGOdsuMAI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362402", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,7 +27,7 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:02:17 GMT + - Thu, 01 Aug 2013 13:06:42 GMT Server: - Apache/2.2.15 (Red Hat) Location: @@ -38,15 +38,15 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"_id\": {\"$oid\": \"51f7d57a5ca0137fe757a14a\"}, \"name\": \"batman\", \"roles\": [], \"_ns\": \"users\", \"login\": \"batman\", \"id\": \"51f7d57a5ca0137fe757a14a\", \"_href\": \"/pulp/api/v2/users/batman/\"}" + string: "{\"_id\": {\"$oid\": \"51fa5d625ca013687ad58ff6\"}, \"name\": \"batman\", \"roles\": [], \"_ns\": \"users\", \"login\": \"batman\", \"id\": \"51fa5d625ca013687ad58ff6\", \"_href\": \"/pulp/api/v2/users/batman/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:18 GMT + recorded_at: Thu, 01 Aug 2013 13:06:42 GMT - request: - method: post - uri: https://abed.usersys.redhat.com/pulp/api/v2/roles/super-users/users/ + method: delete + uri: https://abed.usersys.redhat.com/pulp/api/v2/users/batman/ body: encoding: US-ASCII - string: "{\"login\":\"batman\"}" + string: "" headers: Accept: - application/json @@ -55,11 +55,9 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="BVTlbRFEcFdih2DPUNVItcMXZBpNFbQlsERDuU7mmYM", oauth_signature="83rS4PRiYgEAMmCm7t8tbCxxfUI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196539", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="jKhSGjnr7gCEnOEva5P9DUoWJFl0JACHSiuGn1TB0", oauth_signature="gecKcoH6e6vNiL55md19dIkUY6M%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362403", oauth_version="1.0" Pulp-User: - admin - Content-Length: - - "18" User-Agent: - Ruby response: @@ -68,7 +66,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:19 GMT + - Thu, 01 Aug 2013 13:06:43 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -79,7 +77,7 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:19 GMT + recorded_at: Thu, 01 Aug 2013 13:06:43 GMT - request: method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/roles/super-users/users/batman/ @@ -94,7 +92,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="nP9P1GHjKgZ3B7vMIoWeuk4DkddNISKJL5HO40hWfA", oauth_signature="cHQC4GiBrSj6bxT5y6RNp5lpmTc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196539", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="HF38kLWNCxqoMzV2qukmSMesiI5O2ZMNFOD1RKI", oauth_signature="n9o7L%2BHc22tF9G7Xg8eftwP2fV4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362404", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -105,7 +103,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:19 GMT + - Thu, 01 Aug 2013 13:06:44 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -116,13 +114,13 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:19 GMT + recorded_at: Thu, 01 Aug 2013 13:06:44 GMT - request: - method: delete - uri: https://abed.usersys.redhat.com/pulp/api/v2/users/batman/ + method: post + uri: https://abed.usersys.redhat.com/pulp/api/v2/roles/super-users/users/ body: encoding: US-ASCII - string: "" + string: "{\"login\":\"batman\"}" headers: Accept: - application/json @@ -131,9 +129,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="1Sa5o22lp18SbwPetTaWB0q12ThUzJXHSHpq2co4", oauth_signature="3ZnA0NT3hcBnVtd8eK8xRnVhieA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196540", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="NvULM3imJqcFM4hpdffovNdFAa26DKDBbgR9nrX0xOw", oauth_signature="HiKq8K65jm0rFd9sFbBE9Jvpl1E%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362405", oauth_version="1.0" Pulp-User: - admin + Content-Length: + - "18" User-Agent: - Ruby response: @@ -142,7 +142,7 @@ http_interactions: message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:20 GMT + - Thu, 01 Aug 2013 13:06:45 GMT Server: - Apache/2.2.15 (Red Hat) Content-Length: @@ -153,5 +153,5 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:20 GMT + recorded_at: Thu, 01 Aug 2013 13:06:45 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/pulp_user_exception_raised.yml b/test/fixtures/vcr_cassettes/pulp_user_exception_raised.yml index 01be6e1d5f2..8bd8dab3ba0 100644 --- a/test/fixtures/vcr_cassettes/pulp_user_exception_raised.yml +++ b/test/fixtures/vcr_cassettes/pulp_user_exception_raised.yml @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="NyBqs4yH0KuDNiMjBL8sb9IXk6BilMbmYGyQcDJk", oauth_signature="Y8JpUsYHl4UrytQebuQ4bZNB%2Fwg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196537", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="gKEPREjAzjc72rhXbIk3A46cvKmOkdHsBKWNzvRM", oauth_signature="auHfj3MPfsVHlmjEbnnA1bNwm18%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362402", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -25,7 +25,7 @@ http_interactions: message: Not Found headers: Date: - - Tue, 30 Jul 2013 15:02:17 GMT + - Thu, 01 Aug 2013 13:06:42 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -38,13 +38,13 @@ http_interactions: encoding: US-ASCII string: "{\"http_request_method\": \"DELETE\", \"exception\": null, \"error_message\": \"Missing resource(s): resource_id=batman\", \"_href\": \"/pulp/api/v2/users/batman/\", \"http_status\": 404, \"traceback\": null, \"resources\": {\"resource_id\": \"batman\"}}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:17 GMT + recorded_at: Thu, 01 Aug 2013 13:06:42 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/users/ body: encoding: US-ASCII - string: "{\"name\":null,\"password\":\"ujd3XtdcT9OBkj8Y\"}" + string: "{\"name\":null,\"password\":\"e4vDNfVC1cSxwE11\"}" headers: Accept: - application/json @@ -53,7 +53,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="OgPEhsStXJyC7fOVHR4vRX0VzHvzUmp46iKaoXKg3j4", oauth_signature="XiDH28iypSWAwiVuvobVN73cs9o%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196541", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="d7LcmYc3vfV3KKeOdSwsOvk0jObVpXdyjyQlbdcnM", oauth_signature="DZrdNnI%2Fr0940NbKnYKieU%2B9uGk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362404", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -66,7 +66,7 @@ http_interactions: message: Internal Server Error headers: Date: - - Tue, 30 Jul 2013 15:02:21 GMT + - Thu, 01 Aug 2013 13:06:44 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -81,5 +81,5 @@ http_interactions: encoding: US-ASCII string: "{\"http_request_method\": \"POST\", \"exception\": [\"TypeError: sequence item 2: expected string, NoneType found\\n\"], \"error_message\": \"Unhandled Exception\", \"_href\": \"/pulp/api/v2/users/\", \"http_status\": 500, \"traceback\": [\" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/middleware/exception.py\\\", line 44, in __call__\\n return self.app(environ, start_response)\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/middleware/postponed.py\\\", line 39, in __call__\\n return self.app(environ, start_response)\\n\", \" File \\\"/usr/lib/python2.6/site-packages/web/application.py\\\", line 279, in wsgi\\n result = self.handle_with_processors()\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/application.py\\\", line 26, in _handle_with_processors\\n return process(self.processors)\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/application.py\\\", line 23, in process\\n return p(lambda : process(processors))\\n\", \" File \\\"/usr/lib/python2.6/site-packages/web/application.py\\\", line 566, in processor\\n return handler()\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/application.py\\\", line 23, in \\n return p(lambda : process(processors))\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/application.py\\\", line 23, in process\\n return p(lambda : process(processors))\\n\", \" File \\\"/usr/lib/python2.6/site-packages/web/application.py\\\", line 581, in processor\\n result = handler()\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/application.py\\\", line 23, in \\n return p(lambda : process(processors))\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/application.py\\\", line 25, in process\\n return self.handle()\\n\", \" File \\\"/usr/lib/python2.6/site-packages/web/application.py\\\", line 230, in handle\\n return self._delegate(fn, self.fvars, args)\\n\", \" File \\\"/usr/lib/python2.6/site-packages/web/application.py\\\", line 422, in _delegate\\n return f()\\n\", \" File \\\"/usr/lib/python2.6/site-packages/web/application.py\\\", line 430, in \\n f = lambda: self._delegate_sub_application(pat, what)\\n\", \" File \\\"/usr/lib/python2.6/site-packages/web/application.py\\\", line 455, in _delegate_sub_application\\n return app.handle_with_processors()\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/application.py\\\", line 26, in _handle_with_processors\\n return process(self.processors)\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/application.py\\\", line 23, in process\\n return p(lambda : process(processors))\\n\", \" File \\\"/usr/lib/python2.6/site-packages/web/application.py\\\", line 566, in processor\\n return handler()\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/application.py\\\", line 23, in \\n return p(lambda : process(processors))\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/application.py\\\", line 23, in process\\n return p(lambda : process(processors))\\n\", \" File \\\"/usr/lib/python2.6/site-packages/web/application.py\\\", line 581, in processor\\n result = handler()\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/application.py\\\", line 23, in \\n return p(lambda : process(processors))\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/application.py\\\", line 25, in process\\n return self.handle()\\n\", \" File \\\"/usr/lib/python2.6/site-packages/web/application.py\\\", line 230, in handle\\n return self._delegate(fn, self.fvars, args)\\n\", \" File \\\"/usr/lib/python2.6/site-packages/web/application.py\\\", line 420, in _delegate\\n return handle_class(cls)\\n\", \" File \\\"/usr/lib/python2.6/site-packages/web/application.py\\\", line 396, in handle_class\\n return tocall(*args)\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/controllers/decorators.py\\\", line 227, in _auth_decorator\\n value = method(self, *args, **kwargs)\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/server/webservices/controllers/users.py\\\", line 92, in POST\\n tags = [resource_tag(dispatch_constants.RESOURCE_USER_TYPE, login),\\n\", \" File \\\"/usr/lib/python2.6/site-packages/pulp/common/tags.py\\\", line 76, in resource_tag\\n return _NAMESPACE_DELIMITER.join((_PULP_NAMESPACE, resource_type, resource_id))\\n\"]}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:21 GMT + recorded_at: Thu, 01 Aug 2013 13:06:44 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/pulp_user_setup.yml b/test/fixtures/vcr_cassettes/pulp_user_setup.yml index 045523d3b6c..692932fe771 100644 --- a/test/fixtures/vcr_cassettes/pulp_user_setup.yml +++ b/test/fixtures/vcr_cassettes/pulp_user_setup.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: delete - uri: https://abed.usersys.redhat.com/pulp/api/v2/users/batman/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/users/ body: encoding: US-ASCII string: "" @@ -14,37 +14,43 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="rUUL9yajwAPFT5GXLjeN9hjjjOMn9MZYm7SkejQPY", oauth_signature="K64jRfkU78aIPumIFu6EcTAVRlo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196540", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="5tQZWktSYfwc9YHJGnZC8AcSP2zjTnyzo9KagucdpY", oauth_signature="3OoumXWabgkI8EGL7rx%2FtlQwVkA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362404", oauth_version="1.0" Pulp-User: - admin User-Agent: - Ruby response: status: - code: 404 - message: Not Found + code: 405 + message: Method Not Allowed headers: Date: - - Tue, 30 Jul 2013 15:02:20 GMT + - Thu, 01 Aug 2013 13:06:44 GMT Server: - Apache/2.2.15 (Red Hat) + Allow: + - GET, POST + Vary: + - Accept-Encoding Content-Encoding: - - utf-8 + - gzip Content-Length: - - "230" + - "24" Content-Type: - - application/json + - text/html; charset=UTF-8 body: - encoding: US-ASCII - string: "{\"http_request_method\": \"DELETE\", \"exception\": null, \"error_message\": \"Missing resource(s): resource_id=batman\", \"_href\": \"/pulp/api/v2/users/batman/\", \"http_status\": 404, \"traceback\": null, \"resources\": {\"resource_id\": \"batman\"}}" + encoding: ASCII-8BIT + string: !binary | + H4sIAAAAAAAAA/PLz0sFAPGvot8EAAAA + http_version: - recorded_at: Tue, 30 Jul 2013 15:02:20 GMT + recorded_at: Thu, 01 Aug 2013 13:06:44 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/users/ body: encoding: US-ASCII - string: "{\"login\":\"batman\",\"name\":\"batman\",\"password\":\"uG6WxakYYPSBptUW\"}" + string: "{\"login\":\"batman\",\"name\":\"batman\",\"password\":\"8e4suaEBiYR7QRjE\"}" headers: Accept: - application/json @@ -53,7 +59,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="xJtnqjhhYKvEFnNFd3xJtgqbrNejicKgZzTXf79HsJg", oauth_signature="RuBgkJFx0FMDys%2Bwc8%2Fssxp91gI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196540", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="TWLslpQtpm2Cg7ELaMK6DDS0Dg05tTOkYToTADVuE", oauth_signature="%2FyPgaChz%2BLPagHHBfN1LZiUXXxY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362405", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -66,7 +72,7 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:02:20 GMT + - Thu, 01 Aug 2013 13:06:45 GMT Server: - Apache/2.2.15 (Red Hat) Location: @@ -77,12 +83,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"_id\": {\"$oid\": \"51f7d57d5ca0137fe757a1d9\"}, \"name\": \"batman\", \"roles\": [], \"_ns\": \"users\", \"login\": \"batman\", \"id\": \"51f7d57d5ca0137fe757a1d9\", \"_href\": \"/pulp/api/v2/users/batman/\"}" + string: "{\"_id\": {\"$oid\": \"51fa5d655ca013687ad5906e\"}, \"name\": \"batman\", \"roles\": [], \"_ns\": \"users\", \"login\": \"batman\", \"id\": \"51fa5d655ca013687ad5906e\", \"_href\": \"/pulp/api/v2/users/batman/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:21 GMT + recorded_at: Thu, 01 Aug 2013 13:06:45 GMT - request: method: delete - uri: https://abed.usersys.redhat.com/pulp/api/v2/users/ + uri: https://abed.usersys.redhat.com/pulp/api/v2/users/batman/ body: encoding: US-ASCII string: "" @@ -94,35 +100,27 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="dl6U5hkh7OfGLAPo3gArW7uoyR7bSZGNAJpBUOKTohA", oauth_signature="Ye4RESd%2FnjWU6q1I91Lizcef6as%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196541", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="fGYjfSZqRc9cd6HCPDCn0bRnhwvg0ykH51hiHTXwY", oauth_signature="je75xzEDLsTQngdoscFmdjCLBQM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362405", oauth_version="1.0" Pulp-User: - admin User-Agent: - Ruby response: status: - code: 405 - message: Method Not Allowed + code: 200 + message: OK headers: Date: - - Tue, 30 Jul 2013 15:02:21 GMT + - Thu, 01 Aug 2013 13:06:45 GMT Server: - Apache/2.2.15 (Red Hat) - Allow: - - GET, POST - Vary: - - Accept-Encoding - Content-Encoding: - - gzip Content-Length: - - "24" + - "4" Content-Type: - - text/html; charset=UTF-8 + - application/json body: - encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAA/PLz0sFAPGvot8EAAAA - + encoding: US-ASCII + string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:02:21 GMT + recorded_at: Thu, 01 Aug 2013 13:06:46 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/support/consumer.yml b/test/fixtures/vcr_cassettes/support/consumer.yml index 6bcc191c0b5..11c57aa7abe 100644 --- a/test/fixtures/vcr_cassettes/support/consumer.yml +++ b/test/fixtures/vcr_cassettes/support/consumer.yml @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="yjE2rONp7RfNWnT2Vtlqas3PvWIcEMfOkcT2SSKxB8", oauth_signature="6YB3z%2BYQtB9LXae1mWTCcihmeaw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196447", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="hY8y0iNdFT14IO8u092b9jrnVZxlQh425Oz4EHv8Q", oauth_signature="h1SS97NgUfd7RAwEUaEiqrAbA9A%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362329", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,20 +27,20 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:00:47 GMT + - Thu, 01 Aug 2013 13:05:29 GMT Server: - Apache/2.2.15 (Red Hat) Location: - "{'_href': u'/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/'}" Content-Length: - - "2195" + - "2199" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"display_name\": \"Simple Server\", \"description\": null, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXAIBAAKBgQC8791W9byvPOnKPf8Yl+tPPIG9mGlBTg4/YUWQWSRQx3Otgn62\\n1LkX1qCQcl1bj1Ll3yxEkrpCs5i4W3/8dgJEnzMLaPkNs98IvZ4TK/CDjun3GMln\\ncdZu/Y1csLOjDkha3tD8TGnt1eys5B9pTR9Qp/PjwloJS7Ay3wuunqr+mQIDAQAB\\nAoGAOTPeLa/k2qF0nxi6HTYRtkG5fi+g3nbFdYb7ysJSbmqUqVmzB6PMDl2a62DU\\nxx3TmWlCO9i4r+00NczuKP+Jm7u4UlVV9DfCK/qOG/QojEM4VjOMznHGXQKMHaSU\\ngCR8JGI+QyJFa87Cnz7609ZIPMzv1dY91hguQMU10qXQpskCQQDpQVCSdcRyHlEj\\nESBxgFVgSxYeA3B2Gjve+Fc+hwwz5KJVja2fHGzy/4MmQYqeD/Ume4xyry6DCZ2Y\\nvppvMXDDAkEAz1w/WFqmnm9ppBIxUzDGYE+khcqcCwbDP35JHtoIjtUKRx6LfWC5\\n77g2phMXuMl+EVgaIRh9qFBizyg0/J/dcwJBAIjZSx5Cfdi+NLgwKiqtMmnmY7mE\\nJw0DYzDz3qvOq7geYad0EfMRyFHg2t8tANivYBMN1V7LrKwwjge5e/3UseUCQFcu\\nb6uUIW2HZiEHTRmu7hjcI03lC4pPQ5PUYqXIAcUbqQCRxQ/ntQUmrENSz6xvesOM\\nCSBVDa/QbFqwiuaTyCUCQDXk20PYCpGIZoLkf839+HcxfpJWrkyl41MOLlYPDbSj\\nGzR73WB8n/ZkpuuP0CabAXuvMtY5w4FYmFpWyRB4ghU=\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICozCCAYsCAgRkMA0GCSqGSIb3DQEBBQUAMIGCMQswCQYDVQQGEwJVUzEXMBUG\\nA1UECBMOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxEDAOBgNVBAoT\\nB1NvbWVPcmcxFDASBgNVBAsTC1NvbWVPcmdVbml0MSAwHgYDVQQDExdhYmVkLnVz\\nZXJzeXMucmVkaGF0LmNvbTAeFw0xMzA3MzAxNTAwNDdaFw0yMzA3MjgxNTAwNDda\\nMC8xLTArBgNVBAMTJDAxMEU5OUMwLTMyNzYtMTFFMi04MUMxLTA4MDAyMDBDOUE2\\nNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAvO/dVvW8rzzpyj3/GJfrTzyB\\nvZhpQU4OP2FFkFkkUMdzrYJ+ttS5F9agkHJdW49S5d8sRJK6QrOYuFt//HYCRJ8z\\nC2j5DbPfCL2eEyvwg47p9xjJZ3HWbv2NXLCzow5IWt7Q/Exp7dXsrOQfaU0fUKfz\\n48JaCUuwMt8Lrp6q/pkCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAj8i6yvHQ9KcC\\nN4mGzv2YFN6W5YWgqN9NgPNruONSqUQFuatls6PG+GDJJRzEe9mow2iE6ayscoJI\\nDREHwpFFVpRA+GutDNXoIyJ09uIOX9QlJ0kUwBBBih8JhZAIyVq8dsMZPqp1b/yE\\nOWXrDzg5j03Fhk/08nRrnBoBMvPTItjSa2f1FWGARIb6C/GJ7pIgaPdxzwGECl62\\nDNofw6zG0zS53bDQyeNwkZUZaOkooWaWTqrRBXKmEoupR11/vN/Tgj4ze9Whq6VS\\n3mVUMpiOd80ZMAqvDI2219hOvIH/d8wZPLd4llL0UfwYVtH1X2j3CxjbkfVHF6TC\\ncl13brig3w==\\n-----END CERTIFICATE-----\", \"_ns\": \"consumers\", \"notes\": {}, \"capabilities\": {}, \"_id\": {\"$oid\": \"51f7d51f5ca0137fe7579b33\"}, \"id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\"}}" + string: "{\"display_name\": \"Simple Server\", \"description\": null, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXgIBAAKBgQCzM/Q/xR4nrFBxT15444oifw2BjpHX1FcfhFa1fizJSbMYCTQ0\\nEFaJA8Zogeq+8M9xn/EMU4rnvU3jn7eZgyn8rhZRdyWFOz4iiJCrVI2d1onIDNrm\\nYEZ2RvNlAzPw9oKrULTRwJaUi3YTe3uanGTTawRgVG1rQKYzU+Ebqu9q5QIDAQAB\\nAoGBAK7gjYPJxgKrSpk4/hV033GIkVKUIckAo8DS8ZcNuYD5Fffny3TfWMM+1tlX\\npxCMibP1hFMmF9DMUP1H+PCrKkWSaiEah6iGaVMYwB2mhrBZTEAc7+tDT/OVH3+0\\n/ddve9BVm04WHWHP+a4cHiS6Tvk5/ZIaaQyjKWCb5ad60nKhAkEA62WE27hZFrk7\\nnmaMjrmZCwHZ2wg+yK3pLvXPGjnviaYa7j3iqTxUGfopyXx/FQ4vsiVuPpTy3Utj\\nmqMZ2njGyQJBAMLjURLZ8+QM6FjwBIsznUxfBSFHc7Tuggy11v5t8gRhDcuNSnhE\\nTfmypaLhgNqmdBnOz1dKfocPTaGLZFmFJT0CQQCEVjJ3BBCxwblOuABVTOpJUeUU\\nSnJhh8QMbozcBa4xCH0jaw8+bXgqkoVjjOY1BCC0Wm68KCjRWEzK5t7l//hhAkEA\\nhHX8pNN+8YHUap64d+SdBUuQMQ5flpqFyh3OAyC3XkKZHcDq3NOQLCdAbXTYH8UD\\nJIdsZeg8F5BPM32Kt03IAQJAVz1aWnRu0HMLL1x58I6Hb59VPZZvmux5h45PMk1w\\nwVkSZZ3RtyU17Dby7AFjdKOWMWOiC30GNM3Ov0zIuCWN+A==\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICozCCAYsCAgSYMA0GCSqGSIb3DQEBBQUAMIGCMQswCQYDVQQGEwJVUzEXMBUG\\nA1UECBMOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxEDAOBgNVBAoT\\nB1NvbWVPcmcxFDASBgNVBAsTC1NvbWVPcmdVbml0MSAwHgYDVQQDExdhYmVkLnVz\\nZXJzeXMucmVkaGF0LmNvbTAeFw0xMzA4MDExMzA1MjlaFw0yMzA3MzAxMzA1Mjla\\nMC8xLTArBgNVBAMTJDAxMEU5OUMwLTMyNzYtMTFFMi04MUMxLTA4MDAyMDBDOUE2\\nNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAszP0P8UeJ6xQcU9eeOOKIn8N\\ngY6R19RXH4RWtX4syUmzGAk0NBBWiQPGaIHqvvDPcZ/xDFOK571N45+3mYMp/K4W\\nUXclhTs+IoiQq1SNndaJyAza5mBGdkbzZQMz8PaCq1C00cCWlIt2E3t7mpxk02sE\\nYFRta0CmM1PhG6rvauUCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAKvYJaifFLj8/\\nqgi+HxVkWQzMDTmupEAr/LwydtgMc/tQj5P2eYsv/BXe3la2hIdIqjpJIS7Y7969\\nukI+PUkR2+4qoHHKyRtgln6I6Bzjcnfc+1P9RvVEIh4R17IJ83EvGvPuTYKL1GSP\\nmKtZ7mRgRRC46bQzBzKrIEMvb3q1FFhjX8WBl9cqj+Ps9PeS7zjdeixT2tLINDKr\\n7XnBgu9SRxYYXfGY9AKmCkuueEN1ekgjPaEouhnVKRs3ZxWBpGHYEauSmFIJLDRH\\nUGlpf/V1D4xHfzQBcNkgP3BAHJc9DVBC+Rv7yxLNxv7Oq/Vwoe9ZHLRPjDAVqdUb\\nbkoacQcUAQ==\\n-----END CERTIFICATE-----\", \"_ns\": \"consumers\", \"notes\": {}, \"capabilities\": {}, \"_id\": {\"$oid\": \"51fa5d195ca013687ad589df\"}, \"id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\"}}" http_version: - recorded_at: Tue, 30 Jul 2013 15:00:47 GMT + recorded_at: Thu, 01 Aug 2013 13:05:29 GMT - request: method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/ @@ -55,29 +55,27 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="eqS6Um5vv4ujKrG4GCqxoPK9QJlhmyysFpR38ERFc14", oauth_signature="G6MFwyTA0lBFAUbZi8Iwh6hviXM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196489", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="VhRRidcu8e4raAmML0fngx3YC3UBpjTnGLahzLpBk", oauth_signature="EZh8Pw%2FEn%2BOq8d7ix3SICdTh144%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362355", oauth_version="1.0" Pulp-User: - admin User-Agent: - Ruby response: status: - code: 404 - message: Not Found + code: 200 + message: OK headers: Date: - - Tue, 30 Jul 2013 15:01:29 GMT + - Thu, 01 Aug 2013 13:05:55 GMT Server: - Apache/2.2.15 (Red Hat) - Content-Encoding: - - utf-8 Content-Length: - - "318" + - "4" Content-Type: - application/json body: encoding: US-ASCII - string: "{\"http_request_method\": \"DELETE\", \"exception\": null, \"error_message\": \"Missing resource(s): consumer=010E99C0-3276-11E2-81C1-0800200C9A66\", \"_href\": \"/pulp/api/v2/consumers/010E99C0-3276-11E2-81C1-0800200C9A66/\", \"http_status\": 404, \"traceback\": null, \"resources\": {\"consumer\": \"010E99C0-3276-11E2-81C1-0800200C9A66\"}}" + string: "null" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:29 GMT + recorded_at: Thu, 01 Aug 2013 13:05:56 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/support/repository.yml b/test/fixtures/vcr_cassettes/support/repository.yml index ba6686eaa05..4079d83ef71 100644 --- a/test/fixtures/vcr_cassettes/support/repository.yml +++ b/test/fixtures/vcr_cassettes/support/repository.yml @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="AnYY8pTZ2Qm89uHp48PBZkLIoGh3WCUYR088o0DE", oauth_signature="hF5Ocv92zDBXQeJTYd8JAuBdDOE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196504", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="9vOGAsj9rhjKnTRKAfGCVHYhX7mG0pNBIQdvGZDYBU", oauth_signature="hMhdJvm89WvCv7FN6ud6dAcPGMc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362370", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,7 +27,7 @@ http_interactions: message: Created headers: Date: - - Tue, 30 Jul 2013 15:01:44 GMT + - Thu, 01 Aug 2013 13:06:10 GMT Server: - Apache/2.2.15 (Red Hat) Location: @@ -38,9 +38,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"51f7d5585ca0137fe7579dd4\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"51fa5d425ca013687ad58c80\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:45 GMT + recorded_at: Thu, 01 Aug 2013 13:06:11 GMT - request: method: post uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/actions/sync/ @@ -55,7 +55,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ZHRx4a91XXopJoTP6hf9T6JjWsCRzZTDIKbkQgUEMNA", oauth_signature="4tY0p%2FQRKYYH4mNc5%2FUAmaDzl9w%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196505", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="jmetbco9XCeeHHqwlfl600aZEj0R7hQS1VlvF3sWE", oauth_signature="SsNR0V1gWy%2F5ydwAjWGHbVWdNv0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362371", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -68,7 +68,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:45 GMT + - Thu, 01 Aug 2013 13:06:11 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -79,9 +79,9 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"f855fedf-ad2d-4992-81db-dd1494b58e95\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/f855fedf-ad2d-4992-81db-dd1494b58e95/\", \"task_id\": \"0703f432-51e4-48c0-9216-885f6d7c5ec1\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"f855fedf-ad2d-4992-81db-dd1494b58e95\", \"call_request_id\": \"0703f432-51e4-48c0-9216-885f6d7c5ec1\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": \"f855fedf-ad2d-4992-81db-dd1494b58e95\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/f855fedf-ad2d-4992-81db-dd1494b58e95/\", \"task_id\": \"fd60732a-7a32-493e-af62-c0e1d9ee97f4\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:auto_publish\", \"pulp:action:publish\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:auto_publish\", \"pulp:action:publish\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"f855fedf-ad2d-4992-81db-dd1494b58e95\", \"call_request_id\": \"fd60732a-7a32-493e-af62-c0e1d9ee97f4\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"26dc8557-c530-4967-bccf-5ac488c3c3b5\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/26dc8557-c530-4967-bccf-5ac488c3c3b5/\", \"task_id\": \"73ee3acb-efb5-4511-a496-7f5af0c4a1ec\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"26dc8557-c530-4967-bccf-5ac488c3c3b5\", \"call_request_id\": \"73ee3acb-efb5-4511-a496-7f5af0c4a1ec\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": \"26dc8557-c530-4967-bccf-5ac488c3c3b5\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/26dc8557-c530-4967-bccf-5ac488c3c3b5/\", \"task_id\": \"1d3c77f2-4ab5-43dd-906f-5d8efdd7701f\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:auto_publish\", \"pulp:action:publish\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:auto_publish\", \"pulp:action:publish\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"26dc8557-c530-4967-bccf-5ac488c3c3b5\", \"call_request_id\": \"1d3c77f2-4ab5-43dd-906f-5d8efdd7701f\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:45 GMT + recorded_at: Thu, 01 Aug 2013 13:06:11 GMT - request: method: delete uri: https://abed.usersys.redhat.com/pulp/api/v2/repositories/1/ @@ -96,7 +96,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="YCK6oJ9W1z2bKR5867RwOl4U40znO0sJGSgItADx58", oauth_signature="0DpglsdU3rnmQkNv3HbQRFbMaJ4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196507", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="JQQThhtYfDvsxk6ecX3crczrfrwztQ2Q9C8rXw7PY", oauth_signature="hEouyzA9Q3NZv%2B%2FBt8VnZor3toE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362373", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -107,7 +107,7 @@ http_interactions: message: Accepted headers: Date: - - Tue, 30 Jul 2013 15:01:47 GMT + - Thu, 01 Aug 2013 13:06:13 GMT Server: - Apache/2.2.15 (Red Hat) Content-Encoding: @@ -118,7 +118,7 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "[{\"task_group_id\": \"aaab0391-d56f-45b1-978c-6a76696420f9\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/aaab0391-d56f-45b1-978c-6a76696420f9/\", \"task_id\": \"869f3fa1-0a8d-47ed-84cf-a643b41fedb4\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"aaab0391-d56f-45b1-978c-6a76696420f9\", \"call_request_id\": \"869f3fa1-0a8d-47ed-84cf-a643b41fedb4\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + string: "[{\"task_group_id\": \"696fb313-33f3-4d6f-9fff-60fe84964b6f\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/task_groups/696fb313-33f3-4d6f-9fff-60fe84964b6f/\", \"task_id\": \"8764b587-13d4-4752-83ec-10c99e3ab748\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": null, \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"state\": \"waiting\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"696fb313-33f3-4d6f-9fff-60fe84964b6f\", \"call_request_id\": \"8764b587-13d4-4752-83ec-10c99e3ab748\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" http_version: - recorded_at: Tue, 30 Jul 2013 15:01:47 GMT + recorded_at: Thu, 01 Aug 2013 13:06:13 GMT recorded_with: VCR 2.5.0 diff --git a/test/fixtures/vcr_cassettes/task_support.yml b/test/fixtures/vcr_cassettes/task_support.yml index 4a5556295d9..3a64906eaf7 100644 --- a/test/fixtures/vcr_cassettes/task_support.yml +++ b/test/fixtures/vcr_cassettes/task_support.yml @@ -8917,43 +8917,6 @@ http_interactions: string: "{\"task_group_id\": \"80ef7e22-b0c8-4498-a5c0-f633334e55f1\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/9e58a473-7d98-4e3a-b086-5ee206e568c2/\", \"task_id\": \"9e58a473-7d98-4e3a-b086-5ee206e568c2\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:00:45Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:00:45Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"80ef7e22-b0c8-4498-a5c0-f633334e55f1\", \"call_request_id\": \"9e58a473-7d98-4e3a-b086-5ee206e568c2\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-07-30T11:00:45-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-07-30T11:00:45-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51f7d51d5ca0137fe7579b1c\", \"removed_count\": 0}}" http_version: recorded_at: Tue, 30 Jul 2013 15:00:45 GMT -- request: - method: get - uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/ - body: - encoding: US-ASCII - string: "" - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Content-Type: - - application/json - Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="qkZAxv47xNBKVyBpAghtB0e8u37be8oHNPzOZhFMDTU", oauth_signature="kJTShQTjx1cXPzd%2BHi1I0dlGd0g%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375196474", oauth_version="1.0" - Pulp-User: - - admin - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Date: - - Tue, 30 Jul 2013 15:01:14 GMT - Server: - - Apache/2.2.15 (Red Hat) - Content-Length: - - "7201" - Content-Type: - - application/json - body: - encoding: US-ASCII - string: "[{\"task_group_id\": null, \"exception\": [\"RequestTimeout: ('52a971ed-43ff-45c3-94a1-4f2759d41315', 0)\\n\"], \"traceback\": \"Traceback (most recent call last):\\n\\n File \\\"/usr/lib/python2.6/site-packages/gofer/rmi/async.py\\\", line 451, in process\\n raise RequestTimeout(sn, je.idx)\\n\\nRequestTimeout: ('52a971ed-43ff-45c3-94a1-4f2759d41315', 0)\\n\", \"task_id\": \"5124bd6b-a94a-443f-97ab-95984f5f2cd3\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:04Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"error\", \"finish_time\": \"2013-07-30T15:01:14Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"5124bd6b-a94a-443f-97ab-95984f5f2cd3\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"63bb7d64-cad3-4d20-87a0-ea5644d1f78f\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:05Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"63bb7d64-cad3-4d20-87a0-ea5644d1f78f\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"d02db1fe-46e9-48c9-8520-62631c54ee58\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:06Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"d02db1fe-46e9-48c9-8520-62631c54ee58\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"d29d6591-e394-4100-a32d-eac26953ac8e\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:07Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"d29d6591-e394-4100-a32d-eac26953ac8e\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"c276ca47-125b-4653-9254-a260904555e3\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:08Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"c276ca47-125b-4653-9254-a260904555e3\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"195a96aa-2622-4f64-a6dd-220292d91961\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:09Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"195a96aa-2622-4f64-a6dd-220292d91961\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"83007949-93f8-4954-8a25-a44b6f3cede7\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:10Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"83007949-93f8-4954-8a25-a44b6f3cede7\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"2fc991cd-3564-40e5-9e33-d9488d335929\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:11Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"2fc991cd-3564-40e5-9e33-d9488d335929\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"c551228e-0efe-40d3-ae1c-46de70a3af75\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:12Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"c551228e-0efe-40d3-ae1c-46de70a3af75\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"5c034b11-1b27-4409-b934-f61df09d1640\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:13Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"5c034b11-1b27-4409-b934-f61df09d1640\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"333e80dc-9123-43c7-955c-b49a87886a81\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:14Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"333e80dc-9123-43c7-955c-b49a87886a81\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" - http_version: - recorded_at: Tue, 30 Jul 2013 15:01:15 GMT - request: method: get uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/9c307855-ded1-403c-af26-1f8b1db97ea4/ @@ -9398,4 +9361,1151 @@ http_interactions: string: "{\"task_group_id\": \"f855fedf-ad2d-4992-81db-dd1494b58e95\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/0703f432-51e4-48c0-9216-885f6d7c5ec1/\", \"task_id\": \"0703f432-51e4-48c0-9216-885f6d7c5ec1\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-07-30T15:01:45Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-07-30T15:01:45Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"f855fedf-ad2d-4992-81db-dd1494b58e95\", \"call_request_id\": \"0703f432-51e4-48c0-9216-885f6d7c5ec1\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-07-30T11:01:45-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-07-30T11:01:45-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51f7d5595ca0137fe7579df8\", \"removed_count\": 0}}" http_version: recorded_at: Tue, 30 Jul 2013 15:01:45 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/62342214-6905-4df7-9bbd-a2b29cd83995/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="IXZpU9tBaPwyZvcKD9UV2mvMHV1v24eoddOQl0oE", oauth_signature="0cMP8GBzIICAZVslrxqoVyZhhLA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362227", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:03:47 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "1110" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"c84c965a-0698-4867-b9a7-5e0712e3c0b1\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/62342214-6905-4df7-9bbd-a2b29cd83995/\", \"task_id\": \"62342214-6905-4df7-9bbd-a2b29cd83995\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:03:47Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 3, \"items_total\": 8, \"state\": \"IN_PROGRESS\", \"size_left\": 6692, \"details\": {\"rpm_total\": 8, \"rpm_done\": 5, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"c84c965a-0698-4867-b9a7-5e0712e3c0b1\", \"call_request_id\": \"62342214-6905-4df7-9bbd-a2b29cd83995\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:03:47 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/62342214-6905-4df7-9bbd-a2b29cd83995/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="NbWfVUGJbE4gXFcVhPGnnRlCzQFkOzSXAR1w5YJQ8eo", oauth_signature="XDVfBXa5H1G5sQCn4i7JBDO64nE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362227", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:03:47 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"c84c965a-0698-4867-b9a7-5e0712e3c0b1\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/62342214-6905-4df7-9bbd-a2b29cd83995/\", \"task_id\": \"62342214-6905-4df7-9bbd-a2b29cd83995\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:03:47Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:03:47Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"c84c965a-0698-4867-b9a7-5e0712e3c0b1\", \"call_request_id\": \"62342214-6905-4df7-9bbd-a2b29cd83995\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:03:47-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:03:47-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 3, \"result\": \"success\", \"updated_count\": 11, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5cb35ca013687ad58422\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:03:47 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/e759ca7e-b0d2-48b8-8f98-f158fae316a7/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="T1B2KH8KHbkPzy4bIH8Cs3Pueq4teK9nQdyDpNCsxk", oauth_signature="5HS%2BKVZ3EO5d%2FwpEEtqKX14bEv8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362232", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:03:52 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "1106" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"e6a07909-b7c0-4914-84f0-bd70871e0f81\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/e759ca7e-b0d2-48b8-8f98-f158fae316a7/\", \"task_id\": \"e759ca7e-b0d2-48b8-8f98-f158fae316a7\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:03:52Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"NOT_STARTED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"IN_PROGRESS\"}}}, \"call_request_group_id\": \"e6a07909-b7c0-4914-84f0-bd70871e0f81\", \"call_request_id\": \"e759ca7e-b0d2-48b8-8f98-f158fae316a7\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:03:52 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/e759ca7e-b0d2-48b8-8f98-f158fae316a7/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="C0rJmpWiKqaEEVJzLZDx3wkMVTo8LoZfFxImNW00Y", oauth_signature="ze1HPV77F%2FCLwEcRJFUE%2FL0ZT6o%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362232", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:03:52 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"e6a07909-b7c0-4914-84f0-bd70871e0f81\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/e759ca7e-b0d2-48b8-8f98-f158fae316a7/\", \"task_id\": \"e759ca7e-b0d2-48b8-8f98-f158fae316a7\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:03:52Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:03:52Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"e6a07909-b7c0-4914-84f0-bd70871e0f81\", \"call_request_id\": \"e759ca7e-b0d2-48b8-8f98-f158fae316a7\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:03:52-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:03:52-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5cb85ca013687ad584b9\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:03:52 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/786729ac-aebc-4c33-adc9-3e90c13219d8/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="l36BwQklbsQTr4ubWY4Mpd7cvCFk58ZcFDiHdm1mvI", oauth_signature="NV4OPfV%2FVai%2BEPGN7QdVnxqlV7U%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362237", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:03:57 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "1103" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"e600e98a-9fc5-43db-8ff6-4e4774dc84f7\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/786729ac-aebc-4c33-adc9-3e90c13219d8/\", \"task_id\": \"786729ac-aebc-4c33-adc9-3e90c13219d8\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:03:57Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"e600e98a-9fc5-43db-8ff6-4e4774dc84f7\", \"call_request_id\": \"786729ac-aebc-4c33-adc9-3e90c13219d8\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:03:57 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/786729ac-aebc-4c33-adc9-3e90c13219d8/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="T2KOxmLKy25ItuRhTrxbllqdBuw2Mvn7WF0JhTldPE", oauth_signature="Zd8bDIThVxmEHvz8nidROQ6eQsY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362238", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:03:58 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"e600e98a-9fc5-43db-8ff6-4e4774dc84f7\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/786729ac-aebc-4c33-adc9-3e90c13219d8/\", \"task_id\": \"786729ac-aebc-4c33-adc9-3e90c13219d8\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:03:57Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:03:58Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"e600e98a-9fc5-43db-8ff6-4e4774dc84f7\", \"call_request_id\": \"786729ac-aebc-4c33-adc9-3e90c13219d8\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:03:57-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:03:58-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5cbe5ca013687ad5854c\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:03:58 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/bae00eab-6c9b-4868-9302-7861487b0699/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="f4KzmSlCj1j0ZaXLTBArshjPr2ohpR5ZzlFBBv4pc", oauth_signature="FsqsM%2BPR3RDG2yA3B3ZPLquYPVM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362249", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:04:09 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "1103" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"6ecb8086-85ec-457d-9d03-a0b171eac394\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/bae00eab-6c9b-4868-9302-7861487b0699/\", \"task_id\": \"bae00eab-6c9b-4868-9302-7861487b0699\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:04:09Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"6ecb8086-85ec-457d-9d03-a0b171eac394\", \"call_request_id\": \"bae00eab-6c9b-4868-9302-7861487b0699\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:04:09 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/bae00eab-6c9b-4868-9302-7861487b0699/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="yUINkfap7vPRYyyyP6HkKHCSMu3cv31e0DOf9dHQ5OE", oauth_signature="tNlTSZJ%2BxMKyaKM7wGC779rC0MQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362250", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:04:10 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"6ecb8086-85ec-457d-9d03-a0b171eac394\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/bae00eab-6c9b-4868-9302-7861487b0699/\", \"task_id\": \"bae00eab-6c9b-4868-9302-7861487b0699\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:04:09Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:04:09Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"6ecb8086-85ec-457d-9d03-a0b171eac394\", \"call_request_id\": \"bae00eab-6c9b-4868-9302-7861487b0699\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:04:09-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:04:09-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5cc95ca013687ad585db\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:04:10 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/f87e147b-4572-46aa-870b-32650fcd38d9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="07HPuwaPGg4TQh6VlaR9pYjwOKchotOM6LT5F2Jo", oauth_signature="ZAJb9ua9BHmMpqvx%2F6HbK5dtBbc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362261", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:04:21 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "1106" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"06b1da2e-7ada-40e3-8a1e-642225d98b53\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/f87e147b-4572-46aa-870b-32650fcd38d9/\", \"task_id\": \"f87e147b-4572-46aa-870b-32650fcd38d9\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:04:21Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"NOT_STARTED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"IN_PROGRESS\"}}}, \"call_request_group_id\": \"06b1da2e-7ada-40e3-8a1e-642225d98b53\", \"call_request_id\": \"f87e147b-4572-46aa-870b-32650fcd38d9\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:04:21 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/f87e147b-4572-46aa-870b-32650fcd38d9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="EsuEkOexwhaWg1IG0UGitWuXiAXzt09CV2tNzBc9IY", oauth_signature="hMcaINpgvtAtzsR6GWUHhYDn%2FJ4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362262", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:04:22 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"06b1da2e-7ada-40e3-8a1e-642225d98b53\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/f87e147b-4572-46aa-870b-32650fcd38d9/\", \"task_id\": \"f87e147b-4572-46aa-870b-32650fcd38d9\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:04:21Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:04:22Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"06b1da2e-7ada-40e3-8a1e-642225d98b53\", \"call_request_id\": \"f87e147b-4572-46aa-870b-32650fcd38d9\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:04:21-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:04:22-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5cd65ca013687ad5866a\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:04:22 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/11379a7a-d601-4f8b-bd55-bf2ed118d137/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="thc6OyhxBKqSIfSpeQsHcYuR4BO0iIJbLUAvsWE", oauth_signature="l4h6ZbBIQuEXL2D0EOM0IhBr5cQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362274", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:04:34 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "1103" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"65b6f805-7ecc-41e3-a003-51c565405ad7\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/11379a7a-d601-4f8b-bd55-bf2ed118d137/\", \"task_id\": \"11379a7a-d601-4f8b-bd55-bf2ed118d137\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:04:34Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"65b6f805-7ecc-41e3-a003-51c565405ad7\", \"call_request_id\": \"11379a7a-d601-4f8b-bd55-bf2ed118d137\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:04:34 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/11379a7a-d601-4f8b-bd55-bf2ed118d137/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="LumJmcK1vvFoAnf6VwpQ6DoRNk9zzfAl6kk4oAzec", oauth_signature="M7i5Yea4BhDbEtFrX99SNssAlUc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362274", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:04:34 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"65b6f805-7ecc-41e3-a003-51c565405ad7\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/11379a7a-d601-4f8b-bd55-bf2ed118d137/\", \"task_id\": \"11379a7a-d601-4f8b-bd55-bf2ed118d137\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:04:34Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:04:34Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"65b6f805-7ecc-41e3-a003-51c565405ad7\", \"call_request_id\": \"11379a7a-d601-4f8b-bd55-bf2ed118d137\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:04:34-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:04:34-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5ce25ca013687ad586f9\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:04:34 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/de230485-f259-449e-8d55-989c03b2d3fa/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="sCJtI1Exovu1LrdbYIx62EGFJ0uefHKH03tHq75vA", oauth_signature="ajkR2%2Fw5arjlMMgBXeKmIrE%2BvPQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362285", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:04:45 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "1103" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"e22f813c-66a5-483c-9b9b-0adf1f2de24d\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/de230485-f259-449e-8d55-989c03b2d3fa/\", \"task_id\": \"de230485-f259-449e-8d55-989c03b2d3fa\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:04:45Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"NOT_STARTED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"e22f813c-66a5-483c-9b9b-0adf1f2de24d\", \"call_request_id\": \"de230485-f259-449e-8d55-989c03b2d3fa\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:04:45 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/de230485-f259-449e-8d55-989c03b2d3fa/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="Yk5slAJFFEqWH7n9CnsGDuemt7BNvIm9eM9q3xj4", oauth_signature="srMEu6v1xgvAFBh%2FNgTMzH9k71c%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362286", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:04:46 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"e22f813c-66a5-483c-9b9b-0adf1f2de24d\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/de230485-f259-449e-8d55-989c03b2d3fa/\", \"task_id\": \"de230485-f259-449e-8d55-989c03b2d3fa\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:04:45Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:04:46Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"e22f813c-66a5-483c-9b9b-0adf1f2de24d\", \"call_request_id\": \"de230485-f259-449e-8d55-989c03b2d3fa\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:04:45-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:04:46-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5cee5ca013687ad58788\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:04:46 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/ad144f41-7f39-4401-a599-0382ab62f1f9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="MPOw9IQBj80RTC8uoxa6qMO1Ld46laVH25B3uK1MXA", oauth_signature="ahL35%2FW1vyeMHEagmu666lfhMEU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362297", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:04:57 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "1106" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"76b90787-2943-4f50-b1a2-6abefc3fabfe\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/ad144f41-7f39-4401-a599-0382ab62f1f9/\", \"task_id\": \"ad144f41-7f39-4401-a599-0382ab62f1f9\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:04:57Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"NOT_STARTED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"IN_PROGRESS\"}}}, \"call_request_group_id\": \"76b90787-2943-4f50-b1a2-6abefc3fabfe\", \"call_request_id\": \"ad144f41-7f39-4401-a599-0382ab62f1f9\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:04:57 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/ad144f41-7f39-4401-a599-0382ab62f1f9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="0KzVD8FsB8lO58Uyp7A4cmFh1htQ8YW3hpIr70SzyA", oauth_signature="qDC5QtyMR4WNFmjjAZo1lQUkaDc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362298", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:04:58 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"76b90787-2943-4f50-b1a2-6abefc3fabfe\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/ad144f41-7f39-4401-a599-0382ab62f1f9/\", \"task_id\": \"ad144f41-7f39-4401-a599-0382ab62f1f9\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:04:57Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:04:57Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"76b90787-2943-4f50-b1a2-6abefc3fabfe\", \"call_request_id\": \"ad144f41-7f39-4401-a599-0382ab62f1f9\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:04:57-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:04:57-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5cf95ca013687ad58817\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:04:58 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/57633e22-0f71-4ff0-8498-daa310ea3301/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="VslGuDz2Tij44y58gS4FA9ZmBVYIj7mYnWiSgGGg", oauth_signature="qcD2rckx8kWVqSL6%2BjGmFs4MjZo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362326", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:05:26 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "1106" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"94fe136c-ea79-43c0-9eb8-1cf2d4df0cce\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/57633e22-0f71-4ff0-8498-daa310ea3301/\", \"task_id\": \"57633e22-0f71-4ff0-8498-daa310ea3301\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:26Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"NOT_STARTED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"IN_PROGRESS\"}}}, \"call_request_group_id\": \"94fe136c-ea79-43c0-9eb8-1cf2d4df0cce\", \"call_request_id\": \"57633e22-0f71-4ff0-8498-daa310ea3301\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:05:26 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/57633e22-0f71-4ff0-8498-daa310ea3301/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="kEe73EYIdLDgUd1PQ6Ijj8p7lKugA1ioOJ2TEI0dO4", oauth_signature="H%2BMJzhxwiP1%2F%2BvrQwR501M3G6%2BA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362327", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:05:27 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"94fe136c-ea79-43c0-9eb8-1cf2d4df0cce\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/57633e22-0f71-4ff0-8498-daa310ea3301/\", \"task_id\": \"57633e22-0f71-4ff0-8498-daa310ea3301\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:26Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:27Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"94fe136c-ea79-43c0-9eb8-1cf2d4df0cce\", \"call_request_id\": \"57633e22-0f71-4ff0-8498-daa310ea3301\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:05:26-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:05:27-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d175ca013687ad589c8\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:05:27 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="dbBJXtWsNaGjL6SEaUVEs4obyPWlPzmG5iETOSiBo", oauth_signature="E9CUuUphLTHu9fZNZkjQA4UKuF8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362341", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:05:41 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "26737" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[{\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"ac3c685f-7902-452b-8af7-849e3e1fcb94\", \"call_request_tags\": [\"pulp:consumer_group_type:simple_group\", \"pulp:action:consumer_group_associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:21Z\", \"tags\": [\"pulp:consumer_group_type:simple_group\", \"pulp:action:consumer_group_associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:21Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"ac3c685f-7902-452b-8af7-849e3e1fcb94\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"055e9f3f-72df-447f-ab26-ec5cb389c504\", \"call_request_tags\": [\"pulp:consumer_group_type:simple_group\", \"pulp:action:consumer_group_unassociate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:21Z\", \"tags\": [\"pulp:consumer_group_type:simple_group\", \"pulp:action:consumer_group_unassociate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:21Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"055e9f3f-72df-447f-ab26-ec5cb389c504\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"8fd5c8d9-6bda-489d-a4be-632ed90ffb11\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:21Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:delete\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:21Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"8fd5c8d9-6bda-489d-a4be-632ed90ffb11\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"a38e3f22-54cc-4ab4-9983-407c0877f089\", \"call_request_tags\": [\"pulp:consumer_group_type:simple_group\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:22Z\", \"tags\": [\"pulp:consumer_group_type:simple_group\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:22Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"a38e3f22-54cc-4ab4-9983-407c0877f089\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"47003ef3-ddb4-4888-a417-e1bdab6df3b0\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:create\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:22Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:create\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:22Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"47003ef3-ddb4-4888-a417-e1bdab6df3b0\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": \"****\"}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"3de01194-9bc8-4e8d-a351-a521f5919043\", \"call_request_tags\": [\"pulp:consumer_group_type:simple_group\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:22Z\", \"tags\": [\"pulp:consumer_group_type:simple_group\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:22Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"3de01194-9bc8-4e8d-a351-a521f5919043\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51fa5d125ca013687ad5890a\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"1e24bb94-724f-41a7-9538-512b36efcc00\", \"call_request_tags\": [\"pulp:consumer_group_type:simple_group\", \"pulp:action:consumer_group_associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:22Z\", \"tags\": [\"pulp:consumer_group_type:simple_group\", \"pulp:action:consumer_group_associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:23Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"1e24bb94-724f-41a7-9538-512b36efcc00\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"cd7c4383-ec9c-40cc-9ffd-f5f6189636af\", \"call_request_tags\": [\"pulp:consumer_group_type:simple_group\", \"pulp:action:consumer_group_unassociate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:23Z\", \"tags\": [\"pulp:consumer_group_type:simple_group\", \"pulp:action:consumer_group_unassociate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:23Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"cd7c4383-ec9c-40cc-9ffd-f5f6189636af\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"a00678f9-638f-48f3-a116-b78650f512d1\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:23Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:delete\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:23Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"a00678f9-638f-48f3-a116-b78650f512d1\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"44ad6a9d-9d12-4a63-a87b-0014ad513378\", \"call_request_tags\": [\"pulp:consumer_group_type:simple_group\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:23Z\", \"tags\": [\"pulp:consumer_group_type:simple_group\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:23Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"44ad6a9d-9d12-4a63-a87b-0014ad513378\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"49ae9f97-73e0-42ac-a976-f6527773d7ce\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:create\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:23Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:create\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:23Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"49ae9f97-73e0-42ac-a976-f6527773d7ce\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": \"****\"}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"6a2ec031-fbf3-401d-ab53-53bab58a0f89\", \"call_request_tags\": [\"pulp:consumer_group_type:simple_group\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:24Z\", \"tags\": [\"pulp:consumer_group_type:simple_group\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:24Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"6a2ec031-fbf3-401d-ab53-53bab58a0f89\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51fa5d145ca013687ad58943\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"dec4097b-c366-4c56-bc64-d377737e0dfd\", \"call_request_tags\": [\"pulp:consumer_group_type:simple_group\", \"pulp:action:consumer_group_associate\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:24Z\", \"tags\": [\"pulp:consumer_group_type:simple_group\", \"pulp:action:consumer_group_associate\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:24Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"dec4097b-c366-4c56-bc64-d377737e0dfd\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"337dd815-2cd0-4363-a10a-83cfa8d3bd2c\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:24Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:delete\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:24Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"337dd815-2cd0-4363-a10a-83cfa8d3bd2c\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"ce6f43a5-aca3-4f02-a61d-3520a5cb4780\", \"call_request_tags\": [\"pulp:consumer_group_type:simple_group\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:24Z\", \"tags\": [\"pulp:consumer_group_type:simple_group\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:24Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"ce6f43a5-aca3-4f02-a61d-3520a5cb4780\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"3fc7f1c5-7e38-4a5e-9297-536ab537ca7a\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:create\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:25Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:create\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:25Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"3fc7f1c5-7e38-4a5e-9297-536ab537ca7a\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": \"****\"}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"2103f36b-c53a-41ee-9929-cbca999124e6\", \"call_request_tags\": [\"pulp:consumer_group_type:simple_group\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:25Z\", \"tags\": [\"pulp:consumer_group_type:simple_group\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:25Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"2103f36b-c53a-41ee-9929-cbca999124e6\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"scratchpad\": null, \"display_name\": null, \"description\": \"Super administrator with all access.\", \"_ns\": \"consumer_groups\", \"notes\": {}, \"consumer_ids\": [\"010E99C0-3276-11E2-81C1-0800200C9A66\"], \"_id\": {\"$oid\": \"51fa5d155ca013687ad58973\"}, \"id\": \"simple_group\", \"_href\": \"/pulp/api/v2/consumer_groups/simple_group/\"}}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"4a3fc716-e2af-4bef-b72e-427259eba15f\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:25Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:delete\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:25Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"4a3fc716-e2af-4bef-b72e-427259eba15f\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"5eb4a8ad-26c6-484c-911f-38af62f62efc\", \"call_request_tags\": [\"pulp:consumer_group_type:simple_group\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:25Z\", \"tags\": [\"pulp:consumer_group_type:simple_group\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:25Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"5eb4a8ad-26c6-484c-911f-38af62f62efc\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"cd182dc1-70b5-402b-9215-fa5836694f18\", \"call_request_tags\": [\"pulp:user:hidden\", \"pulp:action:create\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:26Z\", \"tags\": [\"pulp:user:hidden\", \"pulp:action:create\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:26Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"cd182dc1-70b5-402b-9215-fa5836694f18\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"_id\": {\"$oid\": \"51fa5d165ca013687ad5898e\"}, \"name\": \"hidden\", \"roles\": [], \"_ns\": \"users\", \"login\": \"hidden\", \"id\": \"51fa5d165ca013687ad5898e\", \"_href\": \"/pulp/api/v2/users/hidden/\"}}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"e93afa46-0708-4441-8ca3-ce7b5ffd0814\", \"call_request_tags\": [\"pulp:role:super-users\", \"pulp:action:add_user_to_role\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:26Z\", \"tags\": [\"pulp:role:super-users\", \"pulp:action:add_user_to_role\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:26Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"e93afa46-0708-4441-8ca3-ce7b5ffd0814\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"35e07d76-2a46-47ad-bbc2-39c0b11933dc\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:create\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:26Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:create\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:26Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"35e07d76-2a46-47ad-bbc2-39c0b11933dc\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"51fa5d165ca013687ad589a4\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}}, {\"task_group_id\": \"94fe136c-ea79-43c0-9eb8-1cf2d4df0cce\", \"exception\": null, \"traceback\": null, \"task_id\": \"57633e22-0f71-4ff0-8498-daa310ea3301\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:26Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:27Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"94fe136c-ea79-43c0-9eb8-1cf2d4df0cce\", \"call_request_id\": \"57633e22-0f71-4ff0-8498-daa310ea3301\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:05:26-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:05:27-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d175ca013687ad589c8\", \"removed_count\": 0}}, {\"task_group_id\": \"94fe136c-ea79-43c0-9eb8-1cf2d4df0cce\", \"exception\": null, \"traceback\": null, \"task_id\": \"3b1470e2-319f-4d1e-b936-72ce4f960e49\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:auto_publish\", \"pulp:action:publish\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:27Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:auto_publish\", \"pulp:action:publish\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:27Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"1\": {\"publish_http\": {\"state\": \"SKIPPED\"}, \"publish_https\": {\"state\": \"FINISHED\"}, \"distribution\": {\"num_success\": 3, \"items_left\": 0, \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"num_error\": 0}, \"packages\": {\"num_success\": 8, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"num_error\": 0}, \"packagegroups\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"94fe136c-ea79-43c0-9eb8-1cf2d4df0cce\", \"call_request_id\": \"3b1470e2-319f-4d1e-b936-72ce4f960e49\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"dc9af263-cf5f-42eb-b720-bcec156d9039\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:create\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:29Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:create\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:29Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"dc9af263-cf5f-42eb-b720-bcec156d9039\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": \"****\"}, {\"task_group_id\": \"2af38cd0-8975-4204-abe4-76ee7c0ba569\", \"exception\": null, \"traceback\": null, \"task_id\": \"35f6a1fd-ebfa-4465-8048-f39d83b9ca4f\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:29Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:repository:1\", \"pulp:repository_distributor:1\", \"pulp:action:bind\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:29Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"2af38cd0-8975-4204-abe4-76ee7c0ba569\", \"call_request_id\": \"35f6a1fd-ebfa-4465-8048-f39d83b9ca4f\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"notify_agent\": false, \"repo_id\": \"1\", \"deleted\": false, \"_ns\": \"consumer_bindings\", \"distributor_id\": \"1\", \"consumer_id\": \"010E99C0-3276-11E2-81C1-0800200C9A66\", \"consumer_actions\": [], \"binding_config\": null, \"_id\": {\"$oid\": \"51fa5d195ca013687ad589ed\"}, \"id\": \"51fa5d195ca013687ad589ed\"}}, {\"task_group_id\": null, \"exception\": [\"RequestTimeout: ('6b703b12-cff5-4da0-832e-9da3e9bb549e', 0)\\n\"], \"traceback\": \"Traceback (most recent call last):\\n\\n File \\\"/usr/lib/python2.6/site-packages/gofer/rmi/async.py\\\", line 451, in process\\n raise RequestTimeout(sn, je.idx)\\n\\nRequestTimeout: ('6b703b12-cff5-4da0-832e-9da3e9bb549e', 0)\\n\", \"task_id\": \"51d3dec1-5e92-4d33-a6b8-469830e26b83\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:30Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"error\", \"finish_time\": \"2013-08-01T13:05:40Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"51d3dec1-5e92-4d33-a6b8-469830e26b83\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"828853e5-d637-450e-b3e8-7a0396d8ac2b\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:31Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"828853e5-d637-450e-b3e8-7a0396d8ac2b\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"319e3382-abd4-4ac9-89b0-b12a320aa526\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:32Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"319e3382-abd4-4ac9-89b0-b12a320aa526\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"5ca9c91e-56f0-4209-965e-88a744072218\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:33Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"5ca9c91e-56f0-4209-965e-88a744072218\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"d307ff75-9cb6-43a1-adcd-54d856973252\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:34Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"d307ff75-9cb6-43a1-adcd-54d856973252\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"49985e8d-ab74-4560-9d67-793471388449\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:35Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"49985e8d-ab74-4560-9d67-793471388449\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"7c9718ac-ad1d-4b3c-a7e5-fd2430ca4e30\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:37Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"7c9718ac-ad1d-4b3c-a7e5-fd2430ca4e30\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"d1888b1a-fdc5-49f9-aa4f-d0cc824795ed\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:38Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"d1888b1a-fdc5-49f9-aa4f-d0cc824795ed\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"93adc47c-c697-4cf3-a937-dbf7e94148c2\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:39Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_uninstall\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"93adc47c-c697-4cf3-a937-dbf7e94148c2\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"1c340c44-3b21-4623-98f7-168fcb12a0e1\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:40Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_install\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"1c340c44-3b21-4623-98f7-168fcb12a0e1\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}, {\"task_group_id\": null, \"exception\": null, \"traceback\": null, \"task_id\": \"985f27fd-c704-42eb-9dd2-4febad25d62c\", \"call_request_tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:41Z\", \"tags\": [\"pulp:consumer:010E99C0-3276-11E2-81C1-0800200C9A66\", \"pulp:action:unit_update\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": null, \"call_request_id\": \"985f27fd-c704-42eb-9dd2-4febad25d62c\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}]" + http_version: + recorded_at: Thu, 01 Aug 2013 13:05:41 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/b31888d3-59fe-4272-b22d-f5fe69d98a6d/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="KvHz3wCkqHUeuoUGOuKhVdCDEKe1I519nQMlBL4V6b0", oauth_signature="qZPqQLfQssrwm29fkqvMoa0W5yQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362356", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:05:56 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "1103" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"7126b865-3d01-4ca0-a75e-577b62b331c2\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/b31888d3-59fe-4272-b22d-f5fe69d98a6d/\", \"task_id\": \"b31888d3-59fe-4272-b22d-f5fe69d98a6d\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:56Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"7126b865-3d01-4ca0-a75e-577b62b331c2\", \"call_request_id\": \"b31888d3-59fe-4272-b22d-f5fe69d98a6d\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:05:56 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/b31888d3-59fe-4272-b22d-f5fe69d98a6d/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="x1UzFKRITM9FVCZLr9nwo1AxSwiLCAYOcUGWTWC8", oauth_signature="wiEDs%2FSpdvrZ%2FANAwa3kpSFHK5A%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362357", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:05:57 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"7126b865-3d01-4ca0-a75e-577b62b331c2\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/b31888d3-59fe-4272-b22d-f5fe69d98a6d/\", \"task_id\": \"b31888d3-59fe-4272-b22d-f5fe69d98a6d\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:56Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:57Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"7126b865-3d01-4ca0-a75e-577b62b331c2\", \"call_request_id\": \"b31888d3-59fe-4272-b22d-f5fe69d98a6d\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:05:56-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:05:57-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d355ca013687ad58b32\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:05:57 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/1fa372b0-a577-44c5-8cb3-f30d198dbeb1/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="UjenQc0kzm9ces3Sf1raYwp7VHxKiPS9eHd7Jlhp0", oauth_signature="0zpmB%2BimOohKyr6E9j0jDv2JvtM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362359", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:05:59 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "1110" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"04cc48ee-5f40-4ec2-868e-ec0b285ec1de\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/1fa372b0-a577-44c5-8cb3-f30d198dbeb1/\", \"task_id\": \"1fa372b0-a577-44c5-8cb3-f30d198dbeb1\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:59Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 2, \"items_total\": 8, \"state\": \"IN_PROGRESS\", \"size_left\": 4448, \"details\": {\"rpm_total\": 8, \"rpm_done\": 6, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"04cc48ee-5f40-4ec2-868e-ec0b285ec1de\", \"call_request_id\": \"1fa372b0-a577-44c5-8cb3-f30d198dbeb1\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:05:59 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/1fa372b0-a577-44c5-8cb3-f30d198dbeb1/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="1OqiDN2YX53IBFBCDjRBMuNdEyTfkVsfvlTlrkyxyEI", oauth_signature="gWiPwW9Rsk1leikQl3fvvOOpO0Q%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362360", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:06:00 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"04cc48ee-5f40-4ec2-868e-ec0b285ec1de\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/1fa372b0-a577-44c5-8cb3-f30d198dbeb1/\", \"task_id\": \"1fa372b0-a577-44c5-8cb3-f30d198dbeb1\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:05:59Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:05:59Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"04cc48ee-5f40-4ec2-868e-ec0b285ec1de\", \"call_request_id\": \"1fa372b0-a577-44c5-8cb3-f30d198dbeb1\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:05:59-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:05:59-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d375ca013687ad58b78\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:06:00 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/3bbcf8c5-8849-4177-9a7e-2146605172a0/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="ZLeONxtcQqe7HFlBTKAOJAZXn3PxEDJ4R1jIjXPGpI", oauth_signature="zFp%2BDZKpyQ%2FDCBj%2Fq2ahjNLWEtk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362362", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:06:02 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "1103" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"6306fafe-758b-48e9-a556-6bece9fb42c4\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/3bbcf8c5-8849-4177-9a7e-2146605172a0/\", \"task_id\": \"3bbcf8c5-8849-4177-9a7e-2146605172a0\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:02Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"6306fafe-758b-48e9-a556-6bece9fb42c4\", \"call_request_id\": \"3bbcf8c5-8849-4177-9a7e-2146605172a0\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:06:02 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/3bbcf8c5-8849-4177-9a7e-2146605172a0/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="HlKamJgHOWgZIhuwSSHdZJd4vL3xY3kaAhjdbR9m4U", oauth_signature="UTGdo4A0ikPwxn%2BVFZR%2Fa0tHX2U%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362362", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:06:02 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"6306fafe-758b-48e9-a556-6bece9fb42c4\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/3bbcf8c5-8849-4177-9a7e-2146605172a0/\", \"task_id\": \"3bbcf8c5-8849-4177-9a7e-2146605172a0\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:02Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:02Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"6306fafe-758b-48e9-a556-6bece9fb42c4\", \"call_request_id\": \"3bbcf8c5-8849-4177-9a7e-2146605172a0\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:06:02-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:06:02-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d3a5ca013687ad58bbb\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:06:02 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/2285db87-a173-4e5b-bf30-a7d295cfeb26/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="K3sPlB7OvigDjrgyhvEYzoEOWuAk5S5ScK7saws", oauth_signature="CBSlmqXE6URSIldSv7UvMzReeiw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362365", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:06:05 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "680" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"e5490c90-e608-478c-8b33-441cb866c998\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/2285db87-a173-4e5b-bf30-a7d295cfeb26/\", \"task_id\": \"2285db87-a173-4e5b-bf30-a7d295cfeb26\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:05Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {}, \"call_request_group_id\": \"e5490c90-e608-478c-8b33-441cb866c998\", \"call_request_id\": \"2285db87-a173-4e5b-bf30-a7d295cfeb26\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:06:05 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/2285db87-a173-4e5b-bf30-a7d295cfeb26/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="DWFAKwlS9fdBT4nv455SQZNCJYD6pmA0SL0mFqyUSFU", oauth_signature="%2BjpjKwSB4ivwPWZs6HfrwL0RVGk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362365", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:06:05 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"e5490c90-e608-478c-8b33-441cb866c998\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/2285db87-a173-4e5b-bf30-a7d295cfeb26/\", \"task_id\": \"2285db87-a173-4e5b-bf30-a7d295cfeb26\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:05Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:05Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"e5490c90-e608-478c-8b33-441cb866c998\", \"call_request_id\": \"2285db87-a173-4e5b-bf30-a7d295cfeb26\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:06:05-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:06:05-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d3d5ca013687ad58c0e\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:06:05 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/09c4ed21-abf5-4d08-9a8f-900f8cf1c07a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="J3VNNVNExnjxJXTE48HH4Wj3DBTYXXvAdfUc8t0rhgY", oauth_signature="c%2BDw%2BN6gMpAiZkbH2I146wPXBIo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362368", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:06:08 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "1103" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"93e3f6b1-6664-4a4e-ac75-9f88ec01c77d\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/09c4ed21-abf5-4d08-9a8f-900f8cf1c07a/\", \"task_id\": \"09c4ed21-abf5-4d08-9a8f-900f8cf1c07a\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:08Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"93e3f6b1-6664-4a4e-ac75-9f88ec01c77d\", \"call_request_id\": \"09c4ed21-abf5-4d08-9a8f-900f8cf1c07a\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:06:08 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/09c4ed21-abf5-4d08-9a8f-900f8cf1c07a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="fTaW8ypFwNyCNAbbiK8ZqocMYFyRnIBaY6UZogVLsRQ", oauth_signature="7ORK3QGLhOhdfIwXQ6ouHudjoOc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362368", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:06:08 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"93e3f6b1-6664-4a4e-ac75-9f88ec01c77d\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/09c4ed21-abf5-4d08-9a8f-900f8cf1c07a/\", \"task_id\": \"09c4ed21-abf5-4d08-9a8f-900f8cf1c07a\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:08Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:08Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"93e3f6b1-6664-4a4e-ac75-9f88ec01c77d\", \"call_request_id\": \"09c4ed21-abf5-4d08-9a8f-900f8cf1c07a\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:06:08-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:06:08-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d405ca013687ad58c56\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:06:08 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/73ee3acb-efb5-4511-a496-7f5af0c4a1ec/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="OtP4PJuouvJ6cufIxSpDqlTfCurByow8Kx6XiyKw", oauth_signature="%2Fmkxyvj7UM86GCY%2BeB%2Bm591o87U%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362371", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:06:11 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "1103" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"26dc8557-c530-4967-bccf-5ac488c3c3b5\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/73ee3acb-efb5-4511-a496-7f5af0c4a1ec/\", \"task_id\": \"73ee3acb-efb5-4511-a496-7f5af0c4a1ec\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:11Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"running\", \"finish_time\": null, \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"26dc8557-c530-4967-bccf-5ac488c3c3b5\", \"call_request_id\": \"73ee3acb-efb5-4511-a496-7f5af0c4a1ec\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": null}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:06:11 GMT +- request: + method: get + uri: https://abed.usersys.redhat.com/pulp/api/v2/tasks/73ee3acb-efb5-4511-a496-7f5af0c4a1ec/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="u1mJfqhNFHx4h6qbi1YPr8C7cuNBSrnQaiXfsoUh4", oauth_signature="KSh1TI9V0mUCTbS3b%2BbfVKEzPKA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1375362371", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 01 Aug 2013 13:06:11 GMT + Server: + - Apache/2.2.15 (Red Hat) + Content-Length: + - "2076" + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"task_group_id\": \"26dc8557-c530-4967-bccf-5ac488c3c3b5\", \"exception\": null, \"traceback\": null, \"_href\": \"/pulp/api/v2/tasks/73ee3acb-efb5-4511-a496-7f5af0c4a1ec/\", \"task_id\": \"73ee3acb-efb5-4511-a496-7f5af0c4a1ec\", \"call_request_tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2013-08-01T13:06:11Z\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"state\": \"finished\", \"finish_time\": \"2013-08-01T13:06:11Z\", \"dependency_failures\": {}, \"schedule_id\": null, \"progress\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"call_request_group_id\": \"26dc8557-c530-4967-bccf-5ac488c3c3b5\", \"call_request_id\": \"73ee3acb-efb5-4511-a496-7f5af0c4a1ec\", \"principal_login\": \"admin\", \"response\": \"accepted\", \"result\": {\"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"traceback\": null, \"started\": \"2013-08-01T09:06:11-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2013-08-01T09:06:11-04:00\", \"importer_type_id\": \"yum_importer\", \"error_message\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"result\": \"success\", \"updated_count\": 14, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"51fa5d435ca013687ad58ca4\", \"removed_count\": 0}}" + http_version: + recorded_at: Thu, 01 Aug 2013 13:06:11 GMT recorded_with: VCR 2.5.0 diff --git a/test/glue/candlepin/provider_test.rb b/test/glue/candlepin/provider_test.rb index 4a16ccc2832..8c100e34beb 100644 --- a/test/glue/candlepin/provider_test.rb +++ b/test/glue/candlepin/provider_test.rb @@ -111,8 +111,8 @@ def test_manifest_delete @@provider.stubs(:index_subscriptions).returns(true) Resources::Candlepin::Owner.stubs(:pools).returns([]) Resources::Candlepin::Owner.stubs(:destroy_imports).with(@@provider.organization.label, true).returns(true) - Runcible::Extensions::Repository.stubs(:update_importer) - Runcible::Extensions::Repository.stubs(:update_distributor) + Katello.pulp_server.extensions.repository.stubs(:update_importer) + Katello.pulp_server.extensions.repository.stubs(:update_distributor) @@provider.delete_manifest end end diff --git a/test/glue/pulp/consumer_group_test.rb b/test/glue/pulp/consumer_group_test.rb index e2a06ec0c1a..7d10eaf5f52 100644 --- a/test/glue/pulp/consumer_group_test.rb +++ b/test/glue/pulp/consumer_group_test.rb @@ -72,7 +72,7 @@ def setup def teardown ConsumerSupport.destroy_consumer(@simple_server.id) - Runcible::Resources::ConsumerGroup.retrieve(@simple_group.pulp_id) + Katello.pulp_server.resources.consumer_group.retrieve(@simple_group.pulp_id) @simple_group.del_pulp_consumer_group rescue RestClient::ResourceNotFound => e #do nothing diff --git a/test/glue/pulp/content_type_test.rb b/test/glue/pulp/content_type_test.rb index 2eb89a2186e..04c168cb01b 100644 --- a/test/glue/pulp/content_type_test.rb +++ b/test/glue/pulp/content_type_test.rb @@ -14,14 +14,14 @@ class ContentTypeTest < MiniTest::Rails::ActiveSupport::TestCase def assert_package_type - assert_equal(Package::CONTENT_TYPE, Runcible::Extensions::Rpm.content_type()) + assert_equal(Package::CONTENT_TYPE, Katello.pulp_server.extensions.rpm.content_type()) end def assert_package_group_type - assert_equal(PackageGroup::CONTENT_TYPE, Runcible::Extensions::PackageGroup.content_type()) + assert_equal(PackageGroup::CONTENT_TYPE, Katello.pulp_server.extensions.package_group.content_type()) end def assert_erratum_type - assert_equal(Errata::CONTENT_TYPE, Runcible::Extensions::Errata.content_type()) + assert_equal(Errata::CONTENT_TYPE, Katello.pulp_server.extensions.errata.content_type()) end end \ No newline at end of file diff --git a/test/glue/pulp/errata_test.rb b/test/glue/pulp/errata_test.rb index 073d1af0496..1e1e817d363 100644 --- a/test/glue/pulp/errata_test.rb +++ b/test/glue/pulp/errata_test.rb @@ -60,7 +60,7 @@ def test_list_by_filters end def test_errata_by_consumer - Runcible::Extensions::Consumer.expects(:applicable_errata). + Katello.pulp_server.extensions.consumer.expects(:applicable_errata). with([], [RepositorySupport.repo.pulp_id], false).returns({}) Errata.errata_by_consumer([RepositorySupport.repo]) diff --git a/test/glue/pulp/repository_test.rb b/test/glue/pulp/repository_test.rb index bbefdb2bf12..a420e697019 100644 --- a/test/glue/pulp/repository_test.rb +++ b/test/glue/pulp/repository_test.rb @@ -35,7 +35,7 @@ def self.wait_on_tasks(task_list) VCR.use_cassette('glue_pulp_repo_tasks', :erb => true, :match_requests_on => [:path, :method]) do task_list.each do |task| while !(['finished', 'error', 'timed_out', 'canceled', 'reset', 'success'].include?(task['state'])) do - task = PulpSyncStatus.pulp_task(Runcible::Resources::Task.poll(task["task_id"])) + task = PulpSyncStatus.pulp_task(Katello.pulp_server.resources.task.poll(task["task_id"])) sleep 0.5 # do not overload backend engines end end @@ -45,7 +45,7 @@ def self.wait_on_tasks(task_list) def self.wait_on_task(task) VCR.use_cassette('glue_pulp_repo_tasks', :erb => true, :match_requests_on => [:path, :method]) do while !(['finished', 'error', 'timed_out', 'canceled', 'reset', 'success'].include?(task['state'])) do - task = PulpSyncStatus.pulp_task(Runcible::Resources::Task.poll(task["uuid"])) + task = PulpSyncStatus.pulp_task(Katello.pulp_server.resources.task.poll(task["uuid"])) sleep 0.5 # do not overload backend engines end end @@ -144,7 +144,7 @@ def test_relative_path= end def test_generate_distributor - assert_kind_of Runcible::Extensions::YumDistributor, @fedora_17_x86_64.generate_distributor + assert_kind_of Runcible::Models::YumDistributor, @fedora_17_x86_64.generate_distributor end def test_populate_from diff --git a/test/minitest_helper.rb b/test/minitest_helper.rb index 6902b5ac014..0d6eec51d42 100644 --- a/test/minitest_helper.rb +++ b/test/minitest_helper.rb @@ -107,8 +107,7 @@ def configure_vcr def configure_runcible if Katello.config[:use_pulp] uri = URI.parse(Katello.config.pulp.url) - - Runcible::Base.config = { + runcible_config = { :url => "#{uri.scheme}://#{uri.host}", :api_path => uri.path, :user => "admin", @@ -116,7 +115,8 @@ def configure_runcible :oauth_key => Katello.config.pulp.oauth_key } } - Runcible::Base.config[:logger] = 'stdout' if ENV['logging'] == "true" + runcible_config[:logger] = 'stdout' if ENV['logging'] == "true" + Katello.pulp_server = Runcible::Instance.new(runcible_config) end end diff --git a/test/support/task_support.rb b/test/support/task_support.rb index a1c16cded08..4724b1d5aee 100644 --- a/test/support/task_support.rb +++ b/test/support/task_support.rb @@ -24,7 +24,7 @@ def self.wait_on_tasks(task_list) def self.wait_on_task(task) VCR.use_cassette('task_support', :erb => true, :match_requests_on => [:path, :method, :body_json]) do while !(['finished', 'error', 'timed_out', 'canceled', 'reset', 'success'].include?(task['state'])) do - task = PulpSyncStatus.pulp_task(Runcible::Resources::Task.poll(task['progress']["task_id"])) + task = PulpSyncStatus.pulp_task(Katello.pulp_server.resources.task.poll(task['progress']["task_id"])) sleep_if_needed end end