diaspora/spec/models/open_graph_cache_spec.rb
Steffen van Bergerem 4d51c02432 Add OpenGraph video support
closes #7043
2016-09-04 03:55:09 +02:00

61 lines
2.5 KiB
Ruby

# Copyright (c) 2010-2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
require "spec_helper"
describe OpenGraphCache, type: :model do
describe "fetch_and_save_opengraph_data!" do
context "with an unsecure video url" do
it "doesn't save the video url" do
expect(OpenGraphReader).to receive(:fetch!).with("https://example.com/article/123").and_return(
double(
og: double(
description: "This is the article lead",
image: double(url: "https://example.com/image/123.jpg"),
title: "Some article",
type: "article",
url: "https://example.com/acticle/123-seo-foo",
video: double(secure_url: "https://example.com/videos/123.html")
)
)
)
ogc = OpenGraphCache.new(url: "https://example.com/article/123")
ogc.fetch_and_save_opengraph_data!
expect(ogc.description).to eq("This is the article lead")
expect(ogc.image).to eq("https://example.com/image/123.jpg")
expect(ogc.title).to eq("Some article")
expect(ogc.ob_type).to eq("article")
expect(ogc.url).to eq("https://example.com/acticle/123-seo-foo")
expect(ogc.video_url).to be_nil
end
end
context "with a secure video url" do
it "saves the video url" do
expect(OpenGraphReader).to receive(:fetch!).with("https://example.com/article/123").and_return(
double(
og: double(
description: "This is the article lead",
image: double(url: "https://example.com/image/123.jpg"),
title: "Some article",
type: "article",
url: "https://example.com/acticle/123-seo-foo",
video: double(secure_url: "https://bandcamp.com/EmbeddedPlayer/v=2/track=12/size=small")
)
)
)
ogc = OpenGraphCache.new(url: "https://example.com/article/123")
ogc.fetch_and_save_opengraph_data!
expect(ogc.description).to eq("This is the article lead")
expect(ogc.image).to eq("https://example.com/image/123.jpg")
expect(ogc.title).to eq("Some article")
expect(ogc.ob_type).to eq("article")
expect(ogc.url).to eq("https://example.com/acticle/123-seo-foo")
expect(ogc.video_url).to eq("https://bandcamp.com/EmbeddedPlayer/v=2/track=12/size=small")
end
end
end
end