You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.4 KiB

  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. describe 'about/show.html.haml', without_verify_partial_doubles: true do
  4. let(:commit_hash) { '8925731c9869f55780644304e4420a1998e52607' }
  5. before do
  6. allow(view).to receive(:site_hostname).and_return('example.com')
  7. allow(view).to receive(:site_title).and_return('example site')
  8. end
  9. it 'has valid open graph tags' do
  10. instance_presenter = double(:instance_presenter,
  11. site_title: 'something',
  12. site_description: 'something',
  13. version_number: '1.0',
  14. source_url: 'https://github.com/tootsuite/mastodon',
  15. open_registrations: false,
  16. thumbnail: nil,
  17. closed_registrations_message: 'yes',
  18. commit_hash: commit_hash)
  19. assign(:instance_presenter, instance_presenter)
  20. render
  21. header_tags = view.content_for(:header_tags)
  22. expect(header_tags).to match(%r{<meta content=".+" property="og:title" />})
  23. expect(header_tags).to match(%r{<meta content="website" property="og:type" />})
  24. expect(header_tags).to match(%r{<meta content=".+" property="og:image" />})
  25. expect(header_tags).to match(%r{<meta content="http://.+" property="og:url" />})
  26. end
  27. end