2019-07-25 01:21:37 -04:00
# frozen_string_literal: true
2017-09-20 14:02:25 -04:00
require 'spec_helper'
2020-06-24 05:08:32 -04:00
RSpec . describe Gitlab :: Auth :: Ldap :: DN do
2017-09-20 14:02:25 -04:00
using RSpec :: Parameterized :: TableSyntax
2017-10-03 17:38:55 -04:00
describe '#normalize_value' do
subject { described_class . normalize_value ( given ) }
it_behaves_like 'normalizes a DN attribute value'
context 'when the given DN is malformed' do
context 'when ending with a comma' do
let ( :given ) { 'John Smith,' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , 'DN string ended unexpectedly' )
2017-10-03 17:38:55 -04:00
end
end
context 'when given a BER encoded attribute value with a space in it' do
let ( :given ) { '#aa aa' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , " Expected the end of an attribute value, but got \" a \" " )
2017-10-03 17:38:55 -04:00
end
end
context 'when given a BER encoded attribute value with a non-hex character in it' do
let ( :given ) { '#aaXaaa' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , " Expected the first character of a hex pair, but got \" X \" " )
2017-10-03 17:38:55 -04:00
end
end
context 'when given a BER encoded attribute value with a non-hex character in it' do
let ( :given ) { '#aaaYaa' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , " Expected the second character of a hex pair, but got \" Y \" " )
2017-10-03 17:38:55 -04:00
end
end
context 'when given a hex pair with a non-hex character in it, inside double quotes' do
let ( :given ) { '"Sebasti\\cX\\a1n"' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , " Expected the second character of a hex pair inside a double quoted value, but got \" X \" " )
2017-10-03 17:38:55 -04:00
end
end
context 'with an open (as opposed to closed) double quote' do
let ( :given ) { '"James' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , 'DN string ended unexpectedly' )
2017-10-03 17:38:55 -04:00
end
end
context 'with an invalid escaped hex code' do
let ( :given ) { 'J\ames' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , 'Invalid escaped hex code "\am"' )
2017-10-03 17:38:55 -04:00
end
end
context 'with a value ending with the escape character' do
let ( :given ) { 'foo\\' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , 'DN string ended unexpectedly' )
2017-10-03 17:38:55 -04:00
end
end
end
end
2017-10-02 18:00:50 -04:00
describe '#to_normalized_s' do
subject { described_class . new ( given ) . to_normalized_s }
2017-09-20 14:02:25 -04:00
2017-10-05 06:47:48 -04:00
it_behaves_like 'normalizes a DN'
2017-09-20 14:02:25 -04:00
2017-09-20 18:55:19 -04:00
context 'when we do not support the given DN format' do
context 'multivalued RDNs' do
context 'without extraneous whitespace' do
let ( :given ) { 'uid=john smith+telephonenumber=+1 555-555-5555,ou=people,dc=example,dc=com' }
2017-10-05 06:27:07 -04:00
it 'raises UnsupportedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: UnsupportedError )
2017-09-20 18:55:19 -04:00
end
end
context 'with extraneous whitespace' do
context 'around the phone number plus sign' do
let ( :given ) { 'uid = John Smith + telephoneNumber = + 1 555-555-5555 , ou = People,dc=example,dc=com' }
2017-10-05 06:27:07 -04:00
it 'raises UnsupportedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: UnsupportedError )
2017-09-20 18:55:19 -04:00
end
end
context 'not around the phone number plus sign' do
let ( :given ) { 'uid = John Smith + telephoneNumber = +1 555-555-5555 , ou = People,dc=example,dc=com' }
2017-10-05 06:27:07 -04:00
it 'raises UnsupportedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: UnsupportedError )
2017-09-20 18:55:19 -04:00
end
end
end
end
end
2017-09-20 14:02:25 -04:00
context 'when the given DN is malformed' do
2017-09-20 19:57:45 -04:00
context 'when ending with a comma' do
let ( :given ) { 'uid=John Smith,' }
2017-09-20 14:02:25 -04:00
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , 'DN string ended unexpectedly' )
2017-09-20 19:57:45 -04:00
end
end
context 'when given a BER encoded attribute value with a space in it' do
let ( :given ) { '0.9.2342.19200300.100.1.25=#aa aa' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , " Expected the end of an attribute value, but got \" a \" " )
2017-09-20 19:57:45 -04:00
end
end
context 'when given a BER encoded attribute value with a non-hex character in it' do
let ( :given ) { '0.9.2342.19200300.100.1.25=#aaXaaa' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , " Expected the first character of a hex pair, but got \" X \" " )
2017-09-20 19:57:45 -04:00
end
end
context 'when given a BER encoded attribute value with a non-hex character in it' do
let ( :given ) { '0.9.2342.19200300.100.1.25=#aaaYaa' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , " Expected the second character of a hex pair, but got \" Y \" " )
2017-09-20 19:57:45 -04:00
end
end
context 'when given a hex pair with a non-hex character in it, inside double quotes' do
let ( :given ) { 'uid="Sebasti\\cX\\a1n"' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , " Expected the second character of a hex pair inside a double quoted value, but got \" X \" " )
2017-09-20 19:57:45 -04:00
end
end
context 'without a name value pair' do
let ( :given ) { 'John' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , 'DN string ended unexpectedly' )
2017-09-20 19:57:45 -04:00
end
end
context 'with an open (as opposed to closed) double quote' do
let ( :given ) { 'cn="James' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , 'DN string ended unexpectedly' )
2017-09-20 19:57:45 -04:00
end
end
context 'with an invalid escaped hex code' do
let ( :given ) { 'cn=J\ames' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , 'Invalid escaped hex code "\am"' )
2017-09-20 19:57:45 -04:00
end
end
context 'with a value ending with the escape character' do
let ( :given ) { 'cn=\\' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , 'DN string ended unexpectedly' )
2017-09-20 19:57:45 -04:00
end
end
context 'with an invalid OID attribute type name' do
let ( :given ) { '1.2.d=Value' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , 'Unrecognized RDN OID attribute type name character "d"' )
2017-09-20 19:57:45 -04:00
end
end
context 'with a period in a non-OID attribute type name' do
let ( :given ) { 'd1.2=Value' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , 'Unrecognized RDN attribute type name character "."' )
2017-09-20 19:57:45 -04:00
end
end
context 'when starting with non-space, non-alphanumeric character' do
let ( :given ) { ' -uid=John Smith' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , 'Unrecognized first character of an RDN attribute type name "-"' )
2017-09-20 19:57:45 -04:00
end
end
context 'when given a UID with an escaped equal sign' do
let ( :given ) { 'uid\\=john' }
2017-10-05 06:27:07 -04:00
it 'raises MalformedError' do
2020-03-12 11:09:39 -04:00
expect { subject } . to raise_error ( Gitlab :: Auth :: Ldap :: DN :: MalformedError , 'Unrecognized RDN attribute type name character "\\"' )
2017-09-20 19:57:45 -04:00
end
2017-09-20 14:02:25 -04:00
end
end
end
def assert_generic_test ( test_description , got , expected )
2017-09-20 19:57:45 -04:00
test_failure_message = " Failed test description: ' #{ test_description } ' \n \n expected: \" #{ expected } \" \n got: \" #{ got } \" "
2017-09-20 14:02:25 -04:00
expect ( got ) . to eq ( expected ) , test_failure_message
end
end