summaryrefslogtreecommitdiff
path: root/spec/migrations/update_application_setting_npm_package_requests_forwarding_default_spec.rb
blob: 8b241d1b28ef3f0c3afe8e343742922ce3e7fbe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true

require 'spec_helper'
require Rails.root.join('db', 'migrate', '20200221105436_update_application_setting_npm_package_requests_forwarding_default.rb')

RSpec.describe UpdateApplicationSettingNpmPackageRequestsForwardingDefault do
  # Create test data - pipeline and CI/CD jobs.
  let(:application_settings) { table(:application_settings) }

  before do
    application_settings.create!(npm_package_requests_forwarding: false)
  end

  # Test just the up migration.
  it 'correctly migrates the application setting' do
    expect { migrate! }.to change { current_application_setting }.from(false).to(true)
  end

  # Test a reversible migration.
  it 'correctly migrates up and down the application setting' do
    reversible_migration do |migration|
      # Expectations will run before the up migration,
      # and then again after the down migration
      migration.before -> {
        expect(current_application_setting).to eq false
      }

      # Expectations will run after the up migration.
      migration.after -> {
        expect(current_application_setting).to eq true
      }
    end
  end

  def current_application_setting
    ApplicationSetting.current_without_cache.npm_package_requests_forwarding
  end
end