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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe CommitSignatures::SshSignature, feature_category: :source_code_management do
# This commit is seeded from https://gitlab.com/gitlab-org/gitlab-test
# For instructions on how to add more seed data, see the project README
let_it_be(:commit_sha) { '7b5160f9bb23a3d58a0accdbe89da13b96b1ece9' }
let_it_be(:project) { create(:project, :repository, path: 'sample-project') }
let_it_be(:user) { create(:user) }
let_it_be(:commit) { create(:commit, project: project, sha: commit_sha, author: user) }
let_it_be(:ssh_key) { create(:ed25519_key_256, user: user) }
let_it_be(:key_fingerprint) { ssh_key.fingerprint_sha256 }
let(:verification_status) { :verified }
let(:signature) do
create(:ssh_signature, commit_sha: commit_sha, key: ssh_key, key_fingerprint_sha256: key_fingerprint, user: user,
verification_status: verification_status)
end
let(:attributes) do
{
commit_sha: commit_sha,
project: project,
key: ssh_key,
key_fingerprint_sha256: key_fingerprint,
user: user
}
end
it_behaves_like 'having unique enum values'
it_behaves_like 'commit signature'
it_behaves_like 'signature with type checking', :ssh
describe 'associations' do
it { is_expected.to belong_to(:key).optional }
end
describe '.by_commit_sha scope' do
let!(:another_signature) { create(:ssh_signature, commit_sha: '0000000000000000000000000000000000000001') }
it 'returns all signatures by sha' do
expect(described_class.by_commit_sha(commit_sha)).to match_array([signature])
expect(
described_class.by_commit_sha([commit_sha, another_signature.commit_sha])
).to contain_exactly(signature, another_signature)
end
end
describe '#key_fingerprint_sha256' do
it 'returns the fingerprint_sha256 associated with the SSH key' do
expect(signature.key_fingerprint_sha256).to eq(key_fingerprint)
end
context 'when the SSH key is no longer associated with the signature' do
it 'returns the fingerprint_sha256 stored in signature' do
signature.update!(key_id: nil)
expect(signature.key_fingerprint_sha256).to eq(key_fingerprint)
end
end
end
describe '#signed_by_user' do
it 'returns the user associated with the SSH key' do
expect(signature.signed_by_user).to eq(ssh_key.user)
end
context 'when the SSH key is no longer associated with the signature' do
it 'returns the user stored in signature' do
signature.update!(key_id: nil)
expect(signature.signed_by_user).to eq(user)
end
end
end
describe '#reverified_status' do
before do
allow(signature.project).to receive(:commit).with(commit_sha).and_return(commit)
end
context 'when verification_status is verified' do
it 'returns verified' do
expect(signature.reverified_status).to eq('verified')
end
context 'and the author email does not belong to the signed by user' do
let(:user) { create(:user) }
it 'returns unverified_author_email' do
expect(signature.reverified_status).to eq('unverified_author_email')
end
context 'when check_for_mailmapped_commit_emails feature flag is disabled' do
before do
stub_feature_flags(check_for_mailmapped_commit_emails: false)
end
it 'verification status is unmodified' do
expect(signature.reverified_status).to eq('verified')
end
end
end
end
context 'when verification_status not verified' do
let(:signature) { create(:ssh_signature, verification_status: 'unverified') }
it 'returns the signature verification status' do
expect(signature.reverified_status).to eq('unverified')
end
end
context 'when verification_status is verified_system' do
let(:verification_status) { :verified_system }
it 'returns the signature verification status' do
expect(signature.reverified_status).to eq('verified_system')
end
context 'and the author email does not belong to the signed by user' do
let(:user) { create(:user) }
it 'returns unverified_author_email' do
expect(signature.reverified_status).to eq('unverified_author_email')
end
context 'when check_for_mailmapped_commit_emails feature flag is disabled' do
before do
stub_feature_flags(check_for_mailmapped_commit_emails: false)
end
it 'verification status is unmodified' do
expect(signature.reverified_status).to eq('verified_system')
end
end
end
end
end
end
|