diff options
author | Eugen <eugen@zeonfederated.com> | 2017-04-05 03:04:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-05 03:04:58 +0200 |
commit | 117b22e905832132367b20e2ef79e98cf9f03f17 (patch) | |
tree | bff17e40071d818d2fab57c5df7945ccdadf05cf /spec | |
parent | d3dab68978103e304d38589d154b34ef890e0715 (diff) | |
parent | e9a6da6bc739f4f68447f56b93810762da388ce8 (diff) |
Merge pull request #852 from peterkeen/email-whitelist-817
[#817] Add email whitelist
Diffstat (limited to 'spec')
-rw-r--r-- | spec/models/user_spec.rb | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index 64de06749..aa777fd39 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -1,5 +1,42 @@ require 'rails_helper' RSpec.describe User, type: :model do + let(:account) { Fabricate(:account, username: 'alice') } + let(:password) { 'abcd1234' } + describe 'blacklist' do + it 'should allow a non-blacklisted user to be created' do + user = User.new(email: 'foo@example.com', account: account, password: password) + + expect(user.valid?).to be_truthy + end + + it 'should not allow a blacklisted user to be created' do + user = User.new(email: 'foo@mvrht.com', account: account, password: password) + + expect(user.valid?).to be_falsey + end + end + + describe 'whitelist' do + around(:each) do |example| + old_whitelist = Rails.configuration.x.email_whitelist + + Rails.configuration.x.email_domains_whitelist = 'mastodon.space' + + example.run + + Rails.configuration.x.email_domains_whitelist = old_whitelist + end + + it 'should not allow a user to be created unless they are whitelisted' do + user = User.new(email: 'foo@example.com', account: account, password: password) + expect(user.valid?).to be_falsey + end + + it 'should allow a user to be created if they are whitelisted' do + user = User.new(email: 'foo@mastodon.space', account: account, password: password) + expect(user.valid?).to be_truthy + end + end end |