# frozen_string_literal: true
require "rails_helper"
require "onebox/open_graph"
describe Onebox::OpenGraph do
it "excludes html tags in title" do
doc = Nokogiri::HTML('
Did’ you <b>miss me</b>? - Album on Imgur')
og = described_class.new(doc)
expect(og.title).to eq("Did’ you miss me? - Album on Imgur")
expect(og.description).to eq("Post with 7 votes and 151 views. Shared by vinothkannans. Did you miss me?")
expect(og.image).to eq("https://i.imgur.com/j1CNCZY.gif?noredirect")
end
it "correctly normalizes the url properties" do
doc = Nokogiri::HTML("")
og = described_class.new(doc)
expect(og.image).to eq("http://test.com/test'ing.mp3")
end
end