#-- copyright # OpenProject is an open source project management software. # Copyright (C) 2012-2021 the OpenProject GmbH # # 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-2013 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 'Enterprise token', type: :feature, js: true do include Redmine::I18n shared_let(:admin) { FactoryBot.create :admin } let(:token_object) do token = OpenProject::Token.new token.subscriber = 'Foobar' token.mail = 'foo@example.org' token.starts_at = Date.today token.expires_at = nil token.domain = Setting.host_name token end let(:textarea) { find '#enterprise_token_encoded_token' } let(:submit_button) { find '#token-submit-button' } describe 'EnterpriseToken management' do before do login_as(admin) visit enterprise_path end it 'shows a teaser and token form without a token' do expect(page).to have_selector('.button', text: 'Start free trial') expect(page).to have_selector('.button', text: 'Book now') expect(textarea.value).to be_empty textarea.set 'foobar' submit_button.click # Error output expect(page).to have_selector('.errorExplanation', text: "Enterprise support token can't be read. " \ "Are you sure it is a support token?") expect(page).to have_selector('span.errorSpan #enterprise_token_encoded_token') end context 'assuming valid input' do before do allow(OpenProject::Token).to receive(:import).and_return(token_object) end it 'allows token import flow', js: true do textarea.set 'foobar' submit_button.click expect(page).to have_selector('.flash.notice', text: I18n.t(:notice_successful_update)) expect(page).to have_selector('[data-qa-selector="op-enterprise--active-token"]') expect(page.all('.attributes-key-value--key').map(&:text)) .to eq ['Subscriber', 'Email', 'Domain', 'Maximum active users', 'Starts at', 'Expires at'] expect(page.all('.attributes-key-value--value').map(&:text)) .to eq ['Foobar', 'foo@example.org', Setting.host_name, 'Unlimited', format_date(Date.today), 'Unlimited'] expect(page).to have_selector('.button.icon-delete', text: I18n.t(:button_delete)) # Expect section to be collapsed expect(page).to have_no_selector('#token_encoded_token', visible: true) RequestStore.clear! expect(EnterpriseToken.current.encoded_token).to eq('foobar') expect(page).to have_text("Successful update") click_on "Replace your current support token" fill_in 'enterprise_token_encoded_token', with: "blabla" submit_button.click expect(page).to have_selector('.flash.notice', text: I18n.t(:notice_successful_update)) # Assume next request RequestStore.clear! expect(EnterpriseToken.current.encoded_token).to eq('blabla') # Remove token SeleniumHubWaiter.wait click_on "Delete" # Expect modal find('.confirm-form-submit--continue').click expect(textarea.value).to be_empty expect(page).to have_selector('.flash.notice', text: I18n.t(:notice_successful_delete)) # Assume next request RequestStore.clear! expect(EnterpriseToken.current).to be_nil end end end end