Class: Cucumber::Filter

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

Overview

Filters the AST based on –tags and –name

Instance Method Summary collapse

Constructor Details

#initialize(lines, options) ⇒ Filter

:nodoc:



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

def initialize(lines, options)
  @lines = lines

  @include_tags = options[:include_tags] ? options[:include_tags].keys : []
  @exclude_tags = options[:exclude_tags] ? options[:exclude_tags].keys : []
  @name_regexps = options[:name_regexps] || []
end

Instance Method Details

#accept?(syntax_node) ⇒ Boolean

Returns:

  • (Boolean)


12
13
14
15
16
# File 'lib/cucumber/filter.rb', line 12

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)


18
19
20
21
# File 'lib/cucumber/filter.rb', line 18

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)


23
24
25
# File 'lib/cucumber/filter.rb', line 23

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)


40
41
42
# File 'lib/cucumber/filter.rb', line 40

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

#included_by_tags?(syntax_node) ⇒ Boolean

Returns:

  • (Boolean)


36
37
38
# File 'lib/cucumber/filter.rb', line 36

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

#matches_names?(syntax_node) ⇒ Boolean

Returns:

  • (Boolean)


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

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)


31
32
33
34
# File 'lib/cucumber/filter.rb', line 31

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

#outline_at_line?(syntax_node) ⇒ Boolean

Returns:

  • (Boolean)


27
28
29
# File 'lib/cucumber/filter.rb', line 27

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)


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

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