Class: Cucumber::Ast::Background

Inherits:
Object
  • Object
show all
Includes:
FeatureElement
Defined in:
lib/cucumber/ast/background.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Attributes included from FeatureElement

#feature

Instance Method Summary collapse

Methods included from FeatureElement

#attach_steps, #backtrace_line, #file_colon_line, #first_line_length, #language, #matches_scenario_names?, #max_line_length, #name_line_lengths, #source_indent, #source_tag_names, #tag_count, #text_length

Constructor Details

#initialize(comment, line, keyword, name, steps) ⇒ Background

Returns a new instance of Background.



9
10
11
12
13
14
# File 'lib/cucumber/ast/background.rb', line 9

def initialize(comment, line, keyword, name, steps)
  @comment, @line, @keyword, @name, @steps = comment, line, keyword, name, StepCollection.new(steps)
  attach_steps(steps)
  @step_invocations = @steps.step_invocations(true)
  @feature_elements = []
end

Instance Attribute Details

#feature_elementsObject (readonly)

Returns the value of attribute feature_elements.



7
8
9
# File 'lib/cucumber/ast/background.rb', line 7

def feature_elements
  @feature_elements
end

Instance Method Details

#accept(visitor) ⇒ Object



25
26
27
28
29
30
31
32
33
# File 'lib/cucumber/ast/background.rb', line 25

def accept(visitor)
  return if $cucumber_interrupted
  visitor.visit_comment(@comment) unless @comment.empty?
  visitor.visit_background_name(@keyword, @name, file_colon_line(@line), source_indent(first_line_length))
  visitor.step_mother.before(hook_context)
  visitor.visit_steps(@step_invocations)
  @failed = @step_invocations.detect{|step_invocation| step_invocation.exception}
  visitor.step_mother.after(hook_context) if @failed || @feature_elements.empty?
end

#accept_hook?(hook) ⇒ Boolean

Returns:

  • (Boolean)


35
36
37
38
39
40
41
42
# File 'lib/cucumber/ast/background.rb', line 35

def accept_hook?(hook)
  if hook_context != self
    hook_context.accept_hook?(hook)
  else
    # We have no scenarios, just ask our feature
    @feature.accept_hook?(hook)
  end
end

#failed?Boolean

Returns:

  • (Boolean)


44
45
46
# File 'lib/cucumber/ast/background.rb', line 44

def failed?
  @failed
end

#hook_contextObject



48
49
50
# File 'lib/cucumber/ast/background.rb', line 48

def hook_context
  @feature_elements.first || self
end

#step_collection(step_invocations) ⇒ Object



16
17
18
19
20
21
22
23
# File 'lib/cucumber/ast/background.rb', line 16

def step_collection(step_invocations)
  unless(@first_collection_created)
    @first_collection_created = true
    @step_invocations.dup(step_invocations)
  else
    @steps.step_invocations(true).dup(step_invocations)
  end
end

#to_sexpObject



52
53
54
55
56
57
58
59
60
# File 'lib/cucumber/ast/background.rb', line 52

def to_sexp
  sexp = [:background, @line, @keyword]
  sexp += [@name] unless @name.empty?
  comment = @comment.to_sexp
  sexp += [comment] if comment
  steps = @steps.to_sexp
  sexp += steps if steps.any?
  sexp
end