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

timelog_category_spec.rb « time_tracking « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8b938e9d68af30f3f8bd5cf5af711205eeb4c87 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe TimeTracking::TimelogCategory, type: :model do
  describe 'associations' do
    it { is_expected.to belong_to(:namespace).with_foreign_key('namespace_id') }
  end

  describe 'validations' do
    subject { create(:timelog_category) }

    it { is_expected.to validate_presence_of(:namespace) }
    it { is_expected.to validate_presence_of(:name) }
    it { is_expected.to validate_uniqueness_of(:name).case_insensitive.scoped_to([:namespace_id]) }
    it { is_expected.to validate_length_of(:name).is_at_most(255) }
    it { is_expected.to validate_length_of(:description).is_at_most(1024) }
    it { is_expected.to validate_length_of(:color).is_at_most(7) }
  end

  describe 'validations when billable' do
    subject { create(:timelog_category, billable: true, billing_rate: 10.5) }

    it { is_expected.to validate_presence_of(:billing_rate) }
    it { is_expected.to validate_numericality_of(:billing_rate).is_greater_than(0) }
  end

  describe '#name' do
    it 'strips name' do
      timelog_category = described_class.new(name: '  TimelogCategoryTest  ')
      timelog_category.valid?

      expect(timelog_category.name).to eq('TimelogCategoryTest')
    end
  end

  describe '#color' do
    it 'strips color' do
      timelog_category = described_class.new(name: 'TimelogCategoryTest', color: '  #fafafa  ')
      timelog_category.valid?

      expect(timelog_category.color).to eq(::Gitlab::Color.of('#fafafa'))
    end
  end

  describe '#find_by_name' do
    let_it_be(:namespace_a) { create(:namespace) }
    let_it_be(:namespace_b) { create(:namespace) }
    let_it_be(:timelog_category_a) { create(:timelog_category, namespace: namespace_a, name: 'TimelogCategoryTest') }

    it 'finds the correct timelog category' do
      expect(described_class.find_by_name(namespace_a.id, 'TIMELOGCATEGORYTest')).to match_array([timelog_category_a])
    end

    it 'returns empty if not found' do
      expect(described_class.find_by_name(namespace_b.id, 'TIMELOGCATEGORYTest')).to be_empty
    end
  end
end