diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-05-04 17:45:18 -0400 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-04 23:45:18 +0200 |
commit | f9d398e8fb2fe17694949ec1654df60298b0004b (patch) | |
tree | d5324a858a3512b93f1195cd82e4de1a9882b52a /spec/requests | |
parent | 74c8ca699c37ebdb0e3c6f0648f9f90a4f1f8f89 (diff) |
Remove the react-rails gem (#2801)
* Remove react-rails gem * Fix broken view spec
Diffstat (limited to 'spec/requests')
-rw-r--r-- | spec/requests/account_show_page_spec.rb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/spec/requests/account_show_page_spec.rb b/spec/requests/account_show_page_spec.rb new file mode 100644 index 000000000..4e51cf7ef --- /dev/null +++ b/spec/requests/account_show_page_spec.rb @@ -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 |