summaryrefslogtreecommitdiff
path: root/spec/models/incident_management/timeline_event_tag_spec.rb
blob: cff8ad8469f36d3aeab4e32f3f841c0f61c2cbb9 (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 IncidentManagement::TimelineEventTag do
  describe 'associations' do
    it { is_expected.to belong_to(:project) }
    it { is_expected.to have_many(:timeline_event_tag_links).class_name('IncidentManagement::TimelineEventTagLink') }

    it {
      is_expected.to have_many(:timeline_events)
      .class_name('IncidentManagement::TimelineEvent').through(:timeline_event_tag_links)
    }
  end

  describe 'validations' do
    subject { build(:incident_management_timeline_event_tag) }

    it { is_expected.to validate_presence_of(:name) }
    it { is_expected.to validate_length_of(:name).is_at_most(255) }
    it { is_expected.to validate_uniqueness_of(:name).scoped_to([:project_id]) }

    it { is_expected.to allow_value('Test tag 1').for(:name) }
    it { is_expected.not_to allow_value('Test tag, 1').for(:name) }
    it { is_expected.not_to allow_value('').for(:name) }
    it { is_expected.not_to allow_value('s' * 256).for(:name) }
  end
end