Sha256: 5598310a544d5a80875c3de9d47f977d40fbd9ed3d916a8ec56528f67db2b796

Contents?: true

Size: 1.49 KB

Versions: 5

Compression:

Stored size: 1.49 KB

Contents

# frozen_string_literal: true

require "spec_helper"

RSpec.describe "Scoped routes" do
  before :all do
    Rails.application.routes.disable_clear_and_finalize = true

    Rails.application.routes.draw do
      use_doorkeeper scope: "scope"
    end
  end

  after :all do
    Rails.application.routes.clear!

    load File.expand_path("../dummy/config/routes.rb", __dir__)
  end

  it "GET /scope/authorize routes to authorizations controller" do
    expect(get("/scope/authorize")).to route_to("doorkeeper/authorizations#new")
  end

  it "POST /scope/authorize routes to authorizations controller" do
    expect(post("/scope/authorize")).to route_to("doorkeeper/authorizations#create")
  end

  it "DELETE /scope/authorize routes to authorizations controller" do
    expect(delete("/scope/authorize")).to route_to("doorkeeper/authorizations#destroy")
  end

  it "POST /scope/token routes to tokens controller" do
    expect(post("/scope/token")).to route_to("doorkeeper/tokens#create")
  end

  it "GET /scope/applications routes to applications controller" do
    expect(get("/scope/applications")).to route_to("doorkeeper/applications#index")
  end

  it "GET /scope/authorized_applications routes to authorized applications controller" do
    expect(get("/scope/authorized_applications")).to route_to("doorkeeper/authorized_applications#index")
  end

  it "GET /scope/token/info route to authorized TokenInfo controller" do
    expect(get("/scope/token/info")).to route_to("doorkeeper/token_info#show")
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
doorkeeper-mongodb-5.3.0 spec/routing/scoped_routes_spec.rb
doorkeeper-mongodb-5.2.3 spec/routing/scoped_routes_spec.rb
doorkeeper-sequel-2.4.0 spec/routing/scoped_routes_spec.rb
doorkeeper-mongodb-5.2.2 spec/routing/scoped_routes_spec.rb
doorkeeper-sequel-2.3.0 spec/routing/scoped_routes_spec.rb