Sha256: 0f1ac14f3e1737f9db54a7d32af250e413a9e1de7efa62930f5bb4debeb4fd40

Contents?: true

Size: 1.62 KB

Versions: 2

Compression:

Stored size: 1.62 KB

Contents

require 'lib/muri.rb'

describe "Parse Errors" do
  @no_parser = ["http://media.photobucket.com/image/searchterm/pbapi/file.jpg",
        "http://pic.pbsrc.com/dev_help/WebHelpPublic/PhotobucketPublicHelp.htm"]
  
  @unsupported = ["http://gi0006.photobucket.com/groups/0006/",
                  #"http://gi0006.photobucket.com/groups/m/m/a.a",
                  #"http://gi0006.photobucket.com/groups/0006/G5PAK3TBQS/DSCF0015-1-1.jpg",
                  "http://www.flickr.com/photos",
                  "http://img178.imageshack.us/img178/",
                  "http://img178.imageshack.us/img178/773/",
                  "http://img178.imageshack.us/img178//",
                  #"http://img178.imageshack.us///",
                  "http://vimeo.com/",
                  "http://vimeo.com/moogaloop.swf?server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1",
                 "http://vimeo.com/moogaloop.swf?server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1"]
  
  @no_parser.each do |a|
    it "#{a} should return NoParser" do
      #lambda { Muri.parse a }.should raise_exception(Muri::NoParser)
      m = Muri.parse a
      m.valid?.should == false
      m.errors.should == "Muri::NoParser"
    end
  end
  
  @unsupported.each do |b|
    it "#{b} should return UnsupportedURI" do
      #lambda { Muri.parse b }.should raise_exception(Muri::UnsupportedURI)
      m = Muri.parse b
      #m.valid?.should == false
      m.errors.should == "Muri::UnsupportedURI"
    end
  end
  
  it "should not bomb if no URI is provided" do
    lambda { Muri.parse nil }.should_not raise_exception()
  end
  
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
muri-1.1.0 test/error_test.rb
muri-1.0.0 test/error_test.rb