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

gpg_spec.rb « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a55e7d89de6b416efb4d6ed44bfe80350370c33 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
require 'rails_helper'

describe Gitlab::Gpg do
  describe '.fingerprints_from_key' do
    it 'returns the fingerprint' do
      expect(
        described_class.fingerprints_from_key(GpgHelpers::User1.public_key)
      ).to eq [GpgHelpers::User1.fingerprint]
    end

    it 'returns an empty array when the key is invalid' do
      expect(
        described_class.fingerprints_from_key('bogus')
      ).to eq []
    end
  end

  describe '.emails_from_key' do
    it 'returns the emails' do
      expect(
        described_class.emails_from_key(GpgHelpers::User1.public_key)
      ).to eq GpgHelpers::User1.emails
    end

    it 'returns an empty array when the key is invalid' do
      expect(
        described_class.emails_from_key('bogus')
      ).to eq []
    end
  end

  describe '.add_to_keychain', :gpg do
    it 'stores the key in the keychain' do
      expect(GPGME::Key.find(:public, GpgHelpers::User1.fingerprint)).to eq []

      Gitlab::Gpg.add_to_keychain(GpgHelpers::User1.public_key)

      expect(GPGME::Key.find(:public, GpgHelpers::User1.fingerprint)).not_to eq []
    end
  end

  describe '.remove_from_keychain', :gpg do
    it 'removes the key from the keychain' do
      Gitlab::Gpg.add_to_keychain(GpgHelpers::User1.public_key)
      expect(GPGME::Key.find(:public, GpgHelpers::User1.fingerprint)).not_to eq []

      Gitlab::Gpg.remove_from_keychain(GpgHelpers::User1.fingerprint)

      expect(GPGME::Key.find(:public, GpgHelpers::User1.fingerprint)).to eq []
    end
  end
end

describe Gitlab::Gpg::CurrentKeyChain, :gpg do
  describe '.emails' do
    it 'returns the emails' do
      Gitlab::Gpg.add_to_keychain(GpgHelpers::User2.public_key)

      expect(
        described_class.emails(GpgHelpers::User2.fingerprint)
      ).to match_array GpgHelpers::User2.emails
    end
  end
end