2020-03-10 02:08:07 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 05:08:32 -04:00
|
|
|
RSpec.describe X509Helper do
|
2020-03-10 02:08:07 -04:00
|
|
|
describe '#x509_subject' do
|
|
|
|
let(:search_uppercase) { %w[CN OU O] }
|
|
|
|
let(:search_lowercase) { %w[cn ou o] }
|
|
|
|
let(:certificate_attributes) do
|
|
|
|
{
|
|
|
|
'CN' => 'CA Issuing',
|
|
|
|
'OU' => 'Trust Center',
|
|
|
|
'O' => 'Example'
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with uppercase DN' do
|
|
|
|
let(:upper_dn) { 'CN=CA Issuing,OU=Trust Center,O=Example,L=World,C=Galaxy' }
|
|
|
|
|
|
|
|
it 'returns the attributes on any case search' do
|
|
|
|
expect(x509_subject(upper_dn, search_lowercase)).to eq(certificate_attributes)
|
|
|
|
expect(x509_subject(upper_dn, search_uppercase)).to eq(certificate_attributes)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with lowercase DN' do
|
|
|
|
let(:lower_dn) { 'cn=CA Issuing,ou=Trust Center,o=Example,l=World,c=Galaxy' }
|
|
|
|
|
|
|
|
it 'returns the attributes on any case search' do
|
|
|
|
expect(x509_subject(lower_dn, search_lowercase)).to eq(certificate_attributes)
|
|
|
|
expect(x509_subject(lower_dn, search_uppercase)).to eq(certificate_attributes)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with comma within DN' do
|
|
|
|
let(:comma_dn) { 'cn=CA\, Issuing,ou=Trust Center,o=Example,l=World,c=Galaxy' }
|
|
|
|
let(:certificate_attributes) do
|
|
|
|
{
|
|
|
|
'CN' => 'CA, Issuing',
|
|
|
|
'OU' => 'Trust Center',
|
|
|
|
'O' => 'Example'
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the attributes on any case search' do
|
|
|
|
expect(x509_subject(comma_dn, search_lowercase)).to eq(certificate_attributes)
|
|
|
|
expect(x509_subject(comma_dn, search_uppercase)).to eq(certificate_attributes)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with mal formed DN' do
|
|
|
|
let(:bad_dn) { 'cn=CA, Issuing,ou=Trust Center,o=Example,l=World,c=Galaxy' }
|
|
|
|
|
|
|
|
it 'returns nil on any case search' do
|
|
|
|
expect(x509_subject(bad_dn, search_lowercase)).to eq({})
|
|
|
|
expect(x509_subject(bad_dn, search_uppercase)).to eq({})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-05-06 17:10:00 -04:00
|
|
|
|
|
|
|
describe '#x509_signature?' do
|
|
|
|
let(:x509_signature) { create(:x509_commit_signature) }
|
|
|
|
let(:gpg_signature) { create(:gpg_signature) }
|
|
|
|
|
|
|
|
it 'detects a x509 signed commit' do
|
|
|
|
signature = Gitlab::X509::Signature.new(
|
|
|
|
X509Helpers::User1.signed_commit_signature,
|
|
|
|
X509Helpers::User1.signed_commit_base_data,
|
|
|
|
X509Helpers::User1.certificate_email,
|
|
|
|
X509Helpers::User1.signed_commit_time
|
|
|
|
)
|
|
|
|
|
|
|
|
expect(x509_signature?(x509_signature)).to be_truthy
|
|
|
|
expect(x509_signature?(signature)).to be_truthy
|
|
|
|
expect(x509_signature?(gpg_signature)).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
2020-03-10 02:08:07 -04:00
|
|
|
end
|