summaryrefslogtreecommitdiff
path: root/spec/migrations/add_deploy_token_type_to_deploy_tokens_spec.rb
blob: f1fe27e72a116cf034e937649ebef322e67c0b4d (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
# frozen_string_literal: true

require 'spec_helper'
require Rails.root.join('db', 'migrate', '20200122161638_add_deploy_token_type_to_deploy_tokens.rb')

RSpec.describe AddDeployTokenTypeToDeployTokens do
  let(:deploy_tokens) { table(:deploy_tokens) }
  let(:deploy_token) do
    deploy_tokens.create(name: 'token_test',
                         username: 'gitlab+deploy-token-1',
                         token_encrypted: 'dr8rPXwM+Mbs2p3Bg1+gpnXqrnH/wu6vaHdcc7A3isPR67WB',
                         read_repository: true,
                         expires_at: Time.now + 1.year)
  end

  it 'updates the deploy_token_type column to 2' do
    expect(deploy_token).not_to respond_to(:deploy_token_type)

    migrate!

    deploy_token.reload
    expect(deploy_token.deploy_token_type).to eq(2)
  end
end