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

pbkdf2_sha512_spec.rb « secret « doorkeeper_secret_storing « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df17d92bb0cbc89e03d4da76c9bb4523172d53e0 (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
39
40
41
42
43
44
45
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::DoorkeeperSecretStoring::Secret::Pbkdf2Sha512 do
  describe '.transform_secret' do
    let(:plaintext_secret) { 'CzOBzBfU9F-HvsqfTaTXF4ivuuxYZuv3BoAK4pnvmyw' }

    it 'generates a PBKDF2+SHA512 hashed value in the correct format' do
      expect(described_class.transform_secret(plaintext_secret))
        .to eq("$pbkdf2-sha512$20000$$.c0G5XJVEew1TyeJk5TrkvB0VyOaTmDzPrsdNRED9vVeZlSyuG3G90F0ow23zUCiWKAVwmNnR/ceh.nJG3MdpQ") # rubocop:disable Layout/LineLength
    end

    context 'when hash_oauth_secrets is disabled' do
      before do
        stub_feature_flags(hash_oauth_secrets: false)
      end

      it 'returns a plaintext secret' do
        expect(described_class.transform_secret(plaintext_secret)).to eq(plaintext_secret)
      end
    end
  end

  describe 'STRETCHES' do
    it 'is 20_000' do
      expect(described_class::STRETCHES).to eq(20_000)
    end
  end

  describe 'SALT' do
    it 'is empty' do
      expect(described_class::SALT).to be_empty
    end
  end

  describe '.secret_matches?' do
    it "match by hashing the input if the stored value is hashed" do
      stub_feature_flags(hash_oauth_secrets: false)
      plain_secret = 'plain_secret'
      stored_value = '$pbkdf2-sha512$20000$$/BwQRdwSpL16xkQhstavh7nvA5avCP7.4n9LLKe9AupgJDeA7M5xOAvG3N3E5XbRyGWWBbbr.BsojPVWzd1Sqg' # rubocop:disable Layout/LineLength
      expect(described_class.secret_matches?(plain_secret, stored_value)).to be true
    end
  end
end