kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
3.3 KiB
84 lines
3.3 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2018 the OpenProject Foundation (OPF)
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2017 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See docs/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require 'spec_helper'
|
|
|
|
describe 'OAuth applications management', type: :feature, js: true do
|
|
let(:admin) { FactoryBot.create(:admin) }
|
|
|
|
before do
|
|
login_as(admin)
|
|
visit oauth_applications_path
|
|
end
|
|
|
|
it 'can create, update, show and delete applications' do
|
|
# Initially empty
|
|
expect(page).to have_selector('.generic-table--empty-row', text: 'There is currently nothing to display')
|
|
|
|
# Create application
|
|
find('.button', text: 'Add').click
|
|
fill_in 'application_name', with: 'My API application'
|
|
# Fill invalid redirect_uri
|
|
fill_in 'application_redirect_uri', with: "not a url!"
|
|
click_on 'Create'
|
|
|
|
|
|
expect(page).to have_selector('.errorExplanation', text: 'Redirect URI must be an absolute URI.')
|
|
fill_in 'application_redirect_uri', with: "urn:ietf:wg:oauth:2.0:oob\nhttps://localhost/my/callback"
|
|
click_on 'Create'
|
|
|
|
expect(page).to have_selector('.flash.notice', text: 'Successful creation.')
|
|
|
|
expect(page).to have_selector('.attributes-key-value--key', text: 'Client ID')
|
|
expect(page).to have_selector('.attributes-key-value--value', text: "urn:ietf:wg:oauth:2.0:oob\nhttps://localhost/my/callback")
|
|
|
|
# Should print secret on initial visit
|
|
expect(page).to have_selector('.attributes-key-value--key', text: 'Client secret')
|
|
expect(page.first('.attributes-key-value--value code').text).to match /\w+/
|
|
|
|
# Edit again
|
|
click_on 'Edit'
|
|
|
|
fill_in 'application_redirect_uri', with: "urn:ietf:wg:oauth:2.0:oob"
|
|
click_on 'Save'
|
|
|
|
# Show application
|
|
find('td a', text: 'My API application').click
|
|
|
|
expect(page).to have_no_selector('.attributes-key-value--key', text: 'Client secret')
|
|
expect(page).to have_no_selector('.attributes-key-value--value code')
|
|
expect(page).to have_selector('.attributes-key-value--key', text: 'Client ID')
|
|
expect(page).to have_selector('.attributes-key-value--value', text: "urn:ietf:wg:oauth:2.0:oob")
|
|
|
|
click_on 'Delete'
|
|
page.driver.browser.switch_to.alert.accept
|
|
|
|
# Table is empty again
|
|
expect(page).to have_selector('.generic-table--empty-row', text: 'There is currently nothing to display')
|
|
end
|
|
end
|
|
|