module Webrat module Selenium module Matchers class HasContent #:nodoc: def initialize(content) @content = content end def matches?(response) response.session.wait_for do response.selenium.is_text_present(text_finder) end rescue Webrat::TimeoutError => e @error_message = e.message false end def does_not_match?(response) response.session.wait_for do !response.selenium.is_text_present(text_finder) end rescue Webrat::TimeoutError => e @error_message = e.message false end # ==== Returns # String:: The failure message. def failure_message "expected the response to #{content_message}:\n#{@error_message}" end # ==== Returns # String:: The failure message to be displayed in negative matches. def negative_failure_message "expected the response to not #{content_message}" end def content_message case @content when String "include \"#{@content}\"" when Regexp "match #{@content.inspect}" end end def text_finder if @content.is_a?(Regexp) "regexp:#{@content.source}" else @content end end end # Matches the contents of an HTML document with # whatever string is supplied def contain(content) HasContent.new(content) end # Asserts that the body of the response contain # the supplied string or regexp def assert_contain(content) hc = HasContent.new(content) assert hc.matches?(response), hc.failure_message end # Asserts that the body of the response # does not contain the supplied string or regepx def assert_not_contain(content) hc = HasContent.new(content) assert !hc.matches?(response), hc.negative_failure_message end end end end