Ensure that Open Graph image url is absolute
This commit is contained in:
parent
a73e20cd5c
commit
24c138ac8d
2 changed files with 12 additions and 1 deletions
|
@ -4,7 +4,7 @@ module OpenGraphHelper
|
|||
"og:site_name" => t("layouts.project_name.title"),
|
||||
"og:title" => [title, t("layouts.project_name.title")].compact.join(" | "),
|
||||
"og:type" => "website",
|
||||
"og:image" => og_image || image_url("osm_logo_256.png"),
|
||||
"og:image" => og_image ? URI.join(root_url, og_image) : image_url("osm_logo_256.png"),
|
||||
"og:url" => url_for(:only_path => false),
|
||||
"og:description" => t("layouts.intro_text")
|
||||
}
|
||||
|
|
|
@ -763,6 +763,17 @@ class DiaryEntriesControllerTest < ActionDispatch::IntegrationTest
|
|||
end
|
||||
end
|
||||
|
||||
def test_show_og_image_with_relative_uri
|
||||
user = create(:user)
|
||||
diary_entry = create(:diary_entry, :user => user, :body => "")
|
||||
|
||||
get diary_entry_path(user, diary_entry)
|
||||
assert_response :success
|
||||
assert_dom "head meta[property='og:image']" do
|
||||
assert_dom "> @content", "#{root_url}picture.jpg"
|
||||
end
|
||||
end
|
||||
|
||||
def test_hide
|
||||
user = create(:user)
|
||||
diary_entry = create(:diary_entry, :user => user)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue