teamcapybara--capybara/lib/capybara/query.rb

64 lines
1.8 KiB
Ruby
Raw Normal View History

2012-01-02 17:11:07 +00:00
module Capybara
class Query
attr_accessor :selector, :locator, :options, :xpaths
def initialize(*args)
@options = if args.last.is_a?(Hash) then args.pop.dup else {} end
if text = options[:text]
@options[:text] = Regexp.escape(text) unless text.kind_of?(Regexp)
end
unless options.has_key?(:visible)
@options[:visible] = Capybara.ignore_hidden_elements
end
if args[1]
@selector = Selector.all[args[0]]
@locator = args[1]
else
@selector = Selector.all.values.find { |s| s.match?(args[0]) }
@locator = args[0]
end
@selector ||= Selector.all[Capybara.default_selector]
xpath = @selector.call(@locator)
if xpath.respond_to?(:to_xpaths)
@xpaths = xpath.to_xpaths
else
@xpaths = [xpath.to_s].flatten
end
end
def failure_message(type, node)
2012-01-02 17:11:07 +00:00
message = selector.failure_message.call(node, self) if selector.failure_message
message ||= options[:message]
if type == :assert
message ||= "expected #{description} to return something"
else
message ||= "Unable to find #{description}"
end
2012-01-02 17:11:07 +00:00
message
end
def negative_failure_message(type, node)
"expected #{description} not to return anything"
end
2012-01-02 17:11:07 +00:00
def name; selector.name; end
def description
@description = "#{name} #{locator.inspect}"
@description << " with text #{options[:text].inspect}" if options[:text]
@description
end
2012-01-02 17:11:07 +00:00
def matches_filters?(node)
return false if options[:text] and not node.text.match(options[:text])
return false if options[:visible] and not node.visible?
selector.custom_filters.each do |name, block|
return false if options.has_key?(name) and not block.call(node, options[name])
end
true
end
end
end