summaryrefslogtreecommitdiff
path: root/spec/presenters/label_presenter_spec.rb
blob: d566da7c8721b3ef7848632d2bb73c7e82f629b2 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# frozen_string_literal: true

require 'spec_helper'

describe LabelPresenter do
  include Gitlab::Routing.url_helpers

  set(:group) { create(:group) }
  set(:project) { create(:project, group: group) }
  let(:label) { build_stubbed(:label, project: project).present(issuable_subject: project) }
  let(:group_label) { build_stubbed(:group_label, group: group).present(issuable_subject: project) }

  describe '#edit_path' do
    context 'with group label' do
      subject { group_label.edit_path }

      it { is_expected.to eq(edit_group_label_path(group, group_label)) }
    end

    context 'with project label' do
      subject { label.edit_path }

      it { is_expected.to eq(edit_project_label_path(project, label)) }
    end
  end

  describe '#destroy_path' do
    context 'with group label' do
      subject { group_label.destroy_path }

      it { is_expected.to eq(group_label_path(group, group_label)) }
    end

    context 'with project label' do
      subject { label.destroy_path }

      it { is_expected.to eq(project_label_path(project, label)) }
    end
  end

  describe '#filter_path' do
    context 'with group as context subject' do
      let(:label_in_group) { build_stubbed(:label, project: project).present(issuable_subject: group) }
      subject { label_in_group.filter_path }

      it { is_expected.to eq(issues_group_path(group, label_name: [label_in_group.title])) }
    end

    context 'with project as context subject' do
      subject { label.filter_path }

      it { is_expected.to eq(namespace_project_issues_path(group, project, label_name: [label.title])) }
    end
  end

  describe '#can_subscribe_to_label_in_different_levels?' do
    it 'returns true for group labels in project context' do
      expect(group_label.can_subscribe_to_label_in_different_levels?).to be_truthy
    end

    it 'returns false for project labels in project context' do
      expect(label.can_subscribe_to_label_in_different_levels?).to be_falsey
    end
  end

  describe '#project_label?' do
    context 'with group label' do
      subject { group_label.project_label? }

      it { is_expected.to be_falsey }
    end

    context 'with project label' do
      subject { label.project_label? }

      it { is_expected.to be_truthy }
    end
  end

  describe '#subject_name' do
    context 'with group label' do
      subject { group_label.subject_name }

      it { is_expected.to eq(group_label.group.name) }
    end

    context 'with project label' do
      subject { label.subject_name }

      it { is_expected.to eq(label.project.name) }
    end
  end
end