Sha256: 873d6541ffc4baa6d2fa1e0c0d2e70bddb32835307615afc299a87344dbad016

Contents?: true

Size: 818 Bytes

Versions: 7

Compression:

Stored size: 818 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 do
    puts "CGI.unescapeHTML"
    times.times do
      CGI.unescapeHTML(escaped_html)
    end
  end

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
escape_utils-0.2.1 benchmark/html_unescape.rb
escape_utils-0.2.0 benchmark/html_unescape.rb
escape_utils-0.1.9 benchmark/html_unescape.rb
escape_utils-0.1.8 benchmark/html_unescape.rb
escape_utils-0.1.7 benchmark/html_unescape.rb
escape_utils-0.1.6 benchmark/html_unescape.rb
escape_utils-0.1.5 benchmark/html_unescape.rb