Skip to content

Commit

Permalink
Ensures resolved issue #1665 - Added RSpec test to ensure LDAP attrib…
Browse files Browse the repository at this point in the history
…utes get reset if no value is provided from remote.
  • Loading branch information
thorsteneckel committed Jan 9, 2018
1 parent 13b763b commit 66988fa
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions spec/lib/sequencer/unit/import/ldap/user/mapping_spec.rb
@@ -0,0 +1,27 @@
require 'rails_helper'

RSpec.describe Sequencer::Unit::Import::Ldap::User::Mapping, sequencer: :unit do

it 'ensures to unset attribute value if none is provided' do

ldap_config = {
user_attributes: {
firstName: 'firstname',
lastName: 'lastname',
samaccountname: 'login',
}
}

resource = {
samaccountname: 'Some41',
firstName: 'Some',
}

provided = process(
ldap_config: ldap_config,
resource: resource,
)

expect(provided['lastname']).to be_nil
end
end

0 comments on commit 66988fa

Please sign in to comment.