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

value_stream_spec.rb « cycle_analytics « analytics « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e32fbef30ae9d612f2fd38aee0850f752bdf9463 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Analytics::CycleAnalytics::ValueStream, type: :model, feature_category: :value_stream_management do
  describe 'associations' do
    it { is_expected.to belong_to(:namespace).required }
    it { is_expected.to have_many(:stages) }
  end

  describe 'validations' do
    it { is_expected.to validate_presence_of(:name) }
    it { is_expected.to validate_length_of(:name).is_at_most(100) }

    it 'validates uniqueness of name' do
      group = create(:group)
      create(:cycle_analytics_value_stream, name: 'test', namespace: group)

      value_stream = build(:cycle_analytics_value_stream, name: 'test', namespace: group)

      expect(value_stream).to be_invalid
      expect(value_stream.errors.messages).to eq(name: [I18n.t('errors.messages.taken')])
    end

    it_behaves_like 'value stream analytics namespace models' do
      let(:factory_name) { :cycle_analytics_value_stream }
    end
  end

  describe 'ordering of stages' do
    let(:group) { create(:group) }
    let(:value_stream) do
      create(:cycle_analytics_value_stream, namespace: group, stages: [
        create(:cycle_analytics_stage, namespace: group, name: "stage 1", relative_position: 5),
        create(:cycle_analytics_stage, namespace: group, name: "stage 2", relative_position: nil),
        create(:cycle_analytics_stage, namespace: group, name: "stage 3", relative_position: 1)
      ])
    end

    before do
      value_stream.reload
    end

    describe 'stages attribute' do
      it 'sorts stages by relative position' do
        names = value_stream.stages.map(&:name)
        expect(names).to eq(['stage 3', 'stage 1', 'stage 2'])
      end
    end
  end

  describe '#custom?' do
    context 'when value stream is not persisted' do
      subject(:value_stream) { build(:cycle_analytics_value_stream, name: value_stream_name) }

      context 'when the name of the value stream is default' do
        let(:value_stream_name) { Analytics::CycleAnalytics::Stages::BaseService::DEFAULT_VALUE_STREAM_NAME }

        it { is_expected.not_to be_custom }
      end

      context 'when the name of the value stream is not default' do
        let(:value_stream_name) { 'value_stream_1' }

        it { is_expected.to be_custom }
      end
    end

    context 'when value stream is persisted' do
      subject(:value_stream) { create(:cycle_analytics_value_stream, name: 'value_stream_1') }

      it { is_expected.to be_custom }
    end
  end
end