diaspora/spec/views/status_messages/_status_message.mobile.haml_spec.rb
2018-11-08 20:41:50 +01:00

17 lines
660 B
Ruby

# frozen_string_literal: true
describe "status_messages/_status_message.mobile.haml" do
it "escapes the OpenGraph metadata" do
open_graph_cache = OpenGraphCache.new(
url: "<script>alert(0);</script>",
title: "<script>alert(0);</script>",
image: "https://example.org/\"><script>alert(0);</script>",
description: "<script>alert(0);</script>"
)
post = FactoryGirl.create(:status_message, public: true, open_graph_cache: open_graph_cache)
render file: "status_messages/_status_message.mobile.haml", locals: {post: post, photos: post.photos}
expect(rendered).to_not include("<script>")
end
end