diff options
author | Andreas Brandl <abrandl@gitlab.com> | 2019-04-05 11:29:19 +0000 |
---|---|---|
committer | Andreas Brandl <abrandl@gitlab.com> | 2019-04-05 11:29:19 +0000 |
commit | 30fa3cbdb74df2dfeebb2929a10dd301a0dde55e (patch) | |
tree | 72b5a7d8d615475ea2b8afabbfcebe1402c96d52 /spec | |
parent | 14cf8bf050896d617761e7947f81c8e23364a48b (diff) | |
parent | ebfe19e8e7690598f86facc0bb18df4052468fc0 (diff) | |
download | gitlab-ce-30fa3cbdb74df2dfeebb2929a10dd301a0dde55e.tar.gz |
Merge branch '57493-add-limit-to-user-name' into 'master'
Add a length limit of 128 char to the user name field
See merge request gitlab-org/gitlab-ce!26146
Diffstat (limited to 'spec')
-rw-r--r-- | spec/migrations/truncate_user_fullname_spec.rb | 21 | ||||
-rw-r--r-- | spec/models/user_spec.rb | 5 |
2 files changed, 26 insertions, 0 deletions
diff --git a/spec/migrations/truncate_user_fullname_spec.rb b/spec/migrations/truncate_user_fullname_spec.rb new file mode 100644 index 00000000000..17fd4d9f688 --- /dev/null +++ b/spec/migrations/truncate_user_fullname_spec.rb @@ -0,0 +1,21 @@ +require 'spec_helper' +require Rails.root.join('db', 'migrate', '20190325080727_truncate_user_fullname.rb') + +describe TruncateUserFullname, :migration do + let(:users) { table(:users) } + + let(:user_short) { create_user(name: 'abc', email: 'test_short@example.com') } + let(:user_long) { create_user(name: 'a' * 200 + 'z', email: 'test_long@example.com') } + + def create_user(params) + users.create!(params.merge(projects_limit: 0)) + end + + it 'truncates user full name to the first 128 characters' do + expect { migrate! }.to change { user_long.reload.name }.to('a' * 128) + end + + it 'does not truncate short names' do + expect { migrate! }.not_to change { user_short.reload.name.length } + end +end diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index b7e36748fa2..a45a2737b13 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -98,6 +98,11 @@ describe User do end describe 'validations' do + describe 'name' do + it { is_expected.to validate_presence_of(:name) } + it { is_expected.to validate_length_of(:name).is_at_most(128) } + end + describe 'username' do it 'validates presence' do expect(subject).to validate_presence_of(:username) |