diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-02-11 14:12:43 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-02-12 21:05:27 +0100 |
commit | 6685661b549cdece3b93131af168b5174bc0403f (patch) | |
tree | 07daec6105e14e906dcdfb7fd1d01a5fb6b13289 /spec/models | |
parent | 2dfd21983483bd5fd32b327edb4b02228b377c47 (diff) | |
download | gitlab-ce-6685661b549cdece3b93131af168b5174bc0403f.tar.gz |
Clean username acquired from OAuth/LDAP.
Fixes #1967.
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/user_spec.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index 629d51b960d..7473054f481 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -301,6 +301,16 @@ describe User do end end + describe ".clean_username" do + + let!(:user1) { create(:user, username: "johngitlab-etc") } + let!(:user2) { create(:user, username: "JohnGitLab-etc1") } + + it "cleans a username and makes sure it's available" do + expect(User.clean_username("-john+gitlab-ETC%.git@gmail.com")).to eq("johngitlab-ETC2") + end + end + describe 'all_ssh_keys' do it { should have_many(:keys).dependent(:destroy) } |