Files
openproject/spec/requests/admin/enterprise_tokens_spec.rb
Oliver Günther 4dc60db27c [64157] Handle multiple tokens
https://community.openproject.org/wp/64157

Instead of having one single token, we can now have multiple tokens.
They can have different plans, different trial/non-trial status, and
different activation dates.

This allows:
- to have a paid token for a plan, and a trial token for two weeks to
  try out a higher plan.
- to have an existing token for a plan which will soon expire, and add
  the token for the next period or a higher plan in parallel.

All tokens are listed on the same page in the administration.
2025-06-11 15:05:07 +02:00

111 lines
3.4 KiB
Ruby

# frozen_string_literal: true
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 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 COPYRIGHT and LICENSE files for more details.
#++
require "spec_helper"
RSpec.describe "Enterprise Edition token domain",
:skip_csrf, type: :rails_request do
let(:current_user) { create(:admin) }
let(:valid_token) { Rails.root.join("spec/fixtures/ee_tokens/v2_1_user_test_host.token").read }
let(:invalid_token) { Rails.root.join("spec/fixtures/ee_tokens/v2_1_user_localhost_3001.token").read }
before do
login_as(current_user)
end
shared_context "when uploading a token" do
before do
post "/admin/enterprise_tokens",
params: {
"enterprise_token[encoded_token]": ee_token
}
end
end
describe "initial upload" do
context "with correct domain" do
let(:ee_token) { valid_token }
it_behaves_like "when uploading a token" do
it "saves the token" do
expect(response).to be_redirect
expect(EnterpriseToken.all_tokens).to be_present
end
end
end
context "with incorrect domain" do
let(:ee_token) { invalid_token }
it_behaves_like "when uploading a token" do
it "shows an invalid domain error" do
expect(body).to have_text "Domain is invalid."
end
end
end
end
context "with an existing inactive invalid token" do
let!(:token) do
obj = EnterpriseToken.new(encoded_token: invalid_token, created_at: 5.days.ago, updated_at: 5.days.ago)
obj.save!(validate: false)
obj
end
describe "replacing the token" do
context "with correct domain" do
let(:ee_token) { valid_token }
it_behaves_like "when uploading a token" do
it "adds the token" do
expect(response).to be_redirect
expect(EnterpriseToken.all_tokens.count).to eq(2)
expect(EnterpriseToken.active_tokens.count).to eq(1)
end
end
end
context "with incorrect domain" do
it_behaves_like "when uploading a token" do
let(:ee_token) { invalid_token }
it "shows an invalid domain error" do
expect(page).to have_text "Domain is invalid."
end
it "does not save it" do
expect(EnterpriseToken.all_tokens.count).to eq(1)
end
end
end
end
end
end