about summary refs log tree commit diff
path: root/spec/models/canonical_email_block_spec.rb
blob: 2b3fd6d6a778891aa91696c107761cfb54b4ce51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe CanonicalEmailBlock, type: :model do
  describe '#email=' do
    let(:target_hash) { '973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b' }

    it 'sets canonical_email_hash' do
      subject.email = 'test@example.com'
      expect(subject.canonical_email_hash).to eq target_hash
    end

    it 'sets the same hash even with dot permutations' do
      subject.email = 't.e.s.t@example.com'
      expect(subject.canonical_email_hash).to eq target_hash
    end

    it 'sets the same hash even with extensions' do
      subject.email = 'test+mastodon1@example.com'
      expect(subject.canonical_email_hash).to eq target_hash
    end

    it 'sets the same hash with different casing' do
      subject.email = 'Test@EXAMPLE.com'
      expect(subject.canonical_email_hash).to eq target_hash
    end
  end

  describe '.block?' do
    let!(:canonical_email_block) { Fabricate(:canonical_email_block, email: 'foo@bar.com') }

    it 'returns true for the same email' do
      expect(described_class.block?('foo@bar.com')).to be true
    end

    it 'returns true for the same email with dots' do
      expect(described_class.block?('f.oo@bar.com')).to be true
    end

    it 'returns true for the same email with extensions' do
      expect(described_class.block?('foo+spam@bar.com')).to be true
    end

    it 'returns false for different email' do
      expect(described_class.block?('hoge@bar.com')).to be false
    end
  end
end