Sha256: 68edf4b7595f136c94e9b81942ce8001743db59e688776ca02e33a5005d96b41

Contents?: true

Size: 1.7 KB

Versions: 6

Compression:

Stored size: 1.7 KB

Contents

require File.expand_path('test_helper', File.dirname(__FILE__))

# Test cases for the HTML5Validator.
class HTML5ValidatorTests < Test::Unit::TestCase
  include W3CValidators
  def setup
    @v = NuValidator.new
    sleep 1
  end

  def test_getting_request_data
    r = @v.validate_uri('http://code.dunae.ca/w3c_validators/test/valid_html5.html')
    assert_equal :html5, r.doctype
    assert_equal 'http://code.dunae.ca/w3c_validators/test/valid_html5.html', r.uri
    assert_no_errors r
    assert_no_warnings r
    assert r.is_valid?
  end

  def test_validating_uri
    r = @v.validate_uri('http://code.dunae.ca/w3c_validators/test/invalid_html5.html')
    assert_errors r, 2
    assert_warnings r, 1
    assert !r.is_valid?
  end

  def test_validating_file
    skip("Pending, broken")
    file = File.dirname(__FILE__) + '/fixtures/invalid_html5.html'
    r = @v.validate_file(file)
    assert_errors r, 1
  end

  def test_validating_text
    skip("Pending, broken")
    valid_fragment = <<-EOV
    <!DOCTYPE html>
    <html lang="en-ca">
      <head>
        <title>HTML 5 Example</title>
      </head>
      <body>
        <!-- should have one error (missing </section>) -->
        <p>This is a sample HTML 5 document.</p>
        <section>
        <h1>Example of paragraphs</h1>
        This is the <em>first</em> paragraph in this example.
        <p>This is the second.</p>
        <p>Test<br>test</p>
      </body>
    </html>
    EOV
    
    r = @v.validate_text(valid_fragment)
    assert_errors r, 1
  end

  #def test_validating_text_via_file
  #  fh = File.new(File.dirname(__FILE__) + '/fixtures/invalid_html5.html', 'r+')    
  #  r = @v.validate_file(fh)
  #  fh.close
  #  assert_equal 1, r.errors.length
  #end


end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
frameworks-capybara-0.2.0.rc6 vendor/bundle/ruby/1.8/gems/w3c_validators-1.2/test/test_html5_validator.rb
frameworks-capybara-0.2.0.rc5 vendor/bundle/ruby/1.8/gems/w3c_validators-1.2/test/test_html5_validator.rb
frameworks-capybara-0.2.0.rc4 vendor/bundle/ruby/1.8/gems/w3c_validators-1.2/test/test_html5_validator.rb
frameworks-capybara-0.2.0.rc3 vendor/bundle/ruby/1.8/gems/w3c_validators-1.2/test/test_html5_validator.rb
frameworks-capybara-0.2.0.rc2 vendor/bundle/ruby/1.8/gems/w3c_validators-1.2/test/test_html5_validator.rb
w3c_validators-1.2 test/test_html5_validator.rb