authorizations_controller_spec.rb 633 B

12345678910111213141516171819202122232425
  1. require 'rails_helper'
  2. RSpec.describe Oauth::AuthorizationsController, type: :controller do
  3. render_views
  4. let(:app) { Doorkeeper::Application.create!(name: 'test', redirect_uri: 'http://localhost/') }
  5. before do
  6. sign_in Fabricate(:user), scope: :user
  7. end
  8. describe 'GET #new' do
  9. before do
  10. get :new, params: { client_id: app.uid, response_type: 'code', redirect_uri: 'http://localhost/' }
  11. end
  12. it 'returns http success' do
  13. expect(response).to have_http_status(:success)
  14. end
  15. it 'gives options to authorize and deny' do
  16. expect(response.body).to match(/Authorize/)
  17. end
  18. end
  19. end