Sha256: b39fbdf7ceaefe6bfe48053eef77d51b63b65c679cee6629e115943faeb20c45

Contents?: true

Size: 1.24 KB

Versions: 10

Compression:

Stored size: 1.24 KB

Contents

require 'spec_helper'

describe ProtectedController do

  describe 'get :index' do
    let(:user) { FactoryGirl.create :user }
    let(:client) { FactoryGirl.create :client }
    before do
      @token = Devise::Oauth2Providable::AccessToken.create! :client => client, :user => user
    end
    context 'with valid bearer token in header' do
      before do

        @request.env['HTTP_AUTHORIZATION'] = "Bearer #{@token.token}"
        get :index, :format => 'json'
      end
      it { should respond_with :success }
    end
    context 'with valid bearer token in query string' do
      before do
        get :index, :access_token => @token.token, :format => 'json'
      end
      it { should respond_with :success }
    end

    context 'with invalid bearer token in query param' do
      before do
        get :index, :access_token => 'invalid', :format => 'json'
      end
      it { should respond_with :unauthorized }
    end
    context 'with valid bearer token in header and query string' do
      before do
      end
      it 'raises error' do
        lambda {
          @request.env['HTTP_AUTHORIZATION'] = "Bearer #{@token.token}"
          get :index, :access_token => @token.token, :format => 'json'
        }.should raise_error
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
brycesch-devise_oauth2_providable-1.2.8 spec/controllers/protected_controller_spec.rb
brycesch-devise_oauth2_providable-1.2.7 spec/controllers/protected_controller_spec.rb
brycesch-devise_oauth2_providable-1.2.6 spec/controllers/protected_controller_spec.rb
brycesch-devise_oauth2_providable-1.2.5 spec/controllers/protected_controller_spec.rb
brycesch-devise_oauth2_providable-1.2.4 spec/controllers/protected_controller_spec.rb
brycesch-devise_oauth2_providable-1.2.3 spec/controllers/protected_controller_spec.rb
brycesch-devise_oauth2_providable-1.2.2 spec/controllers/protected_controller_spec.rb
brycesch-devise_oauth2_providable-1.2.1 spec/controllers/protected_controller_spec.rb
brycesch-devise_oauth2_providable-1.2.0 spec/controllers/protected_controller_spec.rb
brycesch-devise_oauth2_providable-1.1.7 spec/controllers/protected_controller_spec.rb