BigW Consortium Gitlab

branch_formatter_spec.rb 1.73 KB
require 'spec_helper'

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

  describe '#exists?' do
    it 'returns true when branch 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
  end

  describe '#name' do
    it 'returns raw ref when branch exists' do
      branch = described_class.new(project, double(raw))

      expect(branch.name).to eq 'feature'
    end

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

      expect(branch.name).to eq 'removed-branch-2e5d3239'
    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 '2e5d3239642f9161dcbbc4b70a211a68e5e45e2b'
    end
  end

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

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

    it 'returns false when repository does not exist' do
      branch = described_class.new(project, double(raw.merge(repo: nil)))

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