Welcome to mirror list, hosted at ThFree Co, Russian Federation.

expire_o_auth_tokens_spec.rb « background_migration « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4997ae3763e4b59945b574716f5d5244ba7620e4 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::BackgroundMigration::ExpireOAuthTokens, :migration, schema: 20221111123146 do
  let(:migration) { described_class.new }
  let(:oauth_access_tokens_table) { table(:oauth_access_tokens) }

  let(:table_name) { 'oauth_access_tokens' }

  subject(:perform_migration) do
    described_class.new(
      start_id: 1,
      end_id: 30,
      batch_table: :oauth_access_tokens,
      batch_column: :id,
      sub_batch_size: 2,
      pause_ms: 0,
      connection: ActiveRecord::Base.connection
    ).perform
  end

  before do
    oauth_access_tokens_table.create!(id: 1, token: 's3cr3t-1', expires_in: nil)
    oauth_access_tokens_table.create!(id: 2, token: 's3cr3t-2', expires_in: 42)
    oauth_access_tokens_table.create!(id: 3, token: 's3cr3t-3', expires_in: nil)
  end

  it 'adds expiry to oauth tokens', :aggregate_failures do
    expect(ActiveRecord::QueryRecorder.new { perform_migration }.count).to eq(3)

    expect(oauth_access_tokens_table.find(1).expires_in).to eq(7_200)
    expect(oauth_access_tokens_table.find(2).expires_in).to eq(42)
    expect(oauth_access_tokens_table.find(3).expires_in).to eq(7_200)
  end
end