95 lines
3.3 KiB
Ruby
95 lines
3.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
require_migration!
|
|
|
|
RSpec.describe AddNewTrailPlans, :migration do
|
|
describe '#up' do
|
|
before do
|
|
allow(Gitlab).to receive(:dev_env_or_com?).and_return true
|
|
end
|
|
|
|
it 'creates 2 entries within the plans table' do
|
|
expect { migrate! }.to change { AddNewTrailPlans::Plan.count }.by 2
|
|
expect(AddNewTrailPlans::Plan.last(2).pluck(:name)).to match_array(%w(ultimate_trial premium_trial))
|
|
end
|
|
|
|
it 'creates 2 entries for plan limits' do
|
|
expect { migrate! }.to change { AddNewTrailPlans::PlanLimits.count }.by 2
|
|
end
|
|
|
|
context 'when the plan limits for gold and silver exists' do
|
|
before do
|
|
table(:plans).create!(id: 1, name: 'gold', title: 'Gold')
|
|
table(:plan_limits).create!(id: 1, plan_id: 1, storage_size_limit: 2000)
|
|
table(:plans).create!(id: 2, name: 'silver', title: 'Silver')
|
|
table(:plan_limits).create!(id: 2, plan_id: 2, storage_size_limit: 1000)
|
|
end
|
|
|
|
it 'duplicates the gold and silvers plan limits entries' do
|
|
migrate!
|
|
|
|
ultimate_plan_limits = AddNewTrailPlans::Plan.find_by(name: 'ultimate_trial').limits
|
|
expect(ultimate_plan_limits.storage_size_limit).to be 2000
|
|
|
|
premium_plan_limits = AddNewTrailPlans::Plan.find_by(name: 'premium_trial').limits
|
|
expect(premium_plan_limits.storage_size_limit).to be 1000
|
|
end
|
|
end
|
|
|
|
context 'when the instance is not SaaS' do
|
|
before do
|
|
allow(Gitlab).to receive(:dev_env_or_com?).and_return false
|
|
end
|
|
|
|
it 'does not create plans and plan limits and returns' do
|
|
expect { migrate! }.not_to change { AddNewTrailPlans::Plan.count }
|
|
expect { migrate! }.not_to change { AddNewTrailPlans::Plan.count }
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#down' do
|
|
before do
|
|
table(:plans).create!(id: 3, name: 'other')
|
|
table(:plan_limits).create!(plan_id: 3)
|
|
end
|
|
|
|
context 'when the instance is SaaS' do
|
|
before do
|
|
allow(Gitlab).to receive(:dev_env_or_com?).and_return true
|
|
end
|
|
|
|
it 'removes the newly added ultimate and premium trial entries' do
|
|
migrate!
|
|
|
|
expect { described_class.new.down }.to change { AddNewTrailPlans::Plan.count }.by(-2)
|
|
expect(AddNewTrailPlans::Plan.find_by(name: 'premium_trial')).to be_nil
|
|
expect(AddNewTrailPlans::Plan.find_by(name: 'ultimate_trial')).to be_nil
|
|
|
|
other_plan = AddNewTrailPlans::Plan.find_by(name: 'other')
|
|
expect(other_plan).to be_persisted
|
|
expect(AddNewTrailPlans::PlanLimits.count).to eq(1)
|
|
expect(AddNewTrailPlans::PlanLimits.first.plan_id).to eq(other_plan.id)
|
|
end
|
|
end
|
|
|
|
context 'when the instance is not SaaS' do
|
|
before do
|
|
allow(Gitlab).to receive(:dev_env_or_com?).and_return false
|
|
table(:plans).create!(id: 1, name: 'ultimate_trial', title: 'Ultimate Trial')
|
|
table(:plans).create!(id: 2, name: 'premium_trial', title: 'Premium Trial')
|
|
table(:plan_limits).create!(id: 1, plan_id: 1)
|
|
table(:plan_limits).create!(id: 2, plan_id: 2)
|
|
end
|
|
|
|
it 'does not delete plans and plan limits and returns' do
|
|
migrate!
|
|
|
|
expect { described_class.new.down }.not_to change { AddNewTrailPlans::Plan.count }
|
|
expect(AddNewTrailPlans::PlanLimits.count).to eq(3)
|
|
end
|
|
end
|
|
end
|
|
end
|