Sha256: 119552dc9e21c8830959806559b9b047ed773a4740db4d50c0692d0b3b08dfa5

Contents?: true

Size: 1.88 KB

Versions: 43

Compression:

Stored size: 1.88 KB

Contents

require 'spec_helper'

describe FbGraph::Connections::Messages do
  describe '#messages' do
    it 'should return threads as FbGraph::Message' do
      mock_graph :get, '12345/messages', 'thread/messages/private', :params => {:no_cache => 'true'}, :access_token => 'access_token' do
        messages = FbGraph::Thread.new(12345, :access_token => 'access_token').messages(:no_cache => true)
        messages.each do |message|
          message.should be_instance_of(FbGraph::Message)
        end
      end
    end

    describe 'cached messages' do
      context 'when cached' do
        let(:thread) { FbGraph::Thread.new(12345, :access_token => 'access_token', :messages => {}) }

        it 'should use cache' do
          lambda do
            thread.messages
          end.should_not request_to '12345/messages?access_token=access_token'
        end

        context 'when options are specified' do
          it 'should not use cache' do
            lambda do
              thread.messages(:no_cache => true)
            end.should request_to '12345/messages?access_token=access_token&no_cache=true'
          end
        end
      end

      context 'otherwise' do
        let(:thread) { FbGraph::Thread.new(12345, :access_token => 'access_token') }

        it 'should not use cache' do
          lambda do
            thread.messages
          end.should request_to '12345/messages?access_token=access_token'
        end
      end
    end
  end

  describe '#message!' do
    let(:thread) { FbGraph::Thread.new(12345, :access_token => 'access_token') }

    it 'should return FbGraph::Message' do
      mock_graph :post, '12345/messages', 'thread/messages/created', :access_token => 'access_token', :params => {
        :message => 'Hello'
      } do
        message = thread.message! 'Hello'
        message.should be_instance_of FbGraph::Message
        message.message.should == 'Hello'
      end
    end
  end
end

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
fb_graph-2.7.17 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.16 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.15 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.14 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.13 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.12 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.11 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.10 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.9 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.8 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.7 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.6 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.5 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.4 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.3 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.2 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.1 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.7.0 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.6.7 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.6.6 spec/fb_graph/connections/messages_spec.rb