Sha256: 193a773d807359e54a301884c1feb40a0edf19ca1beacd9c1ab61c5d36710370

Contents?: true

Size: 1.24 KB

Versions: 7

Compression:

Stored size: 1.24 KB

Contents

if respond_to?(:require_relative, true)
  require_relative 'common'
else
  require File.dirname(__FILE__) + '/common'
end

describe RestGraph do
  before do
    @rg  = RestGraph.new(:app_id => '29', :secret => '18')
    @uri = 'http://zzz.tw'
  end

  after do
    reset_webmock
  end

  it 'would return correct oauth url' do
    TestHelper.normalize_url(@rg.authorize_url(:redirect_uri => @uri)).
    should == 'https://graph.facebook.com/oauth/authorize?' \
              'client_id=29&redirect_uri=http%3A%2F%2Fzzz.tw'
  end

  it 'would do authorizing and parse result and save it in data' do
    stub_request(:get, 'https://graph.facebook.com/oauth/access_token?' \
                       'client_id=29&client_secret=18&code=zzz&'        \
                       'redirect_uri=http%3A%2F%2Fzzz.tw').
      to_return(:body => 'access_token=baken&expires=2918')

    result = {'access_token' => 'baken', 'expires' => '2918'}

    @rg.authorize!(:redirect_uri => @uri, :code => 'zzz').
             should == result
    @rg.data.should == result
  end

  it 'would not append access_token in authorize_url even presented' do
    RestGraph.new(:access_token => 'do not use me').authorize_url.
      should == 'https://graph.facebook.com/oauth/authorize'
  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rest-graph-1.5.0 test/test_oauth.rb
rest-graph-1.4.6 test/test_oauth.rb
rest-graph-1.4.5 test/test_oauth.rb
rest-graph-1.4.4 test/test_oauth.rb
rest-graph-1.4.3 test/test_oauth.rb
rest-graph-1.4.2 test/test_oauth.rb
rest-graph-1.4.1 test/test_oauth.rb