summaryrefslogtreecommitdiff
path: root/spec/lib/learn_gitlab/project_spec.rb
blob: 523703761bf0eb558a04c22bfef59d2fa12d0adb (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe LearnGitlab::Project do
  let_it_be(:current_user) { create(:user) }
  let_it_be(:learn_gitlab_project) { create(:project, name: LearnGitlab::Project::PROJECT_NAME) }
  let_it_be(:learn_gitlab_board) { create(:board, project: learn_gitlab_project, name: LearnGitlab::Project::BOARD_NAME) }
  let_it_be(:learn_gitlab_label) { create(:label, project: learn_gitlab_project, name: LearnGitlab::Project::LABEL_NAME) }

  before do
    learn_gitlab_project.add_developer(current_user)
  end

  describe '.available?' do
    using RSpec::Parameterized::TableSyntax

    where(:project, :board, :label, :expected_result) do
      nil  | nil  | nil  | nil
      nil  | nil  | true | nil
      nil  | true | nil  | nil
      nil  | true | true | nil
      true | nil  | nil  | nil
      true | nil  | true | nil
      true | true | nil  | nil
      true | true | true | true
    end

    with_them do
      before do
        allow_next_instance_of(described_class) do |learn_gitlab|
          allow(learn_gitlab).to receive(:project).and_return(project)
          allow(learn_gitlab).to receive(:board).and_return(board)
          allow(learn_gitlab).to receive(:label).and_return(label)
        end
      end

      subject { described_class.new(current_user).available? }

      it { is_expected.to be expected_result }
    end
  end

  describe '.project' do
    subject { described_class.new(current_user).project }

    it { is_expected.to eq learn_gitlab_project }
  end

  describe '.board' do
    subject { described_class.new(current_user).board }

    it { is_expected.to eq learn_gitlab_board }
  end

  describe '.label' do
    subject { described_class.new(current_user).label }

    it { is_expected.to eq learn_gitlab_label }
  end
end