diff options
author | Ben Roberts <ben@thatmustbe.me> | 2017-04-14 20:37:00 -0400 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-15 02:37:00 +0200 |
commit | 89707ad0acf87d5982a0aa249db772eb888de026 (patch) | |
tree | 4660f4f6c047df7f6a6efcf3ecf4178d884f5307 /spec/views/accounts | |
parent | 4bebeb27d359c0fab8980b381f4a789055c980c6 (diff) |
add basic microformats tests (#1803)
as suggested, moving to view tests rather than a controller test replaces https://github.com/tootsuite/mastodon/pull/1786 which i will close momentary
Diffstat (limited to 'spec/views/accounts')
-rw-r--r-- | spec/views/accounts/show.html.haml_spec.rb | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/spec/views/accounts/show.html.haml_spec.rb b/spec/views/accounts/show.html.haml_spec.rb new file mode 100644 index 000000000..8265b2f4d --- /dev/null +++ b/spec/views/accounts/show.html.haml_spec.rb @@ -0,0 +1,67 @@ +require 'rails_helper' +$LOAD_PATH << '../lib' +require 'tag_manager' + +describe "stream_entries/show.html.haml" do + + before do + double(:api_oembed_url => '') + double(:account_stream_entry_url => '') + end + + it "has valid author h-card and basic data for a detailed_status" do + alice = Fabricate(:account, username: 'alice', display_name: 'Alice') + bob = Fabricate(:account, username: 'bob', display_name: 'Bob') + status = Fabricate(:status, account: alice, text: 'Hello World') + reply = Fabricate(:status, account: bob, thread: status, text: 'Hello Alice') + + assign(:status, status) + assign(:stream_entry, status.stream_entry) + assign(:account, alice) + assign(:type, status.stream_entry.activity_type.downcase) + + render(:template => 'stream_entries/show.html.haml') + + mf2 = Microformats2.parse(rendered) + + expect(mf2.entry.name.to_s).to eq status.text + expect(mf2.entry.url.to_s).not_to be_empty + + expect(mf2.entry.author.format.name.to_s).to eq alice.display_name + expect(mf2.entry.author.format.url.to_s).not_to be_empty + end + + it "has valid h-cites for p-in-reply-to and p-comment" do + alice = Fabricate(:account, username: 'alice', display_name: 'Alice') + bob = Fabricate(:account, username: 'bob', display_name: 'Bob') + carl = Fabricate(:account, username: 'carl', display_name: 'Carl') + status = Fabricate(:status, account: alice, text: 'Hello World') + reply = Fabricate(:status, account: bob, thread: status, text: 'Hello Alice') + comment = Fabricate(:status, account: carl, thread: reply, text: 'Hello Bob') + + assign(:status, reply) + assign(:stream_entry, reply.stream_entry) + assign(:account, alice) + assign(:type, reply.stream_entry.activity_type.downcase) + assign(:ancestors, reply.stream_entry.activity.ancestors(bob) ) + assign(:descendants, reply.stream_entry.activity.descendants(bob)) + + render(:template => 'stream_entries/show.html.haml') + + mf2 = Microformats2.parse(rendered) + + expect(mf2.entry.name.to_s).to eq reply.text + expect(mf2.entry.url.to_s).not_to be_empty + + expect(mf2.entry.comment.format.url.to_s).not_to be_empty + expect(mf2.entry.comment.format.author.format.name.to_s).to eq carl.display_name + expect(mf2.entry.comment.format.author.format.url.to_s).not_to be_empty + + expect(mf2.entry.in_reply_to.format.url.to_s).not_to be_empty + expect(mf2.entry.in_reply_to.format.author.format.name.to_s).to eq alice.display_name + expect(mf2.entry.in_reply_to.format.author.format.url.to_s).not_to be_empty + end + +end + + |