Sha256: b6ab85eea26dce9e0e531c22a1870939b69239322347fba52d26fbc4434d177b
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
require 'spec_helper' require 'webrick' HTML = <<HTML <html> <head> <script type="text/javascript"> document.addEventListener("DOMContentLoaded", function() { document.getElementById('fuga').textContent = ("!skrow tI").split("").reverse().join(""); Sunscraper.finish(); }, true); </script> </head> <body> <div id='fuga'></div> </body> </html> HTML PORT = 45555 describe Sunscraper do it "can scrape an HTML provided as a string" do Sunscraper.scrape_html(HTML).should include('It works!') end it "can scrape an URL" do server = WEBrick::HTTPServer.new :Port => PORT, :Logger => WEBrick::Log.new('/dev/null'), :AccessLog => [] server.mount_proc '/' do |req, res| res.body = HTML end Thread.new { server.start } Sunscraper.scrape_url("http://localhost:#{PORT}/").should include('It works!') server.stop end it "should time out if callback is not called" do lambda { Sunscraper.scrape_html("<!-- nothing. at least no callbacks -->", 1000) }. should raise_exception(Sunscraper::ScrapeTimeout) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sunscraper-1.0.0 | spec/sunscraper_spec.rb |