a6429f8c22
Completely removed the html5lib sanitizer. Fixed the string-handling to work in both Ruby 1.8.x and 1.9.2. There are still, inexplicably, two functional tests that fail. But the rest seems to work quite well.
71 lines
1.9 KiB
Ruby
71 lines
1.9 KiB
Ruby
require 'test/unit'
|
|
|
|
HTML5_BASE = File.dirname(File.dirname(File.dirname(File.expand_path(__FILE__))))
|
|
|
|
if File.exists?(File.join(HTML5_BASE, 'ruby', 'testdata'))
|
|
TESTDATA_DIR = File.join(HTML5_BASE, 'ruby', 'testdata')
|
|
else
|
|
HTML5_BASE_RUBY = File.dirname(File.dirname(File.expand_path(__FILE__)))
|
|
TESTDATA_DIR = File.join(HTML5_BASE_RUBY, 'testdata')
|
|
end
|
|
|
|
$:.unshift File.join(File.dirname(File.dirname(__FILE__)), 'lib')
|
|
$:.unshift File.dirname(__FILE__)
|
|
|
|
def html5_test_files(subdirectory)
|
|
Dir[File.join(TESTDATA_DIR, subdirectory, '*.*')]
|
|
end
|
|
|
|
require 'rubygems'
|
|
require 'json'
|
|
|
|
module HTML5
|
|
module TestSupport
|
|
# convert the output of str(document) to the format used in the testcases
|
|
def convertTreeDump(treedump)
|
|
treedump.split(/\n/)[1..-1].map { |line| (line.length > 2 and line[0] == ?|) ? line[3..-1] : line }.join("\n")
|
|
end
|
|
|
|
def sortattrs(output)
|
|
output.gsub(/^(\s+)\w+=.*(\n\1\w+=.*)+/) do |match|
|
|
match.split("\n").sort.join("\n")
|
|
end
|
|
end
|
|
|
|
class TestData
|
|
include Enumerable
|
|
|
|
def initialize(filename, sections)
|
|
@f = open(filename)
|
|
@sections = sections
|
|
end
|
|
|
|
def each
|
|
data = {}
|
|
key = nil
|
|
@f.each_line do |line|
|
|
if line[0] == ?# and @sections.include?(line[1..-2])
|
|
heading = line[1..-2]
|
|
if data.any? and heading == @sections[0]
|
|
data[key].chomp! #Remove trailing newline
|
|
yield normaliseOutput(data)
|
|
data = {}
|
|
end
|
|
key = heading
|
|
data[key]=""
|
|
elsif key
|
|
data[key] += line
|
|
end
|
|
end
|
|
yield normaliseOutput(data) if data
|
|
end
|
|
|
|
def normaliseOutput(data)
|
|
#Remove trailing newlines
|
|
data.keys.each { |key| data[key].chomp! }
|
|
@sections.map {|heading| data[heading]}
|
|
end
|
|
end
|
|
end
|
|
end
|