summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/github_import/branch_formatter_spec.rb
blob: 36e7d739f7ec632a17db26508cc9391b9a6f06f0 (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
require 'spec_helper'

describe Gitlab::GithubImport::BranchFormatter, lib: true do
  let(:project) { create(:project, :repository) }
  let(:commit) { create(:commit, project: project) }
  let(:repo) { double }
  let(:raw) do
    {
      ref: 'feature',
      repo: repo,
      sha: commit.id
    }
  end

  describe '#exists?' do
    it 'returns true when both branch, and commit exists' do
      branch = described_class.new(project, double(raw))

      expect(branch.exists?).to eq true
    end

    it 'returns false when branch does not exist' do
      branch = described_class.new(project, double(raw.merge(ref: 'removed-branch')))

      expect(branch.exists?).to eq false
    end

    it 'returns false when commit does not exist' do
      branch = described_class.new(project, double(raw.merge(sha: '2e5d3239642f9161dcbbc4b70a211a68e5e45e2b')))

      expect(branch.exists?).to eq false
    end
  end

  describe '#repo' do
    it 'returns raw repo' do
      branch = described_class.new(project, double(raw))

      expect(branch.repo).to eq repo
    end
  end

  describe '#sha' do
    it 'returns raw sha' do
      branch = described_class.new(project, double(raw))

      expect(branch.sha).to eq commit.id
    end
  end

  describe '#valid?' do
    it 'returns true when raw sha and ref are present' do
      branch = described_class.new(project, double(raw))

      expect(branch.valid?).to eq true
    end

    it 'returns false when raw sha is blank' do
      branch = described_class.new(project, double(raw.merge(sha: nil)))

      expect(branch.valid?).to eq false
    end

    it 'returns false when raw ref is blank' do
      branch = described_class.new(project, double(raw.merge(ref: nil)))

      expect(branch.valid?).to eq false
    end
  end
end