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

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

require 'spec_helper'

RSpec.describe Atlassian::Identity do
  describe 'associations' do
    it { is_expected.to belong_to(:user) }
  end

  describe 'validations' do
    subject { create(:atlassian_identity) }

    it { is_expected.to validate_presence_of(:extern_uid) }
    it { is_expected.to validate_uniqueness_of(:extern_uid) }
    it { is_expected.to validate_presence_of(:user) }
    it { is_expected.to validate_uniqueness_of(:user) }
  end

  describe 'encrypted tokens' do
    let(:token) { SecureRandom.alphanumeric(1254) }
    let(:refresh_token) { SecureRandom.alphanumeric(45) }
    let(:identity) { create(:atlassian_identity, token: token, refresh_token: refresh_token) }

    it 'saves the encrypted token, refresh token and corresponding ivs' do
      expect(identity.encrypted_token).not_to be_nil
      expect(identity.encrypted_token_iv).not_to be_nil
      expect(identity.encrypted_refresh_token).not_to be_nil
      expect(identity.encrypted_refresh_token_iv).not_to be_nil

      expect(identity.token).to eq(token)
      expect(identity.refresh_token).to eq(refresh_token)
    end
  end
end