debian-mirror-gitlab/spec/models/redirect_route_spec.rb

38 lines
1.4 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2019-12-04 20:38:33 +05:30
require 'spec_helper'
2017-08-17 22:00:37 +05:30
2020-07-28 23:09:34 +05:30
RSpec.describe RedirectRoute do
2017-08-17 22:00:37 +05:30
let(:group) { create(:group) }
2021-12-11 22:18:48 +05:30
let!(:redirect_route) { group.redirect_routes.create!(path: 'gitlabb') }
2017-08-17 22:00:37 +05:30
describe 'relationships' do
it { is_expected.to belong_to(:source) }
end
describe 'validations' do
it { is_expected.to validate_presence_of(:source) }
it { is_expected.to validate_presence_of(:path) }
2017-09-10 17:25:29 +05:30
it { is_expected.to validate_uniqueness_of(:path).case_insensitive }
2017-08-17 22:00:37 +05:30
end
describe '.matching_path_and_descendants' do
2021-12-11 22:18:48 +05:30
let!(:redirect2) { group.redirect_routes.create!(path: 'gitlabb/test') }
let!(:redirect3) { group.redirect_routes.create!(path: 'gitlabb/test/foo') }
let!(:redirect4) { group.redirect_routes.create!(path: 'gitlabb/test/foo/bar') }
let!(:redirect5) { group.redirect_routes.create!(path: 'gitlabb/test/baz') }
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
context 'when the redirect route matches with same casing' do
it 'returns correct routes' do
expect(described_class.matching_path_and_descendants('gitlabb/test')).to match_array([redirect2, redirect3, redirect4, redirect5])
end
end
context 'when the redirect route matches with different casing' do
it 'returns correct routes' do
expect(described_class.matching_path_and_descendants('GitLABB/test')).to match_array([redirect2, redirect3, redirect4, redirect5])
end
2017-08-17 22:00:37 +05:30
end
end
end