BigW Consortium Gitlab

merge_request_template_spec.rb 2.65 KB
Newer Older
1 2 3 4 5 6 7
require 'spec_helper'

describe Gitlab::Template::MergeRequestTemplate do
  subject { described_class }

  let(:user) { create(:user) }

8 9
  let(:project) do
    create(:project,
10
      :repository,
11 12 13
      create_template: {
        user: user,
        access: Gitlab::Access::MASTER,
14
        path: 'merge_request_templates' })
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
  end

  describe '.all' do
    it 'strips the md suffix' do
      expect(subject.all(project).first.name).not_to end_with('.issue_template')
    end

    it 'combines the globals and rest' do
      all = subject.all(project).map(&:name)

      expect(all).to include('bug')
      expect(all).to include('feature_proposal')
      expect(all).to include('template_test')
    end
  end

  describe '.find' do
    it 'returns nil if the file does not exist' do
      expect { subject.find('mepmep-yadida', project) }.to raise_error(Gitlab::Template::Finders::RepoTemplateFinder::FileNotFoundError)
    end

    it 'returns the merge request object of a valid file' do
      ruby = subject.find('bug', project)

      expect(ruby).to be_a Gitlab::Template::MergeRequestTemplate
      expect(ruby.name).to eq('bug')
    end
  end

  describe '.by_category' do
    it 'return array of templates' do
      all = subject.by_category('', project).map(&:name)
      expect(all).to include('bug')
      expect(all).to include('feature_proposal')
      expect(all).to include('template_test')
    end

    context 'when repo is bare or empty' do
      let(:empty_project) { create(:empty_project) }
54
      before { empty_project.add_user(user, Gitlab::Access::MASTER) }
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78

      it "returns empty array" do
        templates = subject.by_category('', empty_project)
        expect(templates).to be_empty
      end
    end
  end

  describe '#content' do
    it 'loads the full file' do
      issue_template = subject.new('.gitlab/merge_request_templates/bug.md', project)

      expect(issue_template.name).to eq 'bug'
      expect(issue_template.content).to eq('something valid')
    end

    it 'raises error when file is not found' do
      issue_template = subject.new('.gitlab/merge_request_templates/bugnot.md', project)
      expect { issue_template.content }.to raise_error(Gitlab::Template::Finders::RepoTemplateFinder::FileNotFoundError)
    end

    context "when repo is empty" do
      let(:empty_project) { create(:empty_project) }

79
      before { empty_project.add_user(user, Gitlab::Access::MASTER) }
80 81 82 83 84 85 86 87

      it "raises file not found" do
        issue_template = subject.new('.gitlab/merge_request_templates/not_existent.md', empty_project)
        expect { issue_template.content }.to raise_error(Gitlab::Template::Finders::RepoTemplateFinder::FileNotFoundError)
      end
    end
  end
end