Sha256: de8313bd9ef5a843aef5afc8113b196e18e6eb5ad0d673b447bd3403c5bc92ff

Contents?: true

Size: 1.79 KB

Versions: 1

Compression:

Stored size: 1.79 KB

Contents

require 'spec_helper_integration'

module Doorkeeper
  describe ApplicationsController do
    context 'when admin is not authenticated' do
      before do
        allow(Doorkeeper.configuration).to receive(:authenticate_admin).and_return(proc do
          redirect_to main_app.root_url
        end)
      end

      it 'redirects as set in Doorkeeper.authenticate_admin' do
        get :index
        expect(response).to redirect_to(controller.main_app.root_url)
      end

      it 'does not create application' do
        expect do
          post :create, doorkeeper_application: {
            name: 'Example',
            redirect_uri: 'https://example.com' }
        end.to_not change { Doorkeeper::Application.count }
      end
    end

    context 'when admin is authenticated' do
      before do
        allow(Doorkeeper.configuration).to receive(:authenticate_admin).and_return(->(*) { true })
      end

      it 'creates application' do
        expect do
          post :create, doorkeeper_application: {
            name: 'Example',
            redirect_uri: 'https://example.com' }
        end.to change { Doorkeeper::Application.count }.by(1)
        expect(response).to be_redirect
      end

      it 'does not allow mass assignment of uid or secret' do
        application = FactoryBot.create(:application)
        put :update, id: application.id, doorkeeper_application: {
          uid: '1A2B3C4D',
          secret: '1A2B3C4D' }

        expect(application.reload.uid).not_to eq '1A2B3C4D'
      end

      it 'updates application' do
        application = FactoryBot.create(:application)
        put :update, id: application.id, doorkeeper_application: {
          name: 'Example',
          redirect_uri: 'https://example.com' }
        expect(application.reload.name).to eq 'Example'
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
doorkeeper-sequel-1.4.0 spec/controllers/applications_controller_spec.rb