discourse/spec/lib/onebox/engine/gfycat_onebox_spec.rb
David Taylor c9dab6fd08
DEV: Automatically require 'rails_helper' in all specs (#16077)
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors.

By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
2022-03-01 17:50:50 +00:00

38 lines
1.1 KiB
Ruby

# frozen_string_literal: true
describe Onebox::Engine::GfycatOnebox do
let(:link) { "https://gfycat.com/shrillnegativearrowana" }
let(:html) { described_class.new(link).to_html }
let(:placeholder_html) { described_class.new(link).placeholder_html }
before do
stub_request(:get, link).to_return(status: 200, body: onebox_response("gfycat"))
end
it "has the title" do
expect(html).to include("shrillnegativearrowana")
expect(placeholder_html).to include("shrillnegativearrowana")
end
it "has the link" do
expect(html).to include(link)
expect(placeholder_html).to include(link)
end
it "has the poster" do
expect(html).to include("https://thumbs.gfycat.com/ShrillNegativeArrowana-poster.jpg")
end
it "has the webm video" do
expect(html).to include("https://giant.gfycat.com/ShrillNegativeArrowana.webm")
end
it "has the mp4 video" do
expect(html).to include("https://giant.gfycat.com/ShrillNegativeArrowana.mp4")
end
it "has keywords" do
expect(html).to include("<a href='https://gfycat.com/gifs/search/lego'>#lego</a>")
end
end