Project

General

Profile

« Previous | Next » 

Revision 49be817e

Added by Ivan Necas about 10 years ago

Fixes #4584 - use test class instead of describe

Otherwise strange things happen

View differences:

test/actions/katello/system/package_test.rb
require 'katello_test_helper'
module Katello
describe ::Actions::Katello::System::Package do
module ::Actions::Katello::System::Package
class TestBase < ActiveSupport::TestCase
include Dynflow::Testing
include Support::Actions::Fixtures
let(:system) { mock('a_system', uuid: 'uuid').mimic!(::Katello::System) }
let(:action_class) { raise NotImplementedError }
let(:action) do
action = create_action action_class
action.stubs(:action_subject).with(system, :packages => packages = %w(vim vi))
plan_action action, system, packages
end
end
describe 'Install' do
let(:action_class) { ::Actions::Katello::System::Package::Install }
let(:pulp_action_class) { ::Actions::Pulp::Consumer::ContentInstall }
class InstallTest < TestBase
let(:action_class) { ::Actions::Katello::System::Package::Install }
let(:pulp_action_class) { ::Actions::Pulp::Consumer::ContentInstall }
specify { assert_action_planed action, pulp_action_class }
specify { assert_action_planed action, pulp_action_class }
describe '#humanized_output' do
let :action do
create_action(action_class).tap do |action|
action.stubs(planned_actions: [pulp_action])
end
describe '#humanized_output' do
let :action do
create_action(action_class).tap do |action|
action.stubs(planned_actions: [pulp_action])
end
let(:pulp_action) { fixture_action(pulp_action_class, output: fixture_variant) }
end
let(:pulp_action) { fixture_action(pulp_action_class, output: fixture_variant) }
describe 'successfully installed' do
let(:fixture_variant) { :success }
describe 'successfully installed' do
let(:fixture_variant) { :success }
specify do
action.humanized_output.must_equal <<-OUTPUT.chomp
specify do
action.humanized_output.must_equal <<-OUTPUT.chomp
1:emacs-23.1-21.el6_2.3.x86_64
libXmu-1.1.1-2.el6.x86_64
libXaw-1.0.11-2.el6.x86_64
libotf-0.9.9-3.1.el6.x86_64
OUTPUT
end
end
end
describe 'no packages installed' do
let(:fixture_variant) { :no_packages }
describe 'no packages installed' do
let(:fixture_variant) { :no_packages }
specify do
action.humanized_output.must_equal "No new packages installed"
end
specify do
action.humanized_output.must_equal "No new packages installed"
end
end
describe 'with error' do
let(:fixture_variant) { :error }
describe 'with error' do
let(:fixture_variant) { :error }
specify do
action.humanized_output.must_equal <<-MSG.chomp
specify do
action.humanized_output.must_equal <<-MSG.chomp
No new packages installed
emacss: No package(s) available to install
MSG
end
end
end
end
describe 'Remove' do
class RemoveTest < TestBase
let(:action_class) { ::Actions::Katello::System::Package::Remove }
let(:pulp_action_class) { ::Actions::Pulp::Consumer::ContentUninstall }

Also available in: Unified diff