2021-09-09 17:09:36 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe ::Routing::PseudonymizationHelper do
|
|
|
|
let_it_be(:group) { create(:group) }
|
|
|
|
let_it_be(:subgroup) { create(:group, parent: group) }
|
|
|
|
let_it_be(:project) { create(:project, group: group) }
|
2021-09-29 05:11:43 -04:00
|
|
|
let_it_be(:subproject) { create(:project, group: subgroup) }
|
2021-09-09 17:09:36 -04:00
|
|
|
let_it_be(:issue) { create(:issue, project: project) }
|
|
|
|
|
|
|
|
let(:merge_request) { create(:merge_request, source_project: project) }
|
|
|
|
|
2021-11-22 04:10:28 -05:00
|
|
|
let(:subject) { helper.masked_page_url(group: group, project: project) }
|
|
|
|
|
2021-09-09 17:09:36 -04:00
|
|
|
before do
|
|
|
|
stub_feature_flags(mask_page_urls: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'masked url' do
|
|
|
|
it 'generates masked page url' do
|
2021-11-22 04:10:28 -05:00
|
|
|
expect(subject).to eq(masked_url)
|
2021-09-09 17:09:36 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when url has params to mask' do
|
|
|
|
context 'with controller for MR' do
|
2021-10-20 14:12:31 -04:00
|
|
|
let(:masked_url) { "http://localhost/namespace#{group.id}/project#{project.id}/-/merge_requests/#{merge_request.id}" }
|
|
|
|
let(:request) do
|
|
|
|
double(:Request,
|
|
|
|
path_parameters: {
|
|
|
|
controller: "projects/merge_requests",
|
|
|
|
action: "show",
|
|
|
|
namespace_id: group.name,
|
|
|
|
project_id: project.name,
|
|
|
|
id: merge_request.id.to_s
|
|
|
|
},
|
|
|
|
protocol: 'http',
|
|
|
|
host: 'localhost',
|
|
|
|
query_string: '')
|
|
|
|
end
|
2021-09-09 17:09:36 -04:00
|
|
|
|
|
|
|
before do
|
2021-10-20 14:12:31 -04:00
|
|
|
allow(helper).to receive(:request).and_return(request)
|
2021-09-09 17:09:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'masked url'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with controller for issue' do
|
2021-10-20 14:12:31 -04:00
|
|
|
let(:masked_url) { "http://localhost/namespace#{group.id}/project#{project.id}/-/issues/#{issue.id}" }
|
|
|
|
let(:request) do
|
|
|
|
double(:Request,
|
|
|
|
path_parameters: {
|
|
|
|
controller: "projects/issues",
|
|
|
|
action: "show",
|
|
|
|
namespace_id: group.name,
|
|
|
|
project_id: project.name,
|
|
|
|
id: issue.id.to_s
|
|
|
|
},
|
|
|
|
protocol: 'http',
|
|
|
|
host: 'localhost',
|
|
|
|
query_string: '')
|
|
|
|
end
|
2021-09-09 17:09:36 -04:00
|
|
|
|
|
|
|
before do
|
2021-10-20 14:12:31 -04:00
|
|
|
allow(helper).to receive(:request).and_return(request)
|
2021-09-09 17:09:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'masked url'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with controller for groups with subgroups and project' do
|
2021-10-20 14:12:31 -04:00
|
|
|
let(:masked_url) { "http://localhost/namespace#{subgroup.id}/project#{subproject.id}"}
|
2021-11-22 04:10:28 -05:00
|
|
|
let(:group) { subgroup }
|
|
|
|
let(:project) { subproject }
|
2021-10-20 14:12:31 -04:00
|
|
|
let(:request) do
|
|
|
|
double(:Request,
|
|
|
|
path_parameters: {
|
|
|
|
controller: 'projects',
|
|
|
|
action: 'show',
|
|
|
|
namespace_id: subgroup.name,
|
|
|
|
id: subproject.name
|
|
|
|
},
|
|
|
|
protocol: 'http',
|
|
|
|
host: 'localhost',
|
|
|
|
query_string: '')
|
|
|
|
end
|
2021-09-09 17:09:36 -04:00
|
|
|
|
|
|
|
before do
|
2021-10-20 14:12:31 -04:00
|
|
|
allow(helper).to receive(:request).and_return(request)
|
2021-09-09 17:09:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'masked url'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with controller for groups and subgroups' do
|
2021-10-20 14:12:31 -04:00
|
|
|
let(:masked_url) { "http://localhost/groups/namespace#{subgroup.id}/-/shared"}
|
2021-11-22 04:10:28 -05:00
|
|
|
let(:group) { subgroup }
|
2021-10-20 14:12:31 -04:00
|
|
|
let(:request) do
|
|
|
|
double(:Request,
|
|
|
|
path_parameters: {
|
|
|
|
controller: 'groups',
|
|
|
|
action: 'show',
|
|
|
|
id: subgroup.name
|
|
|
|
},
|
|
|
|
protocol: 'http',
|
|
|
|
host: 'localhost',
|
|
|
|
query_string: '')
|
|
|
|
end
|
2021-09-09 17:09:36 -04:00
|
|
|
|
|
|
|
before do
|
2021-10-20 14:12:31 -04:00
|
|
|
allow(helper).to receive(:request).and_return(request)
|
2021-09-09 17:09:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'masked url'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with controller for blob with file path' do
|
2021-10-20 14:12:31 -04:00
|
|
|
let(:masked_url) { "http://localhost/namespace#{group.id}/project#{project.id}/-/blob/:repository_path" }
|
|
|
|
let(:request) do
|
|
|
|
double(:Request,
|
|
|
|
path_parameters: {
|
|
|
|
controller: 'projects/blob',
|
|
|
|
action: 'show',
|
|
|
|
namespace_id: group.name,
|
|
|
|
project_id: project.name,
|
|
|
|
id: 'master/README.md'
|
|
|
|
},
|
|
|
|
protocol: 'http',
|
|
|
|
host: 'localhost',
|
|
|
|
query_string: '')
|
|
|
|
end
|
2021-09-09 17:09:36 -04:00
|
|
|
|
|
|
|
before do
|
2021-10-20 14:12:31 -04:00
|
|
|
allow(helper).to receive(:request).and_return(request)
|
2021-09-09 17:09:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'masked url'
|
|
|
|
end
|
2021-09-17 14:11:44 -04:00
|
|
|
|
2021-10-20 14:12:31 -04:00
|
|
|
context 'when assignee_username is present' do
|
|
|
|
let(:masked_url) { "http://localhost/dashboard/issues?assignee_username=masked_assignee_username" }
|
|
|
|
let(:request) do
|
|
|
|
double(:Request,
|
|
|
|
path_parameters: {
|
|
|
|
controller: 'dashboard',
|
|
|
|
action: 'issues'
|
|
|
|
},
|
|
|
|
protocol: 'http',
|
|
|
|
host: 'localhost',
|
|
|
|
query_string: 'assignee_username=root')
|
|
|
|
end
|
2021-09-17 14:11:44 -04:00
|
|
|
|
|
|
|
before do
|
2021-10-20 14:12:31 -04:00
|
|
|
allow(helper).to receive(:request).and_return(request)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'masked url'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when author_username is present' do
|
2021-11-23 10:11:19 -05:00
|
|
|
let(:masked_url) { "http://localhost/dashboard/issues?author_username=masked_author_username&scope=all&state=opened" }
|
2021-10-20 14:12:31 -04:00
|
|
|
let(:request) do
|
|
|
|
double(:Request,
|
|
|
|
path_parameters: {
|
|
|
|
controller: 'dashboard',
|
|
|
|
action: 'issues'
|
|
|
|
},
|
|
|
|
protocol: 'http',
|
|
|
|
host: 'localhost',
|
|
|
|
query_string: 'author_username=root&scope=all&state=opened')
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:request).and_return(request)
|
2021-09-17 14:11:44 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'masked url'
|
|
|
|
end
|
2021-11-09 07:12:15 -05:00
|
|
|
|
2021-11-15 10:10:57 -05:00
|
|
|
context 'when some query params are not required to be masked' do
|
|
|
|
let(:masked_url) { "http://localhost/dashboard/issues?author_username=masked_author_username&scope=all&state=masked_state" }
|
|
|
|
let(:request) do
|
|
|
|
double(:Request,
|
|
|
|
path_parameters: {
|
|
|
|
controller: 'dashboard',
|
|
|
|
action: 'issues'
|
|
|
|
},
|
|
|
|
protocol: 'http',
|
|
|
|
host: 'localhost',
|
|
|
|
query_string: 'author_username=root&scope=all&state=opened')
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_const('Routing::PseudonymizationHelper::MaskHelper::QUERY_PARAMS_TO_NOT_MASK', %w[scope].freeze)
|
|
|
|
allow(helper).to receive(:request).and_return(request)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'masked url'
|
|
|
|
end
|
|
|
|
|
2021-11-09 07:12:15 -05:00
|
|
|
context 'when query string has keys with the same names as path params' do
|
2021-11-23 10:11:19 -05:00
|
|
|
let(:masked_url) { "http://localhost/dashboard/issues?action=masked_action&scope=all&state=opened" }
|
2021-11-09 07:12:15 -05:00
|
|
|
let(:request) do
|
|
|
|
double(:Request,
|
|
|
|
path_parameters: {
|
|
|
|
controller: 'dashboard',
|
|
|
|
action: 'issues'
|
|
|
|
},
|
|
|
|
protocol: 'http',
|
|
|
|
host: 'localhost',
|
|
|
|
query_string: 'action=foobar&scope=all&state=opened')
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:request).and_return(request)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'masked url'
|
|
|
|
end
|
2021-09-09 17:09:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when url has no params to mask' do
|
2022-03-01 16:16:08 -05:00
|
|
|
let(:original_url) { 'http://localhost/-/security/vulnerabilities' }
|
|
|
|
let(:request) do
|
|
|
|
double(:Request,
|
|
|
|
path_parameters: {
|
|
|
|
controller: 'security/vulnerabilities',
|
|
|
|
action: 'index'
|
|
|
|
},
|
|
|
|
protocol: 'http',
|
|
|
|
host: 'localhost',
|
|
|
|
query_string: '',
|
|
|
|
original_fullpath: '/-/security/vulnerabilities',
|
|
|
|
original_url: original_url)
|
|
|
|
end
|
2021-09-09 17:09:36 -04:00
|
|
|
|
2022-03-01 16:16:08 -05:00
|
|
|
before do
|
|
|
|
allow(helper).to receive(:request).and_return(request)
|
|
|
|
end
|
2021-10-20 14:12:31 -04:00
|
|
|
|
2022-03-01 16:16:08 -05:00
|
|
|
it 'returns unchanged url' do
|
|
|
|
expect(subject).to eq(original_url)
|
2021-09-09 17:09:36 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-09-23 05:09:51 -04:00
|
|
|
describe 'when it raises exception' do
|
|
|
|
context 'calls error tracking' do
|
2021-10-20 14:12:31 -04:00
|
|
|
let(:request) do
|
|
|
|
double(:Request,
|
|
|
|
path_parameters: {
|
|
|
|
controller: 'dashboard',
|
|
|
|
action: 'issues'
|
|
|
|
},
|
|
|
|
protocol: 'http',
|
|
|
|
host: 'localhost',
|
|
|
|
query_string: 'assignee_username=root',
|
|
|
|
original_fullpath: '/dashboard/issues?assignee_username=root')
|
|
|
|
end
|
|
|
|
|
2021-09-23 05:09:51 -04:00
|
|
|
before do
|
2021-10-20 14:12:31 -04:00
|
|
|
allow(helper).to receive(:request).and_return(request)
|
2021-09-23 05:09:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sends error to sentry and returns nil' do
|
2021-10-20 14:12:31 -04:00
|
|
|
allow_next_instance_of(Routing::PseudonymizationHelper::MaskHelper) do |mask_helper|
|
|
|
|
allow(mask_helper).to receive(:mask_params).and_raise(ActionController::RoutingError, 'Some routing error')
|
|
|
|
end
|
2021-09-23 05:09:51 -04:00
|
|
|
|
|
|
|
expect(Gitlab::ErrorTracking).to receive(:track_exception).with(
|
|
|
|
ActionController::RoutingError,
|
|
|
|
url: '/dashboard/issues?assignee_username=root').and_call_original
|
|
|
|
|
2021-11-22 04:10:28 -05:00
|
|
|
expect(subject).to be_nil
|
2021-09-23 05:09:51 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-09-09 17:09:36 -04:00
|
|
|
describe 'when feature flag is disabled' do
|
|
|
|
before do
|
|
|
|
stub_feature_flags(mask_page_urls: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil' do
|
2021-11-22 04:10:28 -05:00
|
|
|
expect(subject).to be_nil
|
2021-09-09 17:09:36 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|