Sha256: e136897129b964024eaab6ee918192fc6d4d2f15e7b00cb076cce78540bfb179

Contents?: true

Size: 964 Bytes

Versions: 10

Compression:

Stored size: 964 Bytes

Contents

require 'spec_helper'

feature 'Authorized applications' do
  background do
    @user   = User.create!(name: 'Joe', password: 'sekret')
    @client = client_exists(name: 'Amazing Client App')
    resource_owner_is_authenticated @user
    client_is_authorized @client, @user
  end

  scenario 'display user\'s authorized applications' do
    visit '/oauth/authorized_applications'
    i_should_see 'Amazing Client App'
  end

  scenario 'do not display other user\'s authorized applications' do
    client = client_exists(name: 'Another Client App')
    client_is_authorized client, User.create!(name: 'Joe', password: 'sekret')
    visit '/oauth/authorized_applications'
    i_should_not_see 'Another Client App'
  end

  scenario 'user revoke access to application' do
    visit '/oauth/authorized_applications'
    i_should_see 'Amazing Client App'
    click_on 'Revoke'
    i_should_see 'Application revoked'
    i_should_not_see 'Amazing Client App'
  end
end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
doorkeeper-5.0.3 spec/requests/applications/authorized_applications_spec.rb
doorkeeper-5.1.0.rc2 spec/requests/applications/authorized_applications_spec.rb
doorkeeper-5.1.0.rc1 spec/requests/applications/authorized_applications_spec.rb
doorkeeper-5.0.2 spec/requests/applications/authorized_applications_spec.rb
doorkeeper-mongodb-5.0.0 spec/requests/applications/authorized_applications_spec.rb
doorkeeper-5.0.1 spec/requests/applications/authorized_applications_spec.rb
doorkeeper-sequel-2.0.0 spec/requests/applications/authorized_applications_spec.rb
doorkeeper-5.0.0 spec/requests/applications/authorized_applications_spec.rb
doorkeeper-5.0.0.rc2 spec/requests/applications/authorized_applications_spec.rb
doorkeeper-5.0.0.rc1 spec/requests/applications/authorized_applications_spec.rb