2016-07-21 04:44:18 -04:00
|
|
|
require './spec/simplecov_env'
|
|
|
|
SimpleCovEnv.start!
|
2015-07-13 22:41:47 -04:00
|
|
|
|
2017-09-14 11:22:49 -04:00
|
|
|
ENV["RAILS_ENV"] = 'test'
|
2017-01-21 19:11:19 -05:00
|
|
|
ENV["IN_MEMORY_APPLICATION_SETTINGS"] = 'true'
|
2015-07-13 22:41:47 -04:00
|
|
|
|
2014-09-19 09:39:56 -04:00
|
|
|
require File.expand_path("../../config/environment", __FILE__)
|
2014-03-13 18:34:12 -04:00
|
|
|
require 'rspec/rails'
|
2015-06-10 01:38:36 -04:00
|
|
|
require 'shoulda/matchers'
|
2015-11-12 04:52:20 -05:00
|
|
|
require 'rspec/retry'
|
2017-08-10 13:23:56 -04:00
|
|
|
require 'rspec-parameterized'
|
2016-05-21 21:17:15 -04:00
|
|
|
|
2017-04-13 08:24:35 -04:00
|
|
|
rspec_profiling_is_configured =
|
2017-05-19 06:15:49 -04:00
|
|
|
ENV['RSPEC_PROFILING_POSTGRES_URL'].present? ||
|
2017-04-13 08:24:35 -04:00
|
|
|
ENV['RSPEC_PROFILING']
|
|
|
|
branch_can_be_profiled =
|
2017-04-28 14:05:39 -04:00
|
|
|
ENV['GITLAB_DATABASE'] == 'postgresql' &&
|
|
|
|
(ENV['CI_COMMIT_REF_NAME'] == 'master' ||
|
|
|
|
ENV['CI_COMMIT_REF_NAME'] =~ /rspec-profile/)
|
2017-04-13 08:24:35 -04:00
|
|
|
|
|
|
|
if rspec_profiling_is_configured && (!ENV.key?('CI') || branch_can_be_profiled)
|
2017-01-26 16:31:43 -05:00
|
|
|
require 'rspec_profiling/rspec'
|
|
|
|
end
|
|
|
|
|
2016-08-29 12:18:59 -04:00
|
|
|
if ENV['CI'] && !ENV['NO_KNAPSACK']
|
2016-06-08 05:43:13 -04:00
|
|
|
require 'knapsack'
|
|
|
|
Knapsack::Adapters::RSpecAdapter.bind
|
|
|
|
end
|
2014-03-13 18:34:12 -04:00
|
|
|
|
2017-02-13 06:19:28 -05:00
|
|
|
# require rainbow gem String monkeypatch, so we can test SystemChecks
|
|
|
|
require 'rainbow/ext/string'
|
|
|
|
|
2014-03-13 18:34:12 -04:00
|
|
|
# Requires supporting ruby files with custom matchers and macros, etc,
|
|
|
|
# in spec/support/ and its subdirectories.
|
2015-04-25 14:33:04 -04:00
|
|
|
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
|
2014-03-13 18:34:12 -04:00
|
|
|
|
|
|
|
RSpec.configure do |config|
|
2014-06-06 13:55:49 -04:00
|
|
|
config.use_transactional_fixtures = false
|
|
|
|
config.use_instantiated_fixtures = false
|
2014-03-13 18:34:12 -04:00
|
|
|
config.mock_with :rspec
|
|
|
|
|
2015-11-12 04:52:20 -05:00
|
|
|
config.verbose_retry = true
|
|
|
|
config.display_try_failure_messages = true
|
|
|
|
|
2016-11-09 13:40:25 -05:00
|
|
|
config.include Devise::Test::ControllerHelpers, type: :controller
|
|
|
|
config.include Devise::Test::ControllerHelpers, type: :view
|
2017-06-08 13:04:38 -04:00
|
|
|
config.include Devise::Test::IntegrationHelpers, type: :feature
|
2016-07-12 11:15:08 -04:00
|
|
|
config.include Warden::Test::Helpers, type: :request
|
2016-11-09 13:40:25 -05:00
|
|
|
config.include LoginHelpers, type: :feature
|
|
|
|
config.include SearchHelpers, type: :feature
|
2017-11-02 11:26:09 -04:00
|
|
|
config.include CookieHelper, :js
|
|
|
|
config.include InputHelper, :js
|
2017-11-21 11:11:45 -05:00
|
|
|
config.include SelectionHelper, :js
|
2017-11-02 11:27:15 -04:00
|
|
|
config.include InspectRequests, :js
|
2017-03-09 21:28:20 -05:00
|
|
|
config.include WaitForRequests, :js
|
2017-10-16 04:37:53 -04:00
|
|
|
config.include LiveDebugger, :js
|
2015-06-29 15:04:57 -04:00
|
|
|
config.include StubConfiguration
|
2017-08-02 11:13:27 -04:00
|
|
|
config.include EmailHelpers, :mailer, type: :mailer
|
2014-03-13 18:34:12 -04:00
|
|
|
config.include TestEnv
|
2015-11-30 04:21:10 -05:00
|
|
|
config.include ActiveJob::TestHelper
|
2016-08-19 04:57:25 -04:00
|
|
|
config.include ActiveSupport::Testing::TimeHelpers
|
2015-09-09 07:37:50 -04:00
|
|
|
config.include StubGitlabCalls
|
|
|
|
config.include StubGitlabData
|
2017-03-08 18:41:02 -05:00
|
|
|
config.include ApiHelpers, :api
|
2017-07-07 11:43:37 -04:00
|
|
|
config.include Gitlab::Routing, type: :routing
|
2017-05-26 04:36:01 -04:00
|
|
|
config.include MigrationsHelpers, :migration
|
2017-07-13 03:58:05 -04:00
|
|
|
config.include StubFeatureFlags
|
2017-07-27 05:15:57 -04:00
|
|
|
config.include StubENV
|
2015-06-28 20:16:10 -04:00
|
|
|
|
2015-02-12 10:48:53 -05:00
|
|
|
config.infer_spec_type_from_file_location!
|
2017-03-08 18:41:02 -05:00
|
|
|
|
2017-09-19 10:50:26 -04:00
|
|
|
config.define_derived_metadata(file_path: %r{/spec/}) do |metadata|
|
|
|
|
location = metadata[:location]
|
|
|
|
|
|
|
|
metadata[:api] = true if location =~ %r{/spec/requests/api/}
|
|
|
|
|
|
|
|
# do not overwrite type if it's already set
|
|
|
|
next if metadata.key?(:type)
|
|
|
|
|
|
|
|
match = location.match(%r{/spec/([^/]+)/})
|
|
|
|
metadata[:type] = match[1].singularize.to_sym if match
|
2017-03-08 18:41:02 -05:00
|
|
|
end
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
config.raise_errors_for_deprecations!
|
2014-03-13 18:34:12 -04:00
|
|
|
|
2017-07-19 13:51:59 -04:00
|
|
|
if ENV['CI']
|
|
|
|
# This includes the first try, i.e. tests will be run 4 times before failing.
|
|
|
|
config.default_retry_count = 4
|
2017-10-04 07:24:51 -04:00
|
|
|
config.reporter.register_listener(
|
|
|
|
RspecFlaky::Listener.new,
|
|
|
|
:example_passed,
|
|
|
|
:dump_summary)
|
2017-07-19 13:51:59 -04:00
|
|
|
end
|
|
|
|
|
2014-03-13 18:34:12 -04:00
|
|
|
config.before(:suite) do
|
2017-08-11 06:36:03 -04:00
|
|
|
Timecop.safe_mode = true
|
2014-07-31 12:24:53 -04:00
|
|
|
TestEnv.init
|
2014-03-13 18:34:12 -04:00
|
|
|
end
|
2016-08-09 17:08:33 -04:00
|
|
|
|
2017-07-12 08:45:42 -04:00
|
|
|
config.before(:example) do
|
|
|
|
# Skip pre-receive hook check so we can use the web editor and merge.
|
|
|
|
allow_any_instance_of(Gitlab::Git::Hook).to receive(:trigger).and_return([true, nil])
|
2018-01-10 11:34:31 -05:00
|
|
|
|
|
|
|
allow_any_instance_of(Gitlab::Git::GitlabProjects).to receive(:fork_repository).and_wrap_original do |m, *args|
|
|
|
|
m.call(*args)
|
|
|
|
|
|
|
|
shard_path, repository_relative_path = args
|
|
|
|
# We can't leave the hooks in place after a fork, as those would fail in tests
|
|
|
|
# The "internal" API is not available
|
|
|
|
FileUtils.rm_rf(File.join(shard_path, repository_relative_path, 'hooks'))
|
|
|
|
end
|
|
|
|
|
2017-07-13 03:58:05 -04:00
|
|
|
# Enable all features by default for testing
|
|
|
|
allow(Feature).to receive(:enabled?) { true }
|
2017-07-12 08:45:42 -04:00
|
|
|
end
|
|
|
|
|
2017-06-09 13:12:51 -04:00
|
|
|
config.before(:example, :request_store) do
|
|
|
|
RequestStore.begin!
|
|
|
|
end
|
|
|
|
|
|
|
|
config.after(:example, :request_store) do
|
|
|
|
RequestStore.end!
|
|
|
|
RequestStore.clear!
|
|
|
|
end
|
|
|
|
|
2017-08-02 11:13:27 -04:00
|
|
|
config.before(:example, :mailer) do
|
|
|
|
reset_delivered_emails!
|
|
|
|
end
|
|
|
|
|
2017-07-10 23:35:47 -04:00
|
|
|
config.around(:each, :use_clean_rails_memory_store_caching) do |example|
|
2016-08-09 17:08:33 -04:00
|
|
|
caching_store = Rails.cache
|
2017-07-10 23:35:47 -04:00
|
|
|
Rails.cache = ActiveSupport::Cache::MemoryStore.new
|
|
|
|
|
2016-08-09 17:08:33 -04:00
|
|
|
example.run
|
2017-07-10 23:35:47 -04:00
|
|
|
|
2016-08-09 17:08:33 -04:00
|
|
|
Rails.cache = caching_store
|
|
|
|
end
|
2016-10-25 10:01:24 -04:00
|
|
|
|
2017-07-10 23:35:47 -04:00
|
|
|
config.around(:each, :clean_gitlab_redis_cache) do |example|
|
|
|
|
Gitlab::Redis::Cache.with(&:flushall)
|
|
|
|
|
|
|
|
example.run
|
|
|
|
|
|
|
|
Gitlab::Redis::Cache.with(&:flushall)
|
|
|
|
end
|
|
|
|
|
|
|
|
config.around(:each, :clean_gitlab_redis_shared_state) do |example|
|
|
|
|
Gitlab::Redis::SharedState.with(&:flushall)
|
2016-11-24 09:07:44 -05:00
|
|
|
Sidekiq.redis(&:flushall)
|
|
|
|
|
2016-10-25 10:01:24 -04:00
|
|
|
example.run
|
2016-11-24 09:07:44 -05:00
|
|
|
|
2017-07-10 23:35:47 -04:00
|
|
|
Gitlab::Redis::SharedState.with(&:flushall)
|
2016-11-24 09:07:44 -05:00
|
|
|
Sidekiq.redis(&:flushall)
|
2016-10-25 10:01:24 -04:00
|
|
|
end
|
Use CTEs for nested groups and authorizations
This commit introduces the usage of Common Table Expressions (CTEs) to
efficiently retrieve nested group hierarchies, without having to rely on
the "routes" table (which is an _incredibly_ inefficient way of getting
the data). This requires a patch to ActiveRecord (found in the added
initializer) to work properly as ActiveRecord doesn't support WITH
statements properly out of the box.
Unfortunately MySQL provides no efficient way of getting nested groups.
For example, the old routes setup could easily take 5-10 seconds
depending on the amount of "routes" in a database. Providing vastly
different logic for both MySQL and PostgreSQL will negatively impact the
development process. Because of this the various nested groups related
methods return empty relations when used in combination with MySQL.
For project authorizations the logic is split up into two classes:
* Gitlab::ProjectAuthorizations::WithNestedGroups
* Gitlab::ProjectAuthorizations::WithoutNestedGroups
Both classes get the fresh project authorizations (= as they should be
in the "project_authorizations" table), including nested groups if
PostgreSQL is used. The logic of these two classes is quite different
apart from their public interface. This complicates development a bit,
but unfortunately there is no way around this.
This commit also introduces Gitlab::GroupHierarchy. This class can be
used to get the ancestors and descendants of a base relation, or both by
using a UNION. This in turn is used by methods such as:
* Namespace#ancestors
* Namespace#descendants
* User#all_expanded_groups
Again this class relies on CTEs and thus only works on PostgreSQL. The
Namespace methods will return an empty relation when MySQL is used,
while User#all_expanded_groups will return only the groups a user is a
direct member of.
Performance wise the impact is quite large. For example, on GitLab.com
Namespace#descendants used to take around 580 ms to retrieve data for a
particular user. Using CTEs we are able to reduce this down to roughly 1
millisecond, returning the exact same data.
== On The Fly Refreshing
Refreshing of authorizations on the fly (= when
users.authorized_projects_populated was not set) is removed with this
commit. This simplifies the code, and ensures any queries used for
authorizations are not mutated because they are executed in a Rails
scope (e.g. Project.visible_to_user).
This commit includes a migration to schedule refreshing authorizations
for all users, ensuring all of them have their authorizations in place.
Said migration schedules users in batches of 5000, with 5 minutes
between every batch to smear the load around a bit.
== Spec Changes
This commit also introduces some changes to various specs. For example,
some specs for ProjectTeam assumed that creating a personal project
would _not_ lead to the owner having access, which is incorrect. Because
we also no longer refresh authorizations on the fly for new users some
code had to be added to the "empty_project" factory. This chunk of code
ensures that the owner's permissions are refreshed after creating the
project, something that is normally done in Projects::CreateService.
2017-04-24 11:19:22 -04:00
|
|
|
|
2017-08-17 05:42:17 -04:00
|
|
|
config.before(:each, :migration) do
|
2017-08-16 07:05:18 -04:00
|
|
|
schema_migrate_down!
|
2017-06-13 04:18:43 -04:00
|
|
|
end
|
|
|
|
|
2017-08-16 06:49:06 -04:00
|
|
|
config.after(:context, :migration) do
|
2017-08-16 07:05:18 -04:00
|
|
|
schema_migrate_up!
|
2017-05-25 16:43:16 -04:00
|
|
|
end
|
2017-06-05 07:13:38 -04:00
|
|
|
|
Use CTEs for nested groups and authorizations
This commit introduces the usage of Common Table Expressions (CTEs) to
efficiently retrieve nested group hierarchies, without having to rely on
the "routes" table (which is an _incredibly_ inefficient way of getting
the data). This requires a patch to ActiveRecord (found in the added
initializer) to work properly as ActiveRecord doesn't support WITH
statements properly out of the box.
Unfortunately MySQL provides no efficient way of getting nested groups.
For example, the old routes setup could easily take 5-10 seconds
depending on the amount of "routes" in a database. Providing vastly
different logic for both MySQL and PostgreSQL will negatively impact the
development process. Because of this the various nested groups related
methods return empty relations when used in combination with MySQL.
For project authorizations the logic is split up into two classes:
* Gitlab::ProjectAuthorizations::WithNestedGroups
* Gitlab::ProjectAuthorizations::WithoutNestedGroups
Both classes get the fresh project authorizations (= as they should be
in the "project_authorizations" table), including nested groups if
PostgreSQL is used. The logic of these two classes is quite different
apart from their public interface. This complicates development a bit,
but unfortunately there is no way around this.
This commit also introduces Gitlab::GroupHierarchy. This class can be
used to get the ancestors and descendants of a base relation, or both by
using a UNION. This in turn is used by methods such as:
* Namespace#ancestors
* Namespace#descendants
* User#all_expanded_groups
Again this class relies on CTEs and thus only works on PostgreSQL. The
Namespace methods will return an empty relation when MySQL is used,
while User#all_expanded_groups will return only the groups a user is a
direct member of.
Performance wise the impact is quite large. For example, on GitLab.com
Namespace#descendants used to take around 580 ms to retrieve data for a
particular user. Using CTEs we are able to reduce this down to roughly 1
millisecond, returning the exact same data.
== On The Fly Refreshing
Refreshing of authorizations on the fly (= when
users.authorized_projects_populated was not set) is removed with this
commit. This simplifies the code, and ensures any queries used for
authorizations are not mutated because they are executed in a Rails
scope (e.g. Project.visible_to_user).
This commit includes a migration to schedule refreshing authorizations
for all users, ensuring all of them have their authorizations in place.
Said migration schedules users in batches of 5000, with 5 minutes
between every batch to smear the load around a bit.
== Spec Changes
This commit also introduces some changes to various specs. For example,
some specs for ProjectTeam assumed that creating a personal project
would _not_ lead to the owner having access, which is incorrect. Because
we also no longer refresh authorizations on the fly for new users some
code had to be added to the "empty_project" factory. This chunk of code
ensures that the owner's permissions are refreshed after creating the
project, something that is normally done in Projects::CreateService.
2017-04-24 11:19:22 -04:00
|
|
|
config.around(:each, :nested_groups) do |example|
|
2017-05-03 08:49:37 -04:00
|
|
|
example.run if Group.supports_nested_groups?
|
Use CTEs for nested groups and authorizations
This commit introduces the usage of Common Table Expressions (CTEs) to
efficiently retrieve nested group hierarchies, without having to rely on
the "routes" table (which is an _incredibly_ inefficient way of getting
the data). This requires a patch to ActiveRecord (found in the added
initializer) to work properly as ActiveRecord doesn't support WITH
statements properly out of the box.
Unfortunately MySQL provides no efficient way of getting nested groups.
For example, the old routes setup could easily take 5-10 seconds
depending on the amount of "routes" in a database. Providing vastly
different logic for both MySQL and PostgreSQL will negatively impact the
development process. Because of this the various nested groups related
methods return empty relations when used in combination with MySQL.
For project authorizations the logic is split up into two classes:
* Gitlab::ProjectAuthorizations::WithNestedGroups
* Gitlab::ProjectAuthorizations::WithoutNestedGroups
Both classes get the fresh project authorizations (= as they should be
in the "project_authorizations" table), including nested groups if
PostgreSQL is used. The logic of these two classes is quite different
apart from their public interface. This complicates development a bit,
but unfortunately there is no way around this.
This commit also introduces Gitlab::GroupHierarchy. This class can be
used to get the ancestors and descendants of a base relation, or both by
using a UNION. This in turn is used by methods such as:
* Namespace#ancestors
* Namespace#descendants
* User#all_expanded_groups
Again this class relies on CTEs and thus only works on PostgreSQL. The
Namespace methods will return an empty relation when MySQL is used,
while User#all_expanded_groups will return only the groups a user is a
direct member of.
Performance wise the impact is quite large. For example, on GitLab.com
Namespace#descendants used to take around 580 ms to retrieve data for a
particular user. Using CTEs we are able to reduce this down to roughly 1
millisecond, returning the exact same data.
== On The Fly Refreshing
Refreshing of authorizations on the fly (= when
users.authorized_projects_populated was not set) is removed with this
commit. This simplifies the code, and ensures any queries used for
authorizations are not mutated because they are executed in a Rails
scope (e.g. Project.visible_to_user).
This commit includes a migration to schedule refreshing authorizations
for all users, ensuring all of them have their authorizations in place.
Said migration schedules users in batches of 5000, with 5 minutes
between every batch to smear the load around a bit.
== Spec Changes
This commit also introduces some changes to various specs. For example,
some specs for ProjectTeam assumed that creating a personal project
would _not_ lead to the owner having access, which is incorrect. Because
we also no longer refresh authorizations on the fly for new users some
code had to be added to the "empty_project" factory. This chunk of code
ensures that the owner's permissions are refreshed after creating the
project, something that is normally done in Projects::CreateService.
2017-04-24 11:19:22 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
config.around(:each, :postgresql) do |example|
|
|
|
|
example.run if Gitlab::Database.postgresql?
|
|
|
|
end
|
2013-03-26 05:13:30 -04:00
|
|
|
end
|
2015-03-27 15:31:16 -04:00
|
|
|
|
2017-10-03 10:47:56 -04:00
|
|
|
# add simpler way to match asset paths containing digest strings
|
|
|
|
RSpec::Matchers.define :match_asset_path do |expected|
|
|
|
|
match do |actual|
|
|
|
|
path = Regexp.escape(expected)
|
|
|
|
extname = Regexp.escape(File.extname(expected))
|
|
|
|
digest_regex = Regexp.new(path.sub(extname, "(?:-\\h+)?#{extname}") << '$')
|
|
|
|
digest_regex =~ actual
|
|
|
|
end
|
|
|
|
|
|
|
|
failure_message do |actual|
|
|
|
|
"expected that #{actual} would include an asset path for #{expected}"
|
|
|
|
end
|
|
|
|
|
|
|
|
failure_message_when_negated do |actual|
|
|
|
|
"expected that #{actual} would not include an asset path for #{expected}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-12-13 19:13:44 -05:00
|
|
|
FactoryBot::SyntaxRunner.class_eval do
|
2015-10-05 06:02:26 -04:00
|
|
|
include RSpec::Mocks::ExampleMethods
|
|
|
|
end
|
|
|
|
|
2015-03-27 15:31:16 -04:00
|
|
|
ActiveRecord::Migration.maintain_test_schema!
|
2017-07-24 07:19:09 -04:00
|
|
|
|
|
|
|
Shoulda::Matchers.configure do |config|
|
|
|
|
config.integrate do |with|
|
|
|
|
with.test_framework :rspec
|
|
|
|
with.library :rails
|
|
|
|
end
|
|
|
|
end
|
2017-11-30 07:58:51 -05:00
|
|
|
|
|
|
|
# Prevent Rugged from picking up local developer gitconfig.
|
|
|
|
Rugged::Settings['search_path_global'] = Rails.root.join('tmp/tests').to_s
|