2019-08-22 06:57:44 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-24 16:59:26 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 14:09:03 -04:00
|
|
|
RSpec.describe Gitlab::PathRegex do
|
2020-05-21 08:08:08 -04:00
|
|
|
let(:starting_with_namespace) { %r{^/\*namespace_id/:(project_)?id} }
|
|
|
|
let(:non_param_parts) { %r{[^:*][a-z\-_/]*} }
|
|
|
|
let(:any_other_path_part) { %r{[a-z\-_/:]*} }
|
|
|
|
let(:wildcard_segment) { /\*/ }
|
|
|
|
|
2017-05-24 16:59:26 -04:00
|
|
|
# Pass in a full path to remove the format segment:
|
|
|
|
# `/ci/lint(.:format)` -> `/ci/lint`
|
|
|
|
def without_format(path)
|
|
|
|
path.split('(', 2)[0]
|
|
|
|
end
|
|
|
|
|
|
|
|
# Pass in a full path and get the last segment before a wildcard
|
|
|
|
# That's not a parameter
|
|
|
|
# `/*namespace_id/:project_id/builds/artifacts/*ref_name_and_path`
|
|
|
|
# -> 'builds/artifacts'
|
|
|
|
def path_before_wildcard(path)
|
2020-05-21 08:08:08 -04:00
|
|
|
path = path.gsub(starting_with_namespace, "")
|
2017-05-24 16:59:26 -04:00
|
|
|
path_segments = path.split('/').reject(&:empty?)
|
|
|
|
wildcard_index = path_segments.index { |segment| parameter?(segment) }
|
|
|
|
|
|
|
|
segments_before_wildcard = path_segments[0..wildcard_index - 1]
|
|
|
|
|
|
|
|
segments_before_wildcard.join('/')
|
|
|
|
end
|
|
|
|
|
|
|
|
def parameter?(segment)
|
|
|
|
segment =~ /[*:]/
|
|
|
|
end
|
|
|
|
|
|
|
|
# If the path is reserved. Then no conflicting paths can# be created for any
|
|
|
|
# route using this reserved word.
|
|
|
|
#
|
|
|
|
# Both `builds/artifacts` & `build` are covered by reserving the word
|
|
|
|
# `build`
|
|
|
|
def wildcards_include?(path)
|
|
|
|
described_class::PROJECT_WILDCARD_ROUTES.include?(path) ||
|
|
|
|
described_class::PROJECT_WILDCARD_ROUTES.include?(path.split('/').first)
|
|
|
|
end
|
|
|
|
|
2017-07-18 09:28:20 -04:00
|
|
|
def failure_message(constant_name, migration_helper, missing_words: [], additional_words: [])
|
2017-05-24 16:59:26 -04:00
|
|
|
missing_words = Array(missing_words)
|
2017-07-18 03:21:09 -04:00
|
|
|
additional_words = Array(additional_words)
|
2017-07-18 09:28:20 -04:00
|
|
|
message = ""
|
|
|
|
if missing_words.any?
|
|
|
|
message += <<-MISSING
|
2017-05-24 16:59:26 -04:00
|
|
|
Found new routes that could cause conflicts with existing namespaced routes
|
|
|
|
for groups or projects.
|
|
|
|
|
2017-10-27 10:47:08 -04:00
|
|
|
Nest <#{missing_words.join(', ')}> in a route containing `-`, that way
|
|
|
|
we know there will be no conflicts with groups or projects created with those
|
|
|
|
paths.
|
2017-05-24 16:59:26 -04:00
|
|
|
|
2017-07-18 09:28:20 -04:00
|
|
|
MISSING
|
|
|
|
end
|
2017-07-18 03:21:09 -04:00
|
|
|
|
|
|
|
if additional_words.any?
|
2017-07-18 09:28:20 -04:00
|
|
|
message += <<-ADDITIONAL
|
2017-10-27 10:47:08 -04:00
|
|
|
Is <#{additional_words.join(', ')}> in `#{constant_name}` required?
|
2017-07-18 03:21:09 -04:00
|
|
|
If they are really required, update these specs to reflect that.
|
|
|
|
|
|
|
|
ADDITIONAL
|
|
|
|
end
|
|
|
|
|
|
|
|
message
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
|
2017-11-06 06:12:19 -05:00
|
|
|
let(:all_non_legacy_routes) do
|
2017-05-24 16:59:26 -04:00
|
|
|
route_set = Rails.application.routes
|
|
|
|
routes_collection = route_set.routes
|
|
|
|
routes_array = routes_collection.routes
|
2017-11-06 06:12:19 -05:00
|
|
|
|
|
|
|
non_legacy_routes = routes_array.reject do |route|
|
|
|
|
route.name.to_s =~ /legacy_(\w*)_redirect/
|
|
|
|
end
|
|
|
|
|
|
|
|
non_deprecated_redirect_routes = non_legacy_routes.reject do |route|
|
|
|
|
app = route.app
|
|
|
|
# `app.app` is either another app, or `self`. We want to find the final app.
|
|
|
|
app = app.app while app.try(:app) && app.app != app
|
|
|
|
|
|
|
|
app.is_a?(ActionDispatch::Routing::PathRedirect) && app.block.include?('/-/')
|
|
|
|
end
|
|
|
|
|
|
|
|
non_deprecated_redirect_routes.map { |route| route.path.spec.to_s }
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
|
2017-11-06 06:12:19 -05:00
|
|
|
let(:routes_without_format) { all_non_legacy_routes.map { |path| without_format(path) } }
|
2017-05-24 16:59:26 -04:00
|
|
|
|
|
|
|
# Routes not starting with `/:` or `/*`
|
|
|
|
# all routes not starting with a param
|
|
|
|
let(:routes_not_starting_in_wildcard) { routes_without_format.select { |p| p !~ %r{^/[:*]} } }
|
|
|
|
|
|
|
|
let(:top_level_words) do
|
2017-08-16 09:04:41 -04:00
|
|
|
routes_not_starting_in_wildcard
|
|
|
|
.map { |route| route.split('/')[1] }
|
|
|
|
.concat(ee_top_level_words)
|
|
|
|
.concat(files_in_public)
|
|
|
|
.concat(Array(API::API.prefix.to_s))
|
2020-10-21 05:08:50 -04:00
|
|
|
.concat(sitemap_words)
|
2021-01-18 10:10:42 -05:00
|
|
|
.concat(deprecated_routes)
|
2017-08-16 09:04:41 -04:00
|
|
|
.compact
|
|
|
|
.uniq
|
2017-07-18 03:21:09 -04:00
|
|
|
end
|
|
|
|
|
2020-10-21 05:08:50 -04:00
|
|
|
let(:sitemap_words) do
|
2020-11-04 19:09:16 -05:00
|
|
|
%w(sitemap sitemap.xml sitemap.xml.gz)
|
2020-10-21 05:08:50 -04:00
|
|
|
end
|
|
|
|
|
2021-01-18 10:10:42 -05:00
|
|
|
let(:deprecated_routes) do
|
|
|
|
# profile was deprecated in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/51646
|
2021-06-01 11:09:52 -04:00
|
|
|
%w(profile s)
|
2021-01-18 10:10:42 -05:00
|
|
|
end
|
|
|
|
|
2017-07-18 09:28:20 -04:00
|
|
|
let(:ee_top_level_words) do
|
2019-03-25 07:14:32 -04:00
|
|
|
%w(unsubscribes v2)
|
2017-07-18 03:21:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
let(:files_in_public) do
|
|
|
|
git = Gitlab.config.git.bin_path
|
2017-10-03 10:47:56 -04:00
|
|
|
tracked = `cd #{Rails.root} && #{git} ls-files public`
|
2017-07-18 03:21:09 -04:00
|
|
|
.split("\n")
|
2019-10-14 17:06:30 -04:00
|
|
|
.map { |entry| entry.start_with?('public/-/') ? '-' : entry.gsub('public/', '') }
|
2017-07-18 03:21:09 -04:00
|
|
|
.uniq
|
2017-10-03 10:47:56 -04:00
|
|
|
tracked + %w(assets uploads)
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# All routes that start with a namespaced path, that have 1 or more
|
|
|
|
# path-segments before having another wildcard parameter.
|
|
|
|
# - Starting with paths:
|
|
|
|
# - `/*namespace_id/:project_id/`
|
|
|
|
# - `/*namespace_id/:id/`
|
|
|
|
# - Followed by one or more path-parts not starting with `:` or `*`
|
|
|
|
# - Followed by a path-part that includes a wildcard parameter `*`
|
|
|
|
# At the time of writing these routes match: http://rubular.com/r/Rv2pDE5Dvw
|
|
|
|
let(:namespaced_wildcard_routes) do
|
|
|
|
routes_without_format.select do |p|
|
2020-05-21 08:08:08 -04:00
|
|
|
p =~ %r{#{starting_with_namespace}/#{non_param_parts}/#{any_other_path_part}#{wildcard_segment}}
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# This will return all paths that are used in a namespaced route
|
|
|
|
# before another wildcard path:
|
|
|
|
#
|
|
|
|
# /*namespace_id/:project_id/builds/artifacts/*ref_name_and_path
|
|
|
|
# /*namespace_id/:project_id/info/lfs/objects/*oid
|
|
|
|
# /*namespace_id/:project_id/commits/*id
|
|
|
|
# /*namespace_id/:project_id/builds/:build_id/artifacts/file/*path
|
|
|
|
# -> ['builds/artifacts', 'info/lfs/objects', 'commits', 'artifacts/file']
|
|
|
|
let(:all_wildcard_paths) do
|
|
|
|
namespaced_wildcard_routes.map do |route|
|
|
|
|
path_before_wildcard(route)
|
|
|
|
end.uniq
|
|
|
|
end
|
|
|
|
|
2020-05-21 08:08:08 -04:00
|
|
|
let(:starting_with_group) { %r{^/groups/\*(group_)?id/} }
|
2017-05-24 16:59:26 -04:00
|
|
|
let(:group_routes) do
|
2020-05-21 08:08:08 -04:00
|
|
|
routes_without_format.grep(starting_with_group)
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
let(:paths_after_group_id) do
|
|
|
|
group_routes.map do |route|
|
2020-05-21 08:08:08 -04:00
|
|
|
route.gsub(starting_with_group, '').split('/').first
|
2017-11-07 07:05:08 -05:00
|
|
|
end.uniq
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'TOP_LEVEL_ROUTES' do
|
|
|
|
it 'includes all the top level namespaces' do
|
|
|
|
failure_block = lambda do
|
|
|
|
missing_words = top_level_words - described_class::TOP_LEVEL_ROUTES
|
2017-07-18 03:21:09 -04:00
|
|
|
additional_words = described_class::TOP_LEVEL_ROUTES - top_level_words
|
|
|
|
failure_message('TOP_LEVEL_ROUTES', 'rename_root_paths',
|
|
|
|
missing_words: missing_words, additional_words: additional_words)
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(described_class::TOP_LEVEL_ROUTES)
|
2017-07-18 03:21:09 -04:00
|
|
|
.to contain_exactly(*top_level_words), failure_block
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
2020-04-23 17:09:31 -04:00
|
|
|
|
|
|
|
# We ban new items in this list, see https://gitlab.com/gitlab-org/gitlab/-/issues/215362
|
|
|
|
it 'does not allow expansion' do
|
2021-05-19 17:12:42 -04:00
|
|
|
expect(described_class::TOP_LEVEL_ROUTES.size).to eq(40)
|
2020-04-23 17:09:31 -04:00
|
|
|
end
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GROUP_ROUTES' do
|
|
|
|
it "don't contain a second wildcard" do
|
|
|
|
failure_block = lambda do
|
|
|
|
missing_words = paths_after_group_id - described_class::GROUP_ROUTES
|
2017-07-18 09:28:20 -04:00
|
|
|
additional_words = described_class::GROUP_ROUTES - paths_after_group_id
|
|
|
|
failure_message('GROUP_ROUTES', 'rename_child_paths',
|
|
|
|
missing_words: missing_words, additional_words: additional_words)
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(described_class::GROUP_ROUTES)
|
2017-07-18 09:28:20 -04:00
|
|
|
.to contain_exactly(*paths_after_group_id), failure_block
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
2020-04-23 17:09:31 -04:00
|
|
|
|
|
|
|
# We ban new items in this list, see https://gitlab.com/gitlab-org/gitlab/-/issues/215362
|
|
|
|
it 'does not allow expansion' do
|
|
|
|
expect(described_class::GROUP_ROUTES.size).to eq(1)
|
|
|
|
end
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'PROJECT_WILDCARD_ROUTES' do
|
|
|
|
it 'includes all paths that can be used after a namespace/project path' do
|
|
|
|
aggregate_failures do
|
|
|
|
all_wildcard_paths.each do |path|
|
|
|
|
expect(wildcards_include?(path))
|
2017-07-18 03:21:09 -04:00
|
|
|
.to be(true), failure_message('PROJECT_WILDCARD_ROUTES', 'rename_wildcard_paths', missing_words: path)
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-04-23 17:09:31 -04:00
|
|
|
|
|
|
|
# We ban new items in this list, see https://gitlab.com/gitlab-org/gitlab/-/issues/215362
|
|
|
|
it 'does not allow expansion' do
|
|
|
|
expect(described_class::PROJECT_WILDCARD_ROUTES.size).to eq(21)
|
|
|
|
end
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
|
2018-01-31 12:39:03 -05:00
|
|
|
describe '.root_namespace_route_regex' do
|
|
|
|
subject { %r{\A#{described_class.root_namespace_route_regex}/\z} }
|
2017-05-24 16:59:26 -04:00
|
|
|
|
|
|
|
it 'rejects top level routes' do
|
|
|
|
expect(subject).not_to match('admin/')
|
|
|
|
expect(subject).not_to match('api/')
|
|
|
|
expect(subject).not_to match('.well-known/')
|
2020-10-21 05:08:50 -04:00
|
|
|
expect(subject).not_to match('sitemap.xml/')
|
|
|
|
expect(subject).not_to match('sitemap.xml.gz/')
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts project wildcard routes' do
|
|
|
|
expect(subject).to match('blob/')
|
|
|
|
expect(subject).to match('edit/')
|
|
|
|
expect(subject).to match('wikis/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts group routes' do
|
|
|
|
expect(subject).to match('activity/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is not case sensitive' do
|
|
|
|
expect(subject).not_to match('Users/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not allow extra slashes' do
|
|
|
|
expect(subject).not_to match('/blob/')
|
|
|
|
expect(subject).not_to match('blob//')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.full_namespace_path_regex' do
|
|
|
|
subject { described_class.full_namespace_path_regex }
|
|
|
|
|
|
|
|
context 'at the top level' do
|
|
|
|
context 'when the final level' do
|
|
|
|
it 'rejects top level routes' do
|
|
|
|
expect(subject).not_to match('admin/')
|
|
|
|
expect(subject).not_to match('api/')
|
|
|
|
expect(subject).not_to match('.well-known/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts project wildcard routes' do
|
|
|
|
expect(subject).to match('blob/')
|
|
|
|
expect(subject).to match('edit/')
|
|
|
|
expect(subject).to match('wikis/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts group routes' do
|
|
|
|
expect(subject).to match('activity/')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when more levels follow' do
|
|
|
|
it 'rejects top level routes' do
|
|
|
|
expect(subject).not_to match('admin/more/')
|
|
|
|
expect(subject).not_to match('api/more/')
|
|
|
|
expect(subject).not_to match('.well-known/more/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts project wildcard routes' do
|
|
|
|
expect(subject).to match('blob/more/')
|
|
|
|
expect(subject).to match('edit/more/')
|
|
|
|
expect(subject).to match('wikis/more/')
|
|
|
|
expect(subject).to match('environments/folders/')
|
|
|
|
expect(subject).to match('info/lfs/objects/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts group routes' do
|
|
|
|
expect(subject).to match('activity/more/')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'at the second level' do
|
|
|
|
context 'when the final level' do
|
|
|
|
it 'accepts top level routes' do
|
|
|
|
expect(subject).to match('root/admin/')
|
|
|
|
expect(subject).to match('root/api/')
|
|
|
|
expect(subject).to match('root/.well-known/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'rejects project wildcard routes' do
|
|
|
|
expect(subject).not_to match('root/blob/')
|
|
|
|
expect(subject).not_to match('root/edit/')
|
|
|
|
expect(subject).not_to match('root/wikis/')
|
|
|
|
expect(subject).not_to match('root/environments/folders/')
|
|
|
|
expect(subject).not_to match('root/info/lfs/objects/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'rejects group routes' do
|
2017-11-07 07:05:08 -05:00
|
|
|
expect(subject).not_to match('root/-/')
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when more levels follow' do
|
|
|
|
it 'accepts top level routes' do
|
|
|
|
expect(subject).to match('root/admin/more/')
|
|
|
|
expect(subject).to match('root/api/more/')
|
|
|
|
expect(subject).to match('root/.well-known/more/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'rejects project wildcard routes' do
|
|
|
|
expect(subject).not_to match('root/blob/more/')
|
|
|
|
expect(subject).not_to match('root/edit/more/')
|
|
|
|
expect(subject).not_to match('root/wikis/more/')
|
|
|
|
expect(subject).not_to match('root/environments/folders/more/')
|
|
|
|
expect(subject).not_to match('root/info/lfs/objects/more/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'rejects group routes' do
|
2017-11-07 07:05:08 -05:00
|
|
|
expect(subject).not_to match('root/-/')
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is not case sensitive' do
|
|
|
|
expect(subject).not_to match('root/Blob/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not allow extra slashes' do
|
|
|
|
expect(subject).not_to match('/root/admin/')
|
|
|
|
expect(subject).not_to match('root/admin//')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-31 12:39:03 -05:00
|
|
|
describe '.project_route_regex' do
|
|
|
|
subject { %r{\A#{described_class.project_route_regex}/\z} }
|
2017-05-24 16:59:26 -04:00
|
|
|
|
|
|
|
it 'accepts top level routes' do
|
|
|
|
expect(subject).to match('admin/')
|
|
|
|
expect(subject).to match('api/')
|
|
|
|
expect(subject).to match('.well-known/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'rejects project wildcard routes' do
|
|
|
|
expect(subject).not_to match('blob/')
|
|
|
|
expect(subject).not_to match('edit/')
|
|
|
|
expect(subject).not_to match('wikis/')
|
|
|
|
expect(subject).not_to match('environments/folders/')
|
|
|
|
expect(subject).not_to match('info/lfs/objects/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts group routes' do
|
2017-10-27 05:29:51 -04:00
|
|
|
expect(subject).to match('analytics/')
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'is not case sensitive' do
|
|
|
|
expect(subject).not_to match('Blob/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not allow extra slashes' do
|
|
|
|
expect(subject).not_to match('/admin/')
|
|
|
|
expect(subject).not_to match('admin//')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.full_project_path_regex' do
|
|
|
|
subject { described_class.full_project_path_regex }
|
|
|
|
|
|
|
|
it 'accepts top level routes' do
|
|
|
|
expect(subject).to match('root/admin/')
|
|
|
|
expect(subject).to match('root/api/')
|
|
|
|
expect(subject).to match('root/.well-known/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'rejects project wildcard routes' do
|
|
|
|
expect(subject).not_to match('root/blob/')
|
|
|
|
expect(subject).not_to match('root/edit/')
|
|
|
|
expect(subject).not_to match('root/wikis/')
|
|
|
|
expect(subject).not_to match('root/environments/folders/')
|
|
|
|
expect(subject).not_to match('root/info/lfs/objects/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts group routes' do
|
2017-10-27 05:29:51 -04:00
|
|
|
expect(subject).to match('root/analytics/')
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'is not case sensitive' do
|
|
|
|
expect(subject).not_to match('root/Blob/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not allow extra slashes' do
|
|
|
|
expect(subject).not_to match('/root/admin/')
|
|
|
|
expect(subject).not_to match('root/admin//')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.namespace_format_regex' do
|
|
|
|
subject { described_class.namespace_format_regex }
|
|
|
|
|
|
|
|
it { is_expected.to match('gitlab-ce') }
|
|
|
|
it { is_expected.to match('gitlab_git') }
|
|
|
|
it { is_expected.to match('_underscore.js') }
|
|
|
|
it { is_expected.to match('100px.com') }
|
|
|
|
it { is_expected.to match('gitlab.org') }
|
|
|
|
it { is_expected.not_to match('?gitlab') }
|
|
|
|
it { is_expected.not_to match('git lab') }
|
|
|
|
it { is_expected.not_to match('gitlab.git') }
|
|
|
|
it { is_expected.not_to match('gitlab.org.') }
|
|
|
|
it { is_expected.not_to match('gitlab.org/') }
|
|
|
|
it { is_expected.not_to match('/gitlab.org') }
|
|
|
|
it { is_expected.not_to match('gitlab git') }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.project_path_format_regex' do
|
|
|
|
subject { described_class.project_path_format_regex }
|
|
|
|
|
|
|
|
it { is_expected.to match('gitlab-ce') }
|
|
|
|
it { is_expected.to match('gitlab_git') }
|
|
|
|
it { is_expected.to match('_underscore.js') }
|
|
|
|
it { is_expected.to match('100px.com') }
|
|
|
|
it { is_expected.not_to match('?gitlab') }
|
|
|
|
it { is_expected.not_to match('git lab') }
|
|
|
|
it { is_expected.not_to match('gitlab.git') }
|
|
|
|
end
|
2020-03-04 19:07:49 -05:00
|
|
|
|
2020-12-01 07:09:17 -05:00
|
|
|
context 'repository routes' do
|
|
|
|
# Paths that match a known container
|
|
|
|
let_it_be(:container_paths) do
|
|
|
|
[
|
|
|
|
'gitlab-org',
|
|
|
|
'gitlab-org/gitlab-test',
|
2021-07-06 20:07:23 -04:00
|
|
|
'gitlab-org/foo.',
|
|
|
|
'gitlab-org/bar..',
|
2020-12-01 07:09:17 -05:00
|
|
|
'gitlab-org/gitlab-test/snippets/1',
|
|
|
|
'gitlab-org/gitlab-test/snippets/foo', # ambiguous, we allow creating a sub-group called 'snippets'
|
|
|
|
'snippets/1'
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
# Paths that never match a container
|
|
|
|
let_it_be(:invalid_paths) do
|
|
|
|
[
|
|
|
|
'gitlab/',
|
|
|
|
'/gitlab',
|
|
|
|
'gitlab/foo/',
|
|
|
|
'?gitlab',
|
|
|
|
'git lab',
|
|
|
|
'/snippets/1',
|
|
|
|
'snippets/foo',
|
|
|
|
'gitlab-org/gitlab/snippets/'
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
let_it_be(:git_paths) { container_paths.map { |path| path + '.git' } }
|
2021-09-01 14:08:49 -04:00
|
|
|
let_it_be(:git_lfs_paths) { git_paths.flat_map { |path| [path + '/info/lfs/', path + '/gitlab-lfs/'] } }
|
2020-12-01 07:09:17 -05:00
|
|
|
let_it_be(:snippet_paths) { container_paths.grep(%r{snippets/\d}) }
|
|
|
|
let_it_be(:wiki_git_paths) { (container_paths - snippet_paths).map { |path| path + '.wiki.git' } }
|
|
|
|
let_it_be(:invalid_git_paths) { invalid_paths.map { |path| path + '.git' } }
|
|
|
|
|
|
|
|
def expect_route_match(paths)
|
|
|
|
paths.each { |path| is_expected.to match(path) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def expect_no_route_match(paths)
|
|
|
|
paths.each { |path| is_expected.not_to match(path) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.repository_route_regex' do
|
|
|
|
subject { %r{\A#{described_class.repository_route_regex}\z} }
|
|
|
|
|
|
|
|
it 'matches the expected paths' do
|
|
|
|
expect_route_match(container_paths)
|
|
|
|
expect_no_route_match(invalid_paths + git_paths)
|
|
|
|
end
|
|
|
|
end
|
2020-03-04 19:07:49 -05:00
|
|
|
|
2020-12-01 07:09:17 -05:00
|
|
|
describe '.repository_git_route_regex' do
|
|
|
|
subject { %r{\A#{described_class.repository_git_route_regex}\z} }
|
2020-03-04 19:07:49 -05:00
|
|
|
|
2020-12-01 07:09:17 -05:00
|
|
|
it 'matches the expected paths' do
|
|
|
|
expect_route_match(git_paths + wiki_git_paths)
|
|
|
|
expect_no_route_match(container_paths + invalid_paths + invalid_git_paths)
|
|
|
|
end
|
|
|
|
end
|
2020-03-04 19:07:49 -05:00
|
|
|
|
2021-09-01 14:08:49 -04:00
|
|
|
describe '.repository_git_lfs_route_regex' do
|
|
|
|
subject { %r{\A#{described_class.repository_git_lfs_route_regex}\z} }
|
|
|
|
|
|
|
|
it 'matches the expected paths' do
|
|
|
|
expect_route_match(git_lfs_paths)
|
|
|
|
expect_no_route_match(container_paths + invalid_paths + git_paths + invalid_git_paths)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-12-01 07:09:17 -05:00
|
|
|
describe '.repository_wiki_git_route_regex' do
|
|
|
|
subject { %r{\A#{described_class.repository_wiki_git_route_regex}\z} }
|
2020-03-04 19:07:49 -05:00
|
|
|
|
2020-12-01 07:09:17 -05:00
|
|
|
it 'matches the expected paths' do
|
|
|
|
expect_route_match(wiki_git_paths)
|
|
|
|
expect_no_route_match(git_paths + invalid_git_paths)
|
|
|
|
end
|
2020-03-04 19:07:49 -05:00
|
|
|
|
2020-12-01 07:09:17 -05:00
|
|
|
it { is_expected.not_to match('snippets/1.wiki.git') }
|
|
|
|
end
|
2020-03-04 19:07:49 -05:00
|
|
|
|
2020-12-01 07:09:17 -05:00
|
|
|
describe '.full_snippets_repository_path_regex' do
|
|
|
|
subject { described_class.full_snippets_repository_path_regex }
|
2020-03-04 19:07:49 -05:00
|
|
|
|
2020-12-01 07:09:17 -05:00
|
|
|
it 'matches the expected paths' do
|
|
|
|
expect_route_match(snippet_paths)
|
|
|
|
expect_no_route_match(container_paths - snippet_paths + git_paths + invalid_paths)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.not_to match('root/snippets/1') }
|
|
|
|
it { is_expected.not_to match('gitlab-org/gitlab-test/snippets/foo') }
|
|
|
|
end
|
2020-03-04 19:07:49 -05:00
|
|
|
end
|
2020-11-13 16:09:31 -05:00
|
|
|
|
|
|
|
describe '.container_image_regex' do
|
|
|
|
subject { described_class.container_image_regex }
|
|
|
|
|
|
|
|
it { is_expected.to match('gitlab-foss') }
|
|
|
|
it { is_expected.to match('gitlab_foss') }
|
|
|
|
it { is_expected.to match('gitlab-org/gitlab-foss') }
|
|
|
|
it { is_expected.to match('100px.com/100px.ruby') }
|
|
|
|
|
|
|
|
it 'only matches at most one slash' do
|
|
|
|
expect(subject.match('foo/bar/baz')[0]).to eq('foo/bar')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not match other non-word characters' do
|
|
|
|
expect(subject.match('ruby:2.7.0')[0]).to eq('ruby')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.container_image_blob_sha_regex' do
|
|
|
|
subject { described_class.container_image_blob_sha_regex }
|
|
|
|
|
|
|
|
it { is_expected.to match('sha256:asdf1234567890ASDF') }
|
|
|
|
it { is_expected.to match('foo:123') }
|
|
|
|
it { is_expected.to match('a12bc3f590szp') }
|
|
|
|
it { is_expected.not_to match('') }
|
|
|
|
|
|
|
|
it 'does not match malicious characters' do
|
|
|
|
expect(subject.match('sha256:asdf1234%2f')[0]).to eq('sha256:asdf1234')
|
|
|
|
end
|
|
|
|
end
|
2021-10-14 11:14:02 -04:00
|
|
|
|
|
|
|
describe '.dependency_proxy_route_regex' do
|
|
|
|
subject { described_class.dependency_proxy_route_regex }
|
|
|
|
|
|
|
|
it { is_expected.to match('/v2/group1/dependency_proxy/containers/alpine/manifests/latest') }
|
|
|
|
it { is_expected.to match('/v2/group1/dependency_proxy/containers/alpine/blobs/sha256:14119a10abf4669e8cdbdff324a9f9605d99697215a0d21c360fe8dfa8471bab') }
|
|
|
|
|
|
|
|
it { is_expected.not_to match('') }
|
|
|
|
it { is_expected.not_to match('/v3/group1/dependency_proxy/containers/alpine/manifests/latest') }
|
|
|
|
it { is_expected.not_to match('/v2/group1/dependency_proxy/container/alpine/manifests/latest') }
|
|
|
|
it { is_expected.not_to match('/v2/group1/dependency_prox/containers/alpine/manifests/latest') }
|
|
|
|
it { is_expected.not_to match('/v2/group1/dependency_proxy/containers/alpine/manifest/latest') }
|
|
|
|
it { is_expected.not_to match('/v2/group1/dependency_proxy/containers/alpine/manifest/la%2Ftest') }
|
|
|
|
it { is_expected.not_to match('/v2/group1/dependency_proxy/containers/alpine/manifest/latest/../one') }
|
|
|
|
it { is_expected.not_to match('/v3/group1/dependency_proxy/containers/alpine/blobs/sha256:14119a10abf4669e8cdbdff324a9f9605d99697215a0d21c360fe8dfa8471bab') }
|
|
|
|
it { is_expected.not_to match('/v2/group1/dependency_proxy/container/alpine/blobs/sha256:14119a10abf4669e8cdbdff324a9f9605d99697215a0d21c360fe8dfa8471bab') }
|
|
|
|
it { is_expected.not_to match('/v2/group1/dependency_prox/containers/alpine/blobs/sha256:14119a10abf4669e8cdbdff324a9f9605d99697215a0d21c360fe8dfa8471bab') }
|
|
|
|
it { is_expected.not_to match('/v2/group1/dependency_proxy/containers/alpine/blob/sha256:14119a10abf4669e8cdbdff324a9f9605d99697215a0d21c360fe8dfa8471bab') }
|
|
|
|
it { is_expected.not_to match('/v2/group1/dependency_proxy/containers/alpine/blob/sha256:F14119a10abf4669e8cdbdff324a9f9605d99697215a0d21c360fe8dfa8471bab/../latest') }
|
|
|
|
it { is_expected.not_to match('/v2/group1/dependency_proxy/containers/alpine/blob/sha256:F14119a10abf4669e8cdbdff324a9f9605d99697215a0d21c360fe8dfa8471bab/latest') }
|
|
|
|
end
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|