Welcome to mirror list, hosted at ThFree Co, Russian Federation.

color_validator_spec.rb « validators « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd77b3df1827aa62ccc4dd9bbf0360b9c07fdcaf (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ColorValidator do
  using RSpec::Parameterized::TableSyntax

  subject do
    Class.new do
      include ActiveModel::Model
      include ActiveModel::Validations
      attr_accessor :color
      validates :color, color: true
    end.new
  end

  where(:color, :is_valid) do
    '#000abc'    | true
    '#aaa'       | true
    '#BBB'       | true
    '#cCc'       | true
    '#ffff'      | false
    '#000111222' | false
    'invalid'    | false
    '000'        | false
  end

  with_them do
    it 'only accepts valid colors' do
      subject.color = color

      expect(subject.valid?).to eq(is_valid)
    end
  end

  it 'fails fast for long invalid string' do
    subject.color = '#' + ('0' * 50_000) + 'xxx'

    expect do
      Timeout.timeout(5.seconds) { subject.valid? }
    end.not_to raise_error
  end
end