2019-10-16 05:07:51 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-07-07 12:19:21 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe BranchesFinder do
|
|
|
|
let(:user) { create(:user) }
|
2017-01-25 16:49:52 -05:00
|
|
|
let(:project) { create(:project, :repository) }
|
2016-07-07 12:19:21 -04:00
|
|
|
let(:repository) { project.repository }
|
|
|
|
|
|
|
|
describe '#execute' do
|
|
|
|
context 'sort only' do
|
|
|
|
it 'sorts by name' do
|
|
|
|
branches_finder = described_class.new(repository, {})
|
|
|
|
|
|
|
|
result = branches_finder.execute
|
|
|
|
|
|
|
|
expect(result.first.name).to eq("'test'")
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sorts by recently_updated' do
|
2016-07-26 23:56:17 -04:00
|
|
|
branches_finder = described_class.new(repository, { sort: 'updated_desc' })
|
2016-07-12 14:00:43 -04:00
|
|
|
|
2016-07-07 12:19:21 -04:00
|
|
|
result = branches_finder.execute
|
|
|
|
|
2016-07-30 22:09:19 -04:00
|
|
|
recently_updated_branch = repository.branches.max do |a, b|
|
2016-09-26 23:07:31 -04:00
|
|
|
repository.commit(a.dereferenced_target).committed_date <=> repository.commit(b.dereferenced_target).committed_date
|
2016-07-30 22:09:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(result.first.name).to eq(recently_updated_branch.name)
|
2016-07-07 12:19:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sorts by last_updated' do
|
2016-07-26 23:56:17 -04:00
|
|
|
branches_finder = described_class.new(repository, { sort: 'updated_asc' })
|
2016-07-07 12:19:21 -04:00
|
|
|
|
|
|
|
result = branches_finder.execute
|
|
|
|
|
|
|
|
expect(result.first.name).to eq('feature')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'filter only' do
|
|
|
|
it 'filters branches by name' do
|
|
|
|
branches_finder = described_class.new(repository, { search: 'fix' })
|
|
|
|
|
|
|
|
result = branches_finder.execute
|
|
|
|
|
|
|
|
expect(result.first.name).to eq('fix')
|
2017-10-22 10:50:58 -04:00
|
|
|
expect(result.count).to eq(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'filters branches by name ignoring letter case' do
|
|
|
|
branches_finder = described_class.new(repository, { search: 'FiX' })
|
|
|
|
|
|
|
|
result = branches_finder.execute
|
|
|
|
|
|
|
|
expect(result.first.name).to eq('fix')
|
2016-07-07 12:19:21 -04:00
|
|
|
expect(result.count).to eq(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not find any branch with that name' do
|
|
|
|
branches_finder = described_class.new(repository, { search: 'random' })
|
|
|
|
|
|
|
|
result = branches_finder.execute
|
|
|
|
|
|
|
|
expect(result.count).to eq(0)
|
|
|
|
end
|
2019-06-18 10:20:11 -04:00
|
|
|
|
|
|
|
it 'filters branches by provided names' do
|
2019-12-20 04:24:38 -05:00
|
|
|
branches_finder = described_class.new(repository, { names: %w[fix csv lfs does-not-exist] })
|
2019-06-18 10:20:11 -04:00
|
|
|
|
|
|
|
result = branches_finder.execute
|
|
|
|
|
|
|
|
expect(result.count).to eq(3)
|
|
|
|
expect(result.map(&:name)).to eq(%w{csv fix lfs})
|
|
|
|
end
|
2016-07-07 12:19:21 -04:00
|
|
|
|
2019-11-05 07:06:20 -05:00
|
|
|
it 'filters branches by name that begins with' do
|
|
|
|
params = { search: '^feature_' }
|
2016-07-07 12:19:21 -04:00
|
|
|
branches_finder = described_class.new(repository, params)
|
|
|
|
|
|
|
|
result = branches_finder.execute
|
|
|
|
|
|
|
|
expect(result.first.name).to eq('feature_conflict')
|
2019-11-05 07:06:20 -05:00
|
|
|
expect(result.count).to eq(1)
|
2016-07-07 12:19:21 -04:00
|
|
|
end
|
|
|
|
|
2019-11-05 07:06:20 -05:00
|
|
|
it 'filters branches by name that ends with' do
|
|
|
|
params = { search: 'feature$' }
|
2018-10-11 10:25:30 -04:00
|
|
|
branches_finder = described_class.new(repository, params)
|
|
|
|
|
|
|
|
result = branches_finder.execute
|
|
|
|
|
|
|
|
expect(result.first.name).to eq('feature')
|
2019-11-05 07:06:20 -05:00
|
|
|
expect(result.count).to eq(1)
|
2018-10-11 10:25:30 -04:00
|
|
|
end
|
|
|
|
|
2019-11-05 07:06:20 -05:00
|
|
|
it 'filters branches by nonexistent name that begins with' do
|
|
|
|
params = { search: '^nope' }
|
2016-07-07 12:19:21 -04:00
|
|
|
branches_finder = described_class.new(repository, params)
|
|
|
|
|
|
|
|
result = branches_finder.execute
|
|
|
|
|
2019-11-05 07:06:20 -05:00
|
|
|
expect(result.count).to eq(0)
|
2016-07-07 12:19:21 -04:00
|
|
|
end
|
2018-10-11 10:25:30 -04:00
|
|
|
|
2019-11-05 07:06:20 -05:00
|
|
|
it 'filters branches by nonexistent name that ends with' do
|
|
|
|
params = { search: 'nope$' }
|
|
|
|
branches_finder = described_class.new(repository, params)
|
|
|
|
|
|
|
|
result = branches_finder.execute
|
|
|
|
|
|
|
|
expect(result.count).to eq(0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'filter and sort' do
|
|
|
|
it 'filters branches by name and sorts by recently_updated' do
|
|
|
|
params = { sort: 'updated_desc', search: 'feat' }
|
2018-10-11 10:25:30 -04:00
|
|
|
branches_finder = described_class.new(repository, params)
|
|
|
|
|
|
|
|
result = branches_finder.execute
|
|
|
|
|
|
|
|
expect(result.first.name).to eq('feature_conflict')
|
2019-11-05 07:06:20 -05:00
|
|
|
expect(result.count).to eq(2)
|
2018-10-11 10:25:30 -04:00
|
|
|
end
|
|
|
|
|
2019-11-05 07:06:20 -05:00
|
|
|
it 'filters branches by name and sorts by recently_updated, with exact matches first' do
|
|
|
|
params = { sort: 'updated_desc', search: 'feature' }
|
2018-10-11 10:25:30 -04:00
|
|
|
branches_finder = described_class.new(repository, params)
|
|
|
|
|
|
|
|
result = branches_finder.execute
|
|
|
|
|
|
|
|
expect(result.first.name).to eq('feature')
|
2019-11-05 07:06:20 -05:00
|
|
|
expect(result.second.name).to eq('feature_conflict')
|
|
|
|
expect(result.count).to eq(2)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'filters branches by name and sorts by last_updated' do
|
|
|
|
params = { sort: 'updated_asc', search: 'feature' }
|
|
|
|
branches_finder = described_class.new(repository, params)
|
|
|
|
|
|
|
|
result = branches_finder.execute
|
|
|
|
|
|
|
|
expect(result.first.name).to eq('feature')
|
|
|
|
expect(result.count).to eq(2)
|
2018-10-11 10:25:30 -04:00
|
|
|
end
|
2016-07-07 12:19:21 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|