parent
74c8ca699c
commit
f9d398e8fb
@ -0,0 +1,40 @@ |
||||
# frozen_string_literal: true |
||||
|
||||
require 'rails_helper' |
||||
|
||||
describe 'The account show page' do |
||||
it 'Has an h-feed with correct number of h-entry objects in it' do |
||||
alice = Fabricate(:account, username: 'alice', display_name: 'Alice') |
||||
_status = Fabricate(:status, account: alice, text: 'Hello World') |
||||
_status2 = Fabricate(:status, account: alice, text: 'Hello World Again') |
||||
_status3 = Fabricate(:status, account: alice, text: 'Are You Still There World?') |
||||
|
||||
get '/@alice' |
||||
|
||||
expect(h_feed_entries.size).to eq(3) |
||||
end |
||||
|
||||
it 'has valid opengraph tags' do |
||||
alice = Fabricate(:account, username: 'alice', display_name: 'Alice') |
||||
_status = Fabricate(:status, account: alice, text: 'Hello World') |
||||
|
||||
get '/@alice' |
||||
|
||||
expect(head_meta_content('og:title')).to match alice.display_name |
||||
expect(head_meta_content('og:type')).to eq 'profile' |
||||
expect(head_meta_content('og:image')).to match '.+' |
||||
expect(head_meta_content('og:url')).to match 'http://.+' |
||||
end |
||||
|
||||
def head_meta_content(property) |
||||
head_section.meta("[@property='#{property}']")[:content] |
||||
end |
||||
|
||||
def head_section |
||||
Nokogiri::Slop(response.body).html.head |
||||
end |
||||
|
||||
def h_feed_entries |
||||
Nokogiri::HTML(response.body).search('.h-feed .h-entry') |
||||
end |
||||
end |
@ -1,42 +0,0 @@ |
||||
require 'rails_helper' |
||||
|
||||
describe 'accounts/show.html.haml' do |
||||
before do |
||||
allow(view).to receive(:show_landing_strip?).and_return(true) |
||||
end |
||||
|
||||
it 'has an h-feed with correct number of h-entry objects in it' do |
||||
alice = Fabricate(:account, username: 'alice', display_name: 'Alice') |
||||
status = Fabricate(:status, account: alice, text: 'Hello World') |
||||
status2 = Fabricate(:status, account: alice, text: 'Hello World Again') |
||||
status3 = Fabricate(:status, account: alice, text: 'Are You Still There World?') |
||||
|
||||
assign(:account, alice) |
||||
assign(:statuses, alice.statuses) |
||||
assign(:stream_entry, status.stream_entry) |
||||
assign(:type, status.stream_entry.activity_type.downcase) |
||||
|
||||
render |
||||
|
||||
expect(Nokogiri::HTML(rendered).search('.h-feed .h-entry').size).to eq 3 |
||||
end |
||||
|
||||
it 'has valid opengraph tags' do |
||||
alice = Fabricate(:account, username: 'alice', display_name: 'Alice') |
||||
status = Fabricate(:status, account: alice, text: 'Hello World') |
||||
|
||||
assign(:account, alice) |
||||
assign(:statuses, alice.statuses) |
||||
assign(:stream_entry, status.stream_entry) |
||||
assign(:type, status.stream_entry.activity_type.downcase) |
||||
|
||||
render |
||||
|
||||
header_tags = view.content_for(:header_tags) |
||||
|
||||
expect(header_tags).to match(%r{<meta content='.+' property='og:title'>}) |
||||
expect(header_tags).to match(%r{<meta content='profile' property='og:type'>}) |
||||
expect(header_tags).to match(%r{<meta content='.+' property='og:image'>}) |
||||
expect(header_tags).to match(%r{<meta content='http://.+' property='og:url'>}) |
||||
end |
||||
end |
Loading…
Reference in new issue