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.6.5 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.6.4 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.6.3 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.6.2 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.6.1 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.6.0 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.5.9 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.5.8 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.5.7 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.5.6 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.5.5 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.5.4 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.5.3 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.5.2 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.5.1 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.5.0 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.4.20 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.4.19 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.4.18 spec/fb_graph/connections/messages_spec.rb
fb_graph-2.4.17 spec/fb_graph/connections/messages_spec.rb