summaryrefslogtreecommitdiff
path: root/spec/lib/api/validations/validators/email_or_email_list_spec.rb
blob: ac3111c23198ce165b43d4cf3e30df1c11fe1ab0 (plain)
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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe API::Validations::Validators::EmailOrEmailList do
  include ApiValidatorsHelpers

  subject do
    described_class.new(['email'], {}, false, scope.new)
  end

  context 'with valid email addresses' do
    it 'does not raise a validation error' do
      expect_no_validation_error('test' => 'test@example.org')
      expect_no_validation_error('test' => 'test1@example.com,test2@example.org')
      expect_no_validation_error('test' => 'test1@example.com,test2@example.org,test3@example.co.uk')
    end
  end

  context 'including any invalid email address' do
    it 'raises a validation error' do
      expect_validation_error('test' => 'not')
      expect_validation_error('test' => '@example.com')
      expect_validation_error('test' => 'test1@example.com,asdf')
      expect_validation_error('test' => 'asdf,testa1@example.com,asdf')
    end
  end
end