Sha256: e0df88d638661a2d8ea3bd713853f88457d1109a4f0fed5e62b29270a3bb308f

Contents?: true

Size: 1.98 KB

Versions: 1

Compression:

Stored size: 1.98 KB

Contents

# feature tests for Pre
# revision: $Revision: 1.0 $

$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
require 'unittests/setup'

class TC_Pre < Test::Unit::TestCase
  
  
  def setup
    goto_page("pre.html")
  end
  
  def test_Pre_Count
    assert( browser.pres.length == 3 )
  end
  
  def test_Pre_Exists
    assert_false( browser.pre( :id, 'missingPre' ).exists? )
    assert_false( browser.pre( :index, 33 ).exists? )
    
    assert( browser.pre( :id, '1' ).exists? )
    assert( browser.pre( :id, /[3-9]/ ).exists? )
    
    assert_false( browser.pre( :id, /missing_pre/ ).exists? )
    
    assert( browser.pre( :index, 1 ).exists? )
    assert( browser.pre( :index, 2 ).exists? )
    assert( browser.pre( :index, 3 ).exists? )
    
    assert( browser.pre( :name, '3' ).exists? )
    assert_false( browser.pre( :name, "name_missing" ).exists? )
  end
  
  def test_simple_access
    pre = browser.pre( :index, 1 )
    assert( pre.text.include?( "simple pre space" ) )
    assert_false( pre.text.include?( "A second block" ) )
    
    pre = browser.pre( :index, 2 )
    assert( pre.text.include?( "A second block" ) )
    assert_false( pre.text.include?( "this is the last block" ) )
  end

  tag_method :test_embedded_spaces, :fails_on_firefox # http://jira.openqa.org/browse/WTR-267
  def test_embedded_spaces
    pre = browser.pre( :index, 3 )
    assert( pre.text.include?( "continue    to work" ) )
    assert_false( pre.text.include?( "Pre Tag Test" ) )
  end
  
end


class TC_Pres_Display < Test::Unit::TestCase
  include MockStdoutTestCase

  tag_method :test_showPres, :fails_on_ie
  def test_showPres
    goto_page("pre.html")
    $stdout = @mockout
    browser.showPres
    assert_equal(<<END_OF_MESSAGE, @mockout)
There are 3 pres
pre:     id: 1
       name: 1
      index: 1
pre:     id: 2
       name: 2
      index: 2
pre:     id: 3
       name: 3
      index: 3
END_OF_MESSAGE
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
firewatir-1.6.2 unittests/pre_test.rb