File: gpg_keys_spec.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (110 lines) | stat: -rw-r--r-- 3,428 bytes parent folder | download
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'User Settings > GPG Keys', feature_category: :user_profile do
  let(:user) { create(:user, email: GpgHelpers::User2.emails.first) }

  before do
    sign_in(user)
  end

  describe 'User adds a key' do
    before do
      visit user_settings_gpg_keys_path
    end

    it 'saves the new key' do
      click_button('Add new key')
      fill_in('Key', with: GpgHelpers::User2.public_key)
      click_button('Add key')

      expect(page).to have_content('bette.cartwright@example.com Verified')
      expect(page).to have_content('bette.cartwright@example.net Unverified')
      expect(page).to have_content(GpgHelpers::User2.fingerprint)
    end

    it 'with multiple subkeys' do
      click_button('Add new key')
      fill_in('Key', with: GpgHelpers::User3.public_key)
      click_button('Add key')

      expect(page).to have_content('john.doe@example.com Unverified')
      expect(page).to have_content(GpgHelpers::User3.fingerprint)

      GpgHelpers::User3.subkey_fingerprints.each do |fingerprint|
        expect(page).to have_content(fingerprint)
      end
    end
  end

  it 'user sees their key' do
    gpg_key = create(:gpg_key, user: user, key: GpgHelpers::User2.public_key)
    visit user_settings_gpg_keys_path

    expect(page).to have_content('bette.cartwright@example.com Verified')
    expect(page).to have_content('bette.cartwright@example.net Unverified')
    expect(page).to have_content(GpgHelpers::User2.fingerprint)
    expect(page).to have_selector('time.js-timeago', text: gpg_key.created_at.strftime('%b %d, %Y'))
  end

  it 'user removes a key via the key index' do
    create(:gpg_key, user: user, key: GpgHelpers::User2.public_key)
    visit user_settings_gpg_keys_path

    click_link('Remove')

    expect(page).to have_content('Your GPG keys')
    within_testid('crud-count') do
      expect(page).to have_content('0')
    end
  end

  it 'user revokes a key via the key index' do
    gpg_key = create :gpg_key, user: user, key: GpgHelpers::User2.public_key
    gpg_signature = create :gpg_signature, gpg_key: gpg_key, verification_status: :verified

    visit user_settings_gpg_keys_path

    click_link('Revoke')

    expect(page).to have_content('Your GPG keys')
    within_testid('crud-count') do
      expect(page).to have_content('0')
    end

    expect(gpg_signature.reload).to have_attributes(
      verification_status: 'unknown_key',
      gpg_key: nil
    )
  end

  context 'when external verification is required' do
    let!(:beyond_identity_integration) { create(:beyond_identity_integration) }
    let!(:gpg_key) do
      create :gpg_key, externally_verified: externally_verified, user: user, key: GpgHelpers::User2.public_key
    end

    before do
      visit user_settings_gpg_keys_path
    end

    context 'and user has a key that is externally verified' do
      let(:externally_verified) { true }

      it 'considers the key Verified' do
        expect(page).to have_content('bette.cartwright@example.com Verified')
      end
    end

    context 'and user has a key that is not externally verified' do
      let(:externally_verified) { false }

      it 'considers the key Unverified' do
        expect(page).not_to have_content('bette.cartwright@example.com')
        expect(page).not_to have_content('Verified')
        expect(page).not_to have_content('Unverified')
      end
    end
  end
end