Class: Cucumber::Filter

Inherits:
Object show all
Defined in:
lib/cucumber/filter.rb

Instance Method Summary collapse

Constructor Details

#initialize(lines, options) ⇒ Filter

Returns a new instance of Filter.



3
4
5
6
7
8
# File 'lib/cucumber/filter.rb', line 3

def initialize(lines, options)
  @lines = lines
  @include_tags = options[:include_tags] || []
  @exclude_tags = options[:exclude_tags] || []
  @name_regexps = options[:name_regexps] || []
end

Instance Method Details

#accept?(syntax_node) ⇒ Boolean

Returns:

  • (Boolean)


10
11
12
13
14
# File 'lib/cucumber/filter.rb', line 10

def accept?(syntax_node)
  at_line?(syntax_node) &&
  matches_tags?(syntax_node) &&
  matches_names?(syntax_node)
end

#accept_example?(syntax_node, outline) ⇒ Boolean

Returns:

  • (Boolean)


16
17
18
19
# File 'lib/cucumber/filter.rb', line 16

def accept_example?(syntax_node, outline)
  (at_line?(syntax_node) || outline_at_line?(outline)) && 
  (matches_names?(syntax_node) || outline_matches_names?(outline))
end

#at_line?(syntax_node) ⇒ Boolean

Returns:

  • (Boolean)


21
22
23
# File 'lib/cucumber/filter.rb', line 21

def at_line?(syntax_node)
  @lines.nil? || @lines.empty? || @lines.detect{|line| syntax_node.at_line?(line)}
end

#excluded_by_tags?(syntax_node) ⇒ Boolean

Returns:

  • (Boolean)


38
39
40
# File 'lib/cucumber/filter.rb', line 38

def excluded_by_tags?(syntax_node)
  @exclude_tags.any? && syntax_node.has_tags?(@exclude_tags)
end

#included_by_tags?(syntax_node) ⇒ Boolean

Returns:

  • (Boolean)


34
35
36
# File 'lib/cucumber/filter.rb', line 34

def included_by_tags?(syntax_node)
  @include_tags.empty? || syntax_node.has_all_tags?(@include_tags)
end

#matches_names?(syntax_node) ⇒ Boolean

Returns:

  • (Boolean)


46
47
48
# File 'lib/cucumber/filter.rb', line 46

def matches_names?(syntax_node)
  @name_regexps.nil? || @name_regexps.empty? || @name_regexps.detect{|name_regexp| syntax_node.matches_name?(name_regexp)}
end

#matches_tags?(syntax_node) ⇒ Boolean

Returns:

  • (Boolean)


29
30
31
32
# File 'lib/cucumber/filter.rb', line 29

def matches_tags?(syntax_node)
  !excluded_by_tags?(syntax_node) &&
  included_by_tags?(syntax_node)
end

#outline_at_line?(syntax_node) ⇒ Boolean

Returns:

  • (Boolean)


25
26
27
# File 'lib/cucumber/filter.rb', line 25

def outline_at_line?(syntax_node)
   @lines.nil? || @lines.empty? || @lines.detect{|line| syntax_node.outline_at_line?(line)}
end

#outline_matches_names?(syntax_node) ⇒ Boolean

Returns:

  • (Boolean)


42
43
44
# File 'lib/cucumber/filter.rb', line 42

def outline_matches_names?(syntax_node)
  @name_regexps.nil? || @name_regexps.empty? || @name_regexps.detect{|name_regexp| syntax_node.outline_matches_name?(name_regexp)}
end