discourse/spec/services/username_checker_service_spec.rb
Sam Saffron 4ea21fa2d0 DEV: use #frozen_string_literal: true on all spec
This change both speeds up specs (less strings to allocate) and helps catch
cases where methods in Discourse are mutating inputs.

Overall we will be migrating everything to use #frozen_string_literal: true
it will take a while, but this is the first and safest move in this direction
2019-04-30 10:27:42 +10:00

70 lines
2.1 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe UsernameCheckerService do
describe 'check_username' do
before do
@service = UsernameCheckerService.new
@nil_email = nil
@email = 'vincentvega@example.com'
end
context 'Username invalid' do
it 'rejects too short usernames' do
result = @service.check_username('a', @nil_email)
expect(result).to have_key(:errors)
end
it 'rejects too long usernames' do
result = @service.check_username('a123456789b123456789c123456789', @nil_email)
expect(result).to have_key(:errors)
end
it 'rejects usernames with invalid characters' do
result = @service.check_username('vincent-', @nil_email)
expect(result).to have_key(:errors)
end
it 'rejects usernames that do not start with an alphanumeric character' do
result = @service.check_username('.vincent', @nil_email)
expect(result).to have_key(:errors)
end
describe 'reserved usernames' do
before do
SiteSetting.reserved_usernames = 'test|donkey'
end
it 'rejects usernames that are reserved' do
result = @service.check_username("test", @nil_email)
expect(result[:available]).to eq(false)
end
it 'allows reserved username checker to be skipped' do
@service = UsernameCheckerService.new(allow_reserved_username: true)
result = @service.check_username("test", @nil_email)
expect(result[:available]).to eq(true)
end
end
end
it 'username not available locally' do
User.stubs(:username_available?).returns(false)
UserNameSuggester.stubs(:suggest).returns('einar-j')
result = @service.check_username('vincent', @nil_email)
expect(result[:available]).to eq(false)
expect(result[:suggestion]).to eq('einar-j')
end
it 'username available locally' do
User.stubs(:username_available?).returns(true)
result = @service.check_username('vincent', @nil_email)
expect(result[:available]).to eq(true)
end
end
end