module RSpec module Core class ExampleGroup extend Extensions::ModuleEvalWithArgs include Extensions::InstanceEvalWithArgs extend Hooks include Subject include Let include Pending attr_accessor :example def running_example RSpec.deprecate('running_example', 'example') example end def self.world RSpec.world end def self.inherited(klass) RSpec::Core::Runner.autorun world.example_groups << klass if klass.superclass == ExampleGroup end class << self def self.delegate_to_metadata(*names) names.each do |name| define_method name do metadata[:example_group][name] end end end delegate_to_metadata :description, :describes, :file_path alias_method :display_name, :description alias_method :described_class, :describes end def self.define_example_method(name, extra_options={}) module_eval(<<-END_RUBY, __FILE__, __LINE__) def self.#{name}(desc=nil, options={}, &block) options.update(:pending => true) unless block options.update(:caller => caller) options.update(#{extra_options.inspect}) examples << RSpec::Core::Example.new(self, desc, options, block) examples.last end END_RUBY end define_example_method :example class << self alias_method :alias_example_to, :define_example_method end alias_example_to :it alias_example_to :specify alias_example_to :focused, :focused => true alias_example_to :pending, :pending => true def self.define_shared_group_method(new_name, report_label=nil) module_eval(<<-END_RUBY, __FILE__, __LINE__) def self.#{new_name}(name, *args, &customization_block) shared_block = world.shared_example_groups[name] raise "Could not find shared example group named \#{name.inspect}" unless shared_block describe("#{report_label || "it should behave like"} \#{name}") do module_eval_with_args *args, &shared_block module_eval &customization_block if customization_block end end END_RUBY end define_shared_group_method :it_should_behave_like class << self alias_method :alias_it_should_behave_like_to, :define_shared_group_method end alias_it_should_behave_like_to :it_behaves_like, "behaves like" def self.examples @examples ||= [] end def self.filtered_examples world.filtered_examples[self] end def self.descendant_filtered_examples filtered_examples + children.collect{|c| c.descendant_filtered_examples} end def self.metadata @metadata if defined?(@metadata) end def self.superclass_metadata self.superclass.respond_to?(:metadata) ? self.superclass.metadata : nil end def self.describe(*args, &example_group_block) @_subclass_count ||= 0 @_subclass_count += 1 args << {} unless args.last.is_a?(Hash) args.last.update(:example_group_block => example_group_block) args.last.update(:caller => caller) # TODO 2010-05-05: Because we don't know if const_set is thread-safe child = const_set( "Nested_#{@_subclass_count}", subclass(self, args, &example_group_block) ) children << child child end class << self alias_method :context, :describe end def self.subclass(parent, args, &example_group_block) subclass = Class.new(parent) subclass.set_it_up(*args) subclass.module_eval(&example_group_block) if example_group_block subclass end def self.children @children ||= [] end def self.descendants [self] + children.collect {|c| c.descendants}.flatten end def self.ancestors @_ancestors ||= super().select {|a| a < RSpec::Core::ExampleGroup} end def self.top_level? ancestors.size == 1 end def self.set_it_up(*args) @metadata = RSpec::Core::Metadata.new(superclass_metadata).process(*args) world.configure_group(self) end def self.before_all_ivars @before_all_ivars ||= {} end def self.store_before_all_ivars(example_group_instance) example_group_instance.instance_variables.each { |ivar| before_all_ivars[ivar] = example_group_instance.instance_variable_get(ivar) } end def self.assign_before_all_ivars(ivars, example_group_instance) ivars.each { |ivar, val| example_group_instance.instance_variable_set(ivar, val) } end def self.eval_before_alls(example_group_instance) return if descendant_filtered_examples.empty? assign_before_all_ivars(superclass.before_all_ivars, example_group_instance) world.run_hook_filtered(:before, :all, self, example_group_instance) if top_level? run_hook!(:before, :all, example_group_instance) store_before_all_ivars(example_group_instance) end def self.eval_around_eachs(example_group_instance, wrapped_example) around_hooks.reverse.inject(wrapped_example) do |wrapper, hook| def wrapper.run; call; end lambda { example_group_instance.instance_eval_with_args(wrapper, &hook) } end end def self.eval_before_eachs(example_group_instance) world.run_hook_filtered(:before, :each, self, example_group_instance) ancestors.reverse.each { |ancestor| ancestor.run_hook(:before, :each, example_group_instance) } end def self.eval_after_eachs(example_group_instance) ancestors.each { |ancestor| ancestor.run_hook(:after, :each, example_group_instance) } world.run_hook_filtered(:after, :each, self, example_group_instance) end def self.eval_after_alls(example_group_instance) return if descendant_filtered_examples.empty? assign_before_all_ivars(before_all_ivars, example_group_instance) run_hook!(:after, :all, example_group_instance) world.run_hook_filtered(:after, :all, self, example_group_instance) if top_level? end def self.around_hooks (world.find_hook(:around, :each, self) + ancestors.reverse.map{|a| a.find_hook(:around, :each, self)}).flatten end def self.run(reporter) @reporter = reporter example_group_instance = new reporter.example_group_started(self) begin eval_before_alls(example_group_instance) result_for_this_group = run_examples(example_group_instance, reporter) results_for_descendants = children.map {|child| child.run(reporter)}.all? result_for_this_group && results_for_descendants ensure eval_after_alls(example_group_instance) end end def self.run_examples(instance, reporter) filtered_examples.map do |example| begin set_ivars(instance, before_all_ivars) example.run(instance, reporter) ensure clear_ivars(instance) clear_memoized(instance) end end.all? end def self.all_apply?(filters) metadata.all_apply?(filters) end def self.declaration_line_numbers [metadata[:example_group][:line_number]] + examples.collect {|e| e.metadata[:line_number]} + children.collect {|c| c.declaration_line_numbers}.flatten end def self.top_level_description ancestors.last.description end def self.set_ivars(instance, ivars) ivars.each {|name, value| instance.instance_variable_set(name, value)} end def self.clear_ivars(instance) instance.instance_variables.each { |ivar| instance.send(:remove_instance_variable, ivar) } end def self.clear_memoized(instance) instance.__memoized.clear end def described_class self.class.described_class end def instance_eval_with_rescue(&hook) begin instance_eval(&hook) rescue Exception => e example.set_exception(e) end end end end end