diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-09-09 11:51:40 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-09-09 11:51:40 +0100 |
commit | c52fee70d06684035886f3d3c44cb581973b48c8 (patch) | |
tree | 0abe1f75160dcbc5438840196f059773ee7f7246 /spec/lib | |
parent | 909a8443c63db423f031b8c7f810c13b3bc20b87 (diff) | |
download | gitlab-ce-c52fee70d06684035886f3d3c44cb581973b48c8.tar.gz |
Test overriding LDAP attributes
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/gitlab/ldap/auth_hash_spec.rb | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/spec/lib/gitlab/ldap/auth_hash_spec.rb b/spec/lib/gitlab/ldap/auth_hash_spec.rb new file mode 100644 index 00000000000..18c7924fea1 --- /dev/null +++ b/spec/lib/gitlab/ldap/auth_hash_spec.rb @@ -0,0 +1,65 @@ +require 'spec_helper' + +describe Gitlab::LDAP::AuthHash do + let(:auth_hash) do + Gitlab::LDAP::AuthHash.new( + OmniAuth::AuthHash.new( + uid: '123456', + provider: 'ldapmain', + info: info, + extra: { + raw_info: raw_info + } + ) + ) + end + + let(:info) do + { + name: 'Smith, J.', + email: 'johnsmith@example.com', + nickname: '123456' + } + end + + let(:raw_info) do + { + uid: '123456', + email: 'johnsmith@example.com', + cn: 'Smith, J.', + fullName: 'John Smith' + } + end + + context "without overridden attributes" do + + it "has the correct username" do + expect(auth_hash.username).to eq("123456") + end + + it "has the correct name" do + expect(auth_hash.name).to eq("Smith, J.") + end + end + + context "with overridden attributes" do + let(:attributes) do + { + username: ['mail', 'email'], + name: 'fullName' + } + end + + before do + allow_any_instance_of(Gitlab::LDAP::Config).to receive(:attributes).and_return(attributes) + end + + it "has the correct username" do + expect(auth_hash.username).to eq("johnsmith@example.com") + end + + it "has the correct name" do + expect(auth_hash.name).to eq("John Smith") + end + end +end |