Sha256: 8b74d5b4f36e6f0f4c128680b41f6d34b1bafef004ada20e931f2411ffe7804c
Contents?: true
Size: 1.8 KB
Versions: 9
Compression:
Stored size: 1.8 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(->(arg) { 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 = FactoryGirl.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 = FactoryGirl.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
9 entries across 9 versions & 1 rubygems