Sha256: 75eafebb47c6d6f6c9eacc1b5d92829768fe67ff8dec393cf33b813f1705eb62

Contents?: true

Size: 1.81 KB

Versions: 34

Compression:

Stored size: 1.81 KB

Contents

module Webrat
  module Selenium
    module Matchers
      class HasContent #:nodoc:
        def initialize(content)
          @content = content
        end
        
        def matches?(response)
          if @content.is_a?(Regexp)
            text_finder = "regexp:#{@content.source}"
          else
            text_finder = @content
          end
          
          response.session.wait_for do
            response.selenium.is_text_present(text_finder)
          end
          rescue Webrat::TimeoutError
            false
        end

        # ==== Returns
        # String:: The failure message.
        def failure_message
          "expected the following element's content to #{content_message}:\n#{@element}"
        end

        # ==== Returns
        # String:: The failure message to be displayed in negative matches.
        def negative_failure_message
          "expected the following element's content to not #{content_message}:\n#{@element}"
        end

        def content_message
          case @content
          when String
            "include \"#{@content}\""
          when Regexp
            "match #{@content.inspect}"
          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

Version data entries

34 entries across 34 versions & 8 rubygems

Version Path
adva-0.3.2 test/webrat/lib/webrat/selenium/matchers/have_content.rb
adva-0.3.1 test/webrat/lib/webrat/selenium/matchers/have_content.rb
adva-0.3.0 test/webrat/lib/webrat/selenium/matchers/have_content.rb
adva-0.2.4 test/webrat/lib/webrat/selenium/matchers/have_content.rb
adva-0.2.3 test/webrat/lib/webrat/selenium/matchers/have_content.rb
adva-0.2.2 test/webrat/lib/webrat/selenium/matchers/have_content.rb
adva-0.2.1 test/webrat/lib/webrat/selenium/matchers/have_content.rb
adva-0.2.0 test/webrat/lib/webrat/selenium/matchers/have_content.rb
adva-0.1.4 test/webrat/lib/webrat/selenium/matchers/have_content.rb
adva-0.1.3 test/webrat/lib/webrat/selenium/matchers/have_content.rb
adva-0.1.2 test/webrat/lib/webrat/selenium/matchers/have_content.rb
adva-0.1.1 test/webrat/lib/webrat/selenium/matchers/have_content.rb
adva-0.1.0 test/webrat/lib/webrat/selenium/matchers/have_content.rb
adva-0.0.1 test/webrat/lib/webrat/selenium/matchers/have_content.rb
diabolo-webrat-0.4.2 lib/webrat/selenium/matchers/have_content.rb
jferris-webrat-0.4.3.0.1238640835 lib/webrat/selenium/matchers/have_content.rb
jferris-webrat-0.4.3 lib/webrat/selenium/matchers/have_content.rb
jwilger-webrat-0.4.2.1 lib/webrat/selenium/matchers/have_content.rb
jwilger-webrat-0.4.2.2 lib/webrat/selenium/matchers/have_content.rb
jwilger-webrat-0.4.2.3 lib/webrat/selenium/matchers/have_content.rb