Sha256: 3702fb7629039e9dd97852b2eda541e922a29e72c0829d064672b84244490685

Contents?: true

Size: 758 Bytes

Versions: 3

Compression:

Stored size: 758 Bytes

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler/setup'
require 'benchmark/ips'

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

module HamlBench
  extend Haml::Helpers
end

url = "https://en.wikipedia.org/wiki/Succession_to_the_British_throne"
html = `curl -s #{url}`
html = html.force_encoding('binary') if html.respond_to?(:force_encoding)
escaped_html = EscapeUtils.escape_html(html)
puts "Unescaping #{escaped_html.bytesize} bytes of escaped html, from #{url}"

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

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

  x.compare!
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
escape_utils-1.2.2 benchmark/html_unescape.rb
escape_utils-1.2.1 benchmark/html_unescape.rb
escape_utils-1.2.0 benchmark/html_unescape.rb