debian-mirror-gitlab/spec/lib/extracts_ref_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.7 KiB
Ruby
Raw Normal View History

2020-06-23 00:09:42 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe ExtractsRef do
2020-06-23 00:09:42 +05:30
include described_class
include RepoHelpers
let_it_be(:owner) { create(:user) }
let_it_be(:container) { create(:snippet, :repository, author: owner) }
2021-09-30 23:02:18 +05:30
2020-06-23 00:09:42 +05:30
let(:ref) { sample_commit[:id] }
2022-04-04 11:22:00 +05:30
let(:path) { sample_commit[:line_code_path] }
let(:params) { ActionController::Parameters.new(path: path, ref: ref) }
2020-06-23 00:09:42 +05:30
before do
ref_names = ['master', 'foo/bar/baz', 'v1.0.0', 'v2.0.0', 'release/app', 'release/app/v1.0.0']
allow(container.repository).to receive(:ref_names).and_return(ref_names)
allow_any_instance_of(described_class).to receive(:repository_container).and_return(container)
end
2021-01-29 00:20:46 +05:30
describe '#assign_ref_vars' do
it_behaves_like 'assigns ref vars'
context 'ref and path are nil' do
2022-04-04 11:22:00 +05:30
let(:ref) { nil }
let(:path) { nil }
2021-01-29 00:20:46 +05:30
it 'does not set commit' do
expect(container.repository).not_to receive(:commit).with('')
assign_ref_vars
expect(@commit).to be_nil
end
end
2022-04-04 11:22:00 +05:30
context 'when ref and path have incorrect format' do
let(:ref) { { wrong: :format } }
let(:path) { { also: :wrong } }
it 'does not raise an exception' do
expect { assign_ref_vars }.not_to raise_error
end
end
2023-03-04 22:38:38 +05:30
context 'when a ref_type parameter is provided' do
let(:params) { ActionController::Parameters.new(path: path, ref: ref, ref_type: 'tags') }
2023-04-23 21:23:45 +05:30
it 'sets a fully_qualified_ref variable' do
fully_qualified_ref = "refs/tags/#{ref}"
expect(container.repository).to receive(:commit).with(fully_qualified_ref)
assign_ref_vars
expect(@fully_qualified_ref).to eq(fully_qualified_ref)
2023-03-04 22:38:38 +05:30
end
end
2021-01-29 00:20:46 +05:30
end
2020-06-23 00:09:42 +05:30
it_behaves_like 'extracts refs'
end