Sha256: 054504853f469452dd1a07ea99b23139bb8350d383109df9de5f207ff567785a

Contents?: true

Size: 800 Bytes

Versions: 2

Compression:

Stored size: 800 Bytes

Contents

# encoding: utf-8
$LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/..')
$LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/../lib')

require 'rubygems'
require 'benchmark'

require 'cgi'
require 'haml'
require 'escape_utils'

module HamlBench
  extend Haml::Helpers
end

times = 100
url = "http://en.wikipedia.org/wiki/Line_of_succession_to_the_British_throne"
html = `curl -s #{url}`
escaped_html = EscapeUtils.escape_html(html)
puts "Unescaping #{escaped_html.bytesize} bytes of escaped html #{times} times, from #{url}"

Benchmark.bmbm do |x|
  x.report "CGI.unescapeHTML" do
    times.times do
      CGI.unescapeHTML(escaped_html)
    end
  end

  x.report "EscapeUtils.unescape_html" do
    times.times do
      EscapeUtils.unescape_html(escaped_html)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
escape_utils-0.2.3 benchmark/html_unescape.rb
escape_utils-0.2.2 benchmark/html_unescape.rb