mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
162 lines
3.9 KiB
Ruby
162 lines
3.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'forwardable'
|
|
|
|
module Capybara
|
|
##
|
|
# A {Capybara::Result} represents a collection of {Capybara::Node::Element} on the page. It is possible to interact with this
|
|
# collection similar to an Array because it implements Enumerable and offers the following Array methods through delegation:
|
|
#
|
|
# * \[\]
|
|
# * each()
|
|
# * at()
|
|
# * size()
|
|
# * count()
|
|
# * length()
|
|
# * first()
|
|
# * last()
|
|
# * empty?()
|
|
# * values_at()
|
|
# * sample()
|
|
#
|
|
# @see Capybara::Node::Element
|
|
#
|
|
class Result
|
|
include Enumerable
|
|
extend Forwardable
|
|
|
|
def initialize(elements, query)
|
|
@elements = elements
|
|
@result_cache = []
|
|
@filter_errors = []
|
|
@results_enum = lazy_select_elements { |node| query.matches_filters?(node, @filter_errors) }
|
|
@query = query
|
|
end
|
|
|
|
def_delegators :full_results, :size, :length, :last, :values_at, :inspect, :sample
|
|
|
|
alias index find_index
|
|
|
|
def each(&block)
|
|
return enum_for(:each) unless block_given?
|
|
|
|
@result_cache.each(&block)
|
|
loop do
|
|
next_result = @results_enum.next
|
|
@result_cache << next_result
|
|
yield next_result
|
|
end
|
|
self
|
|
end
|
|
|
|
def [](*args)
|
|
idx, length = args
|
|
max_idx = case idx
|
|
when Integer
|
|
if !idx.negative?
|
|
length.nil? ? idx : idx + length - 1
|
|
else
|
|
nil
|
|
end
|
|
when Range
|
|
idx.end && idx.max # endless range will have end == nil
|
|
end
|
|
|
|
if max_idx.nil?
|
|
full_results[*args]
|
|
else
|
|
load_up_to(max_idx + 1)
|
|
@result_cache[*args]
|
|
end
|
|
end
|
|
alias :at :[]
|
|
|
|
def empty?
|
|
!any?
|
|
end
|
|
|
|
def compare_count
|
|
count, min, max, between = @query.options.values_at(:count, :minimum, :maximum, :between)
|
|
|
|
# Only check filters for as many elements as necessary to determine result
|
|
if count && (count = Integer(count))
|
|
return load_up_to(count + 1) <=> count
|
|
end
|
|
|
|
if min && (min = Integer(min))
|
|
return -1 if load_up_to(min) < min
|
|
end
|
|
|
|
if max && (max = Integer(max))
|
|
return 1 if load_up_to(max + 1) > max
|
|
end
|
|
|
|
if between
|
|
min, max = between.min, (between.end && between.max)
|
|
size = load_up_to(max ? max + 1 : min)
|
|
return size <=> min unless between.include?(size)
|
|
end
|
|
|
|
0
|
|
end
|
|
|
|
def matches_count?
|
|
compare_count.zero?
|
|
end
|
|
|
|
def failure_message
|
|
message = @query.failure_message
|
|
if count.zero?
|
|
message << ' but there were no matches'
|
|
else
|
|
message << ", found #{count} #{Capybara::Helpers.declension('match', 'matches', count)}: " \
|
|
<< full_results.map(&:text).map(&:inspect).join(', ')
|
|
end
|
|
unless rest.empty?
|
|
elements = rest.map { |el| el.text rescue '<<ERROR>>' }.map(&:inspect).join(', ') # rubocop:disable Style/RescueModifier
|
|
message << '. Also found ' << elements << ', which matched the selector but not all filters. '
|
|
message << @filter_errors.join('. ') if (rest.size == 1) && count.zero?
|
|
end
|
|
message
|
|
end
|
|
|
|
def negative_failure_message
|
|
failure_message.sub(/(to find)/, 'not \1')
|
|
end
|
|
|
|
def unfiltered_size
|
|
@elements.length
|
|
end
|
|
|
|
private
|
|
|
|
def load_up_to(num)
|
|
loop do
|
|
break if @result_cache.size >= num
|
|
|
|
@result_cache << @results_enum.next
|
|
end
|
|
@result_cache.size
|
|
end
|
|
|
|
def full_results
|
|
loop { @result_cache << @results_enum.next }
|
|
@result_cache
|
|
end
|
|
|
|
def rest
|
|
@rest ||= @elements - full_results
|
|
end
|
|
|
|
def lazy_select_elements(&block)
|
|
# JRuby has an issue with lazy enumerators which
|
|
# causes a concurrency issue with network requests here
|
|
# https://github.com/jruby/jruby/issues/4212
|
|
if RUBY_PLATFORM == 'java'
|
|
@elements.select(&block).to_enum # non-lazy evaluation
|
|
else
|
|
@elements.lazy.select(&block)
|
|
end
|
|
end
|
|
end
|
|
end
|