# frozen_string_literal: true require 'rails_helper' describe ApplicationHelper::GraphMethods, :type => :helper do describe "#user_opengraph" do context "sample user" do let(:user) { FactoryBot.create(:user, profile: { display_name: 'Cunes', description: 'A bunch of raccoons in a trenchcoat.' }, screen_name: 'raccoons') } subject { user_opengraph(user) } it 'should generate a matching OpenGraph structure for a user' do allow(APP_CONFIG).to receive(:[]).with('site_name').and_return('pineapplespring') expect(subject).to eq(<<~EOS.chomp) EOS end end end describe "#user_twitter_card" do context "sample user" do let(:user) { FactoryBot.create(:user, profile: { display_name: '', description: 'A bunch of raccoons in a trenchcoat.'}, screen_name: 'raccoons') } subject { user_twitter_card(user) } it 'should generate a matching OpenGraph structure for a user' do expect(subject).to eq(<<~EOS.chomp) EOS end end end describe "#answer_opengraph" do context "sample user and answer" do let!(:user) { FactoryBot.create(:user, profile: { display_name: '', description: 'A bunch of raccoons in a trenchcoat.'}, screen_name: 'raccoons') } let(:answer) { FactoryBot.create(:answer, user_id: user.id,) } subject { answer_opengraph(answer) } it 'should generate a matching OpenGraph structure for a user' do allow(APP_CONFIG).to receive(:[]).with('site_name').and_return('pineapplespring') expect(subject).to eq(<<~EOS.chomp) EOS end end end end