Sha256: 1b82cc21d6b2f3341bca74c1f93218cb04f33174cd5fc3d747c96159d88713c3

Contents?: true

Size: 1.65 KB

Versions: 2

Compression:

Stored size: 1.65 KB

Contents

require "spec_helper"

describe Onebox::Engine::ImageOnebox do
  it "supports png" do
    expect(Onebox.preview('http://www.discourse.org/images/logo.png').to_s).to match(/<img/)
  end

  it "supports jpg" do
    expect(Onebox.preview('http://upload.wikimedia.org/wikipedia/en/a/a9/Example.jpg').to_s).to match(/<img/)
  end

  it "supports jpeg" do
    expect(Onebox.preview('http://upload.wikimedia.org/wikipedia/en/b/bb/Poster.jpeg').to_s).to match(/<img/)
  end

  it "supports gif" do
    expect(Onebox.preview('http://upload.wikimedia.org/wikipedia/commons/5/55/Tesseract.gif').to_s).to match(/<img/)
  end

  it "supports tif" do
    expect(Onebox.preview('http://www.fileformat.info/format/tiff/sample/1f37bbd5603048178487ec88b1a6425b/MARBLES.tif').to_s).to match(/<img/)
  end

  it "supports bmp" do
    expect(Onebox.preview('http://www.fileformat.info/format/bmp/sample/d4202a5fc22a48c388d9e1c636792cc6/LAND.BMP').to_s).to match(/<img/)
  end

  it "supports image URLs with query parameters" do
    expect(Onebox.preview('https://www.google.com/logos/doodles/2014/percy-julians-115th-birthday-born-1899-5688801926053888-hp.jpg?foo=bar').to_s).to match(/<img/)
  end

  it "supports protocol relative image URLs" do
    expect(Onebox.preview('//www.google.com/logos/doodles/2014/percy-julians-115th-birthday-born-1899-5688801926053888-hp.jpg').to_s).to match(/<img/)
  end

  it "includes a direct link to the image" do
    expect(Onebox.preview('http://www.discourse.org/images/logo.png').to_s).to match(/<a.*png/)
  end

  it "doesn't inline single quotes" do
    expect(Onebox.preview("http://host/path/to/image'withquote.png").to_s).to match(/image%27withquote/)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
onebox-1.6.5 spec/lib/onebox/engine/image_onebox_spec.rb
onebox-1.6.4 spec/lib/onebox/engine/image_onebox_spec.rb